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 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
|
/*
* Do C preprocessing, based on a token list gathered by
* the tokenizer.
*
* This may not be the smartest preprocessor on the planet.
*
* Copyright (C) 2003 Transmeta Corp.
* 2003-2004 Linus Torvalds
*
* Licensed under the Open Software License version 1.1
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stddef.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>
#include <time.h>
#include "pre-process.h"
#include "lib.h"
#include "allocate.h"
#include "parse.h"
#include "token.h"
#include "symbol.h"
#include "expression.h"
#include "scope.h"
static int false_nesting = 0;
#define INCLUDEPATHS 300
const char *includepath[INCLUDEPATHS+1] = {
"",
"/usr/include",
"/usr/local/include",
GCC_INTERNAL_INCLUDE,
NULL
};
static const char **quote_includepath = includepath;
static const char **angle_includepath = includepath + 1;
static const char **sys_includepath = includepath + 1;
#define dirty_stream(stream) \
do { \
if (!stream->dirty) { \
stream->dirty = 1; \
if (!stream->ifndef) \
stream->protect = NULL; \
} \
} while(0)
#define end_group(stream) \
do { \
if (stream->ifndef == stream->top_if) { \
stream->ifndef = NULL; \
if (!stream->dirty) \
stream->protect = NULL; \
else if (stream->protect) \
stream->dirty = 0; \
} \
} while(0)
#define nesting_error(stream) \
do { \
stream->dirty = 1; \
stream->ifndef = NULL; \
stream->protect = NULL; \
} while(0)
static struct token *alloc_token(struct position *pos)
{
struct token *token = __alloc_token(0);
token->pos.stream = pos->stream;
token->pos.line = pos->line;
token->pos.pos = pos->pos;
token->pos.whitespace = 1;
return token;
}
static const char *show_token_sequence(struct token *token);
/* Expand symbol 'sym' at '*list' */
static int expand(struct token **, struct symbol *);
static void replace_with_string(struct token *token, const char *str)
{
int size = strlen(str) + 1;
struct string *s = __alloc_string(size);
s->length = size;
memcpy(s->data, str, size);
token_type(token) = TOKEN_STRING;
token->string = s;
}
static void replace_with_integer(struct token *token, unsigned int val)
{
char *buf = __alloc_bytes(11);
sprintf(buf, "%u", val);
token_type(token) = TOKEN_NUMBER;
token->number = buf;
}
static struct symbol *lookup_macro(struct ident *ident)
{
struct symbol *sym = lookup_symbol(ident, NS_MACRO | NS_UNDEF);
if (sym && sym->namespace != NS_MACRO)
sym = NULL;
return sym;
}
static int token_defined(struct token *token)
{
if (token_type(token) == TOKEN_IDENT) {
struct symbol *sym = lookup_macro(token->ident);
if (sym) {
sym->used_in = file_scope;
return 1;
}
return 0;
}
sparse_error(token->pos, "expected preprocessor identifier");
return 0;
}
static void replace_with_defined(struct token *token)
{
static const char *string[] = { "0", "1" };
int defined = token_defined(token);
token_type(token) = TOKEN_NUMBER;
token->number = string[defined];
}
static int expand_one_symbol(struct token **list)
{
struct token *token = *list;
struct symbol *sym;
static char buffer[12]; /* __DATE__: 3 + ' ' + 2 + ' ' + 4 + '\0' */
static time_t t = 0;
if (token->pos.noexpand)
return 1;
sym = lookup_macro(token->ident);
if (sym) {
sym->used_in = file_scope;
return expand(list, sym);
}
if (token->ident == &__LINE___ident) {
replace_with_integer(token, token->pos.line);
} else if (token->ident == &__FILE___ident) {
replace_with_string(token, stream_name(token->pos.stream));
} else if (token->ident == &__DATE___ident) {
if (!t)
time(&t);
strftime(buffer, 12, "%b %e %Y", localtime(&t));
replace_with_string(token, buffer);
} else if (token->ident == &__TIME___ident) {
if (!t)
time(&t);
strftime(buffer, 9, "%T", localtime(&t));
replace_with_string(token, buffer);
}
return 1;
}
static inline struct token *scan_next(struct token **where)
{
struct token *token = *where;
if (token_type(token) != TOKEN_UNTAINT)
return token;
do {
token->ident->tainted = 0;
token = token->next;
} while (token_type(token) == TOKEN_UNTAINT);
*where = token;
return token;
}
static void expand_list(struct token **list)
{
struct token *next;
while (!eof_token(next = scan_next(list))) {
if (token_type(next) != TOKEN_IDENT || expand_one_symbol(list))
list = &next->next;
}
}
static struct token *collect_arg(struct token *prev, int vararg, struct position *pos)
{
struct token **p = &prev->next;
struct token *next;
int nesting = 0;
while (!eof_token(next = scan_next(p))) {
if (match_op(next, '(')) {
nesting++;
} else if (match_op(next, ')')) {
if (!nesting--)
break;
} else if (match_op(next, ',') && !nesting && !vararg) {
break;
}
next->pos.stream = pos->stream;
next->pos.line = pos->line;
next->pos.pos = pos->pos;
p = &next->next;
}
*p = &eof_token_entry;
return next;
}
/*
* We store arglist as <counter> [arg1] <number of uses for arg1> ... eof
*/
struct arg {
struct token *arg;
struct token *expanded;
struct token *str;
int n_normal;
int n_quoted;
int n_str;
};
static int collect_arguments(struct token *start, struct token *arglist, struct arg *args, struct token *what)
{
int wanted = arglist->count.normal;
struct token *next = NULL;
int count = 0;
arglist = arglist->next; /* skip counter */
if (!wanted) {
next = collect_arg(start, 0, &what->pos);
if (eof_token(next))
goto Eclosing;
if (!eof_token(start->next) || !match_op(next, ')')) {
count++;
goto Emany;
}
} else {
for (count = 0; count < wanted; count++) {
struct argcount *p = &arglist->next->count;
next = collect_arg(start, p->vararg, &what->pos);
arglist = arglist->next->next;
if (eof_token(next))
goto Eclosing;
args[count].arg = start->next;
args[count].n_normal = p->normal;
args[count].n_quoted = p->quoted;
args[count].n_str = p->str;
if (match_op(next, ')')) {
count++;
break;
}
start = next;
}
if (count == wanted && !match_op(next, ')'))
goto Emany;
if (count == wanted - 1) {
struct argcount *p = &arglist->next->count;
if (!p->vararg)
goto Efew;
args[count].arg = NULL;
args[count].n_normal = p->normal;
args[count].n_quoted = p->quoted;
args[count].n_str = p->str;
}
if (count < wanted - 1)
goto Efew;
}
what->next = next->next;
return 1;
Efew:
sparse_error(what->pos, "macro \"%s\" requires %d arguments, but only %d given",
show_token(what), wanted, count);
goto out;
Emany:
while (match_op(next, ',')) {
next = collect_arg(next, 0, &what->pos);
count++;
}
if (eof_token(next))
goto Eclosing;
sparse_error(what->pos, "macro \"%s\" passed %d arguments, but takes just %d",
show_token(what), count, wanted);
goto out;
Eclosing:
sparse_error(what->pos, "unterminated argument list invoking macro \"%s\"",
show_token(what));
out:
what->next = next->next;
return 0;
}
static struct token *dup_list(struct token *list)
{
struct token *res = NULL;
struct token **p = &res;
while (!eof_token(list)) {
struct token *newtok = __alloc_token(0);
*newtok = *list;
*p = newtok;
p = &newtok->next;
list = list->next;
}
return res;
}
static struct token *stringify(struct token *arg)
{
const char *s = show_token_sequence(arg);
int size = strlen(s)+1;
struct token *token = __alloc_token(0);
struct string *string = __alloc_string(size);
memcpy(string->data, s, size);
string->length = size;
token->pos = arg->pos;
token_type(token) = TOKEN_STRING;
token->string = string;
token->next = &eof_token_entry;
return token;
}
static void expand_arguments(int count, struct arg *args)
{
int i;
for (i = 0; i < count; i++) {
struct token *arg = args[i].arg;
if (!arg)
arg = &eof_token_entry;
if (args[i].n_str)
args[i].str = stringify(arg);
if (args[i].n_normal) {
if (!args[i].n_quoted) {
args[i].expanded = arg;
args[i].arg = NULL;
} else if (eof_token(arg)) {
args[i].expanded = arg;
} else {
args[i].expanded = dup_list(arg);
}
expand_list(&args[i].expanded);
}
}
}
/*
* Possibly valid combinations:
* - ident + ident -> ident
* - ident + number -> ident unless number contains '.', '+' or '-'.
* - number + number -> number
* - number + ident -> number
* - number + '.' -> number
* - number + '+' or '-' -> number, if number used to end on [eEpP].
* - '.' + number -> number, if number used to start with a digit.
* - special + special -> either special or an error.
*/
static enum token_type combine(struct token *left, struct token *right, char *p)
{
int len;
enum token_type t1 = token_type(left), t2 = token_type(right);
if (t1 != TOKEN_IDENT && t1 != TOKEN_NUMBER && t1 != TOKEN_SPECIAL)
return TOKEN_ERROR;
if (t2 != TOKEN_IDENT && t2 != TOKEN_NUMBER && t2 != TOKEN_SPECIAL)
return TOKEN_ERROR;
strcpy(p, show_token(left));
strcat(p, show_token(right));
len = strlen(p);
if (len >= 256)
return TOKEN_ERROR;
if (t1 == TOKEN_IDENT) {
if (t2 == TOKEN_SPECIAL)
return TOKEN_ERROR;
if (t2 == TOKEN_NUMBER && strpbrk(p, "+-."))
return TOKEN_ERROR;
return TOKEN_IDENT;
}
if (t1 == TOKEN_NUMBER) {
if (t2 == TOKEN_SPECIAL) {
switch (right->special) {
case '.':
break;
case '+': case '-':
if (strchr("eEpP", p[len - 2]))
break;
default:
return TOKEN_ERROR;
}
}
return TOKEN_NUMBER;
}
if (p[0] == '.' && isdigit((unsigned char)p[1]))
return TOKEN_NUMBER;
return TOKEN_SPECIAL;
}
static int merge(struct token *left, struct token *right)
{
static char buffer[512];
int n;
switch (combine(left, right, buffer)) {
case TOKEN_IDENT:
left->ident = built_in_ident(buffer);
left->pos.noexpand = 0;
return 1;
case TOKEN_NUMBER: {
char *number = __alloc_bytes(strlen(buffer) + 1);
memcpy(number, buffer, strlen(buffer) + 1);
token_type(left) = TOKEN_NUMBER; /* could be . + num */
left->number = number;
return 1;
}
case TOKEN_SPECIAL:
if (buffer[2] && buffer[3])
break;
for (n = SPECIAL_BASE; n < SPECIAL_ARG_SEPARATOR; n++) {
if (!memcmp(buffer, combinations[n-SPECIAL_BASE], 3)) {
left->special = n;
return 1;
}
}
default:
;
}
sparse_error(left->pos, "'##' failed: concatenation is not a valid token");
return 0;
}
static struct token *dup_token(struct token *token, struct position *streampos, struct position *pos)
{
struct token *alloc = alloc_token(streampos);
token_type(alloc) = token_type(token);
alloc->pos.newline = pos->newline;
alloc->pos.whitespace = pos->whitespace;
alloc->number = token->number;
alloc->pos.noexpand = token->pos.noexpand;
return alloc;
}
static struct token **copy(struct token **where, struct token *list, int *count)
{
int need_copy = --*count;
while (!eof_token(list)) {
struct token *token;
if (need_copy)
token = dup_token(list, &list->pos, &list->pos);
else
token = list;
if (token_type(token) == TOKEN_IDENT && token->ident->tainted)
token->pos.noexpand = 1;
*where = token;
where = &token->next;
list = list->next;
}
*where = &eof_token_entry;
return where;
}
static struct token **substitute(struct token **list, struct token *body, struct arg *args)
{
struct token *token = *list;
struct position *base_pos = &token->pos;
struct position *pos = base_pos;
int *count;
enum {Normal, Placeholder, Concat} state = Normal;
for (; !eof_token(body); body = body->next, pos = &body->pos) {
struct token *added, *arg;
struct token **tail;
switch (token_type(body)) {
case TOKEN_GNU_KLUDGE:
/*
* GNU kludge: if we had <comma>##<vararg>, behaviour
* depends on whether we had enough arguments to have
* a vararg. If we did, ## is just ignored. Otherwise
* both , and ## are ignored. Comma should come from
* the body of macro and not be an argument of earlier
* concatenation.
*/
if (!args[body->next->argnum].arg)
continue;
added = dup_token(body, base_pos, pos);
token_type(added) = TOKEN_SPECIAL;
tail = &added->next;
break;
case TOKEN_STR_ARGUMENT:
arg = args[body->argnum].str;
count = &args[body->argnum].n_str;
goto copy_arg;
case TOKEN_QUOTED_ARGUMENT:
arg = args[body->argnum].arg;
count = &args[body->argnum].n_quoted;
if (!arg || eof_token(arg)) {
if (state == Concat)
state = Normal;
else
state = Placeholder;
continue;
}
goto copy_arg;
case TOKEN_MACRO_ARGUMENT:
arg = args[body->argnum].expanded;
count = &args[body->argnum].n_normal;
if (eof_token(arg)) {
state = Normal;
continue;
}
copy_arg:
tail = copy(&added, arg, count);
added->pos.newline = pos->newline;
added->pos.whitespace = pos->whitespace;
break;
case TOKEN_CONCAT:
if (state == Placeholder)
state = Normal;
else
state = Concat;
continue;
case TOKEN_IDENT:
added = dup_token(body, base_pos, pos);
if (added->ident->tainted)
added->pos.noexpand = 1;
tail = &added->next;
break;
default:
added = dup_token(body, base_pos, pos);
tail = &added->next;
break;
}
/*
* if we got to doing real concatenation, we already have
* added something into the list, so containing_token() is OK.
*/
if (state == Concat && merge(containing_token(list), added)) {
*list = added->next;
if (tail != &added->next)
list = tail;
} else {
*list = added;
list = tail;
}
state = Normal;
}
*list = &eof_token_entry;
return list;
}
static int expand(struct token **list, struct symbol *sym)
{
struct token *last;
struct token *token = *list;
struct ident *expanding = token->ident;
struct token **tail;
int nargs = sym->arglist ? sym->arglist->count.normal : 0;
struct arg args[nargs];
if (expanding->tainted) {
token->pos.noexpand = 1;
return 1;
}
if (sym->arglist) {
if (!match_op(scan_next(&token->next), '('))
return 1;
if (!collect_arguments(token->next, sym->arglist, args, token))
return 1;
expand_arguments(nargs, args);
}
expanding->tainted = 1;
last = token->next;
tail = substitute(list, sym->expansion, args);
*tail = last;
return 0;
}
static const char *token_name_sequence(struct token *token, int endop, struct token *start)
{
struct token *last;
static char buffer[256];
char *ptr = buffer;
last = token;
while (!eof_token(token) && !match_op(token, endop)) {
int len;
const char *val = token->string->data;
if (token_type(token) != TOKEN_STRING)
val = show_token(token);
len = strlen(val);
memcpy(ptr, val, len);
ptr += len;
token = token->next;
}
*ptr = 0;
if (endop && !match_op(token, endop))
sparse_error(start->pos, "expected '>' at end of filename");
return buffer;
}
static int already_tokenized(const char *path)
{
int i;
struct stream *s = input_streams;
for (i = input_stream_nr; --i >= 0; s++) {
if (s->constant != CONSTANT_FILE_YES)
continue;
if (strcmp(path, s->name))
continue;
if (s->protect && !lookup_macro(s->protect))
continue;
return 1;
}
return 0;
}
/* Handle include of header files.
* The relevant options are made compatible with gcc. The only options that
* are not supported is -withprefix and friends.
*
* Three set of include paths are known:
* quote_includepath: Path to search when using #include "file.h"
* angle_includepath: Path to search when using #include <file.h>
* sys_includepath: Built-in include paths
*
* The above is implemented as one array with pointers
* +--------------+
* quote_includepath ---> | |
* +--------------+
* | |
* +--------------+
* angle_includepath ---> | |
* +--------------+
* sys_includepath ---> | |
* +--------------+
* | |
* +--------------+
*
* -I dir insert dir just before sys_includepath and move the rest
* -I- makes all dirs specified with -I before to quote dirs only and
* angle_includepath is set equal to sys_includepath.
* -nostdinc removes all sys dirs be storing NULL in entry pointed
* to by * sys_includepath. Note this will reset all dirs built-in and added
* before -nostdinc by -isystem and -dirafter
* -isystem dir adds dir where sys_includepath points adding this dir as
* first systemdir
* -dirafter dir adds dir to the end of the list
**/
static void set_stream_include_path(struct stream *stream)
{
const char *path = stream->path;
if (!path) {
const char *p = strrchr(stream->name, '/');
path = "";
if (p) {
int len = p - stream->name + 1;
char *m = malloc(len+1);
/* This includes the final "/" */
memcpy(m, stream->name, len);
m[len] = 0;
path = m;
}
stream->path = path;
}
includepath[0] = path;
}
static int try_include(const char *path, const char *filename, int flen, struct token **where, const char **next_path)
{
int fd;
int plen = strlen(path);
static char fullname[PATH_MAX];
memcpy(fullname, path, plen);
if (plen && path[plen-1] != '/') {
fullname[plen] = '/';
plen++;
}
memcpy(fullname+plen, filename, flen);
if (already_tokenized(fullname))
return 1;
fd = open(fullname, O_RDONLY);
if (fd >= 0) {
char * streamname = __alloc_bytes(plen + flen);
memcpy(streamname, fullname, plen + flen);
*where = tokenize(streamname, fd, *where, next_path);
close(fd);
return 1;
}
return 0;
}
static int do_include_path(const char **pptr, struct token **list, struct token *token, const char *filename, int flen)
{
const char *path;
while ((path = *pptr++) != NULL) {
if (!try_include(path, filename, flen, list, pptr))
continue;
return 1;
}
return 0;
}
static void do_include(int local, struct stream *stream, struct token **list, struct token *token, const char *filename, const char **path)
{
int flen = strlen(filename) + 1;
/* Absolute path? */
if (filename[0] == '/') {
if (try_include("", filename, flen, list, includepath))
return;
goto out;
}
/* Dir of input file is first dir to search for quoted includes */
set_stream_include_path(stream);
if (!path)
/* Do not search quote include if <> is in use */
path = local ? quote_includepath : angle_includepath;
/* Check the standard include paths.. */
if (do_include_path(path, list, token, filename, flen))
return;
out:
error_die(token->pos, "unable to open '%s'", filename);
}
static int free_preprocessor_line(struct token *token)
{
while (token_type(token) != TOKEN_EOF) {
struct token *free = token;
token = token->next;
__free_token(free);
};
return 1;
}
static int handle_include_path(struct stream *stream, struct token **list, struct token *token, const char **path)
{
const char *filename;
struct token *next;
int expect;
next = token->next;
expect = '>';
if (!match_op(next, '<')) {
expand_list(&token->next);
expect = 0;
next = token;
if (match_op(token->next, '<')) {
next = token->next;
expect = '>';
}
}
token = next->next;
filename = token_name_sequence(token, expect, token);
do_include(!expect, stream, list, token, filename, path);
return 0;
}
static int handle_include(struct stream *stream, struct token **list, struct token *token)
{
return handle_include_path(stream, list, token, NULL);
}
static int handle_include_next(struct stream *stream, struct token **list, struct token *token)
{
return handle_include_path(stream, list, token, stream->next_path);
}
static int token_different(struct token *t1, struct token *t2)
{
int different;
if (token_type(t1) != token_type(t2))
return 1;
switch (token_type(t1)) {
case TOKEN_IDENT:
different = t1->ident != t2->ident;
break;
case TOKEN_ARG_COUNT:
case TOKEN_UNTAINT:
case TOKEN_CONCAT:
case TOKEN_GNU_KLUDGE:
different = 0;
break;
case TOKEN_NUMBER:
different = strcmp(t1->number, t2->number);
break;
case TOKEN_SPECIAL:
different = t1->special != t2->special;
break;
case TOKEN_MACRO_ARGUMENT:
case TOKEN_QUOTED_ARGUMENT:
case TOKEN_STR_ARGUMENT:
different = t1->argnum != t2->argnum;
break;
case TOKEN_CHAR:
different = t1->character != t2->character;
break;
case TOKEN_STRING: {
struct string *s1, *s2;
s1 = t1->string;
s2 = t2->string;
different = 1;
if (s1->length != s2->length)
break;
different = memcmp(s1->data, s2->data, s1->length);
break;
}
default:
different = 1;
break;
}
return different;
}
static int token_list_different(struct token *list1, struct token *list2)
{
for (;;) {
if (list1 == list2)
return 0;
if (!list1 || !list2)
return 1;
if (token_different(list1, list2))
return 1;
list1 = list1->next;
list2 = list2->next;
}
}
static inline void set_arg_count(struct token *token)
{
token_type(token) = TOKEN_ARG_COUNT;
token->count.normal = token->count.quoted =
token->count.str = token->count.vararg = 0;
}
static struct token *parse_arguments(struct token *list)
{
struct token *arg = list->next, *next = list;
struct argcount *count = &list->count;
set_arg_count(list);
if (match_op(arg, ')')) {
next = arg->next;
list->next = &eof_token_entry;
return next;
}
while (token_type(arg) == TOKEN_IDENT) {
if (arg->ident == &__VA_ARGS___ident)
goto Eva_args;
if (!++count->normal)
goto Eargs;
next = arg->next;
if (match_op(next, ',')) {
set_arg_count(next);
arg = next->next;
continue;
}
if (match_op(next, ')')) {
set_arg_count(next);
next = next->next;
arg->next->next = &eof_token_entry;
return next;
}
/* normal cases are finished here */
if (match_op(next, SPECIAL_ELLIPSIS)) {
if (match_op(next->next, ')')) {
set_arg_count(next);
next->count.vararg = 1;
next = next->next;
arg->next->next = &eof_token_entry;
return next->next;
}
arg = next;
goto Enotclosed;
}
if (eof_token(next)) {
goto Enotclosed;
} else {
arg = next;
goto Ebadstuff;
}
}
if (match_op(arg, SPECIAL_ELLIPSIS)) {
next = arg->next;
token_type(arg) = TOKEN_IDENT;
arg->ident = &__VA_ARGS___ident;
if (!match_op(next, ')'))
goto Enotclosed;
if (!++count->normal)
goto Eargs;
set_arg_count(next);
next->count.vararg = 1;
next = next->next;
arg->next->next = &eof_token_entry;
return next;
}
if (eof_token(arg)) {
arg = next;
goto Enotclosed;
}
if (match_op(arg, ','))
goto Emissing;
else
goto Ebadstuff;
Emissing:
sparse_error(arg->pos, "parameter name missing");
return NULL;
Ebadstuff:
sparse_error(arg->pos, "\"%s\" may not appear in macro parameter list",
show_token(arg));
return NULL;
Enotclosed:
sparse_error(arg->pos, "missing ')' in macro parameter list");
return NULL;
Eva_args:
sparse_error(arg->pos, "__VA_ARGS__ can only appear in the expansion of a C99 variadic macro");
return NULL;
Eargs:
sparse_error(arg->pos, "too many arguments in macro definition");
return NULL;
}
static int try_arg(struct token *token, enum token_type type, struct token *arglist)
{
struct ident *ident = token->ident;
int nr;
if (!arglist || token_type(token) != TOKEN_IDENT)
return 0;
arglist = arglist->next;
for (nr = 0; !eof_token(arglist); nr++, arglist = arglist->next->next) {
if (arglist->ident == ident) {
struct argcount *count = &arglist->next->count;
int n;
token->argnum = nr;
token_type(token) = type;
switch (type) {
case TOKEN_MACRO_ARGUMENT:
n = ++count->normal;
break;
case TOKEN_QUOTED_ARGUMENT:
n = ++count->quoted;
break;
default:
n = ++count->str;
}
if (n)
return count->vararg ? 2 : 1;
token_type(token) = TOKEN_ERROR;
return -1;
}
}
return 0;
}
static struct token *parse_expansion(struct token *expansion, struct token *arglist, struct ident *name)
{
struct token *token = expansion;
struct token **p;
struct token *last = NULL;
if (match_op(token, SPECIAL_HASHHASH))
goto Econcat;
for (p = &expansion; !eof_token(token); p = &token->next, token = *p) {
if (match_op(token, '#')) {
if (arglist) {
struct token *next = token->next;
if (!try_arg(next, TOKEN_STR_ARGUMENT, arglist))
goto Equote;
next->pos.whitespace = token->pos.whitespace;
token = *p = next;
} else {
token->pos.noexpand = 1;
}
} else if (match_op(token, SPECIAL_HASHHASH)) {
struct token *next = token->next;
int arg = try_arg(next, TOKEN_QUOTED_ARGUMENT, arglist);
token_type(token) = TOKEN_CONCAT;
if (arg) {
token = next;
/* GNU kludge */
if (arg == 2 && last && match_op(last, ',')) {
token_type(last) = TOKEN_GNU_KLUDGE;
last->next = token;
}
} else if (match_op(next, SPECIAL_HASHHASH))
token = next;
else if (eof_token(next))
goto Econcat;
} else if (match_op(token->next, SPECIAL_HASHHASH)) {
try_arg(token, TOKEN_QUOTED_ARGUMENT, arglist);
} else {
try_arg(token, TOKEN_MACRO_ARGUMENT, arglist);
}
if (token_type(token) == TOKEN_ERROR)
goto Earg;
last = token;
}
token = alloc_token(&expansion->pos);
token_type(token) = TOKEN_UNTAINT;
token->ident = name;
token->next = *p;
*p = token;
return expansion;
Equote:
sparse_error(token->pos, "'#' is not followed by a macro parameter");
return NULL;
Econcat:
sparse_error(token->pos, "'##' cannot appear at the ends of macro expansion");
return NULL;
Earg:
sparse_error(token->pos, "too many instances of argument in body");
return NULL;
}
static int do_handle_define(struct stream *stream, struct token **line, struct token *token, int attr)
{
struct token *arglist, *expansion;
struct token *left = token->next;
struct symbol *sym;
struct ident *name;
int ret;
if (token_type(left) != TOKEN_IDENT) {
sparse_error(token->pos, "expected identifier to 'define'");
return 1;
}
name = left->ident;
arglist = NULL;
expansion = left->next;
if (!expansion->pos.whitespace) {
if (match_op(expansion, '(')) {
arglist = expansion;
expansion = parse_arguments(expansion);
if (!expansion)
return 1;
} else if (!eof_token(expansion)) {
warning(expansion->pos,
"no whitespace before object-like macro body");
}
}
expansion = parse_expansion(expansion, arglist, name);
if (!expansion)
return 1;
ret = 1;
sym = lookup_symbol(name, NS_MACRO | NS_UNDEF);
if (sym) {
int clean;
if (attr < sym->attr)
goto out;
clean = (attr == sym->attr && sym->namespace == NS_MACRO);
if (token_list_different(sym->expansion, expansion) ||
token_list_different(sym->arglist, arglist)) {
ret = 0;
if ((clean && attr == SYM_ATTR_NORMAL)
|| sym->used_in == file_scope) {
warning(left->pos, "preprocessor token %.*s redefined",
name->len, name->name);
info(sym->pos, "this was the original definition");
}
} else if (clean)
goto out;
}
if (!sym || sym->scope != file_scope) {
sym = alloc_symbol(left->pos, SYM_NODE);
bind_symbol(sym, name, NS_MACRO);
ret = 0;
}
if (!ret) {
sym->expansion = expansion;
sym->arglist = arglist;
__free_token(token); /* Free the "define" token, but not the rest of the line */
}
sym->namespace = NS_MACRO;
sym->used_in = NULL;
sym->attr = attr;
out:
return ret;
}
static int handle_define(struct stream *stream, struct token **line, struct token *token)
{
return do_handle_define(stream, line, token, SYM_ATTR_NORMAL);
}
static int handle_weak_define(struct stream *stream, struct token **line, struct token *token)
{
return do_handle_define(stream, line, token, SYM_ATTR_WEAK);
}
static int handle_strong_define(struct stream *stream, struct token **line, struct token *token)
{
return do_handle_define(stream, line, token, SYM_ATTR_STRONG);
}
static int do_handle_undef(struct stream *stream, struct token **line, struct token *token, int attr)
{
struct token *left = token->next;
struct symbol *sym;
if (token_type(left) != TOKEN_IDENT) {
sparse_error(token->pos, "expected identifier to 'undef'");
return 1;
}
sym = lookup_symbol(left->ident, NS_MACRO | NS_UNDEF);
if (sym) {
if (attr < sym->attr)
return 1;
if (attr == sym->attr && sym->namespace == NS_UNDEF)
return 1;
} else if (attr <= SYM_ATTR_NORMAL)
return 1;
if (!sym || sym->scope != file_scope) {
sym = alloc_symbol(left->pos, SYM_NODE);
bind_symbol(sym, left->ident, NS_MACRO);
}
sym->namespace = NS_UNDEF;
sym->used_in = NULL;
sym->attr = attr;
return 1;
}
static int handle_undef(struct stream *stream, struct token **line, struct token *token)
{
return do_handle_undef(stream, line, token, SYM_ATTR_NORMAL);
}
static int handle_strong_undef(struct stream *stream, struct token **line, struct token *token)
{
return do_handle_undef(stream, line, token, SYM_ATTR_STRONG);
}
static int preprocessor_if(struct stream *stream, struct token *token, int true)
{
token_type(token) = false_nesting ? TOKEN_SKIP_GROUPS : TOKEN_IF;
free_preprocessor_line(token->next);
token->next = stream->top_if;
stream->top_if = token;
if (false_nesting || true != 1)
false_nesting++;
return 0;
}
static int handle_ifdef(struct stream *stream, struct token **line, struct token *token)
{
struct token *next = token->next;
int arg;
if (token_type(next) == TOKEN_IDENT) {
arg = token_defined(next);
} else {
dirty_stream(stream);
if (!false_nesting)
sparse_error(token->pos, "expected preprocessor identifier");
arg = -1;
}
return preprocessor_if(stream, token, arg);
}
static int handle_ifndef(struct stream *stream, struct token **line, struct token *token)
{
struct token *next = token->next;
int arg;
if (token_type(next) == TOKEN_IDENT) {
if (!stream->dirty && !stream->ifndef) {
if (!stream->protect) {
stream->ifndef = token;
stream->protect = next->ident;
} else if (stream->protect == next->ident) {
stream->ifndef = token;
stream->dirty = 1;
}
}
arg = !token_defined(next);
} else {
dirty_stream(stream);
if (!false_nesting)
sparse_error(token->pos, "expected preprocessor identifier");
arg = -1;
}
return preprocessor_if(stream, token, arg);
}
/*
* Expression handling for #if and #elif; it differs from normal expansion
* due to special treatment of "defined".
*/
static int expression_value(struct token **where)
{
struct expression *expr;
struct token *p;
struct token **list = where, **beginning = NULL;
long long value;
int state = 0;
while (!eof_token(p = scan_next(list))) {
switch (state) {
case 0:
if (token_type(p) != TOKEN_IDENT)
break;
if (p->ident == &defined_ident) {
state = 1;
beginning = list;
break;
}
if (!expand_one_symbol(list))
continue;
if (token_type(p) != TOKEN_IDENT)
break;
token_type(p) = TOKEN_ZERO_IDENT;
break;
case 1:
if (match_op(p, '(')) {
state = 2;
} else {
state = 0;
replace_with_defined(p);
*beginning = p;
}
break;
case 2:
if (token_type(p) == TOKEN_IDENT)
state = 3;
else
state = 0;
replace_with_defined(p);
*beginning = p;
break;
case 3:
state = 0;
if (!match_op(p, ')'))
sparse_error(p->pos, "missing ')' after \"defined\"");
*list = p->next;
continue;
}
list = &p->next;
}
p = constant_expression(*where, &expr);
if (!eof_token(p))
sparse_error(p->pos, "garbage at end: %s", show_token_sequence(p));
value = get_expression_value(expr);
return value != 0;
}
static int handle_if(struct stream *stream, struct token **line, struct token *token)
{
int value = 0;
if (!false_nesting)
value = expression_value(&token->next);
dirty_stream(stream);
return preprocessor_if(stream, token, value);
}
static int handle_elif(struct stream * stream, struct token **line, struct token *token)
{
struct token *top_if = stream->top_if;
end_group(stream);
if (!top_if) {
nesting_error(stream);
sparse_error(token->pos, "unmatched #elif within stream");
return 1;
}
if (token_type(top_if) == TOKEN_ELSE) {
nesting_error(stream);
sparse_error(token->pos, "#elif after #else");
if (!false_nesting)
false_nesting = 1;
return 1;
}
dirty_stream(stream);
if (token_type(top_if) != TOKEN_IF)
return 1;
if (false_nesting) {
if (expression_value(&token->next))
false_nesting = 0;
} else {
false_nesting = 1;
token_type(top_if) = TOKEN_SKIP_GROUPS;
}
return 1;
}
static int handle_else(struct stream *stream, struct token **line, struct token *token)
{
struct token *top_if = stream->top_if;
end_group(stream);
if (!top_if) {
nesting_error(stream);
sparse_error(token->pos, "unmatched #else within stream");
return 1;
}
if (token_type(top_if) == TOKEN_ELSE) {
nesting_error(stream);
sparse_error(token->pos, "#else after #else");
}
if (false_nesting) {
if (token_type(top_if) == TOKEN_IF)
false_nesting = 0;
} else {
false_nesting = 1;
}
token_type(top_if) = TOKEN_ELSE;
return 1;
}
static int handle_endif(struct stream *stream, struct token **line, struct token *token)
{
struct token *top_if = stream->top_if;
end_group(stream);
if (!top_if) {
nesting_error(stream);
sparse_error(token->pos, "unmatched #endif in stream");
return 1;
}
if (false_nesting)
false_nesting--;
stream->top_if = top_if->next;
__free_token(top_if);
return 1;
}
static const char *show_token_sequence(struct token *token)
{
static char buffer[1024];
char *ptr = buffer;
int whitespace = 0;
if (!token)
return "<none>";
while (!eof_token(token)) {
const char *val = show_token(token);
int len = strlen(val);
if (ptr + whitespace + len >= buffer + sizeof(buffer)) {
sparse_error(token->pos, "too long token expansion");
break;
}
if (whitespace)
*ptr++ = ' ';
memcpy(ptr, val, len);
ptr += len;
token = token->next;
whitespace = token->pos.whitespace;
}
*ptr = 0;
return buffer;
}
static int handle_warning(struct stream *stream, struct token **line, struct token *token)
{
warning(token->pos, "%s", show_token_sequence(token->next));
return 1;
}
static int handle_error(struct stream *stream, struct token **line, struct token *token)
{
sparse_error(token->pos, "%s", show_token_sequence(token->next));
return 1;
}
static int handle_nostdinc(struct stream *stream, struct token **line, struct token *token)
{
/*
* Do we have any non-system includes?
* Clear them out if so..
*/
*sys_includepath = NULL;
return 1;
}
static void add_path_entry(struct token *token, const char *path, const char ***where, const char **new_path)
{
const char **dst;
const char *next;
/* Need one free entry.. */
if (includepath[INCLUDEPATHS-2])
error_die(token->pos, "too many include path entries");
/* check that this is not a duplicate */
dst = includepath;
while (*dst) {
if (strcmp(*dst, path) == 0)
return;
dst++;
}
next = path;
dst = *where;
*where = new_path;
/*
* Move them all up starting at dst,
* insert the new entry..
*/
for (;;) {
const char *tmp = *dst;
*dst = next;
if (!next)
break;
next = tmp;
dst++;
}
}
static int handle_add_include(struct stream *stream, struct token **line, struct token *token)
{
for (;;) {
token = token->next;
if (eof_token(token))
return 1;
if (token_type(token) != TOKEN_STRING) {
warning(token->pos, "expected path string");
return 1;
}
add_path_entry(token, token->string->data, &sys_includepath, sys_includepath + 1);
}
}
static int handle_add_isystem(struct stream *stream, struct token **line, struct token *token)
{
for (;;) {
token = token->next;
if (eof_token(token))
return 1;
if (token_type(token) != TOKEN_STRING) {
sparse_error(token->pos, "expected path string");
return 1;
}
add_path_entry(token, token->string->data, &sys_includepath, sys_includepath);
}
}
/* Add to end on includepath list - no pointer updates */
static void add_dirafter_entry(struct token *token, const char *path)
{
const char **dst = includepath;
/* Need one free entry.. */
if (includepath[INCLUDEPATHS-2])
error_die(token->pos, "too many include path entries");
/* Add to the end */
while (*dst)
dst++;
*dst = path;
dst++;
*dst = NULL;
}
static int handle_add_dirafter(struct stream *stream, struct token **line, struct token *token)
{
for (;;) {
token = token->next;
if (eof_token(token))
return 1;
if (token_type(token) != TOKEN_STRING) {
sparse_error(token->pos, "expected path string");
return 1;
}
add_dirafter_entry(token, token->string->data);
}
}
static int handle_split_include(struct stream *stream, struct token **line, struct token *token)
{
/*
* -I-
* From info gcc:
* Split the include path. Any directories specified with `-I'
* options before `-I-' are searched only for headers requested with
* `#include "FILE"'; they are not searched for `#include <FILE>'.
* If additional directories are specified with `-I' options after
* the `-I-', those directories are searched for all `#include'
* directives.
* In addition, `-I-' inhibits the use of the directory of the current
* file directory as the first search directory for `#include "FILE"'.
*/
quote_includepath = includepath+1;
angle_includepath = sys_includepath;
return 1;
}
/*
* We replace "#pragma xxx" with "__pragma__" in the token
* stream. Just as an example.
*
* We'll just #define that away for now, but the theory here
* is that we can use this to insert arbitrary token sequences
* to turn the pragmas into internal front-end sequences for
* when we actually start caring about them.
*
* So eventually this will turn into some kind of extended
* __attribute__() like thing, except called __pragma__(xxx).
*/
static int handle_pragma(struct stream *stream, struct token **line, struct token *token)
{
struct token *next = *line;
token->ident = &pragma_ident;
token->pos.newline = 1;
token->pos.whitespace = 1;
token->pos.pos = 1;
*line = token;
token->next = next;
return 0;
}
/*
* We ignore #line for now.
*/
static int handle_line(struct stream *stream, struct token **line, struct token *token)
{
return 1;
}
static int handle_nondirective(struct stream *stream, struct token **line, struct token *token)
{
sparse_error(token->pos, "unrecognized preprocessor line '%s'", show_token_sequence(token));
return 1;
}
static void init_preprocessor(void)
{
int i;
int stream = init_stream("preprocessor", -1, includepath);
static struct {
const char *name;
int (*handler)(struct stream *, struct token **, struct token *);
} normal[] = {
{ "define", handle_define },
{ "weak_define", handle_weak_define },
{ "strong_define", handle_strong_define },
{ "undef", handle_undef },
{ "strong_undef", handle_strong_undef },
{ "warning", handle_warning },
{ "error", handle_error },
{ "include", handle_include },
{ "include_next", handle_include_next },
{ "pragma", handle_pragma },
{ "line", handle_line },
// our internal preprocessor tokens
{ "nostdinc", handle_nostdinc },
{ "add_include", handle_add_include },
{ "add_isystem", handle_add_isystem },
{ "add_dirafter", handle_add_dirafter },
{ "split_include", handle_split_include },
}, special[] = {
{ "ifdef", handle_ifdef },
{ "ifndef", handle_ifndef },
{ "else", handle_else },
{ "endif", handle_endif },
{ "if", handle_if },
{ "elif", handle_elif },
};
for (i = 0; i < (sizeof (normal) / sizeof (normal[0])); i++) {
struct symbol *sym;
sym = create_symbol(stream, normal[i].name, SYM_PREPROCESSOR, NS_PREPROCESSOR);
sym->handler = normal[i].handler;
sym->normal = 1;
}
for (i = 0; i < (sizeof (special) / sizeof (special[0])); i++) {
struct symbol *sym;
sym = create_symbol(stream, special[i].name, SYM_PREPROCESSOR, NS_PREPROCESSOR);
sym->handler = special[i].handler;
sym->normal = 0;
}
}
static void handle_preprocessor_line(struct stream *stream, struct token **line, struct token *start)
{
int (*handler)(struct stream *, struct token **, struct token *);
struct token *token = start->next;
int is_normal = 1;
if (eof_token(token))
return;
if (token_type(token) == TOKEN_IDENT) {
struct symbol *sym = lookup_symbol(token->ident, NS_PREPROCESSOR);
if (sym) {
handler = sym->handler;
is_normal = sym->normal;
} else {
handler = handle_nondirective;
}
} else if (token_type(token) == TOKEN_NUMBER) {
handler = handle_line;
} else {
handler = handle_nondirective;
}
if (is_normal) {
dirty_stream(stream);
if (false_nesting)
goto out;
}
if (!handler(stream, line, token)) /* all set */
return;
out:
free_preprocessor_line(token);
}
static void preprocessor_line(struct stream *stream, struct token **line)
{
struct token *start = *line, *next;
struct token **tp = &start->next;
for (;;) {
next = *tp;
if (next->pos.newline)
break;
tp = &next->next;
}
*line = next;
*tp = &eof_token_entry;
handle_preprocessor_line(stream, line, start);
}
static void do_preprocess(struct token **list)
{
struct token *next;
while (!eof_token(next = scan_next(list))) {
struct stream *stream = input_streams + next->pos.stream;
if (next->pos.newline && match_op(next, '#')) {
if (!next->pos.noexpand) {
preprocessor_line(stream, list);
__free_token(next); /* Free the '#' token */
continue;
}
}
switch (token_type(next)) {
case TOKEN_STREAMEND:
if (stream->top_if) {
nesting_error(stream);
sparse_error(stream->top_if->pos, "unterminated preprocessor conditional");
stream->top_if = NULL;
false_nesting = 0;
}
if (!stream->dirty)
stream->constant = CONSTANT_FILE_YES;
*list = next->next;
continue;
case TOKEN_STREAMBEGIN:
*list = next->next;
continue;
default:
dirty_stream(stream);
if (false_nesting) {
*list = next->next;
__free_token(next);
continue;
}
if (token_type(next) != TOKEN_IDENT ||
expand_one_symbol(list))
list = &next->next;
}
}
}
struct token * preprocess(struct token *token)
{
preprocessing = 1;
init_preprocessor();
do_preprocess(&token);
// Drop all expressions from preprocessing, they're not used any more.
// This is not true when we have multiple files, though ;/
// clear_expression_alloc();
preprocessing = 0;
return token;
}
|