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 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
|
/* A Bison parser, made from parser.y
by GNU bison 1.30. */
#define YYBISON 1 /* Identify Bison output. */
# define T_graph 257
# define T_digraph 258
# define T_strict 259
# define T_node 260
# define T_edge 261
# define T_edgeop 262
# define T_symbol 263
# define T_subgraph 264
#line 1 "parser.y"
/*
This software may only be used by you under license from AT&T Corp.
("AT&T"). A copy of AT&T's Source Code Agreement is available at
AT&T's Internet website having the URL:
<http://www.research.att.com/sw/tools/graphviz/license/source.html>
If you received this software without first entering into a license
with AT&T, you have an infringing copy of this software and cannot use
it without violating AT&T's intellectual property rights.
*/
#pragma prototyped
#include "libgraph.h"
static char Port[SMALLBUF],*Symbol;
static char In_decl,In_edge_stmt;
static int Current_class,Agraph_type;
static Agraph_t *G;
static Agnode_t *N;
static Agedge_t *E;
static objstack_t *SP;
static Agraph_t *Gstack[32];
static int GSP;
static void push_subg(Agraph_t *g)
{
G = Gstack[GSP++] = g;
}
static Agraph_t *pop_subg(void)
{
Agraph_t *g;
if (GSP == 0) {
fprintf(stderr,"Gstack underflow in graph parser\n"); exit(1);
}
g = Gstack[--GSP]; /* graph being popped off */
if (GSP > 0) G = Gstack[GSP - 1]; /* current graph */
else G = 0;
return g;
}
static objport_t pop_gobj(void)
{
objport_t rv;
rv.obj = pop_subg();
rv.port = NULL;
return rv;
}
static void begin_graph(char *name)
{
Agraph_t *g;
g = AG.parsed_g = agopen(name,Agraph_type);
push_subg(g);
In_decl = TRUE;
}
static void end_graph(void)
{
pop_subg();
}
static Agnode_t *bind_node(char *name)
{
Agnode_t *n = agnode(G,name);
In_decl = FALSE;
return n;
}
static void anonsubg(void)
{
static int anon_id = 0;
char buf[SMALLBUF];
Agraph_t *subg;
In_decl = FALSE;
sprintf(buf,"_anonymous_%d",anon_id++);
subg = agsubg(G,buf);
push_subg(subg);
}
static int isanonsubg(Agraph_t *g)
{
return (strncmp("_anonymous_",g->name,11) == 0);
}
static void begin_edgestmt(objport_t objp)
{
struct objstack_t *new_sp;
new_sp = NEW(objstack_t);
new_sp->link = SP;
SP = new_sp;
SP->list = SP->last = NEW(objlist_t);
SP->list->data = objp;
SP->list->link = NULL;
SP->in_edge_stmt = In_edge_stmt;
SP->subg = G;
agpushproto(G);
In_edge_stmt = TRUE;
}
static void mid_edgestmt(objport_t objp)
{
SP->last->link = NEW(objlist_t);
SP->last = SP->last->link;
SP->last->data = objp;
SP->last->link = NULL;
}
static void end_edgestmt(void)
{
objstack_t *old_SP;
objlist_t *tailptr,*headptr,*freeptr;
Agraph_t *t_graph,*h_graph;
Agnode_t *t_node,*h_node,*t_first,*h_first;
Agedge_t *e;
char *tport,*hport;
for (tailptr = SP->list; tailptr->link; tailptr = tailptr->link) {
headptr = tailptr->link;
tport = tailptr->data.port;
hport = headptr->data.port;
if (TAG_OF(tailptr->data.obj) == TAG_NODE) {
t_graph = NULL;
t_first = (Agnode_t*)(tailptr->data.obj);
}
else {
t_graph = (Agraph_t*)(tailptr->data.obj);
t_first = agfstnode(t_graph);
}
if (TAG_OF(headptr->data.obj) == TAG_NODE) {
h_graph = NULL;
h_first = (Agnode_t*)(headptr->data.obj);
}
else {
h_graph = (Agraph_t*)(headptr->data.obj);
h_first = agfstnode(h_graph);
}
for (t_node = t_first; t_node; t_node = t_graph ?
agnxtnode(t_graph,t_node) : NULL) {
for (h_node = h_first; h_node; h_node = h_graph ?
agnxtnode(h_graph,h_node) : NULL ) {
e = agedge(G,t_node,h_node);
if (e) {
char *tp = tport;
char *hp = hport;
if ((e->tail != e->head) && (e->head == t_node)) {
/* could happen with an undirected edge */
char *temp;
temp = tp; tp = hp; hp = temp;
}
if (tp && tp[0]) agxset(e,TAILX,tp);
if (hp && hp[0]) agxset(e,HEADX,hp);
}
}
}
}
tailptr = SP->list;
while (tailptr) {
freeptr = tailptr;
tailptr = tailptr->link;
if (TAG_OF(freeptr->data.obj) == TAG_NODE)
free(freeptr->data.port);
free(freeptr);
}
if (G != SP->subg) abort();
agpopproto(G);
In_edge_stmt = SP->in_edge_stmt;
old_SP = SP;
SP = SP->link;
In_decl = FALSE;
free(old_SP);
Current_class = TAG_GRAPH;
}
static Agraph_t *parent_of(Agraph_t *g)
{
Agraph_t *rv;
rv = agusergraph(agfstin(g->meta_node->graph,g->meta_node)->tail);
return rv;
}
static void attr_set(char *name, char *value)
{
Agsym_t *ap = NULL;
char *defval = "";
if (In_decl && (G->root == G)) defval = value;
switch (Current_class) {
case TAG_NODE:
ap = agfindattr(G->proto->n,name);
if (ap == NULL)
ap = agnodeattr(AG.parsed_g,name,defval);
agxset(N,ap->index,value);
break;
case TAG_EDGE:
ap = agfindattr(G->proto->e,name);
if (ap == NULL)
ap = agedgeattr(AG.parsed_g,name,defval);
agxset(E,ap->index,value);
break;
case 0: /* default */
case TAG_GRAPH:
ap = agfindattr(G,name);
if (ap == NULL)
ap = agraphattr(AG.parsed_g,name,defval);
agxset(G,ap->index,value);
break;
}
}
#line 216 "parser.y"
typedef union {
int i;
char *str;
struct objport_t obj;
struct Agnode_t *n;
} YYSTYPE;
#include <stdio.h>
#define YYFINAL 90
#define YYFLAG -32768
#define YYNTBASE 22
/* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */
#define YYTRANSLATE(x) ((unsigned)(x) <= 264 ? agtranslate[x] : 57)
/* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */
static const char agtranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
19, 20, 2, 2, 13, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 18, 17,
2, 16, 2, 2, 21, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 14, 2, 15, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 11, 2, 12, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 3, 4, 5,
6, 7, 8, 9, 10
};
#if YYDEBUG != 0
static const short agprhs[] =
{
0, 0, 1, 8, 10, 11, 13, 16, 18, 21,
23, 25, 27, 31, 32, 33, 35, 39, 42, 43,
45, 49, 51, 52, 54, 57, 59, 62, 64, 66,
68, 70, 72, 75, 77, 80, 82, 83, 85, 87,
90, 93, 96, 97, 105, 108, 109, 113, 114, 115,
121, 122, 123, 129, 132, 133, 138, 141, 142, 147,
152, 153, 158, 160, 163
};
static const short agrhs[] =
{
-1, 24, 56, 23, 11, 32, 12, 0, 1, 0,
0, 3, 0, 5, 3, 0, 4, 0, 5, 4,
0, 3, 0, 6, 0, 7, 0, 31, 27, 26,
0, 0, 0, 13, 0, 14, 26, 15, 0, 29,
28, 0, 0, 29, 0, 56, 16, 56, 0, 33,
0, 0, 34, 0, 33, 34, 0, 35, 0, 35,
17, 0, 1, 0, 43, 0, 45, 0, 36, 0,
53, 0, 25, 28, 0, 31, 0, 38, 39, 0,
56, 0, 0, 40, 0, 42, 0, 42, 40, 0,
40, 42, 0, 18, 56, 0, 0, 18, 19, 56,
41, 13, 56, 20, 0, 21, 56, 0, 0, 37,
44, 30, 0, 0, 0, 37, 46, 50, 47, 30,
0, 0, 0, 53, 48, 50, 49, 30, 0, 8,
37, 0, 0, 8, 37, 51, 50, 0, 8, 53,
0, 0, 8, 53, 52, 50, 0, 55, 11, 32,
12, 0, 0, 11, 54, 32, 12, 0, 55, 0,
10, 56, 0, 9, 0
};
#endif
#if YYDEBUG != 0
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const short agrline[] =
{
0, 233, 235, 237, 244, 248, 250, 252, 254, 258,
260, 262, 266, 267, 270, 271, 273, 275, 276, 279,
282, 286, 287, 290, 291, 294, 295, 296, 299, 300,
301, 302, 305, 307, 311, 321, 324, 325, 326, 327,
328, 331, 332, 332, 339, 346, 349, 352, 355, 358,
359, 362, 365, 368, 369, 372, 372, 374, 377, 380,
381, 381, 382, 385, 395
};
#endif
#if YYDEBUG != 0 || defined YYERROR_VERBOSE
/* YYTNAME[TOKEN_NUM] -- String name of the token TOKEN_NUM. */
static const char *const agtname[] =
{
"$", "error", "$undefined.", "T_graph", "T_digraph", "T_strict", "T_node",
"T_edge", "T_edgeop", "T_symbol", "T_subgraph", "'{'", "'}'", "','",
"'['", "']'", "'='", "';'", "':'", "'('", "')'", "'@'", "file", "@1",
"graph_type", "attr_class", "inside_attr_list", "optcomma", "attr_list",
"rec_attr_list", "opt_attr_list", "attr_set", "stmt_list", "stmt_list1",
"stmt", "stmt1", "attr_stmt", "node_id", "node_name", "node_port",
"port_location", "@2", "port_angle", "node_stmt", "@3", "edge_stmt",
"@4", "@5", "@6", "@7", "edgeRHS", "@8", "@9", "subg_stmt", "@10",
"subg_hdr", "symbol", NULL
};
#endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const short agr1[] =
{
0, 23, 22, 22, 22, 24, 24, 24, 24, 25,
25, 25, 26, 26, 27, 27, 28, 29, 29, 30,
31, 32, 32, 33, 33, 34, 34, 34, 35, 35,
35, 35, 36, 36, 37, 38, 39, 39, 39, 39,
39, 40, 41, 40, 42, 44, 43, 46, 47, 45,
48, 49, 45, 50, 51, 50, 50, 52, 50, 53,
54, 53, 53, 55, 56
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
static const short agr2[] =
{
0, 0, 6, 1, 0, 1, 2, 1, 2, 1,
1, 1, 3, 0, 0, 1, 3, 2, 0, 1,
3, 1, 0, 1, 2, 1, 2, 1, 1, 1,
1, 1, 2, 1, 2, 1, 0, 1, 1, 2,
2, 2, 0, 7, 2, 0, 3, 0, 0, 5,
0, 0, 5, 2, 0, 4, 2, 0, 4, 4,
0, 4, 1, 2, 1
};
/* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
doesn't specify something else to do. Zero means the default is an
error. */
static const short agdefact[] =
{
0, 3, 5, 7, 0, 0, 6, 8, 64, 1,
0, 0, 27, 9, 10, 11, 0, 60, 0, 33,
0, 0, 23, 25, 30, 45, 36, 28, 29, 31,
62, 35, 63, 0, 13, 32, 2, 24, 26, 18,
0, 0, 0, 34, 37, 38, 0, 0, 0, 0,
0, 14, 0, 19, 46, 0, 48, 0, 41, 44,
40, 39, 51, 0, 20, 61, 16, 15, 13, 17,
53, 56, 35, 18, 42, 18, 59, 12, 0, 0,
49, 0, 52, 55, 58, 0, 0, 43, 0, 0,
0
};
static const short agdefgoto[] =
{
88, 10, 5, 18, 50, 68, 35, 53, 54, 19,
20, 21, 22, 23, 24, 25, 26, 43, 44, 81,
45, 27, 39, 28, 40, 73, 46, 75, 56, 78,
79, 29, 33, 30, 31
};
static const short agpact[] =
{
4,-32768,-32768,-32768, 30, 1,-32768,-32768,-32768,-32768,
8, 11,-32768,-32768,-32768,-32768, 1,-32768, 26,-32768,
3, 48,-32768, 24,-32768, 17, 6,-32768,-32768, 34,
33, 29,-32768, 11, 1,-32768,-32768,-32768,-32768,-32768,
38, -6, 1,-32768, 27, 35, 38, 11, 1, 44,
32, 49, 29, 26,-32768, 21,-32768, 1,-32768,-32768,
-32768,-32768,-32768, 52,-32768,-32768,-32768,-32768, 1,-32768,
53, 57,-32768,-32768,-32768,-32768,-32768,-32768, 38, 38,
-32768, 54,-32768,-32768,-32768, 1, 46,-32768, 68, 69,
-32768
};
static const short agpgoto[] =
{
-32768,-32768,-32768,-32768, 2,-32768, 18,-32768, -47, -33,
-31,-32768, 51,-32768,-32768, 19,-32768,-32768, 28,-32768,
31,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -40,-32768,
-32768, 22,-32768,-32768, -5
};
#define YYLAST 80
static const short agtable[] =
{
9, 51, 49, 8, -4, 1, 62, 2, 3, 4,
8, 32, 12, 57, 13, 36, 63, 14, 15, 11,
8, 16, 17, -22, 41, -47, 80, 42, 82, 52,
8, 16, 17, 6, 7, 51, 58, 59, 83, 84,
34, 38, -50, 64, 47, 48, 55, 66, 42, 12,
72, 13, 74, 41, 14, 15, 65, 8, 16, 17,
-21, -54, 67, 52, 76, -57, 87, 85, 89, 90,
77, 69, 37, 61, 70, 60, 0, 71, 0, 0,
86
};
static const short agcheck[] =
{
5, 34, 33, 9, 0, 1, 46, 3, 4, 5,
9, 16, 1, 19, 3, 12, 47, 6, 7, 11,
9, 10, 11, 12, 18, 8, 73, 21, 75, 34,
9, 10, 11, 3, 4, 68, 41, 42, 78, 79,
14, 17, 8, 48, 11, 16, 8, 15, 21, 1,
55, 3, 57, 18, 6, 7, 12, 9, 10, 11,
12, 8, 13, 68, 12, 8, 20, 13, 0, 0,
68, 53, 21, 45, 55, 44, -1, 55, -1, -1,
85
};
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/share/bison/bison.simple"
/* Skeleton output parser for bison,
Copyright 1984, 1989, 1990, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
/* This is the parser code that is written into each bison parser when
the %semantic_parser declaration is not specified in the grammar.
It was written by Richard Stallman by simplifying the hairy parser
used when %semantic_parser is specified. */
#ifndef YYSTACK_USE_ALLOCA
# ifdef alloca
# define YYSTACK_USE_ALLOCA 1
# else /* alloca not defined */
# ifdef __GNUC__
# define YYSTACK_USE_ALLOCA 1
# define alloca __builtin_alloca
# else /* not GNU C. */
# if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
# define YYSTACK_USE_ALLOCA 1
# include <alloca.h>
# else /* not sparc */
/* We think this test detects Watcom and Microsoft C. */
/* This used to test MSDOS, but that is a bad idea since that
symbol is in the user namespace. */
# if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
# if 0
/* No need for malloc.h, which pollutes the namespace; instead,
just don't use alloca. */
# include <malloc.h>
# endif
# else /* not MSDOS, or __TURBOC__ */
# if defined(_AIX)
/* I don't know what this was needed for, but it pollutes the
namespace. So I turned it off. rms, 2 May 1997. */
/* #include <malloc.h> */
#pragma alloca
# define YYSTACK_USE_ALLOCA 1
# else /* not MSDOS, or __TURBOC__, or _AIX */
# if 0
/* haible@ilog.fr says this works for HPUX 9.05 and up, and on
HPUX 10. Eventually we can turn this on. */
# ifdef __hpux
# define YYSTACK_USE_ALLOCA 1
# define alloca __builtin_alloca
# endif /* __hpux */
# endif
# endif /* not _AIX */
# endif /* not MSDOS, or __TURBOC__ */
# endif /* not sparc */
# endif /* not GNU C */
# endif /* alloca not defined */
#endif /* YYSTACK_USE_ALLOCA not defined */
#ifndef YYSTACK_USE_ALLOCA
# define YYSTACK_USE_ALLOCA 0
#endif
#if YYSTACK_USE_ALLOCA
# define YYSTACK_ALLOC alloca
#else
# define YYSTACK_ALLOC malloc
#endif
#define agerrok (agerrstatus = 0)
#define agclearin (agchar = YYEMPTY)
#define YYEMPTY -2
#define YYEOF 0
#define YYACCEPT goto agacceptlab
#define YYABORT goto agabortlab
#define YYERROR goto agerrlab1
/* Like YYERROR except do call agerror. This remains here temporarily
to ease the transition to the new meaning of YYERROR, for GCC.
Once GCC version 2 has supplanted version 1, this can go. */
#define YYFAIL goto agerrlab
#define YYRECOVERING() (!!agerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (agchar == YYEMPTY && aglen == 1) \
{ \
agchar = (Token); \
aglval = (Value); \
agchar1 = YYTRANSLATE (agchar); \
YYPOPSTACK; \
goto agbackup; \
} \
else \
{ \
agerror ("syntax error: cannot back up"); \
YYERROR; \
} \
while (0)
#define YYTERROR 1
#define YYERRCODE 256
/* YYLLOC_DEFAULT -- Compute the default location (before the actions
are run).
When YYLLOC_DEFAULT is run, CURRENT is set the location of the
first token. By default, to implement support for ranges, extend
its range to the last symbol. */
#ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT(Current, Rhs, N) \
Current.last_line = Rhs[N].last_line; \
Current.last_column = Rhs[N].last_column;
#endif
/* YYLEX -- calling `aglex' with the right arguments. */
#if YYPURE
# if YYLSP_NEEDED
# ifdef YYLEX_PARAM
# define YYLEX aglex (&aglval, &aglloc, YYLEX_PARAM)
# else
# define YYLEX aglex (&aglval, &aglloc)
# endif
# else /* !YYLSP_NEEDED */
# ifdef YYLEX_PARAM
# define YYLEX aglex (&aglval, YYLEX_PARAM)
# else
# define YYLEX aglex (&aglval)
# endif
# endif /* !YYLSP_NEEDED */
#else /* !YYPURE */
# define YYLEX aglex ()
#endif /* !YYPURE */
/* Enable debugging if requested. */
#if YYDEBUG
# define YYDPRINTF(Args) \
do { \
if (agdebug) \
fprintf Args; \
} while (0)
/* Nonzero means print parse trace. [The following comment makes no
sense to me. Could someone clarify it? --akim] Since this is
uninitialized, it does not stop multiple parsers from coexisting.
*/
int agdebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used). */
#if YYMAXDEPTH == 0
# undef YYMAXDEPTH
#endif
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
/* Define __ag_memcpy. Note that the size argument
should be passed with type unsigned int, because that is what the non-GCC
definitions require. With GCC, __builtin_memcpy takes an arg
of type size_t, but it can handle unsigned int. */
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
# define __ag_memcpy(To, From, Count) __builtin_memcpy (To, From, Count)
#else /* not GNU C or C++ */
/* This is the most reliable way to avoid incompatibilities
in available built-in functions on various systems. */
static void
# ifndef __cplusplus
__ag_memcpy (to, from, count)
char *to;
const char *from;
unsigned int count;
# else /* __cplusplus */
__ag_memcpy (char *to, const char *from, unsigned int count)
# endif
{
register const char *f = from;
register char *t = to;
register int i = count;
while (i-- > 0)
*t++ = *f++;
}
#endif
#line 216 "/usr/share/bison/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
into agparse. The argument should have type void *.
It should actually point to an object.
Grammar actions can access the variable by casting it
to the proper pointer type. */
#ifdef YYPARSE_PARAM
# ifdef __cplusplus
# define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
# define YYPARSE_PARAM_DECL
# else /* !__cplusplus */
# define YYPARSE_PARAM_ARG YYPARSE_PARAM
# define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
# endif /* !__cplusplus */
#else /* !YYPARSE_PARAM */
# define YYPARSE_PARAM_ARG
# define YYPARSE_PARAM_DECL
#endif /* !YYPARSE_PARAM */
/* Prevent warning if -Wstrict-prototypes. */
#ifdef __GNUC__
# ifdef YYPARSE_PARAM
int agparse (void *);
# else
int agparse (void);
# endif
#endif
/* YY_DECL_VARIABLES -- depending whether we use a pure parser,
variables are global, or local to YYPARSE. */
#define _YY_DECL_VARIABLES \
/* The lookahead symbol. */ \
int agchar; \
\
/* The semantic value of the lookahead symbol. */ \
YYSTYPE aglval; \
\
/* Number of parse errors so far. */ \
int agnerrs;
#if YYLSP_NEEDED
# define YY_DECL_VARIABLES \
_YY_DECL_VARIABLES \
\
/* Location data for the lookahead symbol. */ \
YYLTYPE aglloc;
#else
# define YY_DECL_VARIABLES \
_YY_DECL_VARIABLES
#endif
/* If nonreentrant, generate the variables here. */
#if !YYPURE
YY_DECL_VARIABLES
#endif /* !YYPURE */
int
agparse (YYPARSE_PARAM_ARG)
YYPARSE_PARAM_DECL
{
/* If reentrant, generate the variables here. */
#if YYPURE
YY_DECL_VARIABLES
#endif /* !YYPURE */
register int agstate;
register int agn;
/* Number of tokens to shift before error messages enabled. */
int agerrstatus;
/* Lookahead token as an internal (translated) token number. */
int agchar1 = 0;
/* Three stacks and their tools:
`agss': related to states,
`agsv': related to semantic values,
`agls': related to locations.
Refer to the stacks thru separate pointers, to allow agoverflow
to reallocate them elsewhere. */
/* The state stack. */
short agssa[YYINITDEPTH];
short *agss = agssa;
register short *agssp;
/* The semantic value stack. */
YYSTYPE agvsa[YYINITDEPTH];
YYSTYPE *agvs = agvsa;
register YYSTYPE *agvsp;
#if YYLSP_NEEDED
/* The location stack. */
YYLTYPE aglsa[YYINITDEPTH];
YYLTYPE *agls = aglsa;
YYLTYPE *aglsp;
#endif
#if YYLSP_NEEDED
# define YYPOPSTACK (agvsp--, agssp--, aglsp--)
#else
# define YYPOPSTACK (agvsp--, agssp--)
#endif
int agstacksize = YYINITDEPTH;
int agfree_stacks = 0;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE agval;
# if YYLSP_NEEDED
YYLTYPE agloc;
# endif
/* When reducing, the number of symbols on the RHS of the reduced
rule. */
int aglen;
YYDPRINTF ((stderr, "Starting parse\n"));
agstate = 0;
agerrstatus = 0;
agnerrs = 0;
agchar = YYEMPTY; /* Cause a token to be read. */
/* Initialize stack pointers.
Waste one element of value and location stack
so that they stay on the same level as the state stack.
The wasted elements are never initialized. */
agssp = agss;
agvsp = agvs;
#if YYLSP_NEEDED
aglsp = agls;
#endif
goto agsetstate;
/*------------------------------------------------------------.
| agnewstate -- Push a new state, which is found in agstate. |
`------------------------------------------------------------*/
agnewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. so pushing a state here evens the stacks.
*/
agssp++;
agsetstate:
*agssp = agstate;
if (agssp >= agss + agstacksize - 1)
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into memory.
*/
YYSTYPE *agvs1 = agvs;
short *agss1 = agss;
#if YYLSP_NEEDED
YYLTYPE *agls1 = agls;
#endif
/* Get the current used size of the three stacks, in elements. */
int size = agssp - agss + 1;
#ifdef agoverflow
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. */
# if YYLSP_NEEDED
/* This used to be a conditional around just the two extra args,
but that might be undefined if agoverflow is a macro. */
agoverflow ("parser stack overflow",
&agss1, size * sizeof (*agssp),
&agvs1, size * sizeof (*agvsp),
&agls1, size * sizeof (*aglsp),
&agstacksize);
# else
agoverflow ("parser stack overflow",
&agss1, size * sizeof (*agssp),
&agvs1, size * sizeof (*agvsp),
&agstacksize);
# endif
agss = agss1; agvs = agvs1;
# if YYLSP_NEEDED
agls = agls1;
# endif
#else /* no agoverflow */
/* Extend the stack our own way. */
if (agstacksize >= YYMAXDEPTH)
{
agerror ("parser stack overflow");
if (agfree_stacks)
{
free (agss);
free (agvs);
# if YYLSP_NEEDED
free (agls);
# endif
}
return 2;
}
agstacksize *= 2;
if (agstacksize > YYMAXDEPTH)
agstacksize = YYMAXDEPTH;
# if !YYSTACK_USE_ALLOCA
agfree_stacks = 1;
# endif
agss = (short *) YYSTACK_ALLOC (agstacksize * sizeof (*agssp));
__ag_memcpy ((char *)agss, (char *)agss1,
size * (unsigned int) sizeof (*agssp));
agvs = (YYSTYPE *) YYSTACK_ALLOC (agstacksize * sizeof (*agvsp));
__ag_memcpy ((char *)agvs, (char *)agvs1,
size * (unsigned int) sizeof (*agvsp));
# if YYLSP_NEEDED
agls = (YYLTYPE *) YYSTACK_ALLOC (agstacksize * sizeof (*aglsp));
__ag_memcpy ((char *)agls, (char *)agls1,
size * (unsigned int) sizeof (*aglsp));
# endif
#endif /* no agoverflow */
agssp = agss + size - 1;
agvsp = agvs + size - 1;
#if YYLSP_NEEDED
aglsp = agls + size - 1;
#endif
YYDPRINTF ((stderr, "Stack size increased to %d\n", agstacksize));
if (agssp >= agss + agstacksize - 1)
YYABORT;
}
YYDPRINTF ((stderr, "Entering state %d\n", agstate));
goto agbackup;
/*-----------.
| agbackup. |
`-----------*/
agbackup:
/* Do appropriate processing given the current state. */
/* Read a lookahead token if we need one and don't already have one. */
/* agresume: */
/* First try to decide what to do without reference to lookahead token. */
agn = agpact[agstate];
if (agn == YYFLAG)
goto agdefault;
/* Not known => get a lookahead token if don't already have one. */
/* agchar is either YYEMPTY or YYEOF
or a valid token in external form. */
if (agchar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
agchar = YYLEX;
}
/* Convert token to internal form (in agchar1) for indexing tables with */
if (agchar <= 0) /* This means end of input. */
{
agchar1 = 0;
agchar = YYEOF; /* Don't call YYLEX any more */
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
agchar1 = YYTRANSLATE (agchar);
#if YYDEBUG
/* We have to keep this `#if YYDEBUG', since we use variables
which are defined only if `YYDEBUG' is set. */
if (agdebug)
{
fprintf (stderr, "Next token is %d (%s", agchar, agtname[agchar1]);
/* Give the individual parser a way to print the precise
meaning of a token, for further debugging info. */
# ifdef YYPRINT
YYPRINT (stderr, agchar, aglval);
# endif
fprintf (stderr, ")\n");
}
#endif
}
agn += agchar1;
if (agn < 0 || agn > YYLAST || agcheck[agn] != agchar1)
goto agdefault;
agn = agtable[agn];
/* agn is what to do for this token type in this state.
Negative => reduce, -agn is rule number.
Positive => shift, agn is new state.
New state is final state => don't bother to shift,
just return success.
0, or most negative number => error. */
if (agn < 0)
{
if (agn == YYFLAG)
goto agerrlab;
agn = -agn;
goto agreduce;
}
else if (agn == 0)
goto agerrlab;
if (agn == YYFINAL)
YYACCEPT;
/* Shift the lookahead token. */
YYDPRINTF ((stderr, "Shifting token %d (%s), ", agchar, agtname[agchar1]));
/* Discard the token being shifted unless it is eof. */
if (agchar != YYEOF)
agchar = YYEMPTY;
*++agvsp = aglval;
#if YYLSP_NEEDED
*++aglsp = aglloc;
#endif
/* Count tokens shifted since error; after three, turn off error
status. */
if (agerrstatus)
agerrstatus--;
agstate = agn;
goto agnewstate;
/*-----------------------------------------------------------.
| agdefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
agdefault:
agn = agdefact[agstate];
if (agn == 0)
goto agerrlab;
goto agreduce;
/*-----------------------------.
| agreduce -- Do a reduction. |
`-----------------------------*/
agreduce:
/* agn is the number of a rule to reduce with. */
aglen = agr2[agn];
/* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'.
Otherwise, the following line sets YYVAL to the semantic value of
the lookahead token. This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
agval = agvsp[1-aglen];
#if YYLSP_NEEDED
/* Similarly for the default location. Let the user run additional
commands if for instance locations are ranges. */
agloc = aglsp[1-aglen];
YYLLOC_DEFAULT (agloc, (aglsp - aglen), aglen);
#endif
#if YYDEBUG
/* We have to keep this `#if YYDEBUG', since we use variables which
are defined only if `YYDEBUG' is set. */
if (agdebug)
{
int i;
fprintf (stderr, "Reducing via rule %d (line %d), ",
agn, agrline[agn]);
/* Print the symbols being reduced, and their result. */
for (i = agprhs[agn]; agrhs[i] > 0; i++)
fprintf (stderr, "%s ", agtname[agrhs[i]]);
fprintf (stderr, " -> %s\n", agtname[agr1[agn]]);
}
#endif
switch (agn) {
case 1:
#line 234 "parser.y"
{begin_graph(agvsp[0].str); agstrfree(agvsp[0].str);;
break;}
case 2:
#line 236 "parser.y"
{AG.accepting_state = TRUE; end_graph();;
break;}
case 3:
#line 238 "parser.y"
{
if (AG.parsed_g)
agclose(AG.parsed_g);
AG.parsed_g = NULL;
/*exit(1);*/
;
break;}
case 4:
#line 244 "parser.y"
{AG.parsed_g = NULL;;
break;}
case 5:
#line 249 "parser.y"
{Agraph_type = AGRAPH; AG.edge_op = "--";;
break;}
case 6:
#line 251 "parser.y"
{Agraph_type = AGRAPHSTRICT; AG.edge_op = "--";;
break;}
case 7:
#line 253 "parser.y"
{Agraph_type = AGDIGRAPH; AG.edge_op = "->";;
break;}
case 8:
#line 255 "parser.y"
{Agraph_type = AGDIGRAPHSTRICT; AG.edge_op = "->";;
break;}
case 9:
#line 259 "parser.y"
{Current_class = TAG_GRAPH;;
break;}
case 10:
#line 261 "parser.y"
{Current_class = TAG_NODE; N = G->proto->n;;
break;}
case 11:
#line 263 "parser.y"
{Current_class = TAG_EDGE; E = G->proto->e;;
break;}
case 20:
#line 283 "parser.y"
{attr_set(agvsp[-2].str,agvsp[0].str); agstrfree(agvsp[-2].str); agstrfree(agvsp[0].str);;
break;}
case 27:
#line 296 "parser.y"
{agerror("syntax error, statement skipped");;
break;}
case 31:
#line 302 "parser.y"
{;
break;}
case 32:
#line 306 "parser.y"
{Current_class = TAG_GRAPH; /* reset */;
break;}
case 33:
#line 308 "parser.y"
{Current_class = TAG_GRAPH;;
break;}
case 34:
#line 312 "parser.y"
{
objport_t rv;
rv.obj = agvsp[-1].n;
rv.port = strdup(Port);
Port[0] = '\0';
agval.obj = rv;
;
break;}
case 35:
#line 321 "parser.y"
{agval.n = bind_node(agvsp[0].str); agstrfree(agvsp[0].str);;
break;}
case 41:
#line 331 "parser.y"
{strcat(Port,":"); strcat(Port,agvsp[0].str);;
break;}
case 42:
#line 332 "parser.y"
{Symbol = strdup(agvsp[0].str);;
break;}
case 43:
#line 333 "parser.y"
{ char buf[SMALLBUF];
sprintf(buf,":(%s,%s)",Symbol,agvsp[-1].str);
strcat(Port,buf); free(Symbol);
;
break;}
case 44:
#line 340 "parser.y"
{ char buf[SMALLBUF];
sprintf(buf,"@%s",agvsp[0].str);
strcat(Port,buf);
;
break;}
case 45:
#line 347 "parser.y"
{Current_class = TAG_NODE; N = (Agnode_t*)(agvsp[0].obj.obj);;
break;}
case 46:
#line 349 "parser.y"
{Current_class = TAG_GRAPH; /* reset */;
break;}
case 47:
#line 353 "parser.y"
{begin_edgestmt(agvsp[0].obj);;
break;}
case 48:
#line 355 "parser.y"
{ E = SP->subg->proto->e;
Current_class = TAG_EDGE; ;
break;}
case 49:
#line 358 "parser.y"
{end_edgestmt();;
break;}
case 50:
#line 360 "parser.y"
{begin_edgestmt(agvsp[0].obj);;
break;}
case 51:
#line 362 "parser.y"
{ E = SP->subg->proto->e;
Current_class = TAG_EDGE; ;
break;}
case 52:
#line 365 "parser.y"
{end_edgestmt();;
break;}
case 53:
#line 368 "parser.y"
{mid_edgestmt(agvsp[0].obj);;
break;}
case 54:
#line 370 "parser.y"
{mid_edgestmt(agvsp[0].obj);;
break;}
case 56:
#line 373 "parser.y"
{mid_edgestmt(agvsp[0].obj);;
break;}
case 57:
#line 375 "parser.y"
{mid_edgestmt(agvsp[0].obj);;
break;}
case 59:
#line 380 "parser.y"
{agval.obj = pop_gobj();;
break;}
case 60:
#line 381 "parser.y"
{ anonsubg(); ;
break;}
case 61:
#line 381 "parser.y"
{agval.obj = pop_gobj();;
break;}
case 62:
#line 382 "parser.y"
{agval.obj = pop_gobj();;
break;}
case 63:
#line 386 "parser.y"
{ Agraph_t *subg;
if ((subg = agfindsubg(AG.parsed_g,agvsp[0].str))) aginsert(G,subg);
else subg = agsubg(G,agvsp[0].str);
push_subg(subg);
In_decl = FALSE;
agstrfree(agvsp[0].str);
;
break;}
case 64:
#line 395 "parser.y"
{agval.str = agstrdup(agvsp[0].str); ;
break;}
}
#line 610 "/usr/share/bison/bison.simple"
agvsp -= aglen;
agssp -= aglen;
#if YYLSP_NEEDED
aglsp -= aglen;
#endif
#if YYDEBUG
if (agdebug)
{
short *ssp1 = agss - 1;
fprintf (stderr, "state stack now");
while (ssp1 != agssp)
fprintf (stderr, " %d", *++ssp1);
fprintf (stderr, "\n");
}
#endif
*++agvsp = agval;
#if YYLSP_NEEDED
*++aglsp = agloc;
#endif
/* Now `shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
agn = agr1[agn];
agstate = agpgoto[agn - YYNTBASE] + *agssp;
if (agstate >= 0 && agstate <= YYLAST && agcheck[agstate] == *agssp)
agstate = agtable[agstate];
else
agstate = agdefgoto[agn - YYNTBASE];
goto agnewstate;
/*------------------------------------.
| agerrlab -- here on detecting error |
`------------------------------------*/
agerrlab:
/* If not already recovering from an error, report this error. */
if (!agerrstatus)
{
++agnerrs;
#ifdef YYERROR_VERBOSE
agn = agpact[agstate];
if (agn > YYFLAG && agn < YYLAST)
{
int size = 0;
char *msg;
int x, count;
count = 0;
/* Start X at -agn if nec to avoid negative indexes in agcheck. */
for (x = (agn < 0 ? -agn : 0);
x < (int) (sizeof (agtname) / sizeof (char *)); x++)
if (agcheck[x + agn] == x)
size += strlen (agtname[x]) + 15, count++;
size += strlen ("parse error, unexpected `") + 1;
size += strlen (agtname[YYTRANSLATE (agchar)]);
msg = (char *) malloc (size);
if (msg != 0)
{
strcpy (msg, "parse error, unexpected `");
strcat (msg, agtname[YYTRANSLATE (agchar)]);
strcat (msg, "'");
if (count < 5)
{
count = 0;
for (x = (agn < 0 ? -agn : 0);
x < (int) (sizeof (agtname) / sizeof (char *)); x++)
if (agcheck[x + agn] == x)
{
strcat (msg, count == 0 ? ", expecting `" : " or `");
strcat (msg, agtname[x]);
strcat (msg, "'");
count++;
}
}
agerror (msg);
free (msg);
}
else
agerror ("parse error; also virtual memory exceeded");
}
else
#endif /* YYERROR_VERBOSE */
agerror ("parse error");
}
goto agerrlab1;
/*--------------------------------------------------.
| agerrlab1 -- error raised explicitly by an action |
`--------------------------------------------------*/
agerrlab1:
if (agerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
/* return failure if at end of input */
if (agchar == YYEOF)
YYABORT;
YYDPRINTF ((stderr, "Discarding token %d (%s).\n",
agchar, agtname[agchar1]));
agchar = YYEMPTY;
}
/* Else will try to reuse lookahead token after shifting the error
token. */
agerrstatus = 3; /* Each real token shifted decrements this */
goto agerrhandle;
/*-------------------------------------------------------------------.
| agerrdefault -- current state does not do anything special for the |
| error token. |
`-------------------------------------------------------------------*/
agerrdefault:
#if 0
/* This is wrong; only states that explicitly want error tokens
should shift them. */
/* If its default is to accept any token, ok. Otherwise pop it. */
agn = agdefact[agstate];
if (agn)
goto agdefault;
#endif
/*---------------------------------------------------------------.
| agerrpop -- pop the current state because it cannot handle the |
| error token |
`---------------------------------------------------------------*/
agerrpop:
if (agssp == agss)
YYABORT;
agvsp--;
agstate = *--agssp;
#if YYLSP_NEEDED
aglsp--;
#endif
#if YYDEBUG
if (agdebug)
{
short *ssp1 = agss - 1;
fprintf (stderr, "Error: state stack now");
while (ssp1 != agssp)
fprintf (stderr, " %d", *++ssp1);
fprintf (stderr, "\n");
}
#endif
/*--------------.
| agerrhandle. |
`--------------*/
agerrhandle:
agn = agpact[agstate];
if (agn == YYFLAG)
goto agerrdefault;
agn += YYTERROR;
if (agn < 0 || agn > YYLAST || agcheck[agn] != YYTERROR)
goto agerrdefault;
agn = agtable[agn];
if (agn < 0)
{
if (agn == YYFLAG)
goto agerrpop;
agn = -agn;
goto agreduce;
}
else if (agn == 0)
goto agerrpop;
if (agn == YYFINAL)
YYACCEPT;
YYDPRINTF ((stderr, "Shifting error token, "));
*++agvsp = aglval;
#if YYLSP_NEEDED
*++aglsp = aglloc;
#endif
agstate = agn;
goto agnewstate;
/*-------------------------------------.
| agacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
agacceptlab:
if (agfree_stacks)
{
free (agss);
free (agvs);
#if YYLSP_NEEDED
free (agls);
#endif
}
return 0;
/*-----------------------------------.
| agabortlab -- YYABORT comes here. |
`-----------------------------------*/
agabortlab:
if (agfree_stacks)
{
free (agss);
free (agvs);
#if YYLSP_NEEDED
free (agls);
#endif
}
return 1;
}
#line 396 "parser.y"
|