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
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
|
/*
* sparse/evaluate.c
*
* Copyright (C) 2003 Transmeta Corp.
* 2003 Linus Torvalds
*
* Licensed under the Open Software License version 1.1
*
* Evaluate constant expressions.
*/
#include <stdlib.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>
#include "lib.h"
#include "parse.h"
#include "token.h"
#include "symbol.h"
#include "target.h"
#include "expression.h"
static struct symbol *current_fn;
static int current_context, current_contextmask;
static struct symbol *degenerate(struct expression *expr);
static struct symbol *evaluate_symbol_expression(struct expression *expr)
{
struct symbol *sym = expr->symbol;
struct symbol *base_type;
if (!sym) {
if (preprocessing) {
expr->ctype = &int_ctype;
return &int_ctype;
}
warn(expr->pos, "undefined identifier '%s'", show_ident(expr->symbol_name));
return NULL;
}
examine_symbol_type(sym);
if ((sym->ctype.context ^ current_context) & (sym->ctype.contextmask & current_contextmask))
warn(expr->pos, "Using symbol '%s' in wrong context", show_ident(expr->symbol_name));
base_type = sym->ctype.base_type;
if (!base_type) {
warn(expr->pos, "identifier '%s' has no type", show_ident(expr->symbol_name));
return NULL;
}
/* The type of a symbol is the symbol itself! */
expr->ctype = sym;
/* enum's can be turned into plain values */
if (sym->type != SYM_ENUM) {
struct expression *addr = alloc_expression(expr->pos, EXPR_SYMBOL);
addr->symbol = sym;
addr->symbol_name = expr->symbol_name;
addr->ctype = &lazy_ptr_ctype; /* Lazy evaluation: we need to do a proper job if somebody does &sym */
expr->type = EXPR_PREOP;
expr->op = '*';
expr->unop = addr;
return sym;
}
expr->type = EXPR_VALUE;
expr->value = sym->value;
expr->ctype = base_type;
return sym;
}
static struct symbol *evaluate_string(struct expression *expr)
{
struct symbol *sym = alloc_symbol(expr->pos, SYM_NODE);
struct symbol *array = alloc_symbol(expr->pos, SYM_ARRAY);
struct expression *addr = alloc_expression(expr->pos, EXPR_SYMBOL);
struct expression *initstr = alloc_expression(expr->pos, EXPR_STRING);
unsigned int length = expr->string->length;
sym->array_size = alloc_const_expression(expr->pos, length);
sym->bit_size = bits_in_char * length;
sym->ctype.alignment = 1;
sym->ctype.modifiers = MOD_STATIC;
sym->ctype.base_type = array;
sym->initializer = initstr;
initstr->ctype = sym;
initstr->string = expr->string;
array->array_size = sym->array_size;
array->bit_size = bits_in_char * length;
array->ctype.alignment = 1;
array->ctype.modifiers = MOD_STATIC;
array->ctype.base_type = &char_ctype;
addr->symbol = sym;
addr->ctype = &lazy_ptr_ctype;
expr->type = EXPR_PREOP;
expr->op = '*';
expr->unop = addr;
expr->ctype = sym;
return sym;
}
static inline struct symbol *integer_promotion(struct symbol *type)
{
unsigned long mod = type->ctype.modifiers;
int width;
if (type->type == SYM_ENUM)
return &int_ctype;
else if (type->type == SYM_BITFIELD) {
mod = type->ctype.base_type->ctype.modifiers;
width = type->fieldwidth;
} else if (mod & (MOD_CHAR | MOD_SHORT))
width = type->bit_size;
else
return type;
if (mod & MOD_UNSIGNED && width == bits_in_int)
return &uint_ctype;
return &int_ctype;
}
/*
* integer part of usual arithmetic conversions:
* integer promotions are applied
* if left and right are identical, we are done
* if signedness is the same, convert one with lower rank
* unless unsigned argument has rank lower than signed one, convert the
* signed one.
* if signed argument is bigger than unsigned one, convert the unsigned.
* otherwise, convert signed.
*
* Leaving aside the integer promotions, that is equivalent to
* if identical, don't convert
* if left is bigger than right, convert right
* if right is bigger than left, convert right
* otherwise, if signedness is the same, convert one with lower rank
* otherwise convert the signed one.
*/
static struct symbol *bigger_int_type(struct symbol *left, struct symbol *right)
{
unsigned long lmod, rmod;
left = integer_promotion(left);
right = integer_promotion(right);
if (left == right)
goto left;
if (left->bit_size > right->bit_size)
goto left;
if (right->bit_size > left->bit_size)
goto right;
lmod = left->ctype.modifiers;
rmod = right->ctype.modifiers;
if ((lmod ^ rmod) & MOD_UNSIGNED) {
if (lmod & MOD_UNSIGNED)
goto left;
} else if ((lmod & ~rmod) & (MOD_LONG | MOD_LONGLONG))
goto left;
right:
left = right;
left:
return left;
}
static struct expression * cast_to(struct expression *old, struct symbol *type)
{
struct expression *expr = alloc_expression(old->pos, EXPR_CAST);
expr->ctype = type;
expr->cast_type = type;
expr->cast_expression = old;
return expr;
}
static int is_type_type(struct symbol *type)
{
return (type->ctype.modifiers & MOD_TYPE) != 0;
}
static int is_ptr_type(struct symbol *type)
{
if (type->type == SYM_NODE)
type = type->ctype.base_type;
return type->type == SYM_PTR || type->type == SYM_ARRAY || type->type == SYM_FN;
}
static inline int is_float_type(struct symbol *type)
{
if (type->type == SYM_NODE)
type = type->ctype.base_type;
return type->ctype.base_type == &fp_type;
}
static inline int is_byte_type(struct symbol *type)
{
return type->bit_size == bits_in_char && type->type != SYM_BITFIELD;
}
static inline int is_string_type(struct symbol *type)
{
if (type->type == SYM_NODE)
type = type->ctype.base_type;
return type->type == SYM_ARRAY && is_byte_type(type->ctype.base_type);
}
static struct symbol *bad_expr_type(struct expression *expr)
{
warn(expr->pos, "incompatible types for operation (%s)", show_special(expr->op));
switch (expr->type) {
case EXPR_BINOP:
case EXPR_COMPARE:
info(expr->pos, " left side has type %s", show_typename(expr->left->ctype));
info(expr->pos, " right side has type %s", show_typename(expr->right->ctype));
break;
case EXPR_PREOP:
case EXPR_POSTOP:
info(expr->pos, " argument has type %s", show_typename(expr->unop->ctype));
break;
default:
break;
}
return NULL;
}
static struct symbol *compatible_float_binop(struct expression **lp, struct expression **rp)
{
struct expression *left = *lp, *right = *rp;
struct symbol *ltype = left->ctype, *rtype = right->ctype;
if (ltype->type == SYM_NODE)
ltype = ltype->ctype.base_type;
if (rtype->type == SYM_NODE)
rtype = rtype->ctype.base_type;
if (is_float_type(ltype)) {
if (is_int_type(rtype))
goto Left;
if (is_float_type(rtype)) {
unsigned long lmod = ltype->ctype.modifiers;
unsigned long rmod = rtype->ctype.modifiers;
lmod &= MOD_LONG | MOD_LONGLONG;
rmod &= MOD_LONG | MOD_LONGLONG;
if (lmod == rmod)
return ltype;
if (lmod & ~rmod)
goto Left;
else
goto Right;
}
return NULL;
}
if (!is_float_type(rtype) || !is_int_type(ltype))
return NULL;
Right:
*lp = cast_to(left, rtype);
return rtype;
Left:
*rp = cast_to(right, ltype);
return ltype;
}
static struct symbol *compatible_integer_binop(struct expression **lp, struct expression **rp)
{
struct expression *left = *lp, *right = *rp;
struct symbol *ltype = left->ctype, *rtype = right->ctype;
if (ltype->type == SYM_NODE)
ltype = ltype->ctype.base_type;
if (rtype->type == SYM_NODE)
rtype = rtype->ctype.base_type;
if (is_int_type(ltype) && is_int_type(rtype)) {
struct symbol *ctype = bigger_int_type(ltype, rtype);
/* Don't bother promoting same-size entities, it only adds clutter */
if (ltype->bit_size != ctype->bit_size)
*lp = cast_to(left, ctype);
if (rtype->bit_size != ctype->bit_size)
*rp = cast_to(right, ctype);
return ctype;
}
return NULL;
}
static int restricted_value(struct expression *v, struct symbol *type)
{
if (v->type != EXPR_VALUE)
return 1;
if (v->value != 0)
return 1;
return 0;
}
static int restricted_binop(int op, struct symbol *type)
{
switch (op) {
case '&':
case '|':
case '^':
case '?':
case SPECIAL_EQUAL:
case SPECIAL_NOTEQUAL:
return 0;
default:
return 1;
}
}
static int restricted_unop(int op, struct symbol *type)
{
if (op == '~' && type->bit_size >= bits_in_int)
return 0;
return 1;
}
static struct symbol *compatible_restricted_binop(int op, struct expression **lp, struct expression **rp)
{
struct expression *left = *lp, *right = *rp;
struct symbol *ltype = left->ctype, *rtype = right->ctype;
struct symbol *type = NULL;
if (ltype->type == SYM_NODE)
ltype = ltype->ctype.base_type;
if (rtype->type == SYM_NODE)
rtype = rtype->ctype.base_type;
if (is_restricted_type(ltype)) {
if (is_restricted_type(rtype)) {
if (ltype == rtype)
type = ltype;
} else {
if (!restricted_value(right, ltype))
type = ltype;
}
} else if (is_restricted_type(rtype)) {
if (!restricted_value(left, rtype))
type = rtype;
}
if (!type)
return NULL;
if (restricted_binop(op, type))
return NULL;
return type;
}
static struct symbol *evaluate_arith(struct expression *expr, int float_ok)
{
struct symbol *ctype = compatible_integer_binop(&expr->left, &expr->right);
if (!ctype && float_ok)
ctype = compatible_float_binop(&expr->left, &expr->right);
if (!ctype)
ctype = compatible_restricted_binop(expr->op, &expr->left, &expr->right);
if (ctype) {
expr->ctype = ctype;
return ctype;
}
return bad_expr_type(expr);
}
static inline int lvalue_expression(struct expression *expr)
{
return (expr->type == EXPR_PREOP && expr->op == '*') || expr->type == EXPR_BITFIELD;
}
static struct symbol *evaluate_ptr_add(struct expression *expr, struct expression *ptr, struct expression *i)
{
struct symbol *ctype;
struct symbol *ptr_type = ptr->ctype;
int bit_size;
if (ptr_type->type == SYM_NODE)
ptr_type = ptr_type->ctype.base_type;
if (!is_int_type(i->ctype))
return bad_expr_type(expr);
ctype = ptr->ctype;
examine_symbol_type(ctype);
ctype = degenerate(ptr);
if (!ctype->ctype.base_type) {
warn(expr->pos, "missing type information");
return NULL;
}
/* Get the size of whatever the pointer points to */
ptr_type = ctype;
if (ptr_type->type == SYM_NODE)
ptr_type = ptr_type->ctype.base_type;
if (ptr_type->type == SYM_PTR)
ptr_type = ptr_type->ctype.base_type;
bit_size = ptr_type->bit_size;
/* Special case: adding zero commonly happens as a result of 'array[0]' */
if (i->type == EXPR_VALUE && !i->value) {
*expr = *ptr;
} else if (bit_size > bits_in_char) {
struct expression *add = expr;
struct expression *mul = alloc_expression(expr->pos, EXPR_BINOP);
struct expression *val = alloc_expression(expr->pos, EXPR_VALUE);
val->ctype = size_t_ctype;
val->value = bit_size >> 3;
mul->op = '*';
mul->ctype = size_t_ctype;
mul->left = i;
mul->right = val;
/* Leave 'add->op' as 'expr->op' - either '+' or '-' */
add->left = ptr;
add->right = mul;
}
expr->ctype = ctype;
return ctype;
}
static struct symbol *evaluate_add(struct expression *expr)
{
struct expression *left = expr->left, *right = expr->right;
struct symbol *ltype = left->ctype, *rtype = right->ctype;
if (is_ptr_type(ltype))
return evaluate_ptr_add(expr, left, right);
if (is_ptr_type(rtype))
return evaluate_ptr_add(expr, right, left);
return evaluate_arith(expr, 1);
}
#define MOD_SIZE (MOD_CHAR | MOD_SHORT | MOD_LONG | MOD_LONGLONG)
#define MOD_IGNORE (MOD_TOPLEVEL | MOD_STORAGE | MOD_ADDRESSABLE | \
MOD_SIGNED | MOD_UNSIGNED | MOD_EXPLICITLY_SIGNED | \
MOD_ASSIGNED | MOD_USERTYPE | MOD_FORCE | MOD_ACCESSED)
const char * type_difference(struct symbol *target, struct symbol *source,
unsigned long target_mod_ignore, unsigned long source_mod_ignore)
{
for (;;) {
unsigned long mod1, mod2, diff;
unsigned long as1, as2;
int type1, type2;
struct symbol *base1, *base2;
if (target == source)
break;
if (!target || !source)
return "different types";
/*
* Peel of per-node information.
* FIXME! Check alignment and context too here!
*/
mod1 = target->ctype.modifiers;
as1 = target->ctype.as;
mod2 = source->ctype.modifiers;
as2 = source->ctype.as;
if (target->type == SYM_NODE) {
target = target->ctype.base_type;
if (!target)
return "bad types";
if (target->type == SYM_PTR) {
mod1 = 0;
as1 = 0;
}
mod1 |= target->ctype.modifiers;
as1 |= target->ctype.as;
}
if (source->type == SYM_NODE) {
source = source->ctype.base_type;
if (!source)
return "bad types";
if (source->type == SYM_PTR) {
mod2 = 0;
as2 = 0;
}
mod2 |= source->ctype.modifiers;
as2 |= source->ctype.as;
}
if (target == source)
break;
if (!target || !source)
return "different types";
type1 = target->type;
base1 = target->ctype.base_type;
type2 = source->type;
base2 = source->ctype.base_type;
/*
* Pointers to functions compare as the function itself
*/
if (type1 == SYM_PTR && base1) {
switch (base1->type) {
case SYM_FN:
type1 = SYM_FN;
target = base1;
base1 = base1->ctype.base_type;
default:
/* nothing */;
}
}
if (type2 == SYM_PTR && base2) {
switch (base2->type) {
case SYM_FN:
type2 = SYM_FN;
source = base2;
base2 = base2->ctype.base_type;
default:
/* nothing */;
}
}
/* Arrays degenerate to pointers for type comparisons */
type1 = (type1 == SYM_ARRAY) ? SYM_PTR : type1;
type2 = (type2 == SYM_ARRAY) ? SYM_PTR : type2;
if (type1 != type2 || type1 == SYM_RESTRICT)
return "different base types";
/* Must be same address space to be comparable */
if (as1 != as2)
return "different address spaces";
/* Ignore differences in storage types, sign, or addressability */
diff = (mod1 ^ mod2) & ~MOD_IGNORE;
if (diff) {
mod1 &= diff & ~target_mod_ignore;
mod2 &= diff & ~source_mod_ignore;
if (mod1 | mod2) {
if ((mod1 | mod2) & MOD_SIZE)
return "different type sizes";
return "different modifiers";
}
}
if (type1 == SYM_FN) {
int i;
struct symbol *arg1, *arg2;
if (base1->variadic != base2->variadic)
return "incompatible variadic arguments";
PREPARE_PTR_LIST(target->arguments, arg1);
PREPARE_PTR_LIST(source->arguments, arg2);
i = 1;
for (;;) {
const char *diff;
diff = type_difference(arg1, arg2, 0, 0);
if (diff) {
static char argdiff[80];
sprintf(argdiff, "incompatible argument %d (%s)", i, diff);
return argdiff;
}
if (!arg1)
break;
NEXT_PTR_LIST(arg1);
NEXT_PTR_LIST(arg2);
i++;
}
FINISH_PTR_LIST(arg2);
FINISH_PTR_LIST(arg1);
}
target = base1;
source = base2;
}
return NULL;
}
static int is_null_ptr(struct expression *expr)
{
if (expr->type != EXPR_VALUE || expr->value)
return 0;
if (!is_ptr_type(expr->ctype))
warn(expr->pos, "Using plain integer as NULL pointer");
return 1;
}
static struct symbol *common_ptr_type(struct expression *l, struct expression *r)
{
/* NULL expression? Just return the type of the "other side" */
if (is_null_ptr(r))
return l->ctype;
if (is_null_ptr(l))
return r->ctype;
return NULL;
}
/*
* Ignore differences in "volatile" and "const"ness when
* subtracting pointers
*/
#define MOD_IGN (MOD_VOLATILE | MOD_CONST)
static struct symbol *evaluate_ptr_sub(struct expression *expr, struct expression *l, struct expression *r)
{
const char *typediff;
struct symbol *ctype;
struct symbol *ltype, *rtype;
ltype = degenerate(l);
rtype = degenerate(r);
/*
* If it is an integer subtract: the ptr add case will do the
* right thing.
*/
if (!is_ptr_type(rtype))
return evaluate_ptr_add(expr, l, r);
ctype = ltype;
typediff = type_difference(ltype, rtype, ~MOD_SIZE, ~MOD_SIZE);
if (typediff) {
ctype = common_ptr_type(l, r);
if (!ctype) {
warn(expr->pos, "subtraction of different types can't work (%s)", typediff);
return NULL;
}
}
examine_symbol_type(ctype);
/* Figure out the base type we point to */
if (ctype->type == SYM_NODE)
ctype = ctype->ctype.base_type;
if (ctype->type != SYM_PTR && ctype->type != SYM_ARRAY) {
warn(expr->pos, "subtraction of functions? Share your drugs");
return NULL;
}
ctype = ctype->ctype.base_type;
expr->ctype = ssize_t_ctype;
if (ctype->bit_size > bits_in_char) {
struct expression *sub = alloc_expression(expr->pos, EXPR_BINOP);
struct expression *div = expr;
struct expression *val = alloc_expression(expr->pos, EXPR_VALUE);
val->ctype = size_t_ctype;
val->value = ctype->bit_size >> 3;
sub->op = '-';
sub->ctype = ssize_t_ctype;
sub->left = l;
sub->right = r;
div->op = '/';
div->left = sub;
div->right = val;
}
return ssize_t_ctype;
}
static struct symbol *evaluate_sub(struct expression *expr)
{
struct expression *left = expr->left, *right = expr->right;
struct symbol *ltype = left->ctype;
if (is_ptr_type(ltype))
return evaluate_ptr_sub(expr, left, right);
return evaluate_arith(expr, 1);
}
#define is_safe_type(type) ((type)->ctype.modifiers & MOD_SAFE)
static struct symbol *evaluate_conditional(struct expression **p)
{
struct symbol *ctype;
struct expression *expr = *p;
if (!expr)
return NULL;
if (expr->type == EXPR_ASSIGNMENT)
warn(expr->pos, "assignment expression in conditional");
ctype = evaluate_expression(expr);
if (ctype) {
if (is_safe_type(ctype))
warn(expr->pos, "testing a 'safe expression'");
if (is_float_type(ctype)) {
struct expression *comp;
/*
* It's easier to handle here, rather than deal with
* FP all over the place. Floating point in boolean
* context is rare enough (and very often wrong),
* so price of explicit comparison with appropriate
* FP zero is not too high. And it simplifies things
* elsewhere.
*/
comp = alloc_expression(expr->pos, EXPR_BINOP);
comp->op = SPECIAL_NOTEQUAL;
comp->left = expr;
comp->right = alloc_expression(expr->pos, EXPR_FVALUE);
comp->right->ctype = comp->left->ctype;
comp->right->fvalue = 0;
ctype = comp->ctype = &bool_ctype;
*p = comp;
}
}
return ctype;
}
static struct symbol *evaluate_logical(struct expression *expr)
{
if (!evaluate_conditional(&expr->left))
return NULL;
if (!evaluate_conditional(&expr->right))
return NULL;
expr->ctype = &bool_ctype;
return &bool_ctype;
}
static struct symbol *evaluate_shift(struct expression *expr)
{
struct expression *left = expr->left, *right = expr->right;
struct symbol *ltype = left->ctype, *rtype = right->ctype;
if (ltype->type == SYM_NODE)
ltype = ltype->ctype.base_type;
if (rtype->type == SYM_NODE)
rtype = rtype->ctype.base_type;
if (is_int_type(ltype) && is_int_type(rtype)) {
struct symbol *ctype = integer_promotion(ltype);
if (ltype->bit_size != ctype->bit_size)
expr->left = cast_to(expr->left, ctype);
expr->ctype = ctype;
ctype = integer_promotion(rtype);
if (rtype->bit_size != ctype->bit_size)
expr->right = cast_to(expr->right, ctype);
return expr->ctype;
}
return bad_expr_type(expr);
}
static struct symbol *evaluate_binop(struct expression *expr)
{
switch (expr->op) {
// addition can take ptr+int, fp and int
case '+':
return evaluate_add(expr);
// subtraction can take ptr-ptr, fp and int
case '-':
return evaluate_sub(expr);
// Arithmetic operations can take fp and int
case '*': case '/':
return evaluate_arith(expr, 1);
// shifts do integer promotions, but that's it.
case SPECIAL_LEFTSHIFT: case SPECIAL_RIGHTSHIFT:
return evaluate_shift(expr);
// The rest are integer operations
// '%', '&', '^', '|'
default:
return evaluate_arith(expr, 0);
}
}
static struct symbol *evaluate_comma(struct expression *expr)
{
expr->ctype = expr->right->ctype;
return expr->ctype;
}
static int modify_for_unsigned(int op)
{
if (op == '<')
op = SPECIAL_UNSIGNED_LT;
else if (op == '>')
op = SPECIAL_UNSIGNED_GT;
else if (op == SPECIAL_LTE)
op = SPECIAL_UNSIGNED_LTE;
else if (op == SPECIAL_GTE)
op = SPECIAL_UNSIGNED_GTE;
return op;
}
static struct symbol *evaluate_compare(struct expression *expr)
{
struct expression *left = expr->left, *right = expr->right;
struct symbol *ltype = left->ctype, *rtype = right->ctype;
struct symbol *ctype;
/* Type types? */
if (is_type_type(ltype) && is_type_type(rtype))
goto OK;
if (is_safe_type(ltype) || is_safe_type(rtype))
warn(expr->pos, "testing a 'safe expression'");
/* Pointer types? */
if (is_ptr_type(ltype) || is_ptr_type(rtype)) {
// FIXME! Check the types for compatibility
goto OK;
}
ctype = compatible_integer_binop(&expr->left, &expr->right);
if (ctype) {
if (ctype->ctype.modifiers & MOD_UNSIGNED)
expr->op = modify_for_unsigned(expr->op);
goto OK;
}
ctype = compatible_float_binop(&expr->left, &expr->right);
if (ctype)
goto OK;
ctype = compatible_restricted_binop(expr->op, &expr->left, &expr->right);
if (ctype)
goto OK;
bad_expr_type(expr);
OK:
expr->ctype = &bool_ctype;
return &bool_ctype;
}
/*
* FIXME!! This should do casts, array degeneration etc..
*/
static struct symbol *compatible_ptr_type(struct expression *left, struct expression *right)
{
struct symbol *ltype = left->ctype, *rtype = right->ctype;
if (ltype->type == SYM_NODE)
ltype = ltype->ctype.base_type;
if (rtype->type == SYM_NODE)
rtype = rtype->ctype.base_type;
if (ltype->type == SYM_PTR) {
if (is_null_ptr(right) || rtype->ctype.base_type == &void_ctype)
return ltype;
}
if (rtype->type == SYM_PTR) {
if (is_null_ptr(left) || ltype->ctype.base_type == &void_ctype)
return rtype;
}
return NULL;
}
static struct symbol * evaluate_conditional_expression(struct expression *expr)
{
struct expression *cond, *true, *false;
struct symbol *ctype, *ltype, *rtype;
const char * typediff;
ctype = degenerate(expr->conditional);
cond = expr->conditional;
ltype = ctype;
true = cond;
if (expr->cond_true) {
ltype = degenerate(expr->cond_true);
true = expr->cond_true;
}
rtype = degenerate(expr->cond_false);
false = expr->cond_false;
ctype = ltype;
typediff = type_difference(ltype, rtype, MOD_IGN, MOD_IGN);
if (!typediff)
goto out;
ctype = compatible_integer_binop(&true, &expr->cond_false);
if (ctype)
goto out;
ctype = compatible_ptr_type(true, expr->cond_false);
if (ctype)
goto out;
ctype = compatible_float_binop(&true, &expr->cond_false);
if (ctype)
goto out;
ctype = compatible_restricted_binop('?', &expr->left, &expr->right);
if (ctype)
goto out;
warn(expr->pos, "incompatible types in conditional expression (%s)", typediff);
return NULL;
out:
expr->ctype = ctype;
return ctype;
}
static int compatible_assignment_types(struct expression *expr, struct symbol *target,
struct expression **rp, struct symbol *source, const char *where)
{
const char *typediff;
struct symbol *t;
int target_as;
/* It's ok if the target is more volatile or const than the source */
typediff = type_difference(target, source, MOD_VOLATILE | MOD_CONST, 0);
if (!typediff)
return 1;
if (is_int_type(target)) {
if (is_int_type(source)) {
if (target->bit_size != source->bit_size)
goto Cast;
return 1;
}
if (is_float_type(source))
goto Cast;
} else if (is_float_type(target)) {
if (is_int_type(source))
goto Cast;
if (is_float_type(source)) {
if (target->bit_size != source->bit_size)
goto Cast;
return 1;
}
}
if (is_restricted_type(target) && !restricted_value(*rp, target))
return 1;
/* Pointer destination? */
t = target;
target_as = t->ctype.as;
if (t->type == SYM_NODE) {
t = t->ctype.base_type;
target_as |= t->ctype.as;
}
if (t->type == SYM_PTR || t->type == SYM_FN || t->type == SYM_ARRAY) {
struct expression *right = *rp;
struct symbol *s = source;
int source_as;
// NULL pointer is always ok
if (is_null_ptr(right))
return 1;
/* "void *" matches anything as long as the address space is ok */
source_as = s->ctype.as;
if (s->type == SYM_NODE) {
s = s->ctype.base_type;
source_as |= s->ctype.as;
}
if (source_as == target_as && (s->type == SYM_PTR || s->type == SYM_ARRAY)) {
s = s->ctype.base_type;
t = t->ctype.base_type;
if (s == &void_ctype || t == &void_ctype)
return 1;
}
}
warn(expr->pos, "incorrect type in %s (%s)", where, typediff);
info(expr->pos, " expected %s", show_typename(target));
info(expr->pos, " got %s", show_typename(source));
*rp = cast_to(*rp, target);
return 0;
Cast:
*rp = cast_to(*rp, target);
return 1;
}
/*
* FIXME!! This is wrong from a double evaluation standpoint. We can't
* just expand the expression twice, that would make any side effects
* happen twice too.
*/
static struct symbol *evaluate_binop_assignment(struct expression *expr, struct expression *left, struct expression *right)
{
int op = expr->op;
struct expression *subexpr = alloc_expression(expr->pos, EXPR_BINOP);
static const int op_trans[] = {
[SPECIAL_ADD_ASSIGN - SPECIAL_BASE] = '+',
[SPECIAL_SUB_ASSIGN - SPECIAL_BASE] = '-',
[SPECIAL_MUL_ASSIGN - SPECIAL_BASE] = '*',
[SPECIAL_DIV_ASSIGN - SPECIAL_BASE] = '/',
[SPECIAL_MOD_ASSIGN - SPECIAL_BASE] = '%',
[SPECIAL_SHL_ASSIGN - SPECIAL_BASE] = SPECIAL_LEFTSHIFT,
[SPECIAL_SHR_ASSIGN - SPECIAL_BASE] = SPECIAL_RIGHTSHIFT,
[SPECIAL_AND_ASSIGN - SPECIAL_BASE] = '&',
[SPECIAL_OR_ASSIGN - SPECIAL_BASE] = '|',
[SPECIAL_XOR_ASSIGN - SPECIAL_BASE] = '^'
};
struct expression *e0, *e1, *e2, *e3, *e4, *e5;
struct symbol *a = alloc_symbol(expr->pos, SYM_NODE);
struct symbol *ltype = left->ctype;
struct expression *addr;
struct symbol *lptype;
if (left->type == EXPR_BITFIELD)
addr = left->address;
else
addr = left->unop;
lptype = addr->ctype;
a->ctype.base_type = lptype;
a->bit_size = lptype->bit_size;
a->array_size = lptype->array_size;
e0 = alloc_expression(expr->pos, EXPR_SYMBOL);
e0->symbol = a;
e0->ctype = &lazy_ptr_ctype;
e1 = alloc_expression(expr->pos, EXPR_PREOP);
e1->unop = e0;
e1->op = '*';
e1->ctype = lptype;
e2 = alloc_expression(expr->pos, EXPR_ASSIGNMENT);
e2->left = e1;
e2->right = addr;
e2->op = '=';
e2->ctype = lptype;
/* we can't cannibalize left, unfortunately */
e3 = alloc_expression(expr->pos, left->type);
*e3 = *left;
if (e3->type == EXPR_BITFIELD)
e3->address = e1;
else
e3->unop = e1;
e4 = alloc_expression(expr->pos, EXPR_BINOP);
e4->op = subexpr->op = op_trans[op - SPECIAL_BASE];
e4->left = e3;
e4->right = right;
/* will calculate type later */
e5 = alloc_expression(expr->pos, EXPR_ASSIGNMENT);
e5->left = e3; /* we can share that one */
e5->right = e4;
e5->op = '=';
e5->ctype = ltype;
expr->type = EXPR_COMMA;
expr->left = e2;
expr->right = e5;
expr->ctype = ltype;
return evaluate_binop(e4);
}
static void evaluate_assign_to(struct expression *left, struct symbol *type)
{
if (type->ctype.modifiers & MOD_CONST)
warn(left->pos, "assignment to const expression");
if (type->type == SYM_NODE)
type->ctype.modifiers |= MOD_ASSIGNED;
}
static struct symbol *evaluate_assignment(struct expression *expr)
{
struct expression *left = expr->left, *right = expr->right;
struct expression *where = expr;
struct symbol *ltype, *rtype;
if (!lvalue_expression(left)) {
warn(expr->pos, "not an lvalue");
return NULL;
}
ltype = left->ctype;
if (expr->op != '=') {
if (!evaluate_binop_assignment(expr, left, right))
return NULL;
where = expr->right; /* expr is EXPR_COMMA now */
left = where->left;
right = where->right;
}
rtype = degenerate(right);
if (!compatible_assignment_types(where, ltype, &where->right, rtype, "assignment"))
return NULL;
evaluate_assign_to(left, ltype);
expr->ctype = ltype;
return ltype;
}
static void examine_fn_arguments(struct symbol *fn)
{
struct symbol *s;
FOR_EACH_PTR(fn->arguments, s) {
struct symbol *arg = evaluate_symbol(s);
/* Array/function arguments silently degenerate into pointers */
if (arg) {
struct symbol *ptr;
switch(arg->type) {
case SYM_ARRAY:
case SYM_FN:
ptr = alloc_symbol(s->pos, SYM_PTR);
if (arg->type == SYM_ARRAY)
ptr->ctype = arg->ctype;
else
ptr->ctype.base_type = arg;
ptr->ctype.as |= s->ctype.as;
ptr->ctype.modifiers |= s->ctype.modifiers;
s->ctype.base_type = ptr;
s->ctype.as = 0;
s->ctype.modifiers = 0;
examine_symbol_type(s);
break;
default:
/* nothing */
break;
}
}
} END_FOR_EACH_PTR(s);
}
static struct symbol *convert_to_as_mod(struct symbol *sym, int as, int mod)
{
if (sym->ctype.as != as || sym->ctype.modifiers != mod) {
struct symbol *newsym = alloc_symbol(sym->pos, SYM_NODE);
*newsym = *sym;
newsym->ctype.as = as;
newsym->ctype.modifiers = mod;
sym = newsym;
}
return sym;
}
static struct symbol *create_pointer(struct expression *expr, struct symbol *sym, int degenerate)
{
struct symbol *node = alloc_symbol(expr->pos, SYM_NODE);
struct symbol *ptr = alloc_symbol(expr->pos, SYM_PTR);
node->ctype.base_type = ptr;
ptr->bit_size = bits_in_pointer;
ptr->ctype.alignment = pointer_alignment;
node->bit_size = bits_in_pointer;
node->ctype.alignment = pointer_alignment;
access_symbol(sym);
sym->ctype.modifiers |= MOD_ADDRESSABLE;
if (sym->ctype.modifiers & MOD_REGISTER) {
warn(expr->pos, "taking address of 'register' variable '%s'", show_ident(sym->ident));
sym->ctype.modifiers &= ~MOD_REGISTER;
}
if (sym->type == SYM_NODE) {
ptr->ctype.as |= sym->ctype.as;
ptr->ctype.modifiers |= sym->ctype.modifiers;
sym = sym->ctype.base_type;
}
if (degenerate && sym->type == SYM_ARRAY) {
ptr->ctype.as |= sym->ctype.as;
ptr->ctype.modifiers |= sym->ctype.modifiers;
sym = sym->ctype.base_type;
}
ptr->ctype.base_type = sym;
return node;
}
/* Arrays degenerate into pointers on pointer arithmetic */
static struct symbol *degenerate(struct expression *expr)
{
struct symbol *ctype, *base;
if (!expr)
return NULL;
ctype = expr->ctype;
if (!ctype)
return NULL;
base = ctype;
if (ctype->type == SYM_NODE)
base = ctype->ctype.base_type;
/*
* Arrays degenerate into pointers to the entries, while
* functions degenerate into pointers to themselves.
* If array was part of non-lvalue compound, we create a copy
* of that compound first and then act as if we were dealing with
* the corresponding field in there.
*/
switch (base->type) {
case SYM_ARRAY:
if (expr->type == EXPR_SLICE) {
struct symbol *a = alloc_symbol(expr->pos, SYM_NODE);
struct expression *e0, *e1, *e2, *e3, *e4;
a->ctype.base_type = expr->base->ctype;
a->bit_size = expr->base->ctype->bit_size;
a->array_size = expr->base->ctype->array_size;
e0 = alloc_expression(expr->pos, EXPR_SYMBOL);
e0->symbol = a;
e0->ctype = &lazy_ptr_ctype;
e1 = alloc_expression(expr->pos, EXPR_PREOP);
e1->unop = e0;
e1->op = '*';
e1->ctype = expr->base->ctype; /* XXX */
e2 = alloc_expression(expr->pos, EXPR_ASSIGNMENT);
e2->left = e1;
e2->right = expr->base;
e2->op = '=';
e2->ctype = expr->base->ctype;
if (expr->r_bitpos) {
e3 = alloc_expression(expr->pos, EXPR_BINOP);
e3->op = '+';
e3->left = e0;
e3->right = alloc_const_expression(expr->pos,
expr->r_bitpos >> 3);
e3->ctype = &lazy_ptr_ctype;
} else {
e3 = e0;
}
e4 = alloc_expression(expr->pos, EXPR_COMMA);
e4->left = e2;
e4->right = e3;
e4->ctype = &lazy_ptr_ctype;
expr->unop = e4;
expr->type = EXPR_PREOP;
expr->op = '*';
}
case SYM_FN:
if (expr->op != '*' || expr->type != EXPR_PREOP) {
warn(expr->pos, "strange non-value function or array");
return NULL;
}
*expr = *expr->unop;
ctype = create_pointer(expr, ctype, 1);
expr->ctype = ctype;
default:
/* nothing */;
}
return ctype;
}
static struct symbol *evaluate_addressof(struct expression *expr)
{
struct expression *op = expr->unop;
struct symbol *ctype;
if (op->op != '*' || op->type != EXPR_PREOP) {
warn(expr->pos, "not addressable");
return NULL;
}
ctype = op->ctype;
*expr = *op->unop;
/*
* symbol expression evaluation is lazy about the type
* of the sub-expression, so we may have to generate
* the type here if so..
*/
if (expr->ctype == &lazy_ptr_ctype) {
ctype = create_pointer(expr, ctype, 0);
expr->ctype = ctype;
}
return expr->ctype;
}
static struct symbol *evaluate_dereference(struct expression *expr)
{
struct expression *op = expr->unop;
struct symbol *ctype = op->ctype, *node, *target;
/* Simplify: *&(expr) => (expr) */
if (op->type == EXPR_PREOP && op->op == '&') {
*expr = *op->unop;
return expr->ctype;
}
/* Dereferencing a node drops all the node information. */
if (ctype->type == SYM_NODE)
ctype = ctype->ctype.base_type;
node = alloc_symbol(expr->pos, SYM_NODE);
target = ctype->ctype.base_type;
switch (ctype->type) {
default:
warn(expr->pos, "cannot derefence this type");
return NULL;
case SYM_PTR:
merge_type(node, ctype);
if (ctype->type != SYM_ARRAY)
break;
/*
* Dereferencing a pointer to an array results in a
* degenerate dereference: the expression becomes
* just a pointer to the entry, and the derefence
* goes away.
*/
*expr = *op;
target = alloc_symbol(expr->pos, SYM_PTR);
target->bit_size = bits_in_pointer;
target->ctype.alignment = pointer_alignment;
merge_type(target, ctype->ctype.base_type);
break;
case SYM_ARRAY:
if (!lvalue_expression(op)) {
warn(op->pos, "non-lvalue array??");
return NULL;
}
/* Do the implied "addressof" on the array */
*op = *op->unop;
/*
* When an array is dereferenced, we need to pick
* up the attributes of the original node too..
*/
merge_type(node, op->ctype);
merge_type(node, ctype);
break;
}
node->bit_size = target->bit_size;
node->array_size = target->array_size;
expr->ctype = node;
return node;
}
/*
* Unary post-ops: x++ and x--
*/
static struct symbol *evaluate_postop(struct expression *expr)
{
struct expression *op = expr->unop;
struct symbol *ctype = op->ctype;
if (!lvalue_expression(expr->unop)) {
warn(expr->pos, "need lvalue expression for ++/--");
return NULL;
}
if (is_restricted_type(ctype) && restricted_unop(expr->op, ctype)) {
warn(expr->pos, "bad operation on restricted");
return NULL;
}
evaluate_assign_to(op, ctype);
expr->ctype = ctype;
return ctype;
}
static struct symbol *evaluate_sign(struct expression *expr)
{
struct symbol *ctype = expr->unop->ctype;
if (is_int_type(ctype)) {
struct symbol *rtype = rtype = integer_promotion(ctype);
if (rtype->bit_size != ctype->bit_size)
expr->unop = cast_to(expr->unop, rtype);
ctype = rtype;
} else if (is_float_type(ctype) && expr->op != '~') {
/* no conversions needed */
} else if (is_restricted_type(ctype) && !restricted_unop(expr->op, ctype)) {
/* no conversions needed */
} else {
return bad_expr_type(expr);
}
if (expr->op == '+')
*expr = *expr->unop;
expr->ctype = ctype;
return ctype;
}
static struct symbol *evaluate_preop(struct expression *expr)
{
struct symbol *ctype = expr->unop->ctype;
switch (expr->op) {
case '(':
*expr = *expr->unop;
return ctype;
case '+':
case '-':
case '~':
return evaluate_sign(expr);
case '*':
return evaluate_dereference(expr);
case '&':
return evaluate_addressof(expr);
case SPECIAL_INCREMENT:
case SPECIAL_DECREMENT:
/*
* From a type evaluation standpoint the pre-ops are
* the same as the postops
*/
return evaluate_postop(expr);
case '!':
if (is_safe_type(ctype))
warn(expr->pos, "testing a 'safe expression'");
if (is_float_type(ctype)) {
struct expression *arg = expr->unop;
expr->type = EXPR_BINOP;
expr->op = SPECIAL_EQUAL;
expr->left = arg;
expr->right = alloc_expression(expr->pos, EXPR_FVALUE);
expr->right->ctype = ctype;
expr->right->fvalue = 0;
}
ctype = &bool_ctype;
break;
default:
break;
}
expr->ctype = ctype;
return &bool_ctype;
}
struct symbol *find_identifier(struct ident *ident, struct symbol_list *_list, int *offset)
{
struct ptr_list *head = (struct ptr_list *)_list;
struct ptr_list *list = head;
if (!head)
return NULL;
do {
int i;
for (i = 0; i < list->nr; i++) {
struct symbol *sym = (struct symbol *) list->list[i];
if (sym->ident) {
if (sym->ident != ident)
continue;
*offset = sym->offset;
return sym;
} else {
struct symbol *ctype = sym->ctype.base_type;
struct symbol *sub;
if (!ctype)
continue;
if (ctype->type != SYM_UNION && ctype->type != SYM_STRUCT)
continue;
sub = find_identifier(ident, ctype->symbol_list, offset);
if (!sub)
continue;
*offset += sym->offset;
return sub;
}
}
} while ((list = list->next) != head);
return NULL;
}
static struct expression *evaluate_offset(struct expression *expr, unsigned long offset)
{
struct expression *add;
/*
* Create a new add-expression
*
* NOTE! Even if we just add zero, we need a new node
* for the member pointer, since it has a different
* type than the original pointer. We could make that
* be just a cast, but the fact is, a node is a node,
* so we might as well just do the "add zero" here.
*/
add = alloc_expression(expr->pos, EXPR_BINOP);
add->op = '+';
add->left = expr;
add->right = alloc_expression(expr->pos, EXPR_VALUE);
add->right->ctype = &int_ctype;
add->right->value = offset;
/*
* The ctype of the pointer will be lazily evaluated if
* we ever take the address of this member dereference..
*/
add->ctype = &lazy_ptr_ctype;
return add;
}
/* structure/union dereference */
static struct symbol *evaluate_member_dereference(struct expression *expr)
{
int offset;
struct symbol *ctype, *member;
struct expression *deref = expr->deref, *add;
struct ident *ident = expr->member;
unsigned int mod;
int address_space;
if (!evaluate_expression(deref))
return NULL;
if (!ident) {
warn(expr->pos, "bad member name");
return NULL;
}
ctype = deref->ctype;
address_space = ctype->ctype.as;
mod = ctype->ctype.modifiers;
if (ctype->type == SYM_NODE) {
ctype = ctype->ctype.base_type;
address_space |= ctype->ctype.as;
mod |= ctype->ctype.modifiers;
}
if (!ctype || (ctype->type != SYM_STRUCT && ctype->type != SYM_UNION)) {
warn(expr->pos, "expected structure or union");
return NULL;
}
offset = 0;
member = find_identifier(ident, ctype->symbol_list, &offset);
if (!member) {
const char *type = ctype->type == SYM_STRUCT ? "struct" : "union";
const char *name = "<unnamed>";
int namelen = 9;
if (ctype->ident) {
name = ctype->ident->name;
namelen = ctype->ident->len;
}
warn(expr->pos, "no member '%s' in %s %.*s",
show_ident(ident), type, namelen, name);
return NULL;
}
/*
* The member needs to take on the address space and modifiers of
* the "parent" type.
*/
member = convert_to_as_mod(member, address_space, mod);
ctype = member->ctype.base_type;
if (!lvalue_expression(deref)) {
if (deref->type != EXPR_SLICE) {
expr->base = deref;
expr->r_bitpos = 0;
} else {
expr->base = deref->base;
expr->r_bitpos = deref->r_bitpos;
}
expr->r_bitpos += offset << 3;
expr->type = EXPR_SLICE;
if (ctype->type == SYM_BITFIELD) {
expr->r_bitpos += member->bit_offset;
expr->r_nrbits = member->fieldwidth;
} else {
expr->r_nrbits = member->bit_size;
}
expr->ctype = member;
return member;
}
deref = deref->unop;
expr->deref = deref;
add = evaluate_offset(deref, offset);
if (ctype->type == SYM_BITFIELD) {
expr->type = EXPR_BITFIELD;
expr->bitpos = member->bit_offset;
expr->nrbits = member->fieldwidth;
expr->address = add;
} else {
expr->type = EXPR_PREOP;
expr->op = '*';
expr->unop = add;
}
expr->ctype = member;
return member;
}
static int is_promoted(struct expression *expr)
{
while (1) {
switch (expr->type) {
case EXPR_BINOP:
case EXPR_SELECT:
case EXPR_CONDITIONAL:
return 1;
case EXPR_COMMA:
expr = expr->right;
continue;
case EXPR_PREOP:
switch (expr->op) {
case '(':
expr = expr->unop;
continue;
case '+':
case '-':
case '~':
return 1;
default:
return 0;
}
default:
return 0;
}
}
}
static struct symbol *evaluate_cast(struct expression *);
static struct symbol *evaluate_sizeof(struct expression *expr)
{
struct expression *what = expr->cast_expression;
int size;
if (expr->cast_type) {
if (what) {
struct symbol *sym = evaluate_cast(expr);
size = sym->bit_size;
} else {
examine_symbol_type(expr->cast_type);
size = expr->cast_type->bit_size;
}
} else {
if (!evaluate_expression(what))
return NULL;
size = what->ctype->bit_size;
if (is_restricted_type(what->ctype)) {
if (size < bits_in_int && is_promoted(what))
size = bits_in_int;
}
if (is_bitfield_type(what->ctype))
warn(expr->pos, "sizeof applied to bitfield type");
}
if (size & 7)
warn(expr->pos, "cannot size expression");
expr->type = EXPR_VALUE;
expr->value = size >> 3;
expr->ctype = size_t_ctype;
return size_t_ctype;
}
static struct symbol *evaluate_alignof(struct expression *expr)
{
struct symbol *type = expr->cast_type;
if (!type) {
type = evaluate_expression(expr->cast_expression);
if (!type)
return NULL;
}
if (is_bitfield_type(type))
warn(expr->pos, "alignof applied to bitfield type");
examine_symbol_type(type);
expr->type = EXPR_VALUE;
expr->value = type->ctype.alignment;
expr->ctype = size_t_ctype;
return size_t_ctype;
}
static int context_clash(struct symbol *sym1, struct symbol *sym2)
{
unsigned long clash = (sym1->ctype.context ^ sym2->ctype.context);
clash &= (sym1->ctype.contextmask & sym2->ctype.contextmask);
return clash != 0;
}
static int evaluate_arguments(struct symbol *f, struct symbol *fn, struct expression_list *head)
{
struct expression *expr;
struct symbol_list *argument_types = fn->arguments;
struct symbol *argtype;
int i = 1;
PREPARE_PTR_LIST(argument_types, argtype);
FOR_EACH_PTR (head, expr) {
struct expression **p = THIS_ADDRESS(expr);
struct symbol *ctype, *target;
ctype = evaluate_expression(expr);
if (!ctype)
return 0;
if (context_clash(f, ctype))
warn(expr->pos, "argument %d used in wrong context", i);
ctype = degenerate(expr);
target = argtype;
if (!target && ctype->bit_size < bits_in_int)
target = &int_ctype;
if (target) {
static char where[30];
examine_symbol_type(target);
sprintf(where, "argument %d", i);
compatible_assignment_types(expr, target, p, ctype, where);
}
i++;
NEXT_PTR_LIST(argtype);
} END_FOR_EACH_PTR(expr);
FINISH_PTR_LIST(argtype);
return 1;
}
static int evaluate_initializer(struct symbol *ctype, struct expression **ep, unsigned long offset);
static int evaluate_array_initializer(struct symbol *ctype, struct expression *expr, unsigned long offset)
{
struct expression *entry;
int current = 0;
int max = 0;
int accept_string = is_byte_type(ctype);
FOR_EACH_PTR(expr->expr_list, entry) {
struct expression **p = THIS_ADDRESS(entry);
struct symbol *sym;
int entries;
if (entry->type == EXPR_INDEX) {
current = entry->idx_to;
continue;
}
if (accept_string && entry->type == EXPR_STRING) {
sym = evaluate_expression(entry);
entries = get_expression_value(sym->array_size);
} else {
evaluate_initializer(ctype, p, offset + current*(ctype->bit_size>>3));
entries = 1;
}
current += entries;
if (current > max)
max = current;
} END_FOR_EACH_PTR(entry);
return max;
}
/* A scalar initializer is allowed, and acts pretty much like an array of one */
static int evaluate_scalar_initializer(struct symbol *ctype, struct expression *expr, unsigned long offset)
{
if (offset || expression_list_size(expr->expr_list) != 1) {
warn(expr->pos, "unexpected compound initializer");
return 0;
}
return evaluate_array_initializer(ctype, expr, 0);
}
static int evaluate_struct_or_union_initializer(struct symbol *ctype, struct expression *expr, int multiple, unsigned long offset)
{
struct expression *entry;
struct symbol *sym;
PREPARE_PTR_LIST(ctype->symbol_list, sym);
FOR_EACH_PTR(expr->expr_list, entry) {
struct expression **p = THIS_ADDRESS(entry);
if (entry->type == EXPR_IDENTIFIER) {
struct ident *ident = entry->expr_ident;
/* We special-case the "already right place" case */
if (sym && sym->ident == ident)
continue;
RESET_PTR_LIST(sym);
for (;;) {
if (!sym) {
warn(entry->pos, "unknown named initializer '%s'", show_ident(ident));
return 0;
}
if (sym->ident == ident)
break;
NEXT_PTR_LIST(sym);
}
continue;
}
if (!sym) {
warn(expr->pos, "too many initializers for struct/union");
return 0;
}
evaluate_initializer(sym, p, offset + sym->offset);
NEXT_PTR_LIST(sym);
} END_FOR_EACH_PTR(entry);
FINISH_PTR_LIST(sym);
return 0;
}
/*
* Initializers are kind of like assignments. Except
* they can be a hell of a lot more complex.
*/
static int evaluate_initializer(struct symbol *ctype, struct expression **ep, unsigned long offset)
{
struct expression *expr = *ep;
/*
* Simple non-structure/array initializers are the simple
* case, and look (and parse) largely like assignments.
*/
if (expr->type != EXPR_INITIALIZER) {
int size = 0, is_string = expr->type == EXPR_STRING;
struct symbol *rtype = evaluate_expression(expr);
if (rtype) {
struct expression *pos;
/*
* Special case:
* char array[] = "string"
* should _not_ degenerate.
*/
if (is_string && is_string_type(ctype)) {
struct expression *array_size = ctype->array_size;
if (!array_size)
array_size = ctype->array_size = rtype->array_size;
size = get_expression_value(array_size);
} else {
rtype = degenerate(expr);
size = 1;
}
compatible_assignment_types(expr, ctype, ep, rtype, "initializer");
/*
* Don't bother creating a position expression for
* the simple initializer cases that don't need it.
*
* We need a position if the initializer has a byte
* offset, _or_ if we're initializing a bitfield.
*/
if (offset || ctype->fieldwidth) {
pos = alloc_expression(expr->pos, EXPR_POS);
pos->init_offset = offset;
pos->init_sym = ctype;
pos->init_expr = *ep;
pos->ctype = expr->ctype;
*ep = pos;
}
}
return size;
}
expr->ctype = ctype;
if (ctype->type == SYM_NODE)
ctype = ctype->ctype.base_type;
switch (ctype->type) {
case SYM_ARRAY:
case SYM_PTR:
return evaluate_array_initializer(ctype->ctype.base_type, expr, offset);
case SYM_UNION:
return evaluate_struct_or_union_initializer(ctype, expr, 0, offset);
case SYM_STRUCT:
return evaluate_struct_or_union_initializer(ctype, expr, 1, offset);
default:
return evaluate_scalar_initializer(ctype, expr, offset);
}
}
static int get_as(struct symbol *sym)
{
int as;
unsigned long mod;
if (!sym)
return 0;
as = sym->ctype.as;
mod = sym->ctype.modifiers;
if (sym->type == SYM_NODE) {
sym = sym->ctype.base_type;
as |= sym->ctype.as;
mod |= sym->ctype.modifiers;
}
/*
* At least for now, allow casting to a "unsigned long".
* That's how we do things like pointer arithmetic and
* store pointers to registers.
*/
if (sym == &ulong_ctype)
return -1;
if (sym && sym->type == SYM_PTR) {
sym = sym->ctype.base_type;
as |= sym->ctype.as;
mod |= sym->ctype.modifiers;
}
if (mod & MOD_FORCE)
return -1;
return as;
}
static struct symbol *evaluate_cast(struct expression *expr)
{
struct expression *target = expr->cast_expression;
struct symbol *ctype = examine_symbol_type(expr->cast_type);
enum type type;
expr->ctype = ctype;
expr->cast_type = ctype;
/*
* Special case: a cast can be followed by an
* initializer, in which case we need to pass
* the type value down to that initializer rather
* than trying to evaluate it as an expression
*
* A more complex case is when the initializer is
* dereferenced as part of a post-fix expression.
* We need to produce an expression that can be dereferenced.
*/
if (target->type == EXPR_INITIALIZER) {
struct symbol *sym = expr->cast_type;
struct expression *addr = alloc_expression(expr->pos, EXPR_SYMBOL);
sym->initializer = expr->cast_expression;
evaluate_symbol(sym);
addr->ctype = &lazy_ptr_ctype; /* Lazy eval */
addr->symbol = sym;
expr->type = EXPR_PREOP;
expr->op = '*';
expr->unop = addr;
expr->ctype = sym;
return sym;
}
evaluate_expression(target);
degenerate(target);
/*
* You can always throw a value away by casting to
* "void" - that's an implicit "force". Note that
* the same is _not_ true of "void *".
*/
if (ctype == &void_ctype)
goto out;
type = ctype->type;
if (type == SYM_NODE) {
type = ctype->ctype.base_type->type;
if (ctype->ctype.base_type == &void_ctype)
goto out;
}
if (type == SYM_ARRAY || type == SYM_UNION || type == SYM_STRUCT)
warn(expr->pos, "cast to non-scalar");
if (!target->ctype) {
warn(expr->pos, "cast from unknown type");
goto out;
}
type = target->ctype->type;
if (type == SYM_NODE)
type = target->ctype->ctype.base_type->type;
if (type == SYM_ARRAY || type == SYM_UNION || type == SYM_STRUCT)
warn(expr->pos, "cast from non-scalar");
if (!get_as(ctype) && get_as(target->ctype) > 0)
warn(expr->pos, "cast removes address space of expression");
if (!(ctype->ctype.modifiers & MOD_FORCE)) {
struct symbol *t1 = ctype, *t2 = target->ctype;
if (t1->type == SYM_NODE)
t1 = t1->ctype.base_type;
if (t2->type == SYM_NODE)
t2 = t2->ctype.base_type;
if (t1 != t2) {
if (t1->type == SYM_RESTRICT)
warn(expr->pos, "cast to restricted type");
if (t2->type == SYM_RESTRICT)
warn(expr->pos, "cast from restricted type");
}
}
/*
* Casts of constant values are special: they
* can be NULL, and thus need to be simplified
* early.
*/
if (target->type == EXPR_VALUE)
cast_value(expr, ctype, target, target->ctype);
out:
return ctype;
}
/*
* Evaluate a call expression with a symbol. This
* should expand inline functions, and evaluate
* builtins.
*/
static int evaluate_symbol_call(struct expression *expr)
{
struct expression *fn = expr->fn;
struct symbol *ctype = fn->ctype;
if (fn->type != EXPR_PREOP)
return 0;
if (ctype->op && ctype->op->evaluate)
return ctype->op->evaluate(expr);
if (ctype->ctype.modifiers & MOD_INLINE) {
int ret;
struct symbol *curr = current_fn;
unsigned long context = current_context;
unsigned long mask = current_contextmask;
current_context |= ctype->ctype.context;
current_contextmask |= ctype->ctype.contextmask;
current_fn = ctype->ctype.base_type;
examine_fn_arguments(current_fn);
ret = inline_function(expr, ctype);
/* restore the old function context */
current_fn = curr;
current_context = context;
current_contextmask = mask;
return ret;
}
return 0;
}
static struct symbol *evaluate_call(struct expression *expr)
{
int args, fnargs;
struct symbol *ctype, *sym;
struct expression *fn = expr->fn;
struct expression_list *arglist = expr->args;
if (!evaluate_expression(fn))
return NULL;
sym = ctype = fn->ctype;
if (ctype->type == SYM_NODE)
ctype = ctype->ctype.base_type;
if (ctype->type == SYM_PTR || ctype->type == SYM_ARRAY)
ctype = ctype->ctype.base_type;
if (!evaluate_arguments(sym, ctype, arglist))
return NULL;
if (ctype->type != SYM_FN) {
warn(expr->pos, "not a function %s", show_ident(sym->ident));
return NULL;
}
args = expression_list_size(expr->args);
fnargs = symbol_list_size(ctype->arguments);
if (args < fnargs)
warn(expr->pos, "not enough arguments for function %s", show_ident(sym->ident));
if (args > fnargs && !ctype->variadic)
warn(expr->pos, "too many arguments for function %s", show_ident(sym->ident));
if (sym->type == SYM_NODE) {
if (evaluate_symbol_call(expr))
return expr->ctype;
}
expr->ctype = ctype->ctype.base_type;
return expr->ctype;
}
struct symbol *evaluate_expression(struct expression *expr)
{
if (!expr)
return NULL;
if (expr->ctype)
return expr->ctype;
switch (expr->type) {
case EXPR_VALUE:
case EXPR_FVALUE:
warn(expr->pos, "value expression without a type");
return NULL;
case EXPR_STRING:
return evaluate_string(expr);
case EXPR_SYMBOL:
return evaluate_symbol_expression(expr);
case EXPR_BINOP:
if (!evaluate_expression(expr->left))
return NULL;
if (!evaluate_expression(expr->right))
return NULL;
return evaluate_binop(expr);
case EXPR_LOGICAL:
return evaluate_logical(expr);
case EXPR_COMMA:
evaluate_expression(expr->left);
if (!evaluate_expression(expr->right))
return NULL;
return evaluate_comma(expr);
case EXPR_COMPARE:
if (!evaluate_expression(expr->left))
return NULL;
if (!evaluate_expression(expr->right))
return NULL;
return evaluate_compare(expr);
case EXPR_ASSIGNMENT:
if (!evaluate_expression(expr->left))
return NULL;
if (!evaluate_expression(expr->right))
return NULL;
return evaluate_assignment(expr);
case EXPR_PREOP:
if (!evaluate_expression(expr->unop))
return NULL;
return evaluate_preop(expr);
case EXPR_POSTOP:
if (!evaluate_expression(expr->unop))
return NULL;
return evaluate_postop(expr);
case EXPR_CAST:
return evaluate_cast(expr);
case EXPR_SIZEOF:
return evaluate_sizeof(expr);
case EXPR_ALIGNOF:
return evaluate_alignof(expr);
case EXPR_DEREF:
return evaluate_member_dereference(expr);
case EXPR_CALL:
return evaluate_call(expr);
case EXPR_BITFIELD:
warn(expr->pos, "bitfield generated by parser");
return NULL;
case EXPR_SELECT:
case EXPR_CONDITIONAL:
if (!evaluate_conditional(&expr->conditional))
return NULL;
if (!evaluate_expression(expr->cond_false))
return NULL;
if (expr->cond_true && !evaluate_expression(expr->cond_true))
return NULL;
return evaluate_conditional_expression(expr);
case EXPR_STATEMENT:
expr->ctype = evaluate_statement(expr->statement);
return expr->ctype;
case EXPR_LABEL:
expr->ctype = &ptr_ctype;
return &ptr_ctype;
case EXPR_TYPE:
/* Evaluate the type of the symbol .. */
evaluate_symbol(expr->symbol);
/* .. but the type of the _expression_ is a "type" */
expr->ctype = &type_ctype;
return &type_ctype;
/* These can not exist as stand-alone expressions */
case EXPR_INITIALIZER:
case EXPR_IDENTIFIER:
case EXPR_INDEX:
case EXPR_POS:
warn(expr->pos, "internal front-end error: initializer in expression");
return NULL;
case EXPR_SLICE:
warn(expr->pos, "internal front-end error: SLICE re-evaluated");
return NULL;
}
return NULL;
}
void check_duplicates(struct symbol *sym)
{
struct symbol *next = sym;
while ((next = next->same_symbol) != NULL) {
const char *typediff;
evaluate_symbol(next);
typediff = type_difference(sym, next, 0, 0);
if (typediff) {
warn(sym->pos, "symbol '%s' redeclared with different type (originally declared at %s:%d) - %s",
show_ident(sym->ident),
input_streams[next->pos.stream].name, next->pos.line, typediff);
return;
}
}
}
struct symbol *evaluate_symbol(struct symbol *sym)
{
struct symbol *base_type;
if (!sym)
return sym;
sym = examine_symbol_type(sym);
base_type = sym->ctype.base_type;
if (!base_type)
return NULL;
/* Evaluate the initializers */
if (sym->initializer) {
int count = evaluate_initializer(sym, &sym->initializer, 0);
if (base_type->type == SYM_ARRAY && !base_type->array_size) {
int bit_size = count * base_type->ctype.base_type->bit_size;
base_type->array_size = alloc_const_expression(sym->pos, count);
base_type->bit_size = bit_size;
sym->array_size = base_type->array_size;
sym->bit_size = bit_size;
}
}
/* And finally, evaluate the body of the symbol too */
if (base_type->type == SYM_FN) {
struct symbol *curr = current_fn;
unsigned long context = current_context;
unsigned long mask = current_contextmask;
current_fn = base_type;
current_contextmask = sym->ctype.contextmask;
current_context = sym->ctype.context;
examine_fn_arguments(base_type);
if (!base_type->stmt && base_type->inline_stmt)
uninline(sym);
if (base_type->stmt)
evaluate_statement(base_type->stmt);
current_fn = curr;
current_contextmask = mask;
current_context = context;
}
return base_type;
}
struct symbol *evaluate_return_expression(struct statement *stmt)
{
struct expression *expr = stmt->expression;
struct symbol *ctype, *fntype;
evaluate_expression(expr);
ctype = degenerate(expr);
fntype = current_fn->ctype.base_type;
if (!fntype || fntype == &void_ctype) {
if (expr && ctype != &void_ctype)
warn(expr->pos, "return expression in %s function", fntype?"void":"typeless");
return NULL;
}
if (!expr) {
warn(stmt->pos, "return with no return value");
return NULL;
}
if (!ctype)
return NULL;
compatible_assignment_types(expr, fntype, &stmt->expression, ctype, "return expression");
return NULL;
}
static void evaluate_if_statement(struct statement *stmt)
{
if (!stmt->if_conditional)
return;
evaluate_conditional(&stmt->if_conditional);
evaluate_statement(stmt->if_true);
evaluate_statement(stmt->if_false);
}
static void evaluate_iterator(struct statement *stmt)
{
struct expression **pre = &stmt->iterator_pre_condition;
struct expression **post = &stmt->iterator_post_condition;
if (*pre == *post) {
evaluate_conditional(pre);
*post = *pre;
} else {
evaluate_conditional(pre);
evaluate_conditional(post);
}
evaluate_statement(stmt->iterator_pre_statement);
evaluate_statement(stmt->iterator_statement);
evaluate_statement(stmt->iterator_post_statement);
}
struct symbol *evaluate_statement(struct statement *stmt)
{
if (!stmt)
return NULL;
switch (stmt->type) {
case STMT_RETURN:
return evaluate_return_expression(stmt);
case STMT_EXPRESSION:
if (!evaluate_expression(stmt->expression))
return NULL;
return degenerate(stmt->expression);
case STMT_COMPOUND: {
struct statement *s;
struct symbol *type = NULL;
struct symbol *sym;
/* Evaluate each symbol in the compound statement */
FOR_EACH_PTR(stmt->syms, sym) {
evaluate_symbol(sym);
} END_FOR_EACH_PTR(sym);
evaluate_symbol(stmt->ret);
/*
* Then, evaluate each statement, making the type of the
* compound statement be the type of the last statement
*/
type = NULL;
FOR_EACH_PTR(stmt->stmts, s) {
type = evaluate_statement(s);
} END_FOR_EACH_PTR(s);
if (!type)
type = &void_ctype;
return type;
}
case STMT_IF:
evaluate_if_statement(stmt);
return NULL;
case STMT_ITERATOR:
evaluate_iterator(stmt);
return NULL;
case STMT_SWITCH:
evaluate_expression(stmt->switch_expression);
evaluate_statement(stmt->switch_statement);
return NULL;
case STMT_CASE:
evaluate_expression(stmt->case_expression);
evaluate_expression(stmt->case_to);
evaluate_statement(stmt->case_statement);
return NULL;
case STMT_LABEL:
return evaluate_statement(stmt->label_statement);
case STMT_GOTO:
evaluate_expression(stmt->goto_expression);
return NULL;
case STMT_NONE:
break;
case STMT_ASM:
/* FIXME! Do the asm parameter evaluation! */
break;
}
return NULL;
}
|