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
|
/*-------------------------------------------------------------------------
SDCCglue.c - glues everything we have done together into one file.
Copyright (C) 1998 Sandeep Dutta . sandeep.dutta@usa.net
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-------------------------------------------------------------------------*/
#include "common.h"
#include <time.h>
#include "newalloc.h"
#include <fcntl.h>
#include <sys/stat.h>
#include "dbuf_string.h"
#ifdef _WIN32
#include <io.h>
#else
#include <unistd.h>
#endif
symbol *interrupts[INTNO_MAX + 1];
void printIval (symbol *, sym_link *, initList *, struct dbuf_s *, bool check);
set *publics = NULL; /* public variables */
set *externs = NULL; /* Variables that are declared as extern */
set *strSym = NULL; /* string initializers */
set *ccpStr = NULL; /* char * const pointers with a string literal initializer */
unsigned maxInterrupts = 0;
int allocInfo = 1;
symbol *mainf;
int noInit = 0; /* no initialization */
char *
aopLiteralGptr (const char * name, value * val)
{
unsigned long v = ulFromVal (val);
struct dbuf_s dbuf;
dbuf_init (&dbuf, 128);
v >>= ((GPTRSIZE - 1) * 8);
if (IS_FUNCPTR (val->type))
dbuf_tprintf (&dbuf, "!immedbyte", v | pointerTypeToGPByte (DCL_TYPE (val->type->next), val->name, name));
else if (IS_PTR (val->type) && !IS_GENPTR (val->type))
dbuf_tprintf (&dbuf, "!immedbyte", pointerTypeToGPByte (DCL_TYPE (val->type), val->name, name));
else
dbuf_tprintf (&dbuf, "!immedbyte", (unsigned int) v & 0xff);
return dbuf_detach_c_str (&dbuf);
}
char *
aopLiteralLong (value * val, int offset, int size)
{
unsigned long v;
struct dbuf_s dbuf;
if (!val)
{
// assuming we have been warned before
val = constCharVal (0);
}
dbuf_init (&dbuf, 128);
switch (size)
{
case 1:
v = byteOfVal (val, offset);
dbuf_tprintf (&dbuf, "!immedbyte", (unsigned int) v & 0xff);
break;
case 2:
v = byteOfVal (val, offset+1);
v = (v << 8) | byteOfVal (val, offset);
dbuf_tprintf (&dbuf, "!immedword", (unsigned int) v & 0xffff);
break;
case 3:
v = byteOfVal (val, offset+2);
v = (v << 8) | byteOfVal (val, offset+1);
v = (v << 8) | byteOfVal (val, offset);
// we don't have a !immedword24 yet for ds390
dbuf_printf (&dbuf, "#0x%06X", (unsigned int) v & 0xffffff);
break;
default:
/* Hmm. Too big for now. */
assert (0);
}
return dbuf_detach_c_str (&dbuf);
}
/*-----------------------------------------------------------------*/
/* aopLiteral - string from a literal value */
/*-----------------------------------------------------------------*/
char *
aopLiteral (value * val, int offset)
{
return aopLiteralLong (val, offset, 1);
}
/*-----------------------------------------------------------------*/
/* emitDebugSym - emit label for debug symbol */
/*-----------------------------------------------------------------*/
static void
emitDebugSym (struct dbuf_s *oBuf, symbol * sym)
{
if (sym->level && sym->localof) /* symbol scope is local */
{
dbuf_printf (oBuf, "L%s.%s$", moduleName, sym->localof->name);
}
else if (IS_STATIC (sym->etype)) /* symbol scope is file */
{
dbuf_printf (oBuf, "F%s$", moduleName);
}
else /* symbol scope is global */
{
dbuf_printf (oBuf, "G$");
}
dbuf_printf (oBuf, "%s$%d$%d", sym->name, sym->level, sym->block);
}
/*-----------------------------------------------------------------*/
/* emitRegularMap - emit code for maps with no special cases */
/*-----------------------------------------------------------------*/
static void
emitRegularMap (memmap * map, bool addPublics, bool arFlag)
{
symbol *sym;
ast *ival = NULL;
if (!map)
return;
if (addPublics)
{
/* PENDING: special case here - should remove */
if (!strcmp (map->sname, CODE_NAME))
dbuf_tprintf (&map->oBuf, "\t!areacode\n", map->sname);
else if (!strcmp (map->sname, DATA_NAME))
dbuf_tprintf (&map->oBuf, "\t!areadata\n", map->sname);
else if (!strcmp (map->sname, HOME_NAME))
dbuf_tprintf (&map->oBuf, "\t!areahome\n", map->sname);
else
dbuf_tprintf (&map->oBuf, "\t!area\n", map->sname);
if (map->regsp)
dbuf_tprintf (&map->oBuf, "\t!org\n", 0);
}
for (sym = setFirstItem (map->syms); sym; sym = setNextItem (map->syms))
{
symbol *newSym = NULL;
/* if allocation required check is needed
then check if the symbol really requires
allocation only for local variables */
if (arFlag && !IS_AGGREGATE (sym->type) && !(sym->_isparm && !IS_REGPARM (sym->etype)) && !sym->allocreq && sym->level)
continue;
/* for bitvar locals and parameters */
if (!arFlag && !sym->allocreq && sym->level && !SPEC_ABSA (sym->etype))
{
continue;
}
/* if global variable & not static or extern
and addPublics allowed then add it to the public set */
if ((sym->level == 0 ||
(sym->_isparm && !IS_REGPARM (sym->etype) && !IS_STATIC (sym->localof->etype))) &&
addPublics &&
!IS_STATIC (sym->etype) &&
(IS_FUNC (sym->type) ? (sym->used || IFFUNC_HASBODY (sym->type)) : (!IS_EXTERN (sym->etype) || sym->ival)) &&
!(IFFUNC_ISINLINE (sym->type) && !IS_STATIC (sym->etype) && !IS_EXTERN (sym->etype)))
{
addSetHead (&publics, sym);
}
/* if extern then add it into the extern list */
if (IS_EXTERN (sym->etype) && !sym->ival)
{
addSetHead (&externs, sym);
continue;
}
/* if extern then do nothing or is a function
then do nothing */
if (IS_FUNC (sym->type) && !(sym->isitmp))
continue;
/* if it has an initial value then do it only if
it is a global variable */
if (sym->ival && sym->level == 0)
{
if ((SPEC_OCLS (sym->etype) == xidata || SPEC_OCLS (sym->etype) == initialized) && !SPEC_ABSA (sym->etype) && !SPEC_ADDRSPACE (sym->etype))
{
sym_link *t;
/* create a new "XINIT (CODE)" symbol, that will be emitted later
in the static seg */
newSym = copySymbol (sym);
SPEC_OCLS (newSym->etype) = (SPEC_OCLS (sym->etype) == xidata) ? xinit : initializer;
SNPRINTF (newSym->name, sizeof (newSym->name), "__xinit_%s", sym->name);
SNPRINTF (newSym->rname, sizeof (newSym->rname), "__xinit_%s", sym->rname);
/* find the first non-array link */
t = newSym->type;
while (IS_ARRAY (t))
t = t->next;
if (IS_SPEC (t))
SPEC_CONST (t) = 1;
else
DCL_PTR_CONST (t) = 1;
SPEC_STAT (newSym->etype) = 1;
strSym = NULL;
++noAlloc;
resolveIvalSym (newSym->ival, newSym->type);
--noAlloc;
// add it to the "XINIT (CODE)" segment
addSet ((SPEC_OCLS (sym->etype) == xidata) ? &xinit->syms : &initializer->syms, newSym);
if (!SPEC_ABSA (sym->etype))
{
struct dbuf_s tmpBuf;
symbol *ps = NULL;
set *tmpSym = NULL;
dbuf_init (&tmpBuf, 4096);
// before allocation we must parse the sym->ival tree
// but without actually generating initialization code
++noAlloc;
resolveIvalSym (sym->ival, sym->type);
++noInit;
printIval (sym, sym->type, sym->ival, &tmpBuf, TRUE);
--noInit;
--noAlloc;
// delete redundant __str_%d symbols (initiailzer for char arrays)
for (ps = setFirstItem (statsg->syms); ps; ps = setNextItem (statsg->syms))
if (!strstr (tmpBuf.buf, ps->name) && isinSet (strSym, ps))
addSet (&tmpSym, ps);
for (ps = setFirstItem (tmpSym); ps; ps = setNextItem (tmpSym))
deleteSetItem (&statsg->syms, ps);
deleteSet (&tmpSym);
dbuf_destroy (&tmpBuf);
}
if (strSym)
deleteSet (&strSym);
}
else
{
if (IS_AGGREGATE (sym->type))
{
ival = initAggregates (sym, sym->ival, NULL);
}
else
{
if (getNelements (sym->type, sym->ival) > 1)
{
werrorfl (sym->fileDef, sym->lineDef, W_EXCESS_INITIALIZERS, "scalar", sym->name);
}
ival = newNode ('=', newAst_VALUE (symbolVal (sym)),
decorateType (resolveSymbols (list2expr (sym->ival)), RESULT_TYPE_NONE));
}
codeOutBuf = &statsg->oBuf;
if (ival)
{
// set ival's lineno to where the symbol was defined
setAstFileLine (ival, filename = sym->fileDef, lineno = sym->lineDef);
// check if this is not a constant expression
if (!constExprTree (ival))
{
werrorfl (ival->filename, ival->lineno, E_CONST_EXPECTED, "found expression");
// but try to do it anyway
}
allocInfo = 0;
if (!astErrors (ival))
eBBlockFromiCode (iCodeFromAst (ival));
allocInfo = 1;
}
}
}
/* if it has an absolute address then generate
an equate for this no need to allocate space */
if (SPEC_ABSA (sym->etype) && !sym->ival)
{
char *equ = "=";
/* print extra debug info if required */
if (options.debug)
{
emitDebugSym (&map->oBuf, sym);
dbuf_printf (&map->oBuf, " == 0x%04x\n", SPEC_ADDR (sym->etype));
}
if (TARGET_IS_XA51)
{
if (map == sfr)
{
equ = "sfr";
}
else if (map == bit || map == sfrbit)
{
equ = "bit";
}
}
dbuf_printf (&map->oBuf, "%s\t%s\t0x%04x\n", sym->rname, equ, SPEC_ADDR (sym->etype));
}
else
{
int size = getSize (sym->type) + sym->flexArrayLength;
if (size == 0)
{
werrorfl (sym->fileDef, sym->lineDef, E_UNKNOWN_SIZE, sym->name);
}
/* allocate space */
if (SPEC_ABSA (sym->etype))
{
dbuf_tprintf (&map->oBuf, "\t!org\n", SPEC_ADDR (sym->etype));
}
/* print extra debug info if required */
if (options.debug)
{
emitDebugSym (&map->oBuf, sym);
dbuf_printf (&map->oBuf, "==.\n");
}
if (IS_STATIC (sym->etype) || sym->level)
dbuf_tprintf (&map->oBuf, "!slabeldef\n", sym->rname);
else
dbuf_tprintf (&map->oBuf, "!labeldef\n", sym->rname);
dbuf_tprintf (&map->oBuf, "\t!ds\n", (unsigned int) size & 0xffff);
}
sym->ival = NULL;
}
}
/*-----------------------------------------------------------------*/
/* initValPointer - pointer initialization code massaging */
/*-----------------------------------------------------------------*/
value *
initValPointer (ast * expr)
{
value *val;
/* no then we have to do these kludgy checks */
/* pointers can be initialized with address of
a variable or address of an array element */
if (IS_ADDRESS_OF_OP (expr))
{
/* address of symbol */
if (IS_AST_SYM_VALUE (expr->left))
{
STORAGE_CLASS sclass = SPEC_SCLS (expr->left->etype);
memmap *oclass = SPEC_OCLS (expr->left->etype);
val = AST_VALUE (expr->left);
val->type = newLink (DECLARATOR);
if (sclass == S_CODE)
{
DCL_TYPE (val->type) = CPOINTER;
CodePtrPointsToConst (val->type);
}
else if (oclass)
DCL_TYPE (val->type) = oclass->ptrType;
else if (sclass == S_XDATA)
DCL_TYPE (val->type) = FPOINTER;
else if (sclass == S_DATA)
DCL_TYPE (val->type) = POINTER;
else if (sclass == S_IDATA)
DCL_TYPE (val->type) = IPOINTER;
else if (sclass == S_PDATA)
DCL_TYPE (val->type) = PPOINTER;
else if (sclass == S_XSTACK)
DCL_TYPE (val->type) = PPOINTER;
else if (sclass == S_EEPROM)
DCL_TYPE (val->type) = EEPPOINTER;
else
DCL_TYPE (val->type) = POINTER;
val->type->next = expr->left->ftype;
val->etype = getSpec (val->type);
return val;
}
/* if address of indexed array */
if (IS_ARRAY_OP (expr->left))
return valForArray (expr->left);
/* if address of structure element then
case 1. a.b ; */
if (IS_AST_OP (expr->left) && expr->left->opval.op == '.')
{
return valForStructElem (expr->left->left, expr->left->right);
}
/* case 2. (&a)->b ;
(&some_struct)->element */
if (IS_AST_OP (expr->left) && expr->left->opval.op == PTR_OP && IS_ADDRESS_OF_OP (expr->left->left))
{
return valForStructElem (expr->left->left->left, expr->left->right);
}
/* case 2.1. a->b */
if (IS_AST_OP (expr->left) && expr->left->opval.op == PTR_OP)
{
return valForStructElem (expr->left->left, expr->left->right);
}
}
/* case 3. (((char *) &a) +/- constant) */
if (IS_AST_OP (expr) &&
(expr->opval.op == '+' || expr->opval.op == '-') &&
IS_CAST_OP (expr->left) && IS_ADDRESS_OF_OP (expr->left->right) && IS_AST_LIT_VALUE (expr->right))
{
return valForCastAggr (expr->left->right->left, expr->left->left->opval.lnk, expr->right, expr->opval.op);
}
/* case 4. (array type) */
if (IS_AST_SYM_VALUE (expr) && IS_ARRAY (expr->ftype))
{
STORAGE_CLASS sclass = SPEC_SCLS (expr->etype);
memmap *oclass = SPEC_OCLS (expr->etype);
val = copyValue (AST_VALUE (expr));
val->type = newLink (DECLARATOR);
if (SPEC_SCLS (expr->etype) == S_CODE)
{
DCL_TYPE (val->type) = CPOINTER;
CodePtrPointsToConst (val->type);
}
else if (oclass)
DCL_TYPE (val->type) = oclass->ptrType;
else if (sclass == S_XDATA)
DCL_TYPE (val->type) = FPOINTER;
else if (sclass == S_DATA)
DCL_TYPE (val->type) = POINTER;
else if (sclass == S_IDATA)
DCL_TYPE (val->type) = IPOINTER;
else if (sclass == S_PDATA)
DCL_TYPE (val->type) = PPOINTER;
else if (sclass == S_XSTACK)
DCL_TYPE (val->type) = PPOINTER;
else if (sclass == S_EEPROM)
DCL_TYPE (val->type) = EEPPOINTER;
else
DCL_TYPE (val->type) = POINTER;
val->type->next = expr->ftype->next;
val->etype = getSpec (val->type);
return val;
}
/* if structure element then
case 5. a.b ; */
if (IS_AST_OP (expr) && expr->opval.op == '.')
{
return valForStructElem (expr->left, expr->right);
}
/* case 6. a->b ;
some_struct->element */
if (IS_AST_OP (expr) && expr->opval.op == PTR_OP)
{
ast *t = expr->left;
/*if (expr->left->left)
if (expr->left->left->left)
if (expr->left->left->opval.op == '[')
t = expr->left->left;
else
t = expr->left->left->left;
else
t = expr->left->left;
else
t = expr->left;*/
/* a more generic way of above code */
while (t->left != NULL && t->opval.op != '[')
t = t->left;
return valForStructElem (t, expr->right);
}
return NULL;
}
/*-----------------------------------------------------------------*/
/* initPointer - pointer initialization code massaging */
/*-----------------------------------------------------------------*/
value *
initPointer (initList * ilist, sym_link * toType, int showError)
{
value *val;
ast *expr;
if (!ilist)
{
return valCastLiteral (toType, 0.0, 0);
}
expr = list2expr (ilist);
if (!expr)
goto wrong;
/* try it the old way first */
if ((val = constExprValue (expr, FALSE)))
return val;
/* ( ptr + constant ) */
if (IS_AST_OP (expr) &&
(expr->opval.op == '+' || expr->opval.op == '-') &&
IS_AST_SYM_VALUE (expr->left) &&
(IS_ARRAY (expr->left->ftype) || IS_PTR (expr->left->ftype)) &&
compareType (toType, expr->left->ftype) && IS_AST_LIT_VALUE (expr->right))
{
return valForCastAggr (expr->left, expr->left->ftype, expr->right, expr->opval.op);
}
/* (char *)(expr1) */
if (IS_CAST_OP (expr))
{
if (compareType (toType, expr->left->ftype) == 0)
{
werror (W_INIT_WRONG);
printFromToType (expr->left->ftype, toType);
}
val = initValPointer (expr->right);
if (val)
{
DECLARATOR_TYPE dcl_type = DCL_TYPE (val->type);
val->type = expr->left->ftype;
val->etype = getSpec (val->type);
if (IS_GENPTR (val->type))
DCL_TYPE (val->type) = dcl_type;
}
}
else
{
val = initValPointer (expr);
}
if (val)
return val;
wrong:
if (showError)
if (expr)
werrorfl (expr->filename, expr->lineno, E_INCOMPAT_PTYPES);
else
werror (E_INCOMPAT_PTYPES);
return NULL;
}
/*-----------------------------------------------------------------*/
/* printChar - formats and prints a characater string with DB */
/*-----------------------------------------------------------------*/
void
printChar (struct dbuf_s *oBuf, const char *s, int plen)
{
int i;
int len = plen;
int pplen = 0;
char buf[100];
char *p = buf;
int strEnd = plen - 1;
if (s)
while (s[strEnd] != 0)
strEnd--;
while (len && pplen < plen)
{
i = 60;
while (i && pplen < plen)
{
if (!isprint((unsigned char) *s) || *s == '\"' || *s == '\\')
{
*p = '\0';
if (p != buf)
dbuf_tprintf (oBuf, "\t!ascii\n", buf);
dbuf_tprintf (oBuf, "\t!db !constbyte\n", pplen < strEnd ? ((unsigned char) *s) : 0x00);
p = buf;
}
else
{
*p = *s;
p++;
}
s++;
pplen++;
i--;
}
if (p != buf)
{
*p = '\0';
dbuf_tprintf (oBuf, "\t!ascii\n", buf);
p = buf;
}
if (len > 60)
len -= 60;
else
len = 0;
}
while (pplen < plen)
{
dbuf_tprintf (oBuf, "\t!db !constbyte\n", 0);
pplen++;
}
}
/*-----------------------------------------------------------------*/
/* return the generic pointer high byte for a given pointer type. */
/*-----------------------------------------------------------------*/
int
pointerTypeToGPByte (const int p_type, const char *iname, const char *oname)
{
switch (p_type)
{
case IPOINTER:
case POINTER:
return GPTYPE_NEAR;
case GPOINTER:
werror (W_USING_GENERIC_POINTER, iname ? iname : "<null>", oname ? oname : "<null>");
return -1;
case FPOINTER:
return GPTYPE_FAR;
case CPOINTER:
case FUNCTION:
return GPTYPE_CODE;
case PPOINTER:
return GPTYPE_XSTACK;
default:
fprintf (stderr, "*** internal error: unknown pointer type %d in GPByte.\n", p_type);
exit (EXIT_FAILURE);
}
return -1;
}
/*-----------------------------------------------------------------*/
/* _printPointerType - generates ival for pointer type */
/*-----------------------------------------------------------------*/
static void
_printPointerType (struct dbuf_s *oBuf, const char *name, int size)
{
if (size == 4)
{
if (port->little_endian)
dbuf_printf (oBuf, "\t.byte %s, (%s >> 8), (%s >> 16), (%s >> 24)", name, name, name, name);
else
dbuf_printf (oBuf, "\t.byte (%s >> 24), (%s >> 16), (%s >> 8), %s", name, name, name, name);
}
else if (size == 3)
{
if (port->little_endian)
dbuf_printf (oBuf, "\t.byte %s, (%s >> 8), (%s >> 16)", name, name, name);
else
dbuf_printf (oBuf, "\t.byte (%s >> 16), (%s >> 8), %s", name, name, name);
}
else
{
if (port->little_endian)
dbuf_printf (oBuf, "\t.byte %s, (%s >> 8)", name, name);
else
dbuf_printf (oBuf, "\t.byte (%s >> 8), %s", name, name);
}
}
/*-----------------------------------------------------------------*/
/* printPointerType - generates ival for pointer type */
/*-----------------------------------------------------------------*/
static void
printPointerType (struct dbuf_s *oBuf, const char *name)
{
_printPointerType (oBuf, name, (options.model == MODEL_FLAT24) ? 3 : 2);
dbuf_printf (oBuf, "\n");
}
/*-----------------------------------------------------------------*/
/* printGPointerType - generates ival for generic pointer type */
/*-----------------------------------------------------------------*/
static void
printGPointerType (struct dbuf_s *oBuf, const char *iname, const char *oname, int type)
{
int byte = pointerTypeToGPByte (type, iname, oname);
int size = (options.model == MODEL_FLAT24) ? 3 : 2;
if (byte == -1)
{
_printPointerType (oBuf, iname, size + 1);
dbuf_printf (oBuf, "\n");
}
else
{
_printPointerType (oBuf, iname, size);
dbuf_printf (oBuf, ",#0x%02x\n", byte);
}
}
/*-----------------------------------------------------------------*/
/* printIvalType - generates ival for int/char */
/*-----------------------------------------------------------------*/
void
printIvalType (symbol * sym, sym_link * type, initList * ilist, struct dbuf_s *oBuf)
{
value *val;
unsigned long ulVal = 0;
/* if initList is deep */
if (ilist && (ilist->type == INIT_DEEP))
ilist = ilist->init.deep;
if (!(val = list2val (ilist, FALSE)))
{
if (!!(val = initPointer (ilist, type, 0)))
{
int i, size = getSize (type), le = port->little_endian, top = (options.model == MODEL_FLAT24) ? 3 : 2;;
dbuf_printf (oBuf, "\t.byte ");
for (i = (le ? 0 : size - 1); le ? (i < size) : (i > -1); i += (le ? 1 : -1))
{
if (i == 0)
if (val->name && strlen (val->name) > 0)
dbuf_printf (oBuf, "%s", val->name);
else
dbuf_printf (oBuf, "#0x00");
else if (0 < i && i < top)
if (val->name && strlen (val->name) > 0)
dbuf_printf (oBuf, "(%s >> %d)", val->name, i * 8);
else
dbuf_printf (oBuf, "#0x00");
else
dbuf_printf (oBuf, "#0x00");
if (i == (le ? (size - 1) : 0))
dbuf_printf (oBuf, "\n");
else
dbuf_printf (oBuf, ", ");
}
return;
}
else
{
werrorfl (ilist->filename, ilist->lineno, E_CONST_EXPECTED);
val = constCharVal (0);
}
}
if (val->etype && SPEC_SCLS (val->etype) != S_LITERAL)
{
werrorfl (ilist->filename, ilist->lineno, E_CONST_EXPECTED);
val = constCharVal (0);
}
/* check if the literal value is within bounds */
if (checkConstantRange (type, val->etype, '=', FALSE) == CCR_OVL)
{
werror (W_LIT_OVERFLOW);
}
if (val->type != type)
{
val = valCastLiteral (type, floatFromVal (val), ullFromVal (val));
}
if (IS_INTEGRAL (val->type))
ulVal = ulFromVal (val);
switch (getSize (type))
{
case 1:
if (!val)
dbuf_tprintf (oBuf, "\t!db !constbyte\n", 0);
else
{
if (IS_UNSIGNED (val->type))
{
dbuf_tprintf (oBuf, "\t!dbs\t; %u", aopLiteral (val, 0), (unsigned int) ulVal);
}
else
{
dbuf_tprintf (oBuf, "\t!dbs\t; % d", aopLiteral (val, 0), (int) ulVal);
}
if (isalnum ((int) ulVal))
dbuf_tprintf (oBuf, "\t'%c'\n", (int) ulVal);
else
dbuf_tprintf (oBuf, "\n");
}
break;
case 2:
if (port->use_dw_for_init)
{
dbuf_tprintf (oBuf, "\t!dws\n", aopLiteralLong (val, 0, 2));
break;
}
else if (port->little_endian)
{
dbuf_printf (oBuf, "\t.byte %s,%s",
aopLiteral (val, 0), aopLiteral (val, 1));
}
else
{
dbuf_printf (oBuf, "\t.byte %s,%s",
aopLiteral (val, 1), aopLiteral (val, 0));
}
if (IS_UNSIGNED (val->type))
dbuf_printf (oBuf, "\t; %u\n", (unsigned int) ulVal);
else
dbuf_printf (oBuf, "\t; % d\n", (int) ulVal);
break;
case 4:
if (!val)
{
dbuf_tprintf (oBuf, "\t!dw !constword\n", 0);
dbuf_tprintf (oBuf, "\t!dw !constword\n", 0);
}
else
{
if (port->little_endian)
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s,%s",
aopLiteral (val, 0), aopLiteral (val, 1), aopLiteral (val, 2), aopLiteral (val, 3));
}
else
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s,%s",
aopLiteral (val, 3), aopLiteral (val, 2), aopLiteral (val, 1), aopLiteral (val, 0));
}
if (IS_FLOAT (val->type))
{
dbuf_printf (oBuf, "\t; % e\n", floatFromVal (val));
}
else
{
if (IS_UNSIGNED (val->type))
dbuf_printf (oBuf, "\t; %u\n", (unsigned int) ulVal);
else
dbuf_printf (oBuf, "\t; % d\n", (int) ulVal);
}
}
break;
case 8:
if (port->little_endian)
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s,%s,%s,%s,%s,%s",
aopLiteral (val, 0), aopLiteral (val, 1), aopLiteral (val, 2), aopLiteral (val, 3), aopLiteral (val, 4), aopLiteral (val, 5), aopLiteral (val, 6), aopLiteral (val, 7));
}
else
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s,%s,%s,%s,%s,%s",
aopLiteral (val, 7), aopLiteral (val, 6), aopLiteral (val, 5), aopLiteral (val, 4), aopLiteral (val, 3), aopLiteral (val, 2), aopLiteral (val, 1), aopLiteral (val, 0));
}
// TODO: Print value as comment. Does dbuf_printf support long long even on MSVC?
dbuf_printf (oBuf, "\n");
break;
default:
wassertl (0, "Attempting to initialize integer of non-handled size.");
}
}
/*-----------------------------------------------------------------*/
/* printIvalBitFields - generate initializer for bitfields */
/*-----------------------------------------------------------------*/
static void
printIvalBitFields (symbol ** sym, initList ** ilist, struct dbuf_s *oBuf)
{
symbol *lsym = *sym;
initList *lilist = *ilist;
unsigned long ival = 0;
unsigned size = 0;
unsigned bit_start = 0;
while (lsym && IS_BITFIELD (lsym->type))
{
unsigned bit_length = SPEC_BLEN (lsym->etype);
if (0 == bit_length)
{
/* bit-field structure member with a width of 0 */
lsym = lsym->next;
break;
}
else if (!SPEC_BUNNAMED (lsym->etype))
{
/* not an unnamed bit-field structure member */
value *val = list2val (lilist, TRUE);
if (val && val->etype && SPEC_SCLS (val->etype) != S_LITERAL)
{
werrorfl (lilist->filename, lilist->lineno, E_CONST_EXPECTED);
val = constCharVal (0);
}
if (size)
{
if (bit_length > 8)
size += (bit_length + 7) / 8;
}
else
size = (bit_length + 7) / 8;
/* check if the literal value is within bounds */
if (val && checkConstantRange (lsym->etype, val->etype, '=', FALSE) == CCR_OVL)
{
werror (W_LIT_OVERFLOW);
}
ival |= (ulFromVal (val) & ((1ul << bit_length) - 1ul)) << bit_start;
lilist = lilist ? lilist->next : NULL;
}
bit_start += bit_length;
lsym = lsym->next;
if (lsym && IS_BITFIELD (lsym->type) && (0 == SPEC_BSTR (lsym->etype)))
{
/* a new integer */
break;
}
}
switch (size)
{
case 1:
dbuf_tprintf (oBuf, "\t!db !constbyte\n", ival);
break;
case 2:
dbuf_tprintf (oBuf, "\t!db !constbyte, !constbyte\n", (ival & 0xff), (ival >> 8) & 0xff);
break;
case 4:
dbuf_tprintf (oBuf, "\t!db !constbyte, !constbyte, !constbyte, !constbyte\n",
(ival & 0xff), (ival >> 8) & 0xff, (ival >> 16) & 0xff, (ival >> 24) & 0xff);
break;
}
*sym = lsym;
*ilist = lilist;
}
/*-----------------------------------------------------------------*/
/* printIvalStruct - generates initial value for structures */
/*-----------------------------------------------------------------*/
static void
printIvalStruct (symbol * sym, sym_link * type, initList * ilist, struct dbuf_s *oBuf)
{
symbol *sflds;
initList *iloop = NULL;
sflds = SPEC_STRUCT (type)->fields;
if (ilist)
{
if (ilist->type != INIT_DEEP)
{
werrorfl (sym->fileDef, sym->lineDef, E_INIT_STRUCT, sym->name);
return;
}
iloop = ilist->init.deep;
}
if (SPEC_STRUCT (type)->type == UNION)
{
int size;
/* skip past holes, print value */
while (iloop && iloop->type == INIT_HOLE)
{
iloop = iloop->next;
sflds = sflds->next;
}
printIval (sym, sflds->type, iloop, oBuf, 1);
/* pad out with zeros if necessary */
size = getSize(type) - getSize(sflds->type);
for ( ; size > 0 ; size-- )
{
dbuf_tprintf (oBuf, "\t!db !constbyte\n", 0);
}
/* advance past holes to find out if there were excess initializers */
do
{
iloop = iloop ? iloop->next : NULL;
sflds = sflds->next;
}
while (iloop && iloop->type == INIT_HOLE);
}
else
{
while (sflds)
{
if (IS_BITFIELD (sflds->type))
printIvalBitFields (&sflds, &iloop, oBuf);
else
{
printIval (sym, sflds->type, iloop, oBuf, 1);
sflds = sflds->next;
iloop = iloop ? iloop->next : NULL;
}
}
}
if (iloop)
werrorfl (sym->fileDef, sym->lineDef, W_EXCESS_INITIALIZERS, "struct", sym->name);
}
/*-----------------------------------------------------------------*/
/* printIvalChar - generates initital value for character array */
/*-----------------------------------------------------------------*/
int
printIvalChar (symbol * sym, sym_link * type, initList * ilist, struct dbuf_s *oBuf, const char *s, bool check)
{
value *val;
size_t size = DCL_ELEM(type);
char *p;
size_t asz;
if (!s)
{
val = list2val (ilist, TRUE);
/* if the value is a character string */
if (IS_ARRAY (val->type) && IS_CHAR (val->etype))
{
if (!size)
{
/* we have not been given a size, but now we know it */
size = strlen (SPEC_CVAL (val->etype).v_char) + 1;
/* but first check, if it's a flexible array */
if (sym && IS_STRUCT (sym->type))
sym->flexArrayLength = size;
else
DCL_ELEM (type) = size;
}
if (check && DCL_ELEM (val->type) > size)
werror (W_EXCESS_INITIALIZERS, "array of chars", sym->name, sym->lineDef);
if (size > (asz = DCL_ELEM (val->type)) && !!(p = malloc (size)))
{
memcpy (p, SPEC_CVAL (val->etype).v_char, asz);
memset (p + asz, 0x00, size - asz);
printChar (oBuf, p, size);
free (p);
}
else
printChar (oBuf, SPEC_CVAL (val->etype).v_char, size);
return 1;
}
else
return 0;
}
else
printChar (oBuf, s, strlen (s) + 1);
return 1;
}
/*-----------------------------------------------------------------*/
/* printIvalArray - generates code for array initialization */
/*-----------------------------------------------------------------*/
void
printIvalArray (symbol * sym, sym_link * type, initList * ilist, struct dbuf_s *oBuf, bool check)
{
value *val;
initList *iloop;
unsigned int size = 0;
if (ilist)
{
/* take care of the special case */
/* array of characters can be init */
/* by a string */
/* char *p = "abc"; */
if (IS_CHAR (type->next) && ilist->type == INIT_NODE)
{
val = list2val (ilist, TRUE);
if (!val)
{
werrorfl (ilist->filename, ilist->lineno, E_INIT_STRUCT, sym->name);
return;
}
if (!IS_LITERAL (val->etype))
{
werrorfl (ilist->filename, ilist->lineno, E_CONST_EXPECTED);
return;
}
if (printIvalChar (sym, type,
ilist, oBuf, SPEC_CVAL (sym->etype).v_char, check))
return;
}
/* char *p = {"abc"}; */
if (IS_CHAR (type->next) && ilist->type == INIT_DEEP && ilist->init.deep && ilist->init.deep->type == INIT_NODE)
{
val = list2val (ilist->init.deep, TRUE);
if (!val)
{
werrorfl (ilist->init.deep->filename, ilist->init.deep->lineno, E_INIT_STRUCT, sym->name);
return;
}
if (!IS_LITERAL (val->etype))
{
werrorfl (ilist->init.deep->filename, ilist->init.deep->lineno, E_CONST_EXPECTED);
return;
}
if (printIvalChar (sym, type,
ilist->init.deep, oBuf, SPEC_CVAL (sym->etype).v_char, check))
return;
}
/* not the special case */
if (ilist->type != INIT_DEEP)
{
werrorfl (ilist->filename, ilist->lineno, E_INIT_STRUCT, sym->name);
return;
}
for (iloop = ilist->init.deep; iloop; iloop = iloop->next)
{
if ((++size > DCL_ELEM (type)) && DCL_ELEM (type))
{
werrorfl (sym->fileDef, sym->lineDef, W_EXCESS_INITIALIZERS, "array", sym->name);
break;
}
printIval (sym, type->next, iloop, oBuf, TRUE);
}
}
if (DCL_ELEM (type))
{
// pad with zeros if needed
if (size < DCL_ELEM (type))
{
size = (DCL_ELEM (type) - size) * getSize (type->next);
while (size--)
{
dbuf_tprintf (oBuf, "\t!db !constbyte\n", 0);
}
}
}
else
{
/* we have not been given a size, but now we know it */
/* but first check, if it's a flexible array */
if (IS_STRUCT (sym->type))
sym->flexArrayLength = size * getSize (type->next);
else
DCL_ELEM (type) = size;
}
return;
}
/*-----------------------------------------------------------------*/
/* printIvalFuncPtr - generate initial value for function pointers */
/*-----------------------------------------------------------------*/
void
printIvalFuncPtr (sym_link * type, initList * ilist, struct dbuf_s *oBuf)
{
value *val;
char *name;
int size;
if (ilist)
val = list2val (ilist, TRUE);
else
val = valCastLiteral (type, 0.0, 0);
if (!val)
{
// an error has been thrown already
val = constCharVal (0);
}
if (IS_LITERAL (val->etype))
{
if (compareType (type, val->type) == 0)
{
if (ilist)
werrorfl (ilist->filename, ilist->lineno, E_INCOMPAT_TYPES);
else
werror (E_INCOMPAT_TYPES);
printFromToType (val->type, type);
}
printIvalCharPtr (NULL, type, val, oBuf);
return;
}
/* now generate the name */
if (!val->sym)
name = val->name;
else
name = val->sym->rname;
size = getSize (type);
if (size == FPTRSIZE)
{
if (port->use_dw_for_init)
{
dbuf_tprintf (oBuf, "\t!dws\n", name);
}
else
{
printPointerType (oBuf, name);
}
}
else if (size == GPTRSIZE)
{
_printPointerType (oBuf, name, size);
dbuf_printf (oBuf, "\n");
}
else
{
assert (0);
}
return;
}
/*--------------------------------------------------------------------*/
/* printIvalCharPtr - generates initial values for character pointers */
/*--------------------------------------------------------------------*/
int
printIvalCharPtr (symbol * sym, sym_link * type, value * val, struct dbuf_s *oBuf)
{
int size = 0;
char *p;
if (val && !!(p = (char *) malloc (strlen (val->name) + 1)))
{
strcpy (p, val->name);
addSet (&ccpStr, p);
}
/* PENDING: this is _very_ mcs51 specific, including a magic
number...
It's also endian specific.
*/
size = getSize (type);
if (val->name && strlen (val->name))
{
if (size == 1) /* This appears to be Z80 specific?? */
{
dbuf_tprintf (oBuf, "\t!dbs\n", val->name);
}
else if (size == FPTRSIZE)
{
if (port->use_dw_for_init)
{
dbuf_tprintf (oBuf, "\t!dws\n", val->name);
}
else
{
printPointerType (oBuf, val->name);
}
}
else if (size == GPTRSIZE)
{
int type;
if (IS_PTR (val->type))
{
type = DCL_TYPE (val->type);
}
else
{
type = PTR_TYPE (SPEC_OCLS (val->etype));
}
if (val->sym && val->sym->isstrlit)
{
// this is a literal string
type = CPOINTER;
}
printGPointerType (oBuf, val->name, sym->name, type);
}
else
{
fprintf (stderr, "*** internal error: unknown size in " "printIvalCharPtr.\n");
}
}
else
{
// these are literals assigned to pointers
switch (size)
{
case 1:
dbuf_tprintf (oBuf, "\t!dbs\n", aopLiteral (val, 0));
break;
case 2:
if (port->use_dw_for_init)
dbuf_tprintf (oBuf, "\t!dws\n", aopLiteralLong (val, 0, size));
else if (port->little_endian)
dbuf_tprintf (oBuf, "\t.byte %s,%s\n", aopLiteral (val, 0), aopLiteral (val, 1));
else
dbuf_tprintf (oBuf, "\t.byte %s,%s\n", aopLiteral (val, 1), aopLiteral (val, 0));
break;
case 3:
if (IS_GENPTR (type) && GPTRSIZE > FPTRSIZE && floatFromVal (val) != 0)
{
if (!IS_PTR (val->type) && !IS_FUNC (val->type))
{
// non-zero mcs51 generic pointer
werrorfl (sym->fileDef, sym->lineDef, W_LITERAL_GENERIC);
}
if (port->little_endian)
dbuf_printf (oBuf, "\t.byte %s,%s,%s\n", aopLiteral (val, 0), aopLiteral (val, 1), aopLiteralGptr (sym->name, val));
else
dbuf_printf (oBuf, "\t.byte %s,%s,%s\n", aopLiteralGptr (sym->name, val), aopLiteral (val, 1), aopLiteral (val, 0));
}
else
{
if (port->little_endian)
dbuf_printf (oBuf, "\t.byte %s,%s,%s\n", aopLiteral (val, 0), aopLiteral (val, 1), aopLiteral (val, 2));
else
dbuf_printf (oBuf, "\t.byte %s,%s,%s\n", aopLiteral (val, 2), aopLiteral (val, 1), aopLiteral (val, 0));
}
break;
case 4:
if (IS_GENPTR (type) && GPTRSIZE > FPTRSIZE && floatFromVal (val) != 0)
{
if (!IS_PTR (val->type) && !IS_FUNC (val->type))
{
// non-zero ds390 generic pointer
werrorfl (sym->fileDef, sym->lineDef, W_LITERAL_GENERIC);
}
if (port->little_endian)
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s", aopLiteral (val, 0), aopLiteral (val, 1), aopLiteral (val, 2));
if (IS_PTR (val->type) && !IS_GENPTR (val->type))
dbuf_tprintf (oBuf, ",!immedbyte\n", pointerTypeToGPByte (DCL_TYPE (val->type), val->name, sym->name));
else
dbuf_printf (oBuf, ",%s\n", aopLiteral (val, 3));
}
else
{
if (IS_PTR (val->type) && !IS_GENPTR (val->type))
dbuf_tprintf (oBuf, "\t.byte !immedbyte\n", pointerTypeToGPByte (DCL_TYPE (val->type), val->name, sym->name));
else
dbuf_printf (oBuf, "\t.byte %s\n", aopLiteral (val, 3));
dbuf_printf (oBuf, ",%s,%s,%s", aopLiteral (val, 2), aopLiteral (val, 1), aopLiteral (val, 0));
}
}
else
{
if (port->little_endian)
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s,%s\n",
aopLiteral (val, 0), aopLiteral (val, 1), aopLiteral (val, 2), aopLiteral (val, 3));
}
else
{
dbuf_printf (oBuf, "\t.byte %s,%s,%s,%s\n",
aopLiteral (val, 3), aopLiteral (val, 2), aopLiteral (val, 1), aopLiteral (val, 0));
}
}
break;
default:
assert (0);
}
}
if (!noInit && val->sym && val->sym->isstrlit && !isinSet (statsg->syms, val->sym))
{
addSet (&statsg->syms, val->sym);
}
return 1;
}
/*-----------------------------------------------------------------*/
/* printIvalPtr - generates initial value for pointers */
/*-----------------------------------------------------------------*/
void
printIvalPtr (symbol * sym, sym_link * type, initList * ilist, struct dbuf_s *oBuf)
{
value *val;
int size;
/* if deep then */
if (ilist && (ilist->type == INIT_DEEP))
ilist = ilist->init.deep;
/* function pointer */
if (IS_FUNC (type->next))
{
printIvalFuncPtr (type, ilist, oBuf);
return;
}
if (!(val = initPointer (ilist, type, 1)))
return;
/* if character pointer */
if (IS_CHAR (type->next))
if (printIvalCharPtr (sym, type, val, oBuf))
return;
/* check the type */
if (compareType (type, val->type) == 0)
{
assert (ilist != NULL);
werrorfl (ilist->filename, ilist->lineno, W_INIT_WRONG);
printFromToType (val->type, type);
}
/* if val is literal */
if (IS_LITERAL (val->etype))
{
switch (getSize (type))
{
case 1:
dbuf_tprintf (oBuf, "\t!db !constbyte\n", (unsigned int) ulFromVal (val) & 0xff);
break;
case 2:
if (port->use_dw_for_init)
dbuf_tprintf (oBuf, "\t!dws\n", aopLiteralLong (val, 0, 2));
else if (port->little_endian)
dbuf_tprintf (oBuf, "\t.byte %s,%s\n", aopLiteral (val, 0), aopLiteral (val, 1));
else
dbuf_tprintf (oBuf, "\t.byte %s,%s\n", aopLiteral (val, 1), aopLiteral (val, 0));
break;
case 3: // how about '390??
dbuf_printf (oBuf, "; generic printIvalPtr\n");
if (port->little_endian)
dbuf_printf (oBuf, "\t.byte %s,%s", aopLiteral (val, 0), aopLiteral (val, 1));
else
dbuf_printf (oBuf, "\t.byte %s,%s", aopLiteral (val, 1), aopLiteral (val, 0));
if (IS_GENPTR (val->type))
dbuf_printf (oBuf, ",%s\n", aopLiteral (val, 2));
else if (IS_PTR (val->type))
dbuf_tprintf (oBuf, ",!immedbyte\n", pointerTypeToGPByte (DCL_TYPE (val->type), val->name, sym->name));
else
dbuf_printf (oBuf, ",%s\n", aopLiteral (val, 2));
}
return;
}
size = getSize (type);
if (size == 1) /* Z80 specific?? */
{
dbuf_tprintf (oBuf, "\t!dbs\n", val->name);
}
else if (size == FPTRSIZE)
{
if (port->use_dw_for_init)
dbuf_tprintf (oBuf, "\t!dws\n", val->name);
else
printPointerType (oBuf, val->name);
}
else if (size == GPTRSIZE)
{
printGPointerType (oBuf, val->name, sym->name,
(IS_PTR (val->type) ? DCL_TYPE (val->type) : PTR_TYPE (SPEC_OCLS (val->etype))));
}
return;
}
/*-----------------------------------------------------------------*/
/* printIval - generates code for initial value */
/*-----------------------------------------------------------------*/
void
printIval (symbol * sym, sym_link * type, initList * ilist, struct dbuf_s *oBuf, bool check)
{
sym_link *itype;
/* Handle designated initializers */
if (ilist && ilist->type==INIT_DEEP)
ilist = reorderIlist (type, ilist);
/* If this is a hole, substitute an appropriate initializer. */
if (ilist && ilist->type == INIT_HOLE)
{
if (IS_AGGREGATE (type))
{
ilist = newiList(INIT_DEEP, NULL); /* init w/ {} */
}
else
{
ast *ast = newAst_VALUE (constVal("0"));
ast = decorateType (ast, RESULT_TYPE_NONE);
ilist = newiList(INIT_NODE, ast);
}
}
/* if structure then */
if (IS_STRUCT (type))
{
printIvalStruct (sym, type, ilist, oBuf);
return;
}
/* if this is an array */
if (IS_ARRAY (type))
{
printIvalArray (sym, type, ilist, oBuf, check);
return;
}
if (ilist)
{
// not an aggregate, ilist must be a node
if (ilist->type != INIT_NODE)
{
// or a 1-element list
if (ilist->init.deep->next)
{
werrorfl (sym->fileDef, sym->lineDef, W_EXCESS_INITIALIZERS, "scalar", sym->name);
}
else
{
ilist = ilist->init.deep;
}
}
// and the type must match
itype = ilist->init.node->ftype;
if (compareType (type, itype) == 0)
{
// special case for literal strings
if (IS_ARRAY (itype) && IS_CHAR (getSpec (itype)) &&
// which are really code pointers
IS_CODEPTR (type))
{
// no sweat
}
else if (IS_CODEPTR (type) && IS_FUNC (type->next)) /* function pointer */
{
if (ilist)
werrorfl (ilist->filename, ilist->lineno, E_INCOMPAT_TYPES);
else
werror (E_INCOMPAT_TYPES);
printFromToType (itype, type->next);
}
else
{
werrorfl (ilist->filename, ilist->lineno, E_TYPE_MISMATCH, "assignment", " ");
printFromToType (itype, type);
}
}
}
/* if this is a pointer */
if (IS_PTR (type))
{
printIvalPtr (sym, type, ilist, oBuf);
return;
}
/* if type is SPECIFIER */
if (IS_SPEC (type))
{
printIvalType (sym, type, ilist, oBuf);
return;
}
}
/*-----------------------------------------------------------------*/
/* emitStaticSeg - emitcode for the static segment */
/*-----------------------------------------------------------------*/
void
emitStaticSeg (memmap *map, struct dbuf_s *oBuf)
{
symbol *sym;
set *tmpSet = NULL;
/* fprintf(out, "\t.area\t%s\n", map->sname); */
/* eliminate redundant __str_%d (generated in stringToSymbol(), SDCCast.c) */
for (sym = setFirstItem (map->syms); sym; sym = setNextItem (map->syms))
addSet (&tmpSet, sym);
/* for all variables in this segment do */
for (sym = setFirstItem (map->syms); sym; sym = setNextItem (map->syms))
{
/* if it is "extern" then do nothing */
if (IS_EXTERN (sym->etype) && !sym->ival)
continue;
/* eliminate redundant __str_%d (generated in stringToSymbol(), SDCCast.c) */
if (!isinSet (tmpSet, sym))
{
const char *p;
if (!ccpStr)
continue;
for (p = setFirstItem (ccpStr); p; p = setNextItem (ccpStr))
if (strcmp (p, sym->name) == 0)
break;
if (!p)
continue;
}
/* if it is not static add it to the public table */
if (!IS_STATIC (sym->etype))
{
addSetHead (&publics, sym);
}
/* if it has an absolute address and no initializer */
if (SPEC_ABSA (sym->etype) && !sym->ival)
{
if (options.debug)
{
emitDebugSym (oBuf, sym);
dbuf_printf (oBuf, " == 0x%04x\n", SPEC_ADDR (sym->etype));
}
dbuf_printf (oBuf, "%s\t=\t0x%04x\n", sym->rname, SPEC_ADDR (sym->etype));
}
else
{
int size = getSize (sym->type);
if (size == 0)
{
werrorfl (sym->fileDef, sym->lineDef, E_UNKNOWN_SIZE, sym->name);
}
/* if it has an initial value */
if (sym->ival)
{
if (SPEC_ABSA (sym->etype))
{
dbuf_tprintf (oBuf, "\t!org\n", SPEC_ADDR (sym->etype));
}
if (options.debug)
{
emitDebugSym (oBuf, sym);
dbuf_printf (oBuf, " == .\n");
}
dbuf_printf (oBuf, "%s:\n", sym->rname);
++noAlloc;
resolveIvalSym (sym->ival, sym->type);
printIval (sym, sym->type, sym->ival, oBuf, (map != xinit && map != initializer));
--noAlloc;
/* if sym is a simple string and sym->ival is a string,
WE don't need it anymore */
if (IS_ARRAY (sym->type) && IS_CHAR (sym->type->next) &&
IS_AST_SYM_VALUE (list2expr (sym->ival)) && list2val (sym->ival, TRUE)->sym->isstrlit)
{
freeStringSymbol (list2val (sym->ival, TRUE)->sym);
}
}
else
{
/* allocate space */
if (options.debug)
{
emitDebugSym (oBuf, sym);
dbuf_printf (oBuf, " == .\n");
}
dbuf_printf (oBuf, "%s:\n", sym->rname);
/* special case for character strings */
if (IS_ARRAY (sym->type) && IS_CHAR (sym->type->next) && SPEC_CVAL (sym->etype).v_char)
{
printChar (oBuf, SPEC_CVAL (sym->etype).v_char, size);
}
else
{
dbuf_tprintf (oBuf, "\t!ds\n", (unsigned int) size & 0xffff);
}
}
}
}
if (tmpSet)
deleteSet (&tmpSet);
if (ccpStr)
{
char *p;
for (p = setFirstItem (ccpStr); p; p = setNextItem (ccpStr))
if (p)
free (p);
deleteSet (&ccpStr);
}
}
/*-----------------------------------------------------------------*/
/* emitMaps - emits the code for the data portion the code */
/*-----------------------------------------------------------------*/
void
emitMaps (void)
{
namedspacemap *nm;
int publicsfr = TARGET_IS_MCS51; /* Ideally, this should be true for all */
/* ports but let's be conservative - EEP */
inInitMode++;
/* no special considerations for the following
data, idata & bit & xdata */
emitRegularMap (data, TRUE, TRUE);
emitRegularMap (initialized, TRUE, TRUE);
for (nm = namedspacemaps; nm; nm = nm->next)
if (nm->is_const)
{
dbuf_tprintf (&nm->map->oBuf, "\t!areacode\n", nm->map->sname);
emitStaticSeg (nm->map, &nm->map->oBuf);
}
else
emitRegularMap (nm->map, TRUE, TRUE);
emitRegularMap (idata, TRUE, TRUE);
emitRegularMap (d_abs, TRUE, TRUE);
emitRegularMap (i_abs, TRUE, TRUE);
emitRegularMap (bit, TRUE, TRUE);
emitRegularMap (pdata, TRUE, TRUE);
emitRegularMap (xdata, TRUE, TRUE);
emitRegularMap (x_abs, TRUE, TRUE);
if (port->genXINIT)
{
emitRegularMap (xidata, TRUE, TRUE);
}
emitRegularMap (sfr, publicsfr, FALSE);
emitRegularMap (sfrbit, publicsfr, FALSE);
emitRegularMap (home, TRUE, FALSE);
emitRegularMap (code, TRUE, FALSE);
if (options.const_seg)
{
dbuf_tprintf (&code->oBuf, "\t!area\n", options.const_seg);
}
emitStaticSeg (statsg, &code->oBuf);
if (port->genXINIT)
{
dbuf_tprintf (&code->oBuf, "\t!area\n", xinit->sname);
emitStaticSeg (xinit, &code->oBuf);
}
if (initializer)
{
dbuf_tprintf (&code->oBuf, "\t!area\n", initializer->sname);
emitStaticSeg (initializer, &code->oBuf);
}
dbuf_tprintf (&code->oBuf, "\t!area\n", c_abs->sname);
emitStaticSeg (c_abs, &code->oBuf);
inInitMode--;
}
/*-----------------------------------------------------------------*/
/* flushStatics - flush all currently defined statics out to file */
/* and delete. Temporary function */
/*-----------------------------------------------------------------*/
void
flushStatics (void)
{
emitStaticSeg (statsg, codeOutBuf);
statsg->syms = NULL;
}
/*-----------------------------------------------------------------*/
/* createInterruptVect - creates the interrupt vector */
/*-----------------------------------------------------------------*/
void
createInterruptVect (struct dbuf_s *vBuf)
{
mainf = newSymbol ("main", 0);
mainf->block = 0;
/* only if the main function exists */
if (!(mainf = findSymWithLevel (SymbolTab, mainf)))
{
if (!options.cc_only && !noAssemble && !options.c1mode)
werror (E_NO_MAIN);
return;
}
/* if the main is only a prototype ie. no body then do nothing */
if (!IFFUNC_HASBODY (mainf->type))
{
/* if ! compile only then main function should be present */
if (!options.cc_only && !noAssemble)
werror (E_NO_MAIN);
return;
}
dbuf_tprintf (vBuf, "\t!areacode\n", HOME_NAME);
dbuf_printf (vBuf, "__interrupt_vect:\n");
if (!port->genIVT || !(port->genIVT (vBuf, interrupts, maxInterrupts)))
{
/* There's no such thing as a "generic" interrupt table header. */
wassert (0);
}
}
char *iComments1 = {
";--------------------------------------------------------\n"
"; File Created by SDCC : free open source ANSI-C Compiler\n"
};
char *iComments2 = {
";--------------------------------------------------------\n"
};
/*-----------------------------------------------------------------*/
/* initialComments - puts in some initial comments */
/*-----------------------------------------------------------------*/
void
initialComments (FILE * afile)
{
fprintf (afile, "%s", iComments1);
fprintf (afile, "; Version " SDCC_VERSION_STR " #%s (%s)\n", getBuildNumber (), getBuildEnvironment ());
fprintf (afile, "%s", iComments2);
}
/*-----------------------------------------------------------------*/
/* printPublics - generates .global for publics */
/*-----------------------------------------------------------------*/
void
printPublics (FILE * afile)
{
symbol *sym;
fprintf (afile, "%s", iComments2);
fprintf (afile, "; Public variables in this module\n");
fprintf (afile, "%s", iComments2);
for (sym = setFirstItem (publics); sym; sym = setNextItem (publics))
tfprintf (afile, "\t!global\n", sym->rname);
}
/*-----------------------------------------------------------------*/
/* printExterns - generates .global for externs */
/*-----------------------------------------------------------------*/
void
printExterns (FILE * afile)
{
symbol *sym;
fprintf (afile, "%s", iComments2);
fprintf (afile, "; Externals used\n");
fprintf (afile, "%s", iComments2);
for (sym = setFirstItem (externs); sym; sym = setNextItem (externs))
tfprintf (afile, "\t!extern\n", sym->rname);
}
/*-----------------------------------------------------------------*/
/* emitOverlay - will emit code for the overlay stuff */
/*-----------------------------------------------------------------*/
static void
emitOverlay (struct dbuf_s *aBuf)
{
set *ovrset;
/* for each of the sets in the overlay segment do */
for (ovrset = setFirstItem (ovrSetSets); ovrset; ovrset = setNextItem (ovrSetSets))
{
symbol *sym;
if (elementsInSet (ovrset))
{
/* output the area information */
dbuf_printf (aBuf, "\t.area\t%s\n", port->mem.overlay_name); /* MOF */
}
for (sym = setFirstItem (ovrset); sym; sym = setNextItem (ovrset))
{
/* if extern then it is in the publics table: do nothing */
if (IS_EXTERN (sym->etype))
continue;
/* if allocation required check is needed
then check if the symbol really requires
allocation only for local variables */
if (!IS_AGGREGATE (sym->type) && !(sym->_isparm && !IS_REGPARM (sym->etype)) && !sym->allocreq && sym->level)
continue;
/* if global variable & not static or extern
and addPublics allowed then add it to the public set */
if ((sym->_isparm && !IS_REGPARM (sym->etype)) && !IS_STATIC (sym->etype) && !IS_STATIC (sym->localof->etype))
{
addSetHead (&publics, sym);
}
/* if extern then do nothing or is a function
then do nothing */
if (IS_FUNC (sym->type))
continue;
/* if is has an absolute address then generate
an equate for this no need to allocate space */
if (SPEC_ABSA (sym->etype))
{
/* print extra debug info if required */
if (options.debug)
{
emitDebugSym (aBuf, sym);
dbuf_printf (aBuf, " == 0x%04x\n", SPEC_ADDR (sym->etype));
}
dbuf_printf (aBuf, "%s\t=\t0x%04x\n", sym->rname, SPEC_ADDR (sym->etype));
}
else
{
int size = getSize (sym->type);
if (size == 0)
{
werrorfl (sym->fileDef, sym->lineDef, E_UNKNOWN_SIZE, sym->name);
}
/* print extra debug info if required */
if (options.debug)
{
emitDebugSym (aBuf, sym);
dbuf_printf (aBuf, "==.\n");
}
/* allocate space */
dbuf_tprintf (aBuf, "!slabeldef\n", sym->rname);
dbuf_tprintf (aBuf, "\t!ds\n", (unsigned int) getSize (sym->type) & 0xffff);
}
}
}
}
/*-----------------------------------------------------------------*/
/* glue - the final glue that hold the whole thing together */
/*-----------------------------------------------------------------*/
void
glue (void)
{
struct dbuf_s vBuf;
struct dbuf_s ovrBuf;
struct dbuf_s asmFileName;
FILE *asmFile;
int mcs51_like;
namedspacemap *nm;
dbuf_init (&vBuf, 4096);
dbuf_init (&ovrBuf, 4096);
mcs51_like = (port->general.glue_up_main &&
(TARGET_IS_MCS51 || TARGET_IS_DS390 || TARGET_IS_XA51 || TARGET_IS_DS400));
/* print the global struct definitions */
if (options.debug)
cdbStructBlock (0);
/* PENDING: this isn't the best place but it will do */
if (port->general.glue_up_main)
{
/* create the interrupt vector table */
createInterruptVect (&vBuf);
}
/* emit code for the all the variables declared */
emitMaps ();
/* do the overlay segments */
emitOverlay (&ovrBuf);
outputDebugSymbols ();
/* now put it all together into the assembler file */
/* create the assembler file name */
/* -o option overrides default name? */
dbuf_init (&asmFileName, PATH_MAX);
if ((noAssemble || options.c1mode) && fullDstFileName)
{
dbuf_append_str (&asmFileName, fullDstFileName);
}
else
{
dbuf_append_str (&asmFileName, dstFileName);
dbuf_append_str (&asmFileName, port->assembler.file_ext);
}
if (!(asmFile = fopen (dbuf_c_str (&asmFileName), "w")))
{
werror (E_FILE_OPEN_ERR, dbuf_c_str (&asmFileName));
dbuf_destroy (&asmFileName);
exit (EXIT_FAILURE);
}
dbuf_destroy (&asmFileName);
/* initial comments */
initialComments (asmFile);
if (TARGET_IS_S08)
fprintf (asmFile, "\t.cs08\n");
else if (TARGET_IS_Z180)
fprintf (asmFile, "\t.hd64\n");
else if (TARGET_IS_R3KA)
fprintf (asmFile, "\t.r3k\n");
/* print module name */
tfprintf (asmFile, "\t!module\n", moduleName);
if (mcs51_like)
{
if(!options.noOptsdccInAsm)
fprintf (asmFile, "\t.optsdcc -m%s", port->target);
switch (options.model)
{
case MODEL_SMALL:
fprintf (asmFile, " --model-small");
break;
case MODEL_COMPACT:
fprintf (asmFile, " --model-compact");
break;
case MODEL_MEDIUM:
fprintf (asmFile, " --model-medium");
break;
case MODEL_LARGE:
fprintf (asmFile, " --model-large");
break;
case MODEL_FLAT24:
fprintf (asmFile, " --model-flat24");
break;
case MODEL_HUGE:
fprintf (asmFile, " --model-huge");
break;
default:
break;
}
/*if(options.stackAuto) fprintf (asmFile, " --stack-auto"); */
if (options.useXstack)
fprintf (asmFile, " --xstack");
/*if(options.intlong_rent) fprintf (asmFile, " --int-long-rent"); */
/*if(options.float_rent) fprintf (asmFile, " --float-rent"); */
if (options.noRegParams)
fprintf (asmFile, " --no-reg-params");
if (options.parms_in_bank1)
fprintf (asmFile, " --parms-in-bank1");
if (options.all_callee_saves)
fprintf (asmFile, " --all-callee-saves");
fprintf (asmFile, "\n");
}
else if (!TARGET_PIC_LIKE && !options.noOptsdccInAsm)
{
fprintf (asmFile, "\t.optsdcc -m%s\n", port->target);
}
tfprintf (asmFile, "\t!fileprelude\n");
/* Let the port generate any global directives, etc. */
if (port->genAssemblerPreamble)
{
port->genAssemblerPreamble (asmFile);
}
/* print the global variables in this module */
printPublics (asmFile);
if (port->assembler.externGlobal)
printExterns (asmFile);
if ((mcs51_like) || (TARGET_IS_Z80 || TARGET_IS_Z180 || TARGET_IS_RABBIT)) /*.p.t.20030924 need to output SFR table for Z80 as well */
{
/* copy the sfr segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; special function registers\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&sfr->oBuf, asmFile);
}
if (mcs51_like)
{
/* copy the sbit segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; special function bits\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&sfrbit->oBuf, asmFile);
/*JCF: Create the areas for the register banks */
if (RegBankUsed[0] || RegBankUsed[1] || RegBankUsed[2] || RegBankUsed[3])
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; overlayable register banks\n");
fprintf (asmFile, "%s", iComments2);
if (RegBankUsed[0])
fprintf (asmFile, "\t.area REG_BANK_0\t(REL,OVR,DATA)\n\t.ds 8\n");
if (RegBankUsed[1] || options.parms_in_bank1)
fprintf (asmFile, "\t.area REG_BANK_1\t(REL,OVR,DATA)\n\t.ds 8\n");
if (RegBankUsed[2])
fprintf (asmFile, "\t.area REG_BANK_2\t(REL,OVR,DATA)\n\t.ds 8\n");
if (RegBankUsed[3])
fprintf (asmFile, "\t.area REG_BANK_3\t(REL,OVR,DATA)\n\t.ds 8\n");
}
if (BitBankUsed)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; overlayable bit register bank\n");
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "\t.area BIT_BANK\t(REL,OVR,DATA)\n");
fprintf (asmFile, "bits:\n\t.ds 1\n");
fprintf (asmFile, "\tb0 = bits[0]\n");
fprintf (asmFile, "\tb1 = bits[1]\n");
fprintf (asmFile, "\tb2 = bits[2]\n");
fprintf (asmFile, "\tb3 = bits[3]\n");
fprintf (asmFile, "\tb4 = bits[4]\n");
fprintf (asmFile, "\tb5 = bits[5]\n");
fprintf (asmFile, "\tb6 = bits[6]\n");
fprintf (asmFile, "\tb7 = bits[7]\n");
}
}
/* copy the data segment */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, ";%s ram data\n", mcs51_like ? " internal" : "");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&data->oBuf, asmFile);
/* copy the initialized segment */
if (initialized)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, ";%s ram data\n", mcs51_like ? " internal" : "");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&initialized->oBuf, asmFile);
}
/* copy segments for named address spaces */
for (nm = namedspacemaps; nm; nm = nm->next)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; %s %s data\n", nm->name, nm->is_const ? "rom" : "ram");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&nm->map->oBuf, asmFile);
}
/* create the overlay segments */
if (overlay)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; overlayable items in%s ram \n", mcs51_like ? " internal" : "");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&ovrBuf, asmFile);
}
/* create the stack segment MOF */
if (mainf && IFFUNC_HASBODY (mainf->type))
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; Stack segment in internal ram \n");
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "\t.area\tSSEG\n" "__start__stack:\n\t.ds\t1\n\n");
}
/* create the idata segment */
if (idata)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; indirectly addressable internal ram data\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&idata->oBuf, asmFile);
}
/* create the absolute idata/data segment */
if (d_abs || i_abs)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; absolute%s ram data\n", mcs51_like ? " internal" : "");
fprintf (asmFile, "%s", iComments2);
if (d_abs)
dbuf_write_and_destroy (&d_abs->oBuf, asmFile);
if (i_abs)
dbuf_write_and_destroy (&i_abs->oBuf, asmFile);
}
/* copy the bit segment */
if (bit)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; bit data\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&bit->oBuf, asmFile);
}
/* copy paged external ram data */
if (pdata)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; paged external ram data\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&pdata->oBuf, asmFile);
}
/* if external stack then reserve space for it */
if (mainf && IFFUNC_HASBODY (mainf->type) && options.useXstack)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; external stack \n");
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "\t.area XSTK (PAG,XDATA)\n" "__start__xstack:\n\t.ds\t1\n\n");
}
/* copy external ram data */
if (xdata && mcs51_like)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; external ram data\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&xdata->oBuf, asmFile);
}
/* create the absolute xdata segment */
if (x_abs)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; absolute external ram data\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&x_abs->oBuf, asmFile);
}
/* copy external initialized ram data */
if (xidata)
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; external initialized ram data\n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&xidata->oBuf, asmFile);
}
/* If the port wants to generate any extra areas, let it do so. */
if (port->extraAreas.genExtraAreaDeclaration)
{
port->extraAreas.genExtraAreaDeclaration (asmFile, mainf && IFFUNC_HASBODY (mainf->type));
}
/* copy the interrupt vector table */
if (mainf && IFFUNC_HASBODY (mainf->type))
{
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; interrupt vector \n");
fprintf (asmFile, "%s", iComments2);
dbuf_write_and_destroy (&vBuf, asmFile);
}
/* copy global & static initialisations */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; global & static initialisations\n");
fprintf (asmFile, "%s", iComments2);
/* Everywhere we generate a reference to the static_name area,
* (which is currently only here), we immediately follow it with a
* definition of the post_static_name area. This guarantees that
* the post_static_name area will immediately follow the static_name
* area.
*/
tfprintf (asmFile, "\t!area\n", port->mem.home_name);
tfprintf (asmFile, "\t!area\n", port->mem.static_name); /* MOF */
tfprintf (asmFile, "\t!area\n", port->mem.post_static_name);
tfprintf (asmFile, "\t!area\n", port->mem.static_name);
if (mainf && IFFUNC_HASBODY (mainf->type))
{
if (port->genInitStartup)
{
port->genInitStartup (asmFile);
}
else
{
assert (0);
}
}
dbuf_write_and_destroy (&statsg->oBuf, asmFile);
/* STM8 note: there are no such instructions supported.
Also, we don't need this logic as well. */
if (port->general.glue_up_main && mainf && IFFUNC_HASBODY (mainf->type))
{
/* This code is generated in the post-static area.
* This area is guaranteed to follow the static area
* by the ugly shucking and jiving about 20 lines ago.
*/
tfprintf (asmFile, "\t!area\n", port->mem.post_static_name);
if(TARGET_IS_STM8)
fprintf (asmFile, "\tjp\t__sdcc_program_startup\n");
else
fprintf (asmFile, "\t%cjmp\t__sdcc_program_startup\n", options.acall_ajmp ? 'a' : 'l');
}
fprintf (asmFile, "%s" "; Home\n" "%s", iComments2, iComments2);
tfprintf (asmFile, "\t!areahome\n", HOME_NAME);
dbuf_write_and_destroy (&home->oBuf, asmFile);
if (mainf && IFFUNC_HASBODY (mainf->type))
{
/* STM8 note: there is no need to call main().
Instead of that, it's address is specified in the
interrupts table and always equals to 0x8080.
*/
/* entry point @ start of HOME */
fprintf (asmFile, "__sdcc_program_startup:\n");
/* put in jump or call to main */
if(TARGET_IS_STM8)
fprintf (asmFile, "\tjp\t_main\n");
else
fprintf (asmFile, "\t%cjmp\t_main\n", options.acall_ajmp ? 'a' : 'l'); /* needed? */
fprintf (asmFile, ";\treturn from main will return to caller\n");
}
/* copy over code */
fprintf (asmFile, "%s", iComments2);
fprintf (asmFile, "; code\n");
fprintf (asmFile, "%s", iComments2);
tfprintf (asmFile, "\t!areacode\n", options.code_seg);
dbuf_write_and_destroy (&code->oBuf, asmFile);
if (port->genAssemblerEnd)
{
port->genAssemblerEnd (asmFile);
}
fclose (asmFile);
}
|