1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
|
/*%pure-parser */
/* this may be a bison-only thing... */
/*%error-verbose*/
%{
/*#define REENTRANT_PARSER */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#if ! defined(HAVE_CONFIG_H) || HAVE_STRING_H
# include <string.h>
#else
# if !HAVE_STRCHR
# define strchr index
# define strrchr rindex
# endif
char *strchr (), *strrchr ();
#endif
#include <stdio.h>
#include <stdlib.h>
#include "number.h"
#include <stdarg.h>
#include <math.h>
#include <float.h>
#include <unistd.h> /* for isatty() */
#include "calculator.h"
#include "variables.h"
#include "help.h"
#include "files.h"
#include "conversion.h"
#include "number_formatting.h"
#ifdef MEMWATCH
#include "memwatch.h"
#endif
/* Based on the headstart code by Shawn Ostermann
* modified by Kyle Wheeler
*/
/* include debugging code, in case we want it */
#define YYDEBUG 1
/* to make it stop complaining about undeclared functions */
int yylex();
int yyerror(char *error_string, ...);
int lines = 1;
int synerrors = 0;
short scanerror = 0;
char * errstring = NULL;
int errloc = -1;
int show_line_numbers = 0;
%}
%union { /* the types that we use in the tokens */
enum functions function;
enum operations operation;
Number number;
int integer;
enum commands cmd;
char * variable;
char character;
struct conv_req conver;
}
%token DEC_CMD OCT_CMD HEX_CMD BIN_CMD GUARD_CMD DISPLAY_PREFS_CMD
%token RADIAN_CMD REMEMBER_CMD LISTVAR_CMD STORE_CMD CMOD_CMD
%token PRINT_HELP_CMD PREFIX_CMD INT_CMD VERBOSE_CMD DELIM_CMD
%token <integer> ENG_CMD HLIMIT_CMD ROUNDING_INDICATION_CMD
%token <integer> PRECISION_CMD BITS_CMD BASE_CMD
%token <conver> CONVERT_CMD
%token EOLN OPEN_PARENTHESES CLOSE_PARENTHESES OPEN_BRACE
%token CLOSE_BRACE OPEN_BRACKET CLOSE_BRACKET
%token WPLUS WMINUS WMULT WDIV WMOD EQUALS_SIGN WPOW WEXP WSQR
%token WOR WAND WEQUAL WNEQUAL WGT WLT WGEQ WLEQ
%token WLSHFT WRSHFT WBOR WBAND WBXOR
%token WBNOT WNOT WLOG WLN WROUND WABS WSQRT WCEIL WFLOOR WCBRT WLOGTWO WBANG
%token WSIN WCOS WTAN WASIN WACOS WATAN WSINH WCOSH WTANH WASINH WACOSH WATANH
%token WCOT WACOT WCOTH WACOTH WRAND WIRAND WFACT WCOMP WSEC WCSC WASEC WACSC
%token WSECH WCSCH WASECH WACSCH WEINT WGAMMA WLNGAMMA WZETA WSINC
%token <number> NUMBER
%token <variable> VARIABLE STRING OPEN_CMD SAVE_CMD ASSIGNMENT
%token <character> IDSEP_CMD DSEP_CMD ITSEP_CMD TSEP_CMD
%type <number> exp exp_l2 exp_l3
%type <number> oval capsule parenthated
%type <integer> sign
%type <cmd> command
%type <function> func
%type <variable> optionalstring
%left WAND WOR WBAND WBOR
%left WEQUAL WNEQUAL WGT WLT WGEQ WLEQ
%left WMINUS WPLUS
%left WMULT WDIV WMOD WLSHFT WRSHFT
%right WBANG WSQR
%left WNOT WBNOT WNEG
%right WPOW
%expect 1560
%% /* beginning of the parsing rules */
input : lines
|
;
lines : oneline
| oneline lines
;
oneline : exp eoln
{
extern int line_is_a_command;
if (scanerror) {
scanerror = synerrors = 0;
} else {
if (! synerrors && ! yynerrs) {
set_prettyanswer($1);
num_set(last_answer,$1);
} else {
synerrors = 0;
report_error("Too many errors.");
}
}
num_free($1);
compute = 1;
line_is_a_command = 0;
}
| assignment eoln {
extern int line_is_a_command;
compute = 1;
line_is_a_command = 0;
}
| command eoln {
extern int line_is_a_command;
switch ($1) {
case redisplay:
if (! synerrors) {
set_prettyanswer(last_answer);
} else {
synerrors = 0;
report_error("Too many errors.");
}
break;
case nothing: break;
}
compute = 1;
line_is_a_command = 0;
}
| eoln /* blank line */
{
extern int line_is_a_command;
if (scanerror) {
scanerror = synerrors = 0;
}
compute = 1;
line_is_a_command = 0;
}
| error eoln {
extern int line_is_a_command;
/* there is the possibility of lost memory here,
* because "error" has no data type
* (and because I'm passing around *actual* Number's
* rather than pointers to them) */
/* report_error("3 Error in scanner halts parser."); */
compute = 1;
line_is_a_command = 0;
}
/* if we got an error on the line */
;
eoln : EOLN { ++lines; }
;
command : HEX_CMD {
$$ = isatty(0)?redisplay:nothing;
conf.output_format = HEXADECIMAL_FORMAT;
if (standard_output)
printf("Hexadecimal Formatted Output\n");}
| OCT_CMD {
$$ = isatty(0)?redisplay:nothing;
conf.output_format = OCTAL_FORMAT;
if (standard_output)
printf("Octal Formatted Output\n");}
| BIN_CMD {
$$ = isatty(0)?redisplay:nothing;
conf.output_format = BINARY_FORMAT;
if (standard_output)
printf("Binary Formatted Output\n");}
| DEC_CMD {
$$ = isatty(0)?redisplay:nothing;
conf.output_format = DECIMAL_FORMAT;
if (standard_output)
printf("Decimal Formatted Output\n");}
| DSEP_CMD {
$$ = nothing;
if (conf.thou_delimiter != $1) {
conf.dec_delimiter = $1;
if (standard_output)
printf("%c is now the decimal separator.\n", $1);
} else if (standard_output) {
printf("%c cannot be the decimal separator. It is the thousands separator.\n", $1);
}}
| IDSEP_CMD {
$$ = nothing;
if (conf.in_thou_delimiter != $1 && (conf.in_thou_delimiter != 0 || conf.thou_delimiter != $1)) {
conf.in_dec_delimiter = $1;
if (standard_output)
printf("%c is now the decimal separator for input.\n", $1);
} else if (standard_output) {
printf("%c cannot be the decimal separator. It is the thousands separator.\n", $1);
}}
| TSEP_CMD {
$$ = nothing;
if (conf.dec_delimiter != $1) {
conf.thou_delimiter = $1;
if (standard_output)
printf("%c is now the thousands separator.\n", $1);
} else if (standard_output) {
printf("%c cannot be the thousands separator. It is the decimal separator.\n", $1);
}}
| ITSEP_CMD {
$$ = nothing;
if (conf.in_dec_delimiter != $1 && (conf.in_dec_delimiter != 0 || conf.dec_delimiter != $1)) {
conf.in_thou_delimiter = $1;
if (standard_output)
printf("%c is now the thousands separator for input.\n", $1);
} else if (standard_output) {
printf("%c cannot be the thousands separator. It is the decimal separator.\n", $1);
}}
| DELIM_CMD {
$$ = nothing;
conf.print_commas = ! conf.print_commas;
if (standard_output) {
printf("Will %sshow separators when printing large numbers.\n",conf.print_commas?"":"not ");
}
}
| INT_CMD {
$$ = nothing;
conf.print_ints = ! conf.print_ints;
if (standard_output) {
printf("Will %suse abbreviations for large integers.\n",conf.print_ints?"not ":"");
}
}
| VERBOSE_CMD
{
$$ = nothing;
conf.verbose = ! conf.verbose;
if (standard_output) {
printf("Will %secho the lines to be evaluated.\n",conf.verbose?"":"not ");
}
}
| DISPLAY_PREFS_CMD {
if (standard_output) {
printf(" Display Precision: %-3i %s -> \\p\n",conf.precision,((conf.precision==-1)?"(auto)":" "));
printf(" Internal Precision: %-24lu -> \\bits\n", (unsigned long) num_get_default_prec());
printf(" Engineering Output: %s -> \\e\n",
(conf.engineering==always)?"always":(conf.engineering==never)?"never ":"auto ");
printf(" Output Format: %s -> \\b, \\d, \\h, \\o\n",output_string(conf.output_format));
printf(" Use Radians: %s -> \\r or \\radians\n",conf.use_radians?"yes":"no ");
printf(" Print Prefixes: %s -> \\pre or \\prefixes\n",conf.print_prefixes?"yes":"no ");
printf("Avoid Abbreviating Integers: %s -> \\ints\n",conf.print_ints?"yes":"no ");
printf(" Rounding Indication: %s -> \\round\n",conf.rounding_indication==SIMPLE_ROUNDING_INDICATION?"yes (simple) ":(conf.rounding_indication==SIG_FIG_ROUNDING_INDICATION?"yes (sig_fig)":"no "));
printf(" Save Errors in History: %s -> \\re\n",conf.remember_errors?"yes":"no ");
printf(" Thousands Delimiter: '%c' -> \\tsep\n",conf.thou_delimiter);
printf(" Decimal Delimiter: '%c' -> \\dsep\n",conf.dec_delimiter);
printf(" Precision Guard: %s -> \\cons\n",conf.precision_guard?"yes":"no ");
printf(" History Limit: %s -> \\hlimit\n",conf.history_limit?"yes":"no ");
if (conf.history_limit) {
printf(" History Limited To: %lu\n",conf.history_limit_len);
}
printf(" Verbose: %s -> \\verbose\n",conf.verbose?"yes":"no ");
printf(" Display Delimiters: %s -> \\delim\n",conf.print_commas?"yes":"no ");
printf(" Modulo Operator: %s -> \\cmod\n",conf.c_style_mod?"C-style ":"not C-style");
}
$$ = nothing;
}
| RADIAN_CMD {
$$ = nothing;
conf.use_radians = ! conf.use_radians;
if (standard_output)
printf("Now Using %s\n", conf.use_radians?"Radians":"Degrees");}
| GUARD_CMD {
$$ = nothing;
conf.precision_guard = ! conf.precision_guard;
if (standard_output)
printf("Now %sUsing Conservative Precision\n", conf.precision_guard?"":"Not ");}
| PRECISION_CMD {
$$ = isatty(0)?redisplay:nothing;
conf.precision = $1;
if (standard_output) {
printf("Precision = ");
if (conf.precision == -1) printf("auto\n");
else printf("%i\n", conf.precision);
}}
| HLIMIT_CMD {
$$ = nothing;
if ($1) {
conf.history_limit = 1;
conf.history_limit_len = $1;
} else {
conf.history_limit = 0;
conf.history_limit_len = 0;
}
}
| LISTVAR_CMD {
printvariables();
$$ = nothing;
}
| ENG_CMD {
if ($1 < 0) {
switch (conf.engineering) {
case always: conf.engineering = never; break;
case never: conf.engineering = automatic; break;
case automatic: conf.engineering = always; break;
}
} else {
switch($1) {
case 1: conf.engineering = automatic; break;
case 2: conf.engineering = always; break;
case 3: conf.engineering = never; break;
}
}
if (standard_output)
printf("Engineering notation is %s\n",(conf.engineering==always)?"always used":(conf.engineering==never)?"never used":"used if convenient");
$$ = isatty(0)?redisplay:nothing;
}
| ROUNDING_INDICATION_CMD {
$$ = nothing;
if ($1 != -1)
conf.rounding_indication = $1;
else {
conf.rounding_indication += 1;
conf.rounding_indication %= 3;
}
if (standard_output) {
printf("Will display ");
switch(conf.rounding_indication) {
case NO_ROUNDING_INDICATION: printf("no"); break;
case SIMPLE_ROUNDING_INDICATION: printf("simple"); break;
case SIG_FIG_ROUNDING_INDICATION: printf("significant figure"); break;
}
printf(" rounding indication\n");
}
}
| PREFIX_CMD {
$$ = nothing;
conf.print_prefixes = ! conf.print_prefixes;
if (standard_output)
printf("Will %sprint number prefixes\n",conf.print_prefixes?"":"not ");
}
| REMEMBER_CMD {
$$ = nothing;
conf.remember_errors = ! conf.remember_errors;
if (standard_output)
printf("Statements that produce errors are %s.\n",conf.remember_errors?"recorded":"forgotten");
}
| PRINT_HELP_CMD {
$$ = nothing;
if (standard_output) {
print_interactive_help();
}
}
| OPEN_CMD {
extern char* open_file;
int i;
unsigned int len = strlen($1)+1;
open_file = malloc(len);
snprintf(open_file,len,"%s",$1);
/* strip trailing spaces */
for (i=strlen(open_file)-1;i>=0;i--) {
if (open_file[i] != ' ') break;
open_file[i] = 0;
}
if (strlen(open_file) == 0) {
free(open_file);
open_file = NULL;
report_error("Please specify a file name to open.");
}
$$ = nothing;
}
| SAVE_CMD {
int retval;
retval = saveState($1);
if (retval) {
report_error("Could not save file. (%s)", (char*)strerror(retval));
}
$$ = nothing;
}
| BITS_CMD {
if ($1 < NUM_PREC_MIN) {
report_error("Minimum precision is %lu.\n", (unsigned long)NUM_PREC_MIN);
} else if ($1 > (signed)NUM_PREC_MAX) {
report_error("Maximum precision is %lu.\n", (unsigned long)NUM_PREC_MAX);
} else {
num_set_default_prec($1);
}
$$ = nothing;
}
| CONVERT_CMD
{
int category = identify_units($1.u1,$1.u2);
switch (category) {
case -1:
report_error("Units must be in the same category.");
break;
case -2:
report_error("Units provided are not recognized.");
break;
case -3:
report_error("First unit provided was not recognized (%s).", $1.u1);
break;
case -4:
report_error("Second unit provided was not recognized (%s).", $1.u2);
break;
default:
uber_conversion(last_answer,category,unit_id(category,$1.u1),unit_id(category,$1.u2),last_answer);
}
free($1.u1);
free($1.u2);
$$ = redisplay;
}
| BASE_CMD
{
if ($1 >= 2 && $1 <= 36) {
char * str, junk;
str = num_to_str_complex(last_answer, $1, conf.engineering, -1, conf.print_prefixes, &junk);
printf("base %i: %s\n",$1,str);
} else {
report_error("Base must be greater than one and less than 37.");
}
$$ = nothing;
}
| STORE_CMD VARIABLE
{
int retval = storeVar($2);
if (retval == 0) {
printf("successfully stored %s\n",$2);
} else {
report_error("Failure to store variable!");
}
free($2);
}
| CMOD_CMD
{
$$ = nothing;
conf.c_style_mod = ! conf.c_style_mod;
if (standard_output)
printf("The mod (%%) operation will %sbehave like it does in the C programming language.\n",conf.c_style_mod?"":"not ");
}
;
optionalstring : STRING {
$$ = $1;
}
| {
$$ = NULL;
}
;
assignment : ASSIGNMENT exp optionalstring
{
if (compute && ! scanerror) {
/* if standard_error, q is reserved */
if (standard_output && !strcmp($1,"q")) {
report_error("q cannot be assigned a value. q is used to exit.");
} else {
if (putval($1,$2,$3) == 0) {
if (standard_output) {
Number val;
num_init(val);
printf($1);
getvarval(val, $1);
print_this_result(val);
num_free(val);
}
} else {
report_error("There was a problem assigning the value.");
}
}
num_free($2);
} else {
scanerror = 0;
report_error("Scanner error halts parser.");
}
free($1);
if ($3 != NULL) {
free($3);
}
}
| ASSIGNMENT STRING optionalstring
{
if (compute && ! scanerror) {
if (standard_output && !strcmp($1,"q")) {
report_error("q cannot be assigned an expression. q is used to exit.");
} else {
if (putexp($1,$2,$3) == 0) {
if (standard_output) {
printf("%s = %s\n", $1, getvar_full($1).exp);
}
} else {
report_error("There was a problem assigning the expression.");
}
}
} else {
scanerror = 0;
report_error("Scanner error halts parser.");
}
free($1);
free($2);
if ($3 != NULL) {
free($3);
}
}
| NUMBER EQUALS_SIGN exp optionalstring
{
report_error("Constants cannot be assigned to other values.");
num_free($3);
if ($4 != NULL) {
free($4);
}
}
| NUMBER EQUALS_SIGN STRING optionalstring
{
report_error("Constants cannot be assigned to other values.");
free($3);
if ($4 != NULL) {
free($4);
}
}
;
exp : exp WMINUS exp { num_init($$); simple_exp($$, $1, wminus, $3); num_free($1); num_free($3); }
| exp WPLUS exp { num_init($$); simple_exp($$, $1, wplus, $3); num_free($1); num_free($3); }
| exp WAND exp { num_init($$); simple_exp($$, $1, wand, $3); num_free($1); num_free($3); }
| exp WOR exp { num_init($$); simple_exp($$, $1, wor, $3); num_free($1); num_free($3); }
| exp WBOR exp { num_init($$); simple_exp($$, $1, wbor, $3); num_free($1); num_free($3); }
| exp WBXOR exp { num_init($$); simple_exp($$, $1, wbxor, $3); num_free($1); num_free($3); }
| exp WBAND exp { num_init($$); simple_exp($$, $1, wband, $3); num_free($1); num_free($3); }
| exp WEQUAL exp { num_init($$); simple_exp($$, $1, wequal, $3); num_free($1); num_free($3); }
| exp WNEQUAL exp { num_init($$); simple_exp($$, $1, wnequal, $3); num_free($1); num_free($3); }
| exp WGT exp { num_init($$); simple_exp($$, $1, wgt, $3); num_free($1); num_free($3); }
| exp WLT exp { num_init($$); simple_exp($$, $1, wlt, $3); num_free($1); num_free($3); }
| exp WGEQ exp { num_init($$); simple_exp($$, $1, wgeq, $3); num_free($1); num_free($3); }
| exp WLEQ exp { num_init($$); simple_exp($$, $1, wleq, $3); num_free($1); num_free($3); }
| exp WLSHFT exp { num_init($$); simple_exp($$, $1, wlshft, $3); num_free($1); num_free($3); }
| exp WRSHFT exp { num_init($$); simple_exp($$, $1, wrshft, $3); num_free($1); num_free($3); }
| exp WMULT exp { num_init($$); simple_exp($$, $1, wmult, $3); num_free($1); num_free($3); }
| exp WDIV exp { num_init($$); simple_exp($$, $1, wdiv, $3); num_free($1); num_free($3); }
| exp WMOD exp { num_init($$); simple_exp($$, $1, wmod, $3); num_free($1); num_free($3); }
| exp_l2
;
func : WSIN { $$ = wsin; }
| WCOS { $$ = wcos; }
| WTAN { $$ = wtan; }
| WCOT { $$ = wcot; }
| WSEC { $$ = wsec; }
| WCSC { $$ = wcsc; }
| WASIN { $$ = wasin; }
| WACOS { $$ = wacos; }
| WATAN { $$ = watan; }
| WACOT { $$ = wacot; }
| WASEC { $$ = wasec; }
| WACSC { $$ = wacsc; }
| WSINH { $$ = wsinh; }
| WCOSH { $$ = wcosh; }
| WTANH { $$ = wtanh; }
| WCOTH { $$ = wcoth; }
| WSECH { $$ = wsech; }
| WCSCH { $$ = wcsch; }
| WASINH { $$ = wasinh; }
| WACOSH { $$ = wacosh; }
| WATANH { $$ = watanh; }
| WACOTH { $$ = wacoth; }
| WASECH { $$ = wasech; }
| WACSCH { $$ = wacsch; }
| WLOG { $$ = wlog; }
| WLOGTWO { $$ = wlogtwo; }
| WLN { $$ = wln; }
| WROUND { $$ = wround; }
| WABS { $$ = wabs; }
| WSQRT { $$ = wsqrt; }
| WEXP { $$ = wexp; }
| WFLOOR { $$ = wfloor; }
| WCEIL { $$ = wceil; }
| WCBRT { $$ = wcbrt; }
| WRAND { $$ = wrand; }
| WIRAND { $$ = wirand; }
| WBNOT { $$ = wbnot; }
| WNOT { $$ = wnot; }
| WFACT { $$ = wfact; }
| WCOMP { $$ = wcomp; }
| WEINT { $$ = weint; }
| WGAMMA { $$ = wgamma; }
| WLNGAMMA { $$ = wlngamma; }
| WZETA { $$ = wzeta; }
| WSINC { $$ = wsinc; }
;
nullexp : OPEN_PARENTHESES CLOSE_PARENTHESES
| OPEN_BRACE CLOSE_BRACE
| OPEN_BRACKET CLOSE_BRACKET
;
sign : WMINUS { $$ = -1; }
| WPLUS { $$ = 1; }
| { $$ = 1; }
;
exp_l2 : exp_l3
| sign exp_l2 oval { num_init($$);
num_mul($2,$2,$3);
num_mul_si($$,$2,$1);
num_free($2);
num_free($3); }
;
oval : exp_l3 oval {
num_init_set($$,$1);
num_free($1);
num_free($2);
}
| { num_init_set_ui($$,1); }
;
exp_l3 : capsule oval { num_init($$);
simple_exp($$,$1,wmult,$2);
num_free($1);
num_free($2);}
| capsule WPOW sign exp_l3 oval { num_init($$);
num_mul_si($4,$4,$3);
num_pow($1,$1,$4);
num_mul($$,$1,$5);
num_free($1);
num_free($4);
num_free($5);}
;
parenthated: OPEN_PARENTHESES exp CLOSE_PARENTHESES
{ num_init($$); num_set($$,$2); num_free($2); }
| OPEN_BRACE exp CLOSE_BRACE
{ num_init($$); num_set($$,$2); num_free($2); }
| OPEN_BRACKET exp CLOSE_BRACKET
{ num_init($$); num_set($$,$2); num_free($2); }
| nullexp { num_init_set_ui($$,0); }
;
capsule: parenthated
{ num_init($$); num_set($$,$1); num_free($1); }
| NUMBER
| capsule WBANG
{
num_init($$);
num_factorial($$,num_get_ui($1));
num_free($1);
}
| capsule WSQR { num_init($$); num_sqr($$,$1); num_free($1); }
| func parenthated %prec WMULT
{
num_init($$);
uber_function($$,$1,$2);
num_free($2);
}
| func sign capsule %prec WEQUAL
{
num_init($$);
num_mul_si($3,$3,$2);
uber_function($$,$1,$3);
num_free($3);
}
;
%%
int
yyerror(char *error_string, ...) {
va_list ap;
char error[1000];
++synerrors;
va_start(ap,error_string);
vsnprintf(error,1000,error_string,ap);
va_end(ap);
report_error(error);
return 0;
}
|