calc.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:66k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* A Bison parser, made by GNU Bison 2.4.1.  */
  2. /* Skeleton implementation for Bison's Yacc-like parsers in C
  3.    
  4.       Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
  5.    Free Software Foundation, Inc.
  6.    
  7.    This program is free software: you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation, either version 3 of the License, or
  10.    (at your option) any later version.
  11.    
  12.    This program is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.    
  17.    You should have received a copy of the GNU General Public License
  18.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
  19. /* As a special exception, you may create a larger work that contains
  20.    part or all of the Bison parser skeleton and distribute that work
  21.    under terms of your choice, so long as that work isn't itself a
  22.    parser generator using the skeleton or a modified version thereof
  23.    as a parser skeleton.  Alternatively, if you modify or redistribute
  24.    the parser skeleton itself, you may (at your option) remove this
  25.    special exception, which will cause the skeleton and the resulting
  26.    Bison output files to be licensed under the GNU General Public
  27.    License without this special exception.
  28.    
  29.    This special exception was added by the Free Software Foundation in
  30.    version 2.2 of Bison.  */
  31. /* C LALR(1) parser skeleton written by Richard Stallman, by
  32.    simplifying the original so-called "semantic" parser.  */
  33. /* All symbols defined below should begin with yy or YY, to avoid
  34.    infringing on user name space.  This should be done even for local
  35.    variables, as they might otherwise be expanded by user macros.
  36.    There are some unavoidable exceptions within include files to
  37.    define necessary library symbols; they are noted "INFRINGES ON
  38.    USER NAME SPACE" below.  */
  39. /* Identify Bison output.  */
  40. #define YYBISON 1
  41. /* Bison version.  */
  42. #define YYBISON_VERSION "2.4.1"
  43. /* Skeleton name.  */
  44. #define YYSKELETON_NAME "yacc.c"
  45. /* Pure parsers.  */
  46. #define YYPURE 0
  47. /* Push parsers.  */
  48. #define YYPUSH 0
  49. /* Pull parsers.  */
  50. #define YYPULL 1
  51. /* Using locations.  */
  52. #define YYLSP_NEEDED 0
  53. /* Copy the first part of user declarations.  */
  54. /* Line 189 of yacc.c  */
  55. #line 1 "calc.y"
  56. /* A simple integer desk calculator using yacc and gmp.
  57. Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
  58. This file is part of the GNU MP Library.
  59. This program is free software; you can redistribute it and/or modify it under
  60. the terms of the GNU General Public License as published by the Free Software
  61. Foundation; either version 3 of the License, or (at your option) any later
  62. version.
  63. This program is distributed in the hope that it will be useful, but WITHOUT ANY
  64. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  65. PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  66. You should have received a copy of the GNU General Public License along with
  67. this program.  If not, see http://www.gnu.org/licenses/.  */
  68. /* This is a simple program, meant only to show one way to use GMP for this
  69.    sort of thing.  There's few features, and error checking is minimal.
  70.    Standard input is read, calc_help() below shows the inputs accepted.
  71.    Expressions are evaluated as they're read.  If user defined functions
  72.    were wanted it'd be necessary to build a parse tree like pexpr.c does, or
  73.    a list of operations for a stack based evaluator.  That would also make
  74.    it possible to detect and optimize evaluations "mod m" like pexpr.c does.
  75.    A stack is used for intermediate values in the expression evaluation,
  76.    separate from the yacc parser stack.  This is simple, makes error
  77.    recovery easy, minimizes the junk around mpz calls in the rules, and
  78.    saves initializing or clearing "mpz_t"s during a calculation.  A
  79.    disadvantage though is that variables must be copied to the stack to be
  80.    worked on.  A more sophisticated calculator or language system might be
  81.    able to avoid that when executing a compiled or semi-compiled form.
  82.    Avoiding repeated initializing and clearing of "mpz_t"s is important.  In
  83.    this program the time spent parsing is obviously much greater than any
  84.    possible saving from this, but a proper calculator or language should
  85.    take some trouble over it.  Don't be surprised if an init/clear takes 3
  86.    or more times as long as a 10 limb addition, depending on the system (see
  87.    the mpz_init_realloc_clear example in tune/README).  */
  88. #include <stdio.h>
  89. #include <stdlib.h>
  90. #include <string.h>
  91. #include "gmp.h"
  92. #define NO_CALC_H /* because it conflicts with normal calc.c stuff */
  93. #include "calc-common.h"
  94. #define numberof(x)  (sizeof (x) / sizeof ((x)[0]))
  95. void
  96. calc_help (void)
  97. {
  98.   printf ("Examples:n");
  99.   printf ("    2+3*4        expressions are evaluatedn");
  100.   printf ("    x=5^6        variables a to z can be set and usedn");
  101.   printf ("Operators:n");
  102.   printf ("    + - *        arithmeticn");
  103.   printf ("    / %%          division and remainder (rounding towards negative infinity)n");
  104.   printf ("    ^            exponentiationn");
  105.   printf ("    !            factorialn");
  106.   printf ("    << >>        left and right shiftsn");
  107.   printf ("    <= >= >      \ comparisons, giving 1 if true, 0 if falsen");
  108.   printf ("    == != <      /n");
  109.   printf ("    && ||        logical and/or, giving 1 if true, 0 if falsen");
  110.   printf ("Functions:n");
  111.   printf ("    abs(n)       absolute valuen");
  112.   printf ("    bin(n,m)     binomial coefficientn");
  113.   printf ("    fib(n)       fibonacci numbern");
  114.   printf ("    gcd(a,b,..)  greatest common divisorn");
  115.   printf ("    kron(a,b)    kronecker symboln");
  116.   printf ("    lcm(a,b,..)  least common multiplen");
  117.   printf ("    lucnum(n)    lucas numbern");
  118.   printf ("    nextprime(n) next prime after nn");
  119.   printf ("    powm(b,e,m)  modulo powering, b^e%%mn");
  120.   printf ("    root(n,r)    r-th rootn");
  121.   printf ("    sqrt(n)      square rootn");
  122.   printf ("Other:n");
  123.   printf ("    hex          \ set hex or decimal for input and outputn");
  124.   printf ("    decimal      /   ("0x" can be used for hex too)n");
  125.   printf ("    quit         exit program (EOF works too)n");
  126.   printf ("    ;            statements are separated with a ; or newlinen");
  127.   printf ("    \            continue expressions with \ before newlinen");
  128.   printf ("    # xxx        comments are # though to newlinen");
  129.   printf ("Hex numbers must be entered in upper case, to distinguish them from then");
  130.   printf ("variables a to f (like in bc).n");
  131. }
  132. int  ibase = 0;
  133. int  obase = 10;
  134. /* The stack is a fixed size, which means there's a limit on the nesting
  135.    allowed in expressions.  A more sophisticated program could let it grow
  136.    dynamically.  */
  137. mpz_t    stack[100];
  138. mpz_ptr  sp = stack[0];
  139. #define CHECK_OVERFLOW()                                                  
  140.   if (sp >= stack[numberof(stack)]) /* FIXME */
  141.     {                                                                     
  142.       fprintf (stderr,                                                    
  143.                "Value stack overflow, too much nesting in expressionn"); 
  144.       YYERROR;                                                            
  145.     }
  146. #define CHECK_EMPTY()                                                   
  147.   if (sp != stack[0])                                                   
  148.     {                                                                   
  149.       fprintf (stderr, "Oops, expected the value stack to be emptyn"); 
  150.       sp = stack[0];                                                    
  151.     }
  152. mpz_t  variable[26];
  153. #define CHECK_VARIABLE(var)                                             
  154.   if ((var) < 0 || (var) >= numberof (variable))                        
  155.     {                                                                   
  156.       fprintf (stderr, "Oops, bad variable somehow: %dn", var);        
  157.       YYERROR;                                                          
  158.     }
  159. #define CHECK_UI(name,z)                        
  160.   if (! mpz_fits_ulong_p (z))                   
  161.     {                                           
  162.       fprintf (stderr, "%s too bign", name);   
  163.       YYERROR;                                  
  164.     }
  165. /* Line 189 of yacc.c  */
  166. #line 215 "calc.c"
  167. /* Enabling traces.  */
  168. #ifndef YYDEBUG
  169. # define YYDEBUG 0
  170. #endif
  171. /* Enabling verbose error messages.  */
  172. #ifdef YYERROR_VERBOSE
  173. # undef YYERROR_VERBOSE
  174. # define YYERROR_VERBOSE 1
  175. #else
  176. # define YYERROR_VERBOSE 0
  177. #endif
  178. /* Enabling the token table.  */
  179. #ifndef YYTOKEN_TABLE
  180. # define YYTOKEN_TABLE 0
  181. #endif
  182. /* Tokens.  */
  183. #ifndef YYTOKENTYPE
  184. # define YYTOKENTYPE
  185.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  186.       know about them.  */
  187.    enum yytokentype {
  188.      EOS = 258,
  189.      BAD = 259,
  190.      HELP = 260,
  191.      HEX = 261,
  192.      DECIMAL = 262,
  193.      QUIT = 263,
  194.      ABS = 264,
  195.      BIN = 265,
  196.      FIB = 266,
  197.      GCD = 267,
  198.      KRON = 268,
  199.      LCM = 269,
  200.      LUCNUM = 270,
  201.      NEXTPRIME = 271,
  202.      POWM = 272,
  203.      ROOT = 273,
  204.      SQRT = 274,
  205.      NUMBER = 275,
  206.      VARIABLE = 276,
  207.      LOR = 277,
  208.      LAND = 278,
  209.      GE = 279,
  210.      LE = 280,
  211.      NE = 281,
  212.      EQ = 282,
  213.      RSHIFT = 283,
  214.      LSHIFT = 284,
  215.      UMINUS = 285
  216.    };
  217. #endif
  218. /* Tokens.  */
  219. #define EOS 258
  220. #define BAD 259
  221. #define HELP 260
  222. #define HEX 261
  223. #define DECIMAL 262
  224. #define QUIT 263
  225. #define ABS 264
  226. #define BIN 265
  227. #define FIB 266
  228. #define GCD 267
  229. #define KRON 268
  230. #define LCM 269
  231. #define LUCNUM 270
  232. #define NEXTPRIME 271
  233. #define POWM 272
  234. #define ROOT 273
  235. #define SQRT 274
  236. #define NUMBER 275
  237. #define VARIABLE 276
  238. #define LOR 277
  239. #define LAND 278
  240. #define GE 279
  241. #define LE 280
  242. #define NE 281
  243. #define EQ 282
  244. #define RSHIFT 283
  245. #define LSHIFT 284
  246. #define UMINUS 285
  247. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  248. typedef union YYSTYPE
  249. {
  250. /* Line 214 of yacc.c  */
  251. #line 142 "calc.y"
  252.   char  *str;
  253.   int   var;
  254. /* Line 214 of yacc.c  */
  255. #line 318 "calc.c"
  256. } YYSTYPE;
  257. # define YYSTYPE_IS_TRIVIAL 1
  258. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  259. # define YYSTYPE_IS_DECLARED 1
  260. #endif
  261. /* Copy the second part of user declarations.  */
  262. /* Line 264 of yacc.c  */
  263. #line 330 "calc.c"
  264. #ifdef short
  265. # undef short
  266. #endif
  267. #ifdef YYTYPE_UINT8
  268. typedef YYTYPE_UINT8 yytype_uint8;
  269. #else
  270. typedef unsigned char yytype_uint8;
  271. #endif
  272. #ifdef YYTYPE_INT8
  273. typedef YYTYPE_INT8 yytype_int8;
  274. #elif (defined __STDC__ || defined __C99__FUNC__ 
  275.      || defined __cplusplus || defined _MSC_VER)
  276. typedef signed char yytype_int8;
  277. #else
  278. typedef short int yytype_int8;
  279. #endif
  280. #ifdef YYTYPE_UINT16
  281. typedef YYTYPE_UINT16 yytype_uint16;
  282. #else
  283. typedef unsigned short int yytype_uint16;
  284. #endif
  285. #ifdef YYTYPE_INT16
  286. typedef YYTYPE_INT16 yytype_int16;
  287. #else
  288. typedef short int yytype_int16;
  289. #endif
  290. #ifndef YYSIZE_T
  291. # ifdef __SIZE_TYPE__
  292. #  define YYSIZE_T __SIZE_TYPE__
  293. # elif defined size_t
  294. #  define YYSIZE_T size_t
  295. # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ 
  296.      || defined __cplusplus || defined _MSC_VER)
  297. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  298. #  define YYSIZE_T size_t
  299. # else
  300. #  define YYSIZE_T unsigned int
  301. # endif
  302. #endif
  303. #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
  304. #ifndef YY_
  305. # if YYENABLE_NLS
  306. #  if ENABLE_NLS
  307. #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
  308. #   define YY_(msgid) dgettext ("bison-runtime", msgid)
  309. #  endif
  310. # endif
  311. # ifndef YY_
  312. #  define YY_(msgid) msgid
  313. # endif
  314. #endif
  315. /* Suppress unused-variable warnings by "using" E.  */
  316. #if ! defined lint || defined __GNUC__
  317. # define YYUSE(e) ((void) (e))
  318. #else
  319. # define YYUSE(e) /* empty */
  320. #endif
  321. /* Identity function, used to suppress warnings about constant conditions.  */
  322. #ifndef lint
  323. # define YYID(n) (n)
  324. #else
  325. #if (defined __STDC__ || defined __C99__FUNC__ 
  326.      || defined __cplusplus || defined _MSC_VER)
  327. static int
  328. YYID (int yyi)
  329. #else
  330. static int
  331. YYID (yyi)
  332.     int yyi;
  333. #endif
  334. {
  335.   return yyi;
  336. }
  337. #endif
  338. #if ! defined yyoverflow || YYERROR_VERBOSE
  339. /* The parser invokes alloca or malloc; define the necessary symbols.  */
  340. # ifdef YYSTACK_USE_ALLOCA
  341. #  if YYSTACK_USE_ALLOCA
  342. #   ifdef __GNUC__
  343. #    define YYSTACK_ALLOC __builtin_alloca
  344. #   elif defined __BUILTIN_VA_ARG_INCR
  345. #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
  346. #   elif defined _AIX
  347. #    define YYSTACK_ALLOC __alloca
  348. #   elif defined _MSC_VER
  349. #    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
  350. #    define alloca _alloca
  351. #   else
  352. #    define YYSTACK_ALLOC alloca
  353. #    if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ 
  354.      || defined __cplusplus || defined _MSC_VER)
  355. #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  356. #     ifndef _STDLIB_H
  357. #      define _STDLIB_H 1
  358. #     endif
  359. #    endif
  360. #   endif
  361. #  endif
  362. # endif
  363. # ifdef YYSTACK_ALLOC
  364.    /* Pacify GCC's `empty if-body' warning.  */
  365. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
  366. #  ifndef YYSTACK_ALLOC_MAXIMUM
  367.     /* The OS might guarantee only one guard page at the bottom of the stack,
  368.        and a page size can be as small as 4096 bytes.  So we cannot safely
  369.        invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
  370.        to allow for a few compiler-allocated temporary stack slots.  */
  371. #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
  372. #  endif
  373. # else
  374. #  define YYSTACK_ALLOC YYMALLOC
  375. #  define YYSTACK_FREE YYFREE
  376. #  ifndef YYSTACK_ALLOC_MAXIMUM
  377. #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
  378. #  endif
  379. #  if (defined __cplusplus && ! defined _STDLIB_H 
  380.        && ! ((defined YYMALLOC || defined malloc) 
  381.      && (defined YYFREE || defined free)))
  382. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  383. #   ifndef _STDLIB_H
  384. #    define _STDLIB_H 1
  385. #   endif
  386. #  endif
  387. #  ifndef YYMALLOC
  388. #   define YYMALLOC malloc
  389. #   if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ 
  390.      || defined __cplusplus || defined _MSC_VER)
  391. void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
  392. #   endif
  393. #  endif
  394. #  ifndef YYFREE
  395. #   define YYFREE free
  396. #   if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ 
  397.      || defined __cplusplus || defined _MSC_VER)
  398. void free (void *); /* INFRINGES ON USER NAME SPACE */
  399. #   endif
  400. #  endif
  401. # endif
  402. #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
  403. #if (! defined yyoverflow 
  404.      && (! defined __cplusplus 
  405.  || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
  406. /* A type that is properly aligned for any stack member.  */
  407. union yyalloc
  408. {
  409.   yytype_int16 yyss_alloc;
  410.   YYSTYPE yyvs_alloc;
  411. };
  412. /* The size of the maximum gap between one aligned stack and the next.  */
  413. # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
  414. /* The size of an array large to enough to hold all stacks, each with
  415.    N elements.  */
  416. # define YYSTACK_BYTES(N) 
  417.      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) 
  418.       + YYSTACK_GAP_MAXIMUM)
  419. /* Copy COUNT objects from FROM to TO.  The source and destination do
  420.    not overlap.  */
  421. # ifndef YYCOPY
  422. #  if defined __GNUC__ && 1 < __GNUC__
  423. #   define YYCOPY(To, From, Count) 
  424.       __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
  425. #  else
  426. #   define YYCOPY(To, From, Count)
  427.       do
  428. {
  429.   YYSIZE_T yyi;
  430.   for (yyi = 0; yyi < (Count); yyi++)
  431.     (To)[yyi] = (From)[yyi];
  432. }
  433.       while (YYID (0))
  434. #  endif
  435. # endif
  436. /* Relocate STACK from its old location to the new one.  The
  437.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  438.    elements in the stack, and YYPTR gives the new location of the
  439.    stack.  Advance YYPTR to a properly aligned location for the next
  440.    stack.  */
  441. # define YYSTACK_RELOCATE(Stack_alloc, Stack)
  442.     do
  443.       {
  444. YYSIZE_T yynewbytes;
  445. YYCOPY (&yyptr->Stack_alloc, Stack, yysize);
  446. Stack = &yyptr->Stack_alloc;
  447. yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; 
  448. yyptr += yynewbytes / sizeof (*yyptr);
  449.       }
  450.     while (YYID (0))
  451. #endif
  452. /* YYFINAL -- State number of the termination state.  */
  453. #define YYFINAL  41
  454. /* YYLAST -- Last index in YYTABLE.  */
  455. #define YYLAST   552
  456. /* YYNTOKENS -- Number of terminals.  */
  457. #define YYNTOKENS  44
  458. /* YYNNTS -- Number of nonterminals.  */
  459. #define YYNNTS  7
  460. /* YYNRULES -- Number of rules.  */
  461. #define YYNRULES  49
  462. /* YYNRULES -- Number of states.  */
  463. #define YYNSTATES  118
  464. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  465. #define YYUNDEFTOK  2
  466. #define YYMAXUTOK   285
  467. #define YYTRANSLATE(YYX)
  468.   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
  469. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  470. static const yytype_uint8 yytranslate[] =
  471. {
  472.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  473.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  474.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  475.        2,     2,     2,    39,     2,     2,     2,    36,     2,     2,
  476.       41,    42,    34,    32,    43,    33,     2,    35,     2,     2,
  477.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  478.       24,    40,    25,     2,     2,     2,     2,     2,     2,     2,
  479.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  480.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  481.        2,     2,     2,     2,    38,     2,     2,     2,     2,     2,
  482.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  483.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  484.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  485.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  486.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  487.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  488.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  489.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  490.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  491.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  492.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  493.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  494.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  495.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  496.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  497.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  498.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  499.       15,    16,    17,    18,    19,    20,    21,    22,    23,    26,
  500.       27,    28,    29,    30,    31,    37
  501. };
  502. #if YYDEBUG
  503. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  504.    YYRHS.  */
  505. static const yytype_uint8 yyprhs[] =
  506. {
  507.        0,     0,     3,     5,     8,    11,    15,    18,    19,    21,
  508.       25,    27,    29,    31,    33,    37,    41,    45,    49,    53,
  509.       57,    61,    65,    69,    72,    75,    79,    83,    87,    91,
  510.       95,    99,   103,   107,   112,   119,   124,   129,   136,   141,
  511.      146,   151,   160,   167,   172,   174,   176,   178,   182,   184
  512. };
  513. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  514. static const yytype_int8 yyrhs[] =
  515. {
  516.       45,     0,    -1,    47,    -1,    46,    47,    -1,    47,     3,
  517.       -1,    46,    47,     3,    -1,     1,     3,    -1,    -1,    48,
  518.       -1,    21,    40,    48,    -1,     5,    -1,     6,    -1,     7,
  519.       -1,     8,    -1,    41,    48,    42,    -1,    48,    32,    48,
  520.       -1,    48,    33,    48,    -1,    48,    34,    48,    -1,    48,
  521.       35,    48,    -1,    48,    36,    48,    -1,    48,    38,    48,
  522.       -1,    48,    31,    48,    -1,    48,    30,    48,    -1,    48,
  523.       39,    -1,    33,    48,    -1,    48,    24,    48,    -1,    48,
  524.       27,    48,    -1,    48,    29,    48,    -1,    48,    28,    48,
  525.       -1,    48,    26,    48,    -1,    48,    25,    48,    -1,    48,
  526.       23,    48,    -1,    48,    22,    48,    -1,     9,    41,    48,
  527.       42,    -1,    10,    41,    48,    43,    48,    42,    -1,    11,
  528.       41,    48,    42,    -1,    12,    41,    49,    42,    -1,    13,
  529.       41,    48,    43,    48,    42,    -1,    14,    41,    50,    42,
  530.       -1,    15,    41,    48,    42,    -1,    16,    41,    48,    42,
  531.       -1,    17,    41,    48,    43,    48,    43,    48,    42,    -1,
  532.       18,    41,    48,    43,    48,    42,    -1,    19,    41,    48,
  533.       42,    -1,    21,    -1,    20,    -1,    48,    -1,    49,    43,
  534.       48,    -1,    48,    -1,    50,    43,    48,    -1
  535. };
  536. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  537. static const yytype_uint16 yyrline[] =
  538. {
  539.        0,   167,   167,   168,   171,   172,   173,   175,   177,   182,
  540.      188,   189,   190,   191,   197,   198,   199,   200,   201,   202,
  541.      203,   205,   207,   209,   211,   213,   214,   215,   216,   217,
  542.      218,   220,   221,   223,   224,   226,   228,   229,   231,   232,
  543.      234,   235,   236,   238,   240,   246,   257,   258,   261,   262
  544. };
  545. #endif
  546. #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
  547. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  548.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  549. static const char *const yytname[] =
  550. {
  551.   "$end", "error", "$undefined", "EOS", "BAD", "HELP", "HEX", "DECIMAL",
  552.   "QUIT", "ABS", "BIN", "FIB", "GCD", "KRON", "LCM", "LUCNUM", "NEXTPRIME",
  553.   "POWM", "ROOT", "SQRT", "NUMBER", "VARIABLE", "LOR", "LAND", "'<'",
  554.   "'>'", "GE", "LE", "NE", "EQ", "RSHIFT", "LSHIFT", "'+'", "'-'", "'*'",
  555.   "'/'", "'%'", "UMINUS", "'^'", "'!'", "'='", "'('", "')'", "','",
  556.   "$accept", "top", "statements", "statement", "e", "gcdlist", "lcmlist", 0
  557. };
  558. #endif
  559. # ifdef YYPRINT
  560. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  561.    token YYLEX-NUM.  */
  562. static const yytype_uint16 yytoknum[] =
  563. {
  564.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  565.      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
  566.      275,   276,   277,   278,    60,    62,   279,   280,   281,   282,
  567.      283,   284,    43,    45,    42,    47,    37,   285,    94,    33,
  568.       61,    40,    41,    44
  569. };
  570. # endif
  571. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  572. static const yytype_uint8 yyr1[] =
  573. {
  574.        0,    44,    45,    45,    46,    46,    46,    47,    47,    47,
  575.       47,    47,    47,    47,    48,    48,    48,    48,    48,    48,
  576.       48,    48,    48,    48,    48,    48,    48,    48,    48,    48,
  577.       48,    48,    48,    48,    48,    48,    48,    48,    48,    48,
  578.       48,    48,    48,    48,    48,    48,    49,    49,    50,    50
  579. };
  580. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  581. static const yytype_uint8 yyr2[] =
  582. {
  583.        0,     2,     1,     2,     2,     3,     2,     0,     1,     3,
  584.        1,     1,     1,     1,     3,     3,     3,     3,     3,     3,
  585.        3,     3,     3,     2,     2,     3,     3,     3,     3,     3,
  586.        3,     3,     3,     4,     6,     4,     4,     6,     4,     4,
  587.        4,     8,     6,     4,     1,     1,     1,     3,     1,     3
  588. };
  589. /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
  590.    STATE-NUM when YYTABLE doesn't specify something else to do.  Zero
  591.    means the default is an error.  */
  592. static const yytype_uint8 yydefact[] =
  593. {
  594.        0,     0,    10,    11,    12,    13,     0,     0,     0,     0,
  595.        0,     0,     0,     0,     0,     0,     0,    45,    44,     0,
  596.        0,     0,     7,     2,     8,     6,     0,     0,     0,     0,
  597.        0,     0,     0,     0,     0,     0,     0,     0,    44,    24,
  598.        0,     1,     3,     4,     0,     0,     0,     0,     0,     0,
  599.        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  600.       23,     0,     0,     0,    46,     0,     0,    48,     0,     0,
  601.        0,     0,     0,     0,     9,    14,     5,    32,    31,    25,
  602.       30,    29,    26,    28,    27,    22,    21,    15,    16,    17,
  603.       18,    19,    20,    33,     0,    35,    36,     0,     0,    38,
  604.        0,    39,    40,     0,     0,    43,     0,    47,     0,    49,
  605.        0,     0,    34,    37,     0,    42,     0,    41
  606. };
  607. /* YYDEFGOTO[NTERM-NUM].  */
  608. static const yytype_int8 yydefgoto[] =
  609. {
  610.       -1,    21,    22,    23,    24,    65,    68
  611. };
  612. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  613.    STATE-NUM.  */
  614. #define YYPACT_NINF -39
  615. static const yytype_int16 yypact[] =
  616. {
  617.       41,     3,   -39,   -39,   -39,   -39,     2,     4,    27,    32,
  618.       35,    36,    39,    42,    45,    46,    47,   -39,   -18,   124,
  619.      124,    89,    91,    87,   464,   -39,   124,   124,   124,   124,
  620.      124,   124,   124,   124,   124,   124,   124,   124,   -39,   -36,
  621.      254,   -39,    88,   -39,   124,   124,   124,   124,   124,   124,
  622.      124,   124,   124,   124,   124,   124,   124,   124,   124,   124,
  623.      -39,   275,   144,   296,   464,   -38,   166,   464,    29,   317,
  624.      338,   188,   210,   359,   464,   -39,   -39,   481,   497,   513,
  625.      513,   513,   513,   513,   513,    31,    31,   -15,   -15,   -36,
  626.      -36,   -36,   -36,   -39,   124,   -39,   -39,   124,   124,   -39,
  627.      124,   -39,   -39,   124,   124,   -39,   380,   464,   401,   464,
  628.      232,   422,   -39,   -39,   124,   -39,   443,   -39
  629. };
  630. /* YYPGOTO[NTERM-NUM].  */
  631. static const yytype_int8 yypgoto[] =
  632. {
  633.      -39,   -39,   -39,    70,   -19,   -39,   -39
  634. };
  635. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  636.    positive, shift that token.  If negative, reduce the rule which
  637.    number is the opposite.  If zero, do what YYDEFACT says.
  638.    If YYTABLE_NINF, syntax error.  */
  639. #define YYTABLE_NINF -8
  640. static const yytype_int8 yytable[] =
  641. {
  642.       39,    40,    59,    60,    96,    97,    25,    61,    62,    63,
  643.       64,    66,    67,    69,    70,    71,    72,    73,    74,    56,
  644.       57,    58,    37,    59,    60,    77,    78,    79,    80,    81,
  645.       82,    83,    84,    85,    86,    87,    88,    89,    90,    91,
  646.       92,    -7,     1,    26,    -7,    27,     2,     3,     4,     5,
  647.        6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  648.       16,    17,    18,    54,    55,    56,    57,    58,    28,    59,
  649.       60,    99,   100,    29,    19,   106,    30,    31,   107,   108,
  650.       32,   109,    20,    33,   110,   111,    34,    35,    36,    41,
  651.       43,    76,    42,     0,     0,   116,     2,     3,     4,     5,
  652.        6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  653.       16,    17,    18,     0,     0,     0,     0,     0,     0,     0,
  654.        0,     0,     0,     0,    19,     0,     0,     0,     0,     0,
  655.        0,     0,    20,     6,     7,     8,     9,    10,    11,    12,
  656.       13,    14,    15,    16,    17,    38,     0,     0,     0,     0,
  657.        0,     0,     0,     0,     0,     0,     0,    19,     0,     0,
  658.        0,     0,     0,     0,     0,    20,    44,    45,    46,    47,
  659.       48,    49,    50,    51,    52,    53,    54,    55,    56,    57,
  660.       58,     0,    59,    60,     0,     0,     0,    94,    44,    45,
  661.       46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
  662.       56,    57,    58,     0,    59,    60,     0,     0,     0,    98,
  663.       44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
  664.       54,    55,    56,    57,    58,     0,    59,    60,     0,     0,
  665.        0,   103,    44,    45,    46,    47,    48,    49,    50,    51,
  666.       52,    53,    54,    55,    56,    57,    58,     0,    59,    60,
  667.        0,     0,     0,   104,    44,    45,    46,    47,    48,    49,
  668.       50,    51,    52,    53,    54,    55,    56,    57,    58,     0,
  669.       59,    60,     0,     0,     0,   114,    44,    45,    46,    47,
  670.       48,    49,    50,    51,    52,    53,    54,    55,    56,    57,
  671.       58,     0,    59,    60,     0,     0,    75,    44,    45,    46,
  672.       47,    48,    49,    50,    51,    52,    53,    54,    55,    56,
  673.       57,    58,     0,    59,    60,     0,     0,    93,    44,    45,
  674.       46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
  675.       56,    57,    58,     0,    59,    60,     0,     0,    95,    44,
  676.       45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
  677.       55,    56,    57,    58,     0,    59,    60,     0,     0,   101,
  678.       44,    45,    46,    47,    48,    49,    50,    51,    52,    53,
  679.       54,    55,    56,    57,    58,     0,    59,    60,     0,     0,
  680.      102,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  681.       53,    54,    55,    56,    57,    58,     0,    59,    60,     0,
  682.        0,   105,    44,    45,    46,    47,    48,    49,    50,    51,
  683.       52,    53,    54,    55,    56,    57,    58,     0,    59,    60,
  684.        0,     0,   112,    44,    45,    46,    47,    48,    49,    50,
  685.       51,    52,    53,    54,    55,    56,    57,    58,     0,    59,
  686.       60,     0,     0,   113,    44,    45,    46,    47,    48,    49,
  687.       50,    51,    52,    53,    54,    55,    56,    57,    58,     0,
  688.       59,    60,     0,     0,   115,    44,    45,    46,    47,    48,
  689.       49,    50,    51,    52,    53,    54,    55,    56,    57,    58,
  690.        0,    59,    60,     0,     0,   117,    44,    45,    46,    47,
  691.       48,    49,    50,    51,    52,    53,    54,    55,    56,    57,
  692.       58,     0,    59,    60,    45,    46,    47,    48,    49,    50,
  693.       51,    52,    53,    54,    55,    56,    57,    58,     0,    59,
  694.       60,    46,    47,    48,    49,    50,    51,    52,    53,    54,
  695.       55,    56,    57,    58,     0,    59,    60,    -8,    -8,    -8,
  696.       -8,    -8,    -8,    52,    53,    54,    55,    56,    57,    58,
  697.        0,    59,    60
  698. };
  699. static const yytype_int8 yycheck[] =
  700. {
  701.       19,    20,    38,    39,    42,    43,     3,    26,    27,    28,
  702.       29,    30,    31,    32,    33,    34,    35,    36,    37,    34,
  703.       35,    36,    40,    38,    39,    44,    45,    46,    47,    48,
  704.       49,    50,    51,    52,    53,    54,    55,    56,    57,    58,
  705.       59,     0,     1,    41,     3,    41,     5,     6,     7,     8,
  706.        9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
  707.       19,    20,    21,    32,    33,    34,    35,    36,    41,    38,
  708.       39,    42,    43,    41,    33,    94,    41,    41,    97,    98,
  709.       41,   100,    41,    41,   103,   104,    41,    41,    41,     0,
  710.        3,     3,    22,    -1,    -1,   114,     5,     6,     7,     8,
  711.        9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
  712.       19,    20,    21,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  713.       -1,    -1,    -1,    -1,    33,    -1,    -1,    -1,    -1,    -1,
  714.       -1,    -1,    41,     9,    10,    11,    12,    13,    14,    15,
  715.       16,    17,    18,    19,    20,    21,    -1,    -1,    -1,    -1,
  716.       -1,    -1,    -1,    -1,    -1,    -1,    -1,    33,    -1,    -1,
  717.       -1,    -1,    -1,    -1,    -1,    41,    22,    23,    24,    25,
  718.       26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  719.       36,    -1,    38,    39,    -1,    -1,    -1,    43,    22,    23,
  720.       24,    25,    26,    27,    28,    29,    30,    31,    32,    33,
  721.       34,    35,    36,    -1,    38,    39,    -1,    -1,    -1,    43,
  722.       22,    23,    24,    25,    26,    27,    28,    29,    30,    31,
  723.       32,    33,    34,    35,    36,    -1,    38,    39,    -1,    -1,
  724.       -1,    43,    22,    23,    24,    25,    26,    27,    28,    29,
  725.       30,    31,    32,    33,    34,    35,    36,    -1,    38,    39,
  726.       -1,    -1,    -1,    43,    22,    23,    24,    25,    26,    27,
  727.       28,    29,    30,    31,    32,    33,    34,    35,    36,    -1,
  728.       38,    39,    -1,    -1,    -1,    43,    22,    23,    24,    25,
  729.       26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  730.       36,    -1,    38,    39,    -1,    -1,    42,    22,    23,    24,
  731.       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
  732.       35,    36,    -1,    38,    39,    -1,    -1,    42,    22,    23,
  733.       24,    25,    26,    27,    28,    29,    30,    31,    32,    33,
  734.       34,    35,    36,    -1,    38,    39,    -1,    -1,    42,    22,
  735.       23,    24,    25,    26,    27,    28,    29,    30,    31,    32,
  736.       33,    34,    35,    36,    -1,    38,    39,    -1,    -1,    42,
  737.       22,    23,    24,    25,    26,    27,    28,    29,    30,    31,
  738.       32,    33,    34,    35,    36,    -1,    38,    39,    -1,    -1,
  739.       42,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  740.       31,    32,    33,    34,    35,    36,    -1,    38,    39,    -1,
  741.       -1,    42,    22,    23,    24,    25,    26,    27,    28,    29,
  742.       30,    31,    32,    33,    34,    35,    36,    -1,    38,    39,
  743.       -1,    -1,    42,    22,    23,    24,    25,    26,    27,    28,
  744.       29,    30,    31,    32,    33,    34,    35,    36,    -1,    38,
  745.       39,    -1,    -1,    42,    22,    23,    24,    25,    26,    27,
  746.       28,    29,    30,    31,    32,    33,    34,    35,    36,    -1,
  747.       38,    39,    -1,    -1,    42,    22,    23,    24,    25,    26,
  748.       27,    28,    29,    30,    31,    32,    33,    34,    35,    36,
  749.       -1,    38,    39,    -1,    -1,    42,    22,    23,    24,    25,
  750.       26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  751.       36,    -1,    38,    39,    23,    24,    25,    26,    27,    28,
  752.       29,    30,    31,    32,    33,    34,    35,    36,    -1,    38,
  753.       39,    24,    25,    26,    27,    28,    29,    30,    31,    32,
  754.       33,    34,    35,    36,    -1,    38,    39,    24,    25,    26,
  755.       27,    28,    29,    30,    31,    32,    33,    34,    35,    36,
  756.       -1,    38,    39
  757. };
  758. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  759.    symbol of state STATE-NUM.  */
  760. static const yytype_uint8 yystos[] =
  761. {
  762.        0,     1,     5,     6,     7,     8,     9,    10,    11,    12,
  763.       13,    14,    15,    16,    17,    18,    19,    20,    21,    33,
  764.       41,    45,    46,    47,    48,     3,    41,    41,    41,    41,
  765.       41,    41,    41,    41,    41,    41,    41,    40,    21,    48,
  766.       48,     0,    47,     3,    22,    23,    24,    25,    26,    27,
  767.       28,    29,    30,    31,    32,    33,    34,    35,    36,    38,
  768.       39,    48,    48,    48,    48,    49,    48,    48,    50,    48,
  769.       48,    48,    48,    48,    48,    42,     3,    48,    48,    48,
  770.       48,    48,    48,    48,    48,    48,    48,    48,    48,    48,
  771.       48,    48,    48,    42,    43,    42,    42,    43,    43,    42,
  772.       43,    42,    42,    43,    43,    42,    48,    48,    48,    48,
  773.       48,    48,    42,    42,    43,    42,    48,    42
  774. };
  775. #define yyerrok (yyerrstatus = 0)
  776. #define yyclearin (yychar = YYEMPTY)
  777. #define YYEMPTY (-2)
  778. #define YYEOF 0
  779. #define YYACCEPT goto yyacceptlab
  780. #define YYABORT goto yyabortlab
  781. #define YYERROR goto yyerrorlab
  782. /* Like YYERROR except do call yyerror.  This remains here temporarily
  783.    to ease the transition to the new meaning of YYERROR, for GCC.
  784.    Once GCC version 2 has supplanted version 1, this can go.  */
  785. #define YYFAIL goto yyerrlab
  786. #define YYRECOVERING()  (!!yyerrstatus)
  787. #define YYBACKUP(Token, Value)
  788. do
  789.   if (yychar == YYEMPTY && yylen == 1)
  790.     {
  791.       yychar = (Token);
  792.       yylval = (Value);
  793.       yytoken = YYTRANSLATE (yychar);
  794.       YYPOPSTACK (1);
  795.       goto yybackup;
  796.     }
  797.   else
  798.     {
  799.       yyerror (YY_("syntax error: cannot back up")); 
  800.       YYERROR;
  801.     }
  802. while (YYID (0))
  803. #define YYTERROR 1
  804. #define YYERRCODE 256
  805. /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
  806.    If N is 0, then set CURRENT to the empty location which ends
  807.    the previous symbol: RHS[0] (always defined).  */
  808. #define YYRHSLOC(Rhs, K) ((Rhs)[K])
  809. #ifndef YYLLOC_DEFAULT
  810. # define YYLLOC_DEFAULT(Current, Rhs, N)
  811.     do
  812.       if (YYID (N))                                                    
  813. {
  814.   (Current).first_line   = YYRHSLOC (Rhs, 1).first_line;
  815.   (Current).first_column = YYRHSLOC (Rhs, 1).first_column;
  816.   (Current).last_line    = YYRHSLOC (Rhs, N).last_line;
  817.   (Current).last_column  = YYRHSLOC (Rhs, N).last_column;
  818. }
  819.       else
  820. {
  821.   (Current).first_line   = (Current).last_line   =
  822.     YYRHSLOC (Rhs, 0).last_line;
  823.   (Current).first_column = (Current).last_column =
  824.     YYRHSLOC (Rhs, 0).last_column;
  825. }
  826.     while (YYID (0))
  827. #endif
  828. /* YY_LOCATION_PRINT -- Print the location on the stream.
  829.    This macro was not mandated originally: define only if we know
  830.    we won't break user code: when these are the locations we know.  */
  831. #ifndef YY_LOCATION_PRINT
  832. # if YYLTYPE_IS_TRIVIAL
  833. #  define YY_LOCATION_PRINT(File, Loc)
  834.      fprintf (File, "%d.%d-%d.%d",
  835.       (Loc).first_line, (Loc).first_column,
  836.       (Loc).last_line,  (Loc).last_column)
  837. # else
  838. #  define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  839. # endif
  840. #endif
  841. /* YYLEX -- calling `yylex' with the right arguments.  */
  842. #ifdef YYLEX_PARAM
  843. # define YYLEX yylex (YYLEX_PARAM)
  844. #else
  845. # define YYLEX yylex ()
  846. #endif
  847. /* Enable debugging if requested.  */
  848. #if YYDEBUG
  849. # ifndef YYFPRINTF
  850. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  851. #  define YYFPRINTF fprintf
  852. # endif
  853. # define YYDPRINTF(Args)
  854. do {
  855.   if (yydebug)
  856.     YYFPRINTF Args;
  857. } while (YYID (0))
  858. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)   
  859. do {   
  860.   if (yydebug)   
  861.     {   
  862.       YYFPRINTF (stderr, "%s ", Title);   
  863.       yy_symbol_print (stderr,   
  864.   Type, Value); 
  865.       YYFPRINTF (stderr, "n");   
  866.     }   
  867. } while (YYID (0))
  868. /*--------------------------------.
  869. | Print this symbol on YYOUTPUT.  |
  870. `--------------------------------*/
  871. /*ARGSUSED*/
  872. #if (defined __STDC__ || defined __C99__FUNC__ 
  873.      || defined __cplusplus || defined _MSC_VER)
  874. static void
  875. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  876. #else
  877. static void
  878. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  879.     FILE *yyoutput;
  880.     int yytype;
  881.     YYSTYPE const * const yyvaluep;
  882. #endif
  883. {
  884.   if (!yyvaluep)
  885.     return;
  886. # ifdef YYPRINT
  887.   if (yytype < YYNTOKENS)
  888.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  889. # else
  890.   YYUSE (yyoutput);
  891. # endif
  892.   switch (yytype)
  893.     {
  894.       default:
  895. break;
  896.     }
  897. }
  898. /*--------------------------------.
  899. | Print this symbol on YYOUTPUT.  |
  900. `--------------------------------*/
  901. #if (defined __STDC__ || defined __C99__FUNC__ 
  902.      || defined __cplusplus || defined _MSC_VER)
  903. static void
  904. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  905. #else
  906. static void
  907. yy_symbol_print (yyoutput, yytype, yyvaluep)
  908.     FILE *yyoutput;
  909.     int yytype;
  910.     YYSTYPE const * const yyvaluep;
  911. #endif
  912. {
  913.   if (yytype < YYNTOKENS)
  914.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  915.   else
  916.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
  917.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  918.   YYFPRINTF (yyoutput, ")");
  919. }
  920. /*------------------------------------------------------------------.
  921. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  922. | TOP (included).                                                   |
  923. `------------------------------------------------------------------*/
  924. #if (defined __STDC__ || defined __C99__FUNC__ 
  925.      || defined __cplusplus || defined _MSC_VER)
  926. static void
  927. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  928. #else
  929. static void
  930. yy_stack_print (yybottom, yytop)
  931.     yytype_int16 *yybottom;
  932.     yytype_int16 *yytop;
  933. #endif
  934. {
  935.   YYFPRINTF (stderr, "Stack now");
  936.   for (; yybottom <= yytop; yybottom++)
  937.     {
  938.       int yybot = *yybottom;
  939.       YYFPRINTF (stderr, " %d", yybot);
  940.     }
  941.   YYFPRINTF (stderr, "n");
  942. }
  943. # define YY_STACK_PRINT(Bottom, Top)
  944. do {
  945.   if (yydebug)
  946.     yy_stack_print ((Bottom), (Top));
  947. } while (YYID (0))
  948. /*------------------------------------------------.
  949. | Report that the YYRULE is going to be reduced.  |
  950. `------------------------------------------------*/
  951. #if (defined __STDC__ || defined __C99__FUNC__ 
  952.      || defined __cplusplus || defined _MSC_VER)
  953. static void
  954. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  955. #else
  956. static void
  957. yy_reduce_print (yyvsp, yyrule)
  958.     YYSTYPE *yyvsp;
  959.     int yyrule;
  960. #endif
  961. {
  962.   int yynrhs = yyr2[yyrule];
  963.   int yyi;
  964.   unsigned long int yylno = yyrline[yyrule];
  965.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):n",
  966.      yyrule - 1, yylno);
  967.   /* The symbols being reduced.  */
  968.   for (yyi = 0; yyi < yynrhs; yyi++)
  969.     {
  970.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  971.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  972.        &(yyvsp[(yyi + 1) - (yynrhs)])
  973.                );
  974.       YYFPRINTF (stderr, "n");
  975.     }
  976. }
  977. # define YY_REDUCE_PRINT(Rule)
  978. do {
  979.   if (yydebug)
  980.     yy_reduce_print (yyvsp, Rule); 
  981. } while (YYID (0))
  982. /* Nonzero means print parse trace.  It is left uninitialized so that
  983.    multiple parsers can coexist.  */
  984. int yydebug;
  985. #else /* !YYDEBUG */
  986. # define YYDPRINTF(Args)
  987. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  988. # define YY_STACK_PRINT(Bottom, Top)
  989. # define YY_REDUCE_PRINT(Rule)
  990. #endif /* !YYDEBUG */
  991. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  992. #ifndef YYINITDEPTH
  993. # define YYINITDEPTH 200
  994. #endif
  995. /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
  996.    if the built-in stack extension method is used).
  997.    Do not make this value too large; the results are undefined if
  998.    YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
  999.    evaluated with infinite-precision integer arithmetic.  */
  1000. #ifndef YYMAXDEPTH
  1001. # define YYMAXDEPTH 10000
  1002. #endif
  1003. #if YYERROR_VERBOSE
  1004. # ifndef yystrlen
  1005. #  if defined __GLIBC__ && defined _STRING_H
  1006. #   define yystrlen strlen
  1007. #  else
  1008. /* Return the length of YYSTR.  */
  1009. #if (defined __STDC__ || defined __C99__FUNC__ 
  1010.      || defined __cplusplus || defined _MSC_VER)
  1011. static YYSIZE_T
  1012. yystrlen (const char *yystr)
  1013. #else
  1014. static YYSIZE_T
  1015. yystrlen (yystr)
  1016.     const char *yystr;
  1017. #endif
  1018. {
  1019.   YYSIZE_T yylen;
  1020.   for (yylen = 0; yystr[yylen]; yylen++)
  1021.     continue;
  1022.   return yylen;
  1023. }
  1024. #  endif
  1025. # endif
  1026. # ifndef yystpcpy
  1027. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1028. #   define yystpcpy stpcpy
  1029. #  else
  1030. /* Copy YYSRC to YYDEST, returning the address of the terminating '' in
  1031.    YYDEST.  */
  1032. #if (defined __STDC__ || defined __C99__FUNC__ 
  1033.      || defined __cplusplus || defined _MSC_VER)
  1034. static char *
  1035. yystpcpy (char *yydest, const char *yysrc)
  1036. #else
  1037. static char *
  1038. yystpcpy (yydest, yysrc)
  1039.     char *yydest;
  1040.     const char *yysrc;
  1041. #endif
  1042. {
  1043.   char *yyd = yydest;
  1044.   const char *yys = yysrc;
  1045.   while ((*yyd++ = *yys++) != '')
  1046.     continue;
  1047.   return yyd - 1;
  1048. }
  1049. #  endif
  1050. # endif
  1051. # ifndef yytnamerr
  1052. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1053.    quotes and backslashes, so that it's suitable for yyerror.  The
  1054.    heuristic is that double-quoting is unnecessary unless the string
  1055.    contains an apostrophe, a comma, or backslash (other than
  1056.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1057.    null, do not copy; instead, return the length of what the result
  1058.    would have been.  */
  1059. static YYSIZE_T
  1060. yytnamerr (char *yyres, const char *yystr)
  1061. {
  1062.   if (*yystr == '"')
  1063.     {
  1064.       YYSIZE_T yyn = 0;
  1065.       char const *yyp = yystr;
  1066.       for (;;)
  1067. switch (*++yyp)
  1068.   {
  1069.   case ''':
  1070.   case ',':
  1071.     goto do_not_strip_quotes;
  1072.   case '\':
  1073.     if (*++yyp != '\')
  1074.       goto do_not_strip_quotes;
  1075.     /* Fall through.  */
  1076.   default:
  1077.     if (yyres)
  1078.       yyres[yyn] = *yyp;
  1079.     yyn++;
  1080.     break;
  1081.   case '"':
  1082.     if (yyres)
  1083.       yyres[yyn] = '';
  1084.     return yyn;
  1085.   }
  1086.     do_not_strip_quotes: ;
  1087.     }
  1088.   if (! yyres)
  1089.     return yystrlen (yystr);
  1090.   return yystpcpy (yyres, yystr) - yyres;
  1091. }
  1092. # endif
  1093. /* Copy into YYRESULT an error message about the unexpected token
  1094.    YYCHAR while in state YYSTATE.  Return the number of bytes copied,
  1095.    including the terminating null byte.  If YYRESULT is null, do not
  1096.    copy anything; just return the number of bytes that would be
  1097.    copied.  As a special case, return 0 if an ordinary "syntax error"
  1098.    message will do.  Return YYSIZE_MAXIMUM if overflow occurs during
  1099.    size calculation.  */
  1100. static YYSIZE_T
  1101. yysyntax_error (char *yyresult, int yystate, int yychar)
  1102. {
  1103.   int yyn = yypact[yystate];
  1104.   if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
  1105.     return 0;
  1106.   else
  1107.     {
  1108.       int yytype = YYTRANSLATE (yychar);
  1109.       YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
  1110.       YYSIZE_T yysize = yysize0;
  1111.       YYSIZE_T yysize1;
  1112.       int yysize_overflow = 0;
  1113.       enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1114.       char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1115.       int yyx;
  1116. # if 0
  1117.       /* This is so xgettext sees the translatable formats that are
  1118.  constructed on the fly.  */
  1119.       YY_("syntax error, unexpected %s");
  1120.       YY_("syntax error, unexpected %s, expecting %s");
  1121.       YY_("syntax error, unexpected %s, expecting %s or %s");
  1122.       YY_("syntax error, unexpected %s, expecting %s or %s or %s");
  1123.       YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
  1124. # endif
  1125.       char *yyfmt;
  1126.       char const *yyf;
  1127.       static char const yyunexpected[] = "syntax error, unexpected %s";
  1128.       static char const yyexpecting[] = ", expecting %s";
  1129.       static char const yyor[] = " or %s";
  1130.       char yyformat[sizeof yyunexpected
  1131.     + sizeof yyexpecting - 1
  1132.     + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
  1133.        * (sizeof yyor - 1))];
  1134.       char const *yyprefix = yyexpecting;
  1135.       /* Start YYX at -YYN if negative to avoid negative indexes in
  1136.  YYCHECK.  */
  1137.       int yyxbegin = yyn < 0 ? -yyn : 0;
  1138.       /* Stay within bounds of both yycheck and yytname.  */
  1139.       int yychecklim = YYLAST - yyn + 1;
  1140.       int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
  1141.       int yycount = 1;
  1142.       yyarg[0] = yytname[yytype];
  1143.       yyfmt = yystpcpy (yyformat, yyunexpected);
  1144.       for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1145. if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
  1146.   {
  1147.     if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1148.       {
  1149. yycount = 1;
  1150. yysize = yysize0;
  1151. yyformat[sizeof yyunexpected - 1] = '';
  1152. break;
  1153.       }
  1154.     yyarg[yycount++] = yytname[yyx];
  1155.     yysize1 = yysize + yytnamerr (0, yytname[yyx]);
  1156.     yysize_overflow |= (yysize1 < yysize);
  1157.     yysize = yysize1;
  1158.     yyfmt = yystpcpy (yyfmt, yyprefix);
  1159.     yyprefix = yyor;
  1160.   }
  1161.       yyf = YY_(yyformat);
  1162.       yysize1 = yysize + yystrlen (yyf);
  1163.       yysize_overflow |= (yysize1 < yysize);
  1164.       yysize = yysize1;
  1165.       if (yysize_overflow)
  1166. return YYSIZE_MAXIMUM;
  1167.       if (yyresult)
  1168. {
  1169.   /* Avoid sprintf, as that infringes on the user's name space.
  1170.      Don't have undefined behavior even if the translation
  1171.      produced a string with the wrong number of "%s"s.  */
  1172.   char *yyp = yyresult;
  1173.   int yyi = 0;
  1174.   while ((*yyp = *yyf) != '')
  1175.     {
  1176.       if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
  1177. {
  1178.   yyp += yytnamerr (yyp, yyarg[yyi++]);
  1179.   yyf += 2;
  1180. }
  1181.       else
  1182. {
  1183.   yyp++;
  1184.   yyf++;
  1185. }
  1186.     }
  1187. }
  1188.       return yysize;
  1189.     }
  1190. }
  1191. #endif /* YYERROR_VERBOSE */
  1192. /*-----------------------------------------------.
  1193. | Release the memory associated to this symbol.  |
  1194. `-----------------------------------------------*/
  1195. /*ARGSUSED*/
  1196. #if (defined __STDC__ || defined __C99__FUNC__ 
  1197.      || defined __cplusplus || defined _MSC_VER)
  1198. static void
  1199. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1200. #else
  1201. static void
  1202. yydestruct (yymsg, yytype, yyvaluep)
  1203.     const char *yymsg;
  1204.     int yytype;
  1205.     YYSTYPE *yyvaluep;
  1206. #endif
  1207. {
  1208.   YYUSE (yyvaluep);
  1209.   if (!yymsg)
  1210.     yymsg = "Deleting";
  1211.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
  1212.   switch (yytype)
  1213.     {
  1214.       default:
  1215. break;
  1216.     }
  1217. }
  1218. /* Prevent warnings from -Wmissing-prototypes.  */
  1219. #ifdef YYPARSE_PARAM
  1220. #if defined __STDC__ || defined __cplusplus
  1221. int yyparse (void *YYPARSE_PARAM);
  1222. #else
  1223. int yyparse ();
  1224. #endif
  1225. #else /* ! YYPARSE_PARAM */
  1226. #if defined __STDC__ || defined __cplusplus
  1227. int yyparse (void);
  1228. #else
  1229. int yyparse ();
  1230. #endif
  1231. #endif /* ! YYPARSE_PARAM */
  1232. /* The lookahead symbol.  */
  1233. int yychar;
  1234. /* The semantic value of the lookahead symbol.  */
  1235. YYSTYPE yylval;
  1236. /* Number of syntax errors so far.  */
  1237. int yynerrs;
  1238. /*-------------------------.
  1239. | yyparse or yypush_parse.  |
  1240. `-------------------------*/
  1241. #ifdef YYPARSE_PARAM
  1242. #if (defined __STDC__ || defined __C99__FUNC__ 
  1243.      || defined __cplusplus || defined _MSC_VER)
  1244. int
  1245. yyparse (void *YYPARSE_PARAM)
  1246. #else
  1247. int
  1248. yyparse (YYPARSE_PARAM)
  1249.     void *YYPARSE_PARAM;
  1250. #endif
  1251. #else /* ! YYPARSE_PARAM */
  1252. #if (defined __STDC__ || defined __C99__FUNC__ 
  1253.      || defined __cplusplus || defined _MSC_VER)
  1254. int
  1255. yyparse (void)
  1256. #else
  1257. int
  1258. yyparse ()
  1259. #endif
  1260. #endif
  1261. {
  1262.     int yystate;
  1263.     /* Number of tokens to shift before error messages enabled.  */
  1264.     int yyerrstatus;
  1265.     /* The stacks and their tools:
  1266.        `yyss': related to states.
  1267.        `yyvs': related to semantic values.
  1268.        Refer to the stacks thru separate pointers, to allow yyoverflow
  1269.        to reallocate them elsewhere.  */
  1270.     /* The state stack.  */
  1271.     yytype_int16 yyssa[YYINITDEPTH];
  1272.     yytype_int16 *yyss;
  1273.     yytype_int16 *yyssp;
  1274.     /* The semantic value stack.  */
  1275.     YYSTYPE yyvsa[YYINITDEPTH];
  1276.     YYSTYPE *yyvs;
  1277.     YYSTYPE *yyvsp;
  1278.     YYSIZE_T yystacksize;
  1279.   int yyn;
  1280.   int yyresult;
  1281.   /* Lookahead token as an internal (translated) token number.  */
  1282.   int yytoken;
  1283.   /* The variables used to return semantic value and location from the
  1284.      action routines.  */
  1285.   YYSTYPE yyval;
  1286. #if YYERROR_VERBOSE
  1287.   /* Buffer for error messages, and its allocated size.  */
  1288.   char yymsgbuf[128];
  1289.   char *yymsg = yymsgbuf;
  1290.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1291. #endif
  1292. #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))
  1293.   /* The number of symbols on the RHS of the reduced rule.
  1294.      Keep to zero when no symbol should be popped.  */
  1295.   int yylen = 0;
  1296.   yytoken = 0;
  1297.   yyss = yyssa;
  1298.   yyvs = yyvsa;
  1299.   yystacksize = YYINITDEPTH;
  1300.   YYDPRINTF ((stderr, "Starting parsen"));
  1301.   yystate = 0;
  1302.   yyerrstatus = 0;
  1303.   yynerrs = 0;
  1304.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1305.   /* Initialize stack pointers.
  1306.      Waste one element of value and location stack
  1307.      so that they stay on the same level as the state stack.
  1308.      The wasted elements are never initialized.  */
  1309.   yyssp = yyss;
  1310.   yyvsp = yyvs;
  1311.   goto yysetstate;
  1312. /*------------------------------------------------------------.
  1313. | yynewstate -- Push a new state, which is found in yystate.  |
  1314. `------------------------------------------------------------*/
  1315.  yynewstate:
  1316.   /* In all cases, when you get here, the value and location stacks
  1317.      have just been pushed.  So pushing a state here evens the stacks.  */
  1318.   yyssp++;
  1319.  yysetstate:
  1320.   *yyssp = yystate;
  1321.   if (yyss + yystacksize - 1 <= yyssp)
  1322.     {
  1323.       /* Get the current used size of the three stacks, in elements.  */
  1324.       YYSIZE_T yysize = yyssp - yyss + 1;
  1325. #ifdef yyoverflow
  1326.       {
  1327. /* Give user a chance to reallocate the stack.  Use copies of
  1328.    these so that the &'s don't force the real ones into
  1329.    memory.  */
  1330. YYSTYPE *yyvs1 = yyvs;
  1331. yytype_int16 *yyss1 = yyss;
  1332. /* Each stack pointer address is followed by the size of the
  1333.    data in use in that stack, in bytes.  This used to be a
  1334.    conditional around just the two extra args, but that might
  1335.    be undefined if yyoverflow is a macro.  */
  1336. yyoverflow (YY_("memory exhausted"),
  1337.     &yyss1, yysize * sizeof (*yyssp),
  1338.     &yyvs1, yysize * sizeof (*yyvsp),
  1339.     &yystacksize);
  1340. yyss = yyss1;
  1341. yyvs = yyvs1;
  1342.       }
  1343. #else /* no yyoverflow */
  1344. # ifndef YYSTACK_RELOCATE
  1345.       goto yyexhaustedlab;
  1346. # else
  1347.       /* Extend the stack our own way.  */
  1348.       if (YYMAXDEPTH <= yystacksize)
  1349. goto yyexhaustedlab;
  1350.       yystacksize *= 2;
  1351.       if (YYMAXDEPTH < yystacksize)
  1352. yystacksize = YYMAXDEPTH;
  1353.       {
  1354. yytype_int16 *yyss1 = yyss;
  1355. union yyalloc *yyptr =
  1356.   (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1357. if (! yyptr)
  1358.   goto yyexhaustedlab;
  1359. YYSTACK_RELOCATE (yyss_alloc, yyss);
  1360. YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1361. #  undef YYSTACK_RELOCATE
  1362. if (yyss1 != yyssa)
  1363.   YYSTACK_FREE (yyss1);
  1364.       }
  1365. # endif
  1366. #endif /* no yyoverflow */
  1367.       yyssp = yyss + yysize - 1;
  1368.       yyvsp = yyvs + yysize - 1;
  1369.       YYDPRINTF ((stderr, "Stack size increased to %lun",
  1370.   (unsigned long int) yystacksize));
  1371.       if (yyss + yystacksize - 1 <= yyssp)
  1372. YYABORT;
  1373.     }
  1374.   YYDPRINTF ((stderr, "Entering state %dn", yystate));
  1375.   if (yystate == YYFINAL)
  1376.     YYACCEPT;
  1377.   goto yybackup;
  1378. /*-----------.
  1379. | yybackup.  |
  1380. `-----------*/
  1381. yybackup:
  1382.   /* Do appropriate processing given the current state.  Read a
  1383.      lookahead token if we need one and don't already have one.  */
  1384.   /* First try to decide what to do without reference to lookahead token.  */
  1385.   yyn = yypact[yystate];
  1386.   if (yyn == YYPACT_NINF)
  1387.     goto yydefault;
  1388.   /* Not known => get a lookahead token if don't already have one.  */
  1389.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1390.   if (yychar == YYEMPTY)
  1391.     {
  1392.       YYDPRINTF ((stderr, "Reading a token: "));
  1393.       yychar = YYLEX;
  1394.     }
  1395.   if (yychar <= YYEOF)
  1396.     {
  1397.       yychar = yytoken = YYEOF;
  1398.       YYDPRINTF ((stderr, "Now at end of input.n"));
  1399.     }
  1400.   else
  1401.     {
  1402.       yytoken = YYTRANSLATE (yychar);
  1403.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1404.     }
  1405.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1406.      detect an error, take that action.  */
  1407.   yyn += yytoken;
  1408.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1409.     goto yydefault;
  1410.   yyn = yytable[yyn];
  1411.   if (yyn <= 0)
  1412.     {
  1413.       if (yyn == 0 || yyn == YYTABLE_NINF)
  1414. goto yyerrlab;
  1415.       yyn = -yyn;
  1416.       goto yyreduce;
  1417.     }
  1418.   /* Count tokens shifted since error; after three, turn off error
  1419.      status.  */
  1420.   if (yyerrstatus)
  1421.     yyerrstatus--;
  1422.   /* Shift the lookahead token.  */
  1423.   YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
  1424.   /* Discard the shifted token.  */
  1425.   yychar = YYEMPTY;
  1426.   yystate = yyn;
  1427.   *++yyvsp = yylval;
  1428.   goto yynewstate;
  1429. /*-----------------------------------------------------------.
  1430. | yydefault -- do the default action for the current state.  |
  1431. `-----------------------------------------------------------*/
  1432. yydefault:
  1433.   yyn = yydefact[yystate];
  1434.   if (yyn == 0)
  1435.     goto yyerrlab;
  1436.   goto yyreduce;
  1437. /*-----------------------------.
  1438. | yyreduce -- Do a reduction.  |
  1439. `-----------------------------*/
  1440. yyreduce:
  1441.   /* yyn is the number of a rule to reduce with.  */
  1442.   yylen = yyr2[yyn];
  1443.   /* If YYLEN is nonzero, implement the default value of the action:
  1444.      `$$ = $1'.
  1445.      Otherwise, the following line sets YYVAL to garbage.
  1446.      This behavior is undocumented and Bison
  1447.      users should not rely upon it.  Assigning to YYVAL
  1448.      unconditionally makes the parser a bit smaller, and it avoids a
  1449.      GCC warning that YYVAL may be used uninitialized.  */
  1450.   yyval = yyvsp[1-yylen];
  1451.   YY_REDUCE_PRINT (yyn);
  1452.   switch (yyn)
  1453.     {
  1454.         case 6:
  1455. /* Line 1455 of yacc.c  */
  1456. #line 173 "calc.y"
  1457.     { sp = stack[0]; yyerrok; }
  1458.     break;
  1459.   case 8:
  1460. /* Line 1455 of yacc.c  */
  1461. #line 177 "calc.y"
  1462.     {
  1463.       mpz_out_str (stdout, obase, sp); putchar ('n');
  1464.       sp--;
  1465.       CHECK_EMPTY ();
  1466.     }
  1467.     break;
  1468.   case 9:
  1469. /* Line 1455 of yacc.c  */
  1470. #line 182 "calc.y"
  1471.     {
  1472.       CHECK_VARIABLE ((yyvsp[(1) - (3)].var));
  1473.       mpz_swap (variable[(yyvsp[(1) - (3)].var)], sp);
  1474.       sp--;
  1475.       CHECK_EMPTY ();
  1476.     }
  1477.     break;
  1478.   case 10:
  1479. /* Line 1455 of yacc.c  */
  1480. #line 188 "calc.y"
  1481.     { calc_help (); }
  1482.     break;
  1483.   case 11:
  1484. /* Line 1455 of yacc.c  */
  1485. #line 189 "calc.y"
  1486.     { ibase = 16; obase = -16; }
  1487.     break;
  1488.   case 12:
  1489. /* Line 1455 of yacc.c  */
  1490. #line 190 "calc.y"
  1491.     { ibase = 0;  obase = 10; }
  1492.     break;
  1493.   case 13:
  1494. /* Line 1455 of yacc.c  */
  1495. #line 191 "calc.y"
  1496.     { exit (0); }
  1497.     break;
  1498.   case 15:
  1499. /* Line 1455 of yacc.c  */
  1500. #line 198 "calc.y"
  1501.     { sp--; mpz_add    (sp, sp, sp+1); }
  1502.     break;
  1503.   case 16:
  1504. /* Line 1455 of yacc.c  */
  1505. #line 199 "calc.y"
  1506.     { sp--; mpz_sub    (sp, sp, sp+1); }
  1507.     break;
  1508.   case 17:
  1509. /* Line 1455 of yacc.c  */
  1510. #line 200 "calc.y"
  1511.     { sp--; mpz_mul    (sp, sp, sp+1); }
  1512.     break;
  1513.   case 18:
  1514. /* Line 1455 of yacc.c  */
  1515. #line 201 "calc.y"
  1516.     { sp--; mpz_fdiv_q (sp, sp, sp+1); }
  1517.     break;
  1518.   case 19:
  1519. /* Line 1455 of yacc.c  */
  1520. #line 202 "calc.y"
  1521.     { sp--; mpz_fdiv_r (sp, sp, sp+1); }
  1522.     break;
  1523.   case 20:
  1524. /* Line 1455 of yacc.c  */
  1525. #line 203 "calc.y"
  1526.     { CHECK_UI ("Exponent", sp);
  1527.                     sp--; mpz_pow_ui (sp, sp, mpz_get_ui (sp+1)); }
  1528.     break;
  1529.   case 21:
  1530. /* Line 1455 of yacc.c  */
  1531. #line 205 "calc.y"
  1532.     { CHECK_UI ("Shift count", sp);
  1533.                     sp--; mpz_mul_2exp (sp, sp, mpz_get_ui (sp+1)); }
  1534.     break;
  1535.   case 22:
  1536. /* Line 1455 of yacc.c  */
  1537. #line 207 "calc.y"
  1538.     { CHECK_UI ("Shift count", sp);
  1539.                     sp--; mpz_fdiv_q_2exp (sp, sp, mpz_get_ui (sp+1)); }
  1540.     break;
  1541.   case 23:
  1542. /* Line 1455 of yacc.c  */
  1543. #line 209 "calc.y"
  1544.     { CHECK_UI ("Factorial", sp);
  1545.                     mpz_fac_ui (sp, mpz_get_ui (sp)); }
  1546.     break;
  1547.   case 24:
  1548. /* Line 1455 of yacc.c  */
  1549. #line 211 "calc.y"
  1550.     { mpz_neg (sp, sp); }
  1551.     break;
  1552.   case 25:
  1553. /* Line 1455 of yacc.c  */
  1554. #line 213 "calc.y"
  1555.     { sp--; mpz_set_ui (sp, mpz_cmp (sp, sp+1) <  0); }
  1556.     break;
  1557.   case 26:
  1558. /* Line 1455 of yacc.c  */
  1559. #line 214 "calc.y"
  1560.     { sp--; mpz_set_ui (sp, mpz_cmp (sp, sp+1) <= 0); }
  1561.     break;
  1562.   case 27:
  1563. /* Line 1455 of yacc.c  */
  1564. #line 215 "calc.y"
  1565.     { sp--; mpz_set_ui (sp, mpz_cmp (sp, sp+1) == 0); }
  1566.     break;
  1567.   case 28:
  1568. /* Line 1455 of yacc.c  */
  1569. #line 216 "calc.y"
  1570.     { sp--; mpz_set_ui (sp, mpz_cmp (sp, sp+1) != 0); }
  1571.     break;
  1572.   case 29:
  1573. /* Line 1455 of yacc.c  */
  1574. #line 217 "calc.y"
  1575.     { sp--; mpz_set_ui (sp, mpz_cmp (sp, sp+1) >= 0); }
  1576.     break;
  1577.   case 30:
  1578. /* Line 1455 of yacc.c  */
  1579. #line 218 "calc.y"
  1580.     { sp--; mpz_set_ui (sp, mpz_cmp (sp, sp+1) >  0); }
  1581.     break;
  1582.   case 31:
  1583. /* Line 1455 of yacc.c  */
  1584. #line 220 "calc.y"
  1585.     { sp--; mpz_set_ui (sp, mpz_sgn (sp) && mpz_sgn (sp+1)); }
  1586.     break;
  1587.   case 32:
  1588. /* Line 1455 of yacc.c  */
  1589. #line 221 "calc.y"
  1590.     { sp--; mpz_set_ui (sp, mpz_sgn (sp) || mpz_sgn (sp+1)); }
  1591.     break;
  1592.   case 33:
  1593. /* Line 1455 of yacc.c  */
  1594. #line 223 "calc.y"
  1595.     { mpz_abs (sp, sp); }
  1596.     break;
  1597.   case 34:
  1598. /* Line 1455 of yacc.c  */
  1599. #line 224 "calc.y"
  1600.     { sp--; CHECK_UI ("Binomial base", sp+1);
  1601.                                    mpz_bin_ui (sp, sp, mpz_get_ui (sp+1)); }
  1602.     break;
  1603.   case 35:
  1604. /* Line 1455 of yacc.c  */
  1605. #line 226 "calc.y"
  1606.     { CHECK_UI ("Fibonacci", sp);
  1607.                                    mpz_fib_ui (sp, mpz_get_ui (sp)); }
  1608.     break;
  1609.   case 37:
  1610. /* Line 1455 of yacc.c  */
  1611. #line 229 "calc.y"
  1612.     { sp--; mpz_set_si (sp,
  1613.                                          mpz_kronecker (sp, sp+1)); }
  1614.     break;
  1615.   case 39:
  1616. /* Line 1455 of yacc.c  */
  1617. #line 232 "calc.y"
  1618.     { CHECK_UI ("Lucas number", sp);
  1619.                                    mpz_lucnum_ui (sp, mpz_get_ui (sp)); }
  1620.     break;
  1621.   case 40:
  1622. /* Line 1455 of yacc.c  */
  1623. #line 234 "calc.y"
  1624.     { mpz_nextprime (sp, sp); }
  1625.     break;
  1626.   case 41:
  1627. /* Line 1455 of yacc.c  */
  1628. #line 235 "calc.y"
  1629.     { sp -= 2; mpz_powm (sp, sp, sp+1, sp+2); }
  1630.     break;
  1631.   case 42:
  1632. /* Line 1455 of yacc.c  */
  1633. #line 236 "calc.y"
  1634.     { sp--; CHECK_UI ("Nth-root", sp+1);
  1635.                                    mpz_root (sp, sp, mpz_get_ui (sp+1)); }
  1636.     break;
  1637.   case 43:
  1638. /* Line 1455 of yacc.c  */
  1639. #line 238 "calc.y"
  1640.     { mpz_sqrt (sp, sp); }
  1641.     break;
  1642.   case 44:
  1643. /* Line 1455 of yacc.c  */
  1644. #line 240 "calc.y"
  1645.     {
  1646.         sp++;
  1647.         CHECK_OVERFLOW ();
  1648.         CHECK_VARIABLE ((yyvsp[(1) - (1)].var));
  1649.         mpz_set (sp, variable[(yyvsp[(1) - (1)].var)]);
  1650.       }
  1651.     break;
  1652.   case 45:
  1653. /* Line 1455 of yacc.c  */
  1654. #line 246 "calc.y"
  1655.     {
  1656.         sp++;
  1657.         CHECK_OVERFLOW ();
  1658.         if (mpz_set_str (sp, (yyvsp[(1) - (1)].str), ibase) != 0)
  1659.           {
  1660.             fprintf (stderr, "Invalid number: %sn", (yyvsp[(1) - (1)].str));
  1661.             YYERROR;
  1662.           }
  1663.       }
  1664.     break;
  1665.   case 47:
  1666. /* Line 1455 of yacc.c  */
  1667. #line 258 "calc.y"
  1668.     { sp--; mpz_gcd (sp, sp, sp+1); }
  1669.     break;
  1670.   case 49:
  1671. /* Line 1455 of yacc.c  */
  1672. #line 262 "calc.y"
  1673.     { sp--; mpz_lcm (sp, sp, sp+1); }
  1674.     break;
  1675. /* Line 1455 of yacc.c  */
  1676. #line 1992 "calc.c"
  1677.       default: break;
  1678.     }
  1679.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
  1680.   YYPOPSTACK (yylen);
  1681.   yylen = 0;
  1682.   YY_STACK_PRINT (yyss, yyssp);
  1683.   *++yyvsp = yyval;
  1684.   /* Now `shift' the result of the reduction.  Determine what state
  1685.      that goes to, based on the state we popped back to and the rule
  1686.      number reduced by.  */
  1687.   yyn = yyr1[yyn];
  1688.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  1689.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  1690.     yystate = yytable[yystate];
  1691.   else
  1692.     yystate = yydefgoto[yyn - YYNTOKENS];
  1693.   goto yynewstate;
  1694. /*------------------------------------.
  1695. | yyerrlab -- here on detecting error |
  1696. `------------------------------------*/
  1697. yyerrlab:
  1698.   /* If not already recovering from an error, report this error.  */
  1699.   if (!yyerrstatus)
  1700.     {
  1701.       ++yynerrs;
  1702. #if ! YYERROR_VERBOSE
  1703.       yyerror (YY_("syntax error"));
  1704. #else
  1705.       {
  1706. YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
  1707. if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
  1708.   {
  1709.     YYSIZE_T yyalloc = 2 * yysize;
  1710.     if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
  1711.       yyalloc = YYSTACK_ALLOC_MAXIMUM;
  1712.     if (yymsg != yymsgbuf)
  1713.       YYSTACK_FREE (yymsg);
  1714.     yymsg = (char *) YYSTACK_ALLOC (yyalloc);
  1715.     if (yymsg)
  1716.       yymsg_alloc = yyalloc;
  1717.     else
  1718.       {
  1719. yymsg = yymsgbuf;
  1720. yymsg_alloc = sizeof yymsgbuf;
  1721.       }
  1722.   }
  1723. if (0 < yysize && yysize <= yymsg_alloc)
  1724.   {
  1725.     (void) yysyntax_error (yymsg, yystate, yychar);
  1726.     yyerror (yymsg);
  1727.   }
  1728. else
  1729.   {
  1730.     yyerror (YY_("syntax error"));
  1731.     if (yysize != 0)
  1732.       goto yyexhaustedlab;
  1733.   }
  1734.       }
  1735. #endif
  1736.     }
  1737.   if (yyerrstatus == 3)
  1738.     {
  1739.       /* If just tried and failed to reuse lookahead token after an
  1740.  error, discard it.  */
  1741.       if (yychar <= YYEOF)
  1742. {
  1743.   /* Return failure if at end of input.  */
  1744.   if (yychar == YYEOF)
  1745.     YYABORT;
  1746. }
  1747.       else
  1748. {
  1749.   yydestruct ("Error: discarding",
  1750.       yytoken, &yylval);
  1751.   yychar = YYEMPTY;
  1752. }
  1753.     }
  1754.   /* Else will try to reuse lookahead token after shifting the error
  1755.      token.  */
  1756.   goto yyerrlab1;
  1757. /*---------------------------------------------------.
  1758. | yyerrorlab -- error raised explicitly by YYERROR.  |
  1759. `---------------------------------------------------*/
  1760. yyerrorlab:
  1761.   /* Pacify compilers like GCC when the user code never invokes
  1762.      YYERROR and the label yyerrorlab therefore never appears in user
  1763.      code.  */
  1764.   if (/*CONSTCOND*/ 0)
  1765.      goto yyerrorlab;
  1766.   /* Do not reclaim the symbols of the rule which action triggered
  1767.      this YYERROR.  */
  1768.   YYPOPSTACK (yylen);
  1769.   yylen = 0;
  1770.   YY_STACK_PRINT (yyss, yyssp);
  1771.   yystate = *yyssp;
  1772.   goto yyerrlab1;
  1773. /*-------------------------------------------------------------.
  1774. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  1775. `-------------------------------------------------------------*/
  1776. yyerrlab1:
  1777.   yyerrstatus = 3; /* Each real token shifted decrements this.  */
  1778.   for (;;)
  1779.     {
  1780.       yyn = yypact[yystate];
  1781.       if (yyn != YYPACT_NINF)
  1782. {
  1783.   yyn += YYTERROR;
  1784.   if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  1785.     {
  1786.       yyn = yytable[yyn];
  1787.       if (0 < yyn)
  1788. break;
  1789.     }
  1790. }
  1791.       /* Pop the current state because it cannot handle the error token.  */
  1792.       if (yyssp == yyss)
  1793. YYABORT;
  1794.       yydestruct ("Error: popping",
  1795.   yystos[yystate], yyvsp);
  1796.       YYPOPSTACK (1);
  1797.       yystate = *yyssp;
  1798.       YY_STACK_PRINT (yyss, yyssp);
  1799.     }
  1800.   *++yyvsp = yylval;
  1801.   /* Shift the error token.  */
  1802.   YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
  1803.   yystate = yyn;
  1804.   goto yynewstate;
  1805. /*-------------------------------------.
  1806. | yyacceptlab -- YYACCEPT comes here.  |
  1807. `-------------------------------------*/
  1808. yyacceptlab:
  1809.   yyresult = 0;
  1810.   goto yyreturn;
  1811. /*-----------------------------------.
  1812. | yyabortlab -- YYABORT comes here.  |
  1813. `-----------------------------------*/
  1814. yyabortlab:
  1815.   yyresult = 1;
  1816.   goto yyreturn;
  1817. #if !defined(yyoverflow) || YYERROR_VERBOSE
  1818. /*-------------------------------------------------.
  1819. | yyexhaustedlab -- memory exhaustion comes here.  |
  1820. `-------------------------------------------------*/
  1821. yyexhaustedlab:
  1822.   yyerror (YY_("memory exhausted"));
  1823.   yyresult = 2;
  1824.   /* Fall through.  */
  1825. #endif
  1826. yyreturn:
  1827.   if (yychar != YYEMPTY)
  1828.      yydestruct ("Cleanup: discarding lookahead",
  1829.  yytoken, &yylval);
  1830.   /* Do not reclaim the symbols of the rule which action triggered
  1831.      this YYABORT or YYACCEPT.  */
  1832.   YYPOPSTACK (yylen);
  1833.   YY_STACK_PRINT (yyss, yyssp);
  1834.   while (yyssp != yyss)
  1835.     {
  1836.       yydestruct ("Cleanup: popping",
  1837.   yystos[*yyssp], yyvsp);
  1838.       YYPOPSTACK (1);
  1839.     }
  1840. #ifndef yyoverflow
  1841.   if (yyss != yyssa)
  1842.     YYSTACK_FREE (yyss);
  1843. #endif
  1844. #if YYERROR_VERBOSE
  1845.   if (yymsg != yymsgbuf)
  1846.     YYSTACK_FREE (yymsg);
  1847. #endif
  1848.   /* Make sure YYID is used.  */
  1849.   return YYID (yyresult);
  1850. }
  1851. /* Line 1675 of yacc.c  */
  1852. #line 264 "calc.y"
  1853. yyerror (char *s)
  1854. {
  1855.   fprintf (stderr, "%sn", s);
  1856. }
  1857. int calc_option_readline = -1;
  1858. int
  1859. main (int argc, char *argv[])
  1860. {
  1861.   int  i;
  1862.   for (i = 1; i < argc; i++)
  1863.     {
  1864.       if (strcmp (argv[i], "--readline") == 0)
  1865.         calc_option_readline = 1;
  1866.       else if (strcmp (argv[i], "--noreadline") == 0)
  1867.         calc_option_readline = 0;
  1868.       else if (strcmp (argv[i], "--help") == 0)
  1869.         {
  1870.           printf ("Usage: calc [--option]...n");
  1871.           printf ("  --readline    use readlinen");
  1872.           printf ("  --noreadline  don't use readlinen");
  1873.           printf ("  --help        this messagen");
  1874.           printf ("Readline is only available when compiled in,n");
  1875.           printf ("and in that case it's the default on a tty.n");
  1876.           exit (0);
  1877.         }
  1878.       else
  1879.         {
  1880.           fprintf (stderr, "Unrecognised option: %sn", argv[i]);
  1881.           exit (1);
  1882.         }
  1883.     }
  1884. #if WITH_READLINE
  1885.   calc_init_readline ();
  1886. #else
  1887.   if (calc_option_readline == 1)
  1888.     {
  1889.       fprintf (stderr, "Readline support not availablen");
  1890.       exit (1);
  1891.     }
  1892. #endif
  1893.   for (i = 0; i < numberof (variable); i++)
  1894.     mpz_init (variable[i]);
  1895.   for (i = 0; i < numberof (stack); i++)
  1896.     mpz_init (stack[i]);
  1897.   return yyparse ();
  1898. }