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
|
#include <stdio.h>
#define TEXT_SIZE 20000
#define DATA_SIZE 2000
#define SYM_TABLE_SIZE 10000
#define VAR_TABLE_SIZE 4096
/* vac: offset of variables
vat: type of variables
loc : local variable index
glo : global variable index
parm : parameter variable index
ind : output code ptr
rsym: return symbol
prog: output code
astk: arg position stack
*/
int tok, tok1, *vac, *vat, rsym,
prog, ind, loc, glo, file, vt,
vc, *macro_stack, *macro_stack_ptr, line_num;
char *idtable, *idptr, *filename;
/* The current value can be: */
#define VT_CONST 0x0002 /* constant in vc */
#define VT_VAR 0x0004 /* value is in eax */
#define VT_LOCAL 0x0008 /* offset on stack */
#define VT_LVAL 0x0010 /* const or var is an lvalue */
#define VT_CMP 0x0020 /* the value is stored in processor flags (in vc) */
#define VT_FORWARD 0x0040 /* value is forward reference (only used for functions) */
#define VT_JMP 0x0080 /* value is the consequence of jmp. bit 0 is set if inv */
#define VT_LVALN -17 /* ~VT_LVAL */
/*
*
* VT_FUNC indicates a function. The return type is the stored type. A
* function pointer is stored as a 'char' pointer.
*
* If VT_PTRMASK is non nul, then it indicates the number of pointer
* iterations to reach the basic type.
*
* Basic types:
*
* VT_BYTE indicate a char
*
*
* otherwise integer type is assumed.
* */
#define VT_BYTE 0x00001 /* byte pointer. HARDCODED VALUE */
#define VT_PTRMASK 0x00f00 /* pointer mask */
#define VT_PTRINC 0x00100 /* pointer increment */
#define VT_FUNC 0x01000 /* function type */
#define VT_UNSIGNED 0x02000 /* unsigned type */
#define VT_ARRAY 0x04000 /* array type (only used in parsing) */
#define VT_TYPE 0x07f01 /* type mask */
#define VT_TYPEN 0xffff80fe /* ~VT_TYPE */
#define VT_FUNCN -4097
#define VT_EXTERN 0x08000 /* extern definition */
#define VT_STATIC 0x10000 /* static variable */
/* Special infos */
#define VT_LABEL 0x40000 /* goto label symbol */
#define VT_DEFINE 0x80000 /* special value for #defined symbols */
#define VT_ENUM 0x100000 /* enum definition */
#define VT_TYPEDEF 0x200000 /* typedef definition */
/* token values */
#define TOK_INT 256
#define TOK_VOID 257
#define TOK_CHAR 258
#define TOK_IF 259
#define TOK_ELSE 260
#define TOK_WHILE 261
#define TOK_BREAK 262
#define TOK_RETURN 263
#define TOK_DEFINE 264
#define TOK_MAIN 265
#define TOK_FOR 266
#define TOK_EXTERN 267
#define TOK_STATIC 268
#define TOK_UNSIGNED 269
#define TOK_GOTO 270
#define TOK_DO 271
#define TOK_CONTINUE 272
#define TOK_SWITCH 273
#define TOK_CASE 274
/* ignored types Must have contiguous values */
#define TOK_CONST 275
#define TOK_VOLATILE 276
#define TOK_LONG 277
#define TOK_REGISTER 278
#define TOK_SIGNED 279
/* unsupported types. Must have contiguous values */
#define TOK_FLOAT 280
#define TOK_DOUBLE 281
#define TOK_STRUCT 282
#define TOK_UNION 283
#define TOK_TYPEDEF 284
#define TOK_DEFAULT 285
#define TOK_ENUM 286
#define TOK_EQ 0x94 /* warning: depend on asm code */
#define TOK_NE 0x95 /* warning: depend on asm code */
#define TOK_LT 0x9c /* warning: depend on asm code */
#define TOK_GE 0x9d /* warning: depend on asm code */
#define TOK_LE 0x9e /* warning: depend on asm code */
#define TOK_GT 0x9f /* warning: depend on asm code */
#define TOK_LAND 0xa0
#define TOK_LOR 0xa1
#define TOK_DEC 0xa2
#define TOK_MID 0xa3 /* inc/dec, to void constant */
#define TOK_INC 0xa4
#define TOK_SHL 0x01
#define TOK_SHR 0x02
/* assignement operators : normal operator or 0x80 */
#define TOK_A_MOD 0xa5
#define TOK_A_AND 0xa6
#define TOK_A_MUL 0xaa
#define TOK_A_ADD 0xab
#define TOK_A_SUB 0xad
#define TOK_A_DIV 0xaf
#define TOK_A_XOR 0xde
#define TOK_A_OR 0xfc
#define TOK_A_SHL 0x81
#define TOK_A_SHR 0x82
#ifdef TINY
#define expr_eq() expr()
#endif
int inp()
{
#if 0
int c;
c = fgetc(file);
printf("c=%c\n", c);
return c;
#else
return fgetc(file);
#endif
}
int isid(c)
{
return (c >= 'a' & c <= 'z') |
(c >= 'A' & c <= 'Z') |
c == '_';
}
int isnum(c)
{
return c >= '0' & c <= '9';
}
#ifndef TINY
/* XXX: use stderr ? */
void error(char *msg)
{
printf("%s:%d: %s\n", filename, line_num, msg);
exit(1);
}
void warning(char *msg)
{
printf("%s:%d: warning: %s\n", filename, line_num, msg);
}
void skip(c)
{
if (tok != c) {
printf("%s:%d: '%c' expected\n", filename, line_num, c);
exit(1);
}
next();
}
void test_lvalue()
{
if (!(vt & VT_LVAL))
error("lvalue expected\n");
}
#else
#define skip(c) next()
#define test_lvalue()
#endif
char *get_tok_str(int v)
{
int t;
char *p;
p = idtable;
t = 256;
while (t != v) {
if (p >= idptr)
return 0;
while (*p++);
t++;
}
return p;
}
void next()
{
int c, v;
char *q, *p;
/* special 'ungettok' case for label parsing */
if (tok1) {
tok = tok1;
tok1 = 0;
return;
}
while(1) {
c = inp();
#ifndef TINY
if (c == '/') {
/* comments */
c = inp();
if (c == '/') {
/* single line comments */
while (c != '\n')
c = inp();
} else if (c == '*') {
/* comments */
while ((c = inp()) >= 0) {
if (c == '*') {
c = inp();
if (c == '/') {
c = ' ';
break;
} else if (c == '*')
ungetc(c, file);
} else if (c == '\n')
line_num++;
}
} else {
ungetc(c, file);
c = '/';
break;
}
} else
#endif
if (c == 35) {
/* preprocessor: we handle only define */
next();
if (tok == TOK_DEFINE) {
next();
/* now tok is the macro symbol */
vat[tok] = VT_DEFINE;
vac[tok] = ftell(file);
}
/* ignore preprocessor or shell */
while (c != '\n')
c = inp();
}
if (c == '\n') {
/* end of line : check if we are in macro state. if so,
pop new file position */
if (macro_stack_ptr > macro_stack)
fseek(file, *--macro_stack_ptr, 0);
else
line_num++;
} else if (c != ' ' & c != 9)
break;
}
if (isid(c)) {
q = idptr;
while(isid(c) | isnum(c)) {
*q++ = c;
c = inp();
}
*q++ = '\0';
ungetc(c, file);
p = idtable;
tok = 256;
while (p < idptr) {
if (strcmp(p, idptr) == 0)
break;
while (*p++);
tok++;
}
/* if not found, add symbol */
if (p == idptr)
idptr = q;
/* eval defines */
if (vat[tok] & VT_DEFINE) {
*macro_stack_ptr++ = ftell(file);
fseek(file, vac[tok], 0);
next();
}
} else {
#ifdef TINY
q = "<=\236>=\235!=\225++\244--\242==\224";
#else
q = "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253-=\255*=\252/=\257%=\245&=\246^=\336|=\374";
#endif
/* two chars */
v = inp();
while (*q) {
if (*q == c & q[1] == v) {
tok = q[2] & 0xff;
if (tok == TOK_SHL | tok == TOK_SHR) {
v = inp();
if (v == '=')
tok = tok | 0x80;
else
ungetc(v, file);
}
return;
}
q = q + 3;
}
ungetc(v, file);
/* single char substitutions */
if (c == '<')
tok = TOK_LT;
else if (c == '>')
tok = TOK_GT;
else
tok = c;
}
}
void g(c)
{
*(char *)ind++ = c;
}
void o(c)
{
while (c) {
g(c);
c = c / 256;
}
}
/* output a symbol and patch all calls to it */
void gsym_addr(t, a)
{
int n;
while (t) {
n = *(int *)t; /* next value */
*(int *)t = a - t - 4;
t = n;
}
}
void gsym(t)
{
gsym_addr(t, ind);
}
/* psym is used to put an instruction with a data field which is a
reference to a symbol. It is in fact the same as oad ! */
#define psym oad
/* instruction + 4 bytes data. Return the address of the data */
int oad(c, s)
{
o(c);
*(int *)ind = s;
s = ind;
ind = ind + 4;
return s;
}
void vset(t, v)
{
vt = t;
vc = v;
}
/* generate a value in eax from vt and vc */
/* XXX: generate correct pointer for forward references to functions */
void gv()
{
#ifndef TINY
int t;
#endif
if (vt & VT_LVAL) {
if ((vt & VT_TYPE) == VT_BYTE)
o(0xbe0f); /* movsbl x, %eax */
else
o(0x8b); /* movl x,%eax */
if (vt & VT_CONST)
oad(0x05, vc);
else if (vt & VT_LOCAL)
oad(0x85, vc);
else
g(0x00);
} else {
if (vt & VT_CONST) {
oad(0xb8, vc); /* mov $xx, %eax */
} else if (vt & VT_LOCAL) {
oad(0x858d, vc); /* lea xxx(%ebp), %eax */
} else if (vt & VT_CMP) {
oad(0xb8, 0); /* mov $0, %eax */
o(0x0f); /* setxx %al */
o(vc);
o(0xc0);
}
#ifndef TINY
else if (vt & VT_JMP) {
t = vt & 1;
oad(0xb8, t); /* mov $1, %eax */
oad(0xe9, 5); /* jmp after */
gsym(vc);
oad(0xb8, t ^ 1); /* mov $0, %eax */
}
#endif
}
vt = (vt & VT_TYPE) | VT_VAR;
}
/* generate a test. set 'inv' to invert test */
/* XXX: handle constant */
int gtst(inv, t)
{
if (vt & VT_CMP) {
/* fast case : can jump directly since flags are set */
g(0x0f);
t = psym((vc - 16) ^ inv, t);
} else
#ifndef TINY
if (vt & VT_JMP) {
/* && or || optimization */
if ((vt & 1) == inv)
t = vc;
else {
t = psym(0xe9, t);
gsym(vc);
}
} else
if ((vt & (VT_CONST | VT_LVAL)) == VT_CONST) {
/* constant jmp optimization */
if ((vc != 0) != inv)
t = psym(0xe9, t);
} else
#endif
{
gv();
o(0xc085); /* test %eax, %eax */
g(0x0f);
t = psym(0x85 ^ inv, t);
}
return t;
}
int type_size(t)
{
if ((t & VT_PTRMASK) >= VT_PTRINC | (t & VT_TYPE) == 0)
return 4;
else
return 1;
}
/* return the number size in bytes of a given type */
int incr_value(t)
{
if ((t & VT_PTRMASK) >= VT_PTRINC)
return type_size(t - VT_PTRINC);
else
return 1;
}
#define POST_ADD 0x1000
#define PRE_ADD 0
/* a defines POST/PRE add. c is the token ++ or -- */
void inc(a, c)
{
test_lvalue();
vt = vt & VT_LVALN;
gv();
o(0x018bc189); /* movl %eax, %ecx ; mov (%ecx), %eax */
o(0x408d | a); /* leal x(%eax), %eax/%edx */
g((c - TOK_MID) * incr_value(vt));
o(0x0189 | a); /* mov %eax/%edx, (%ecx) */
}
/* XXX: handle ptr sub and 'int + ptr' case (only 'ptr + int' handled) */
/* XXX: handle constant propagation (need to track live eax) */
/* XXX: handle unsigned propagation */
void gen_op(op, l)
{
int t;
gv();
t = vt;
o(0x50); /* push %eax */
next();
if (l == -1)
expr();
else if (l == -2)
expr_eq();
else
sum(l);
gv();
o(0x59); /* pop %ecx */
if (op == '+' | op == '-') {
/* XXX: incorrect for short (futur!) */
if (incr_value(t) == 4)
o(0x02e0c1); /* shl $2, %eax */
if (op == '-')
o(0xd8f7); /* neg %eax */
o(0xc801); /* add %ecx, %eax */
vt = t;
} else if (op == '&')
o(0xc821);
else if (op == '^')
o(0xc831);
else if (op == '|')
o(0xc809);
else if (op == '*')
o(0xc1af0f); /* imul %ecx, %eax */
#ifndef TINY
else if (op == TOK_SHL | op == TOK_SHR) {
o(0xd391); /* xchg %ecx, %eax, shl/shr/sar %cl, %eax */
if (op == TOK_SHL)
o(0xe0);
else if (t & VT_UNSIGNED)
o(0xe8);
else
o(0xf8);
}
#endif
else if (op == '/' | op == '%') {
o(0x91); /* xchg %ecx, %eax */
if (t & VT_UNSIGNED) {
o(0xd231); /* xor %edx, %edx */
o(0xf1f7); /* div %ecx, %eax */
} else {
o(0xf9f799); /* cltd, idiv %ecx, %eax */
}
if (op == '%')
o(0x92); /* xchg %edx, %eax */
} else {
o(0xc139); /* cmp %eax,%ecx */
vset(VT_CMP, op);
}
}
int expr_const()
{
expr_eq();
if ((vt & (VT_CONST | VT_LVAL)) != VT_CONST)
error("constant expected");
return vc;
}
/* return 0 if no type declaration. otherwise, return the basic type
and skip it.
XXX: A '2' is ored to ensure non zero return if int type.
*/
int ist()
{
int t, n, v;
t = 0;
while(1) {
if (tok == TOK_ENUM) {
next();
if (tok != '{')
next();
if (tok == '{') {
next();
n = 0;
while (tok != '}' & tok != -1) {
v = tok;
next();
if (tok == '=') {
next();
n = expr_const();
}
vat[v] = VT_CONST;
vac[v] = n;
if (tok != ',')
break;
next();
n++;
}
skip('}');
}
t |= VT_ENUM;
} else {
if (tok == TOK_CHAR | tok == TOK_VOID) {
t |= VT_BYTE;
} else if (tok == TOK_INT |
(tok >= TOK_CONST & tok <= TOK_SIGNED)) {
/* ignored types */
} else if (tok >= TOK_FLOAT & tok <= TOK_UNION) {
error("unsupported type");
} else if (tok == TOK_EXTERN) {
t |= VT_EXTERN;
} else if (tok == TOK_STATIC) {
t |= VT_STATIC;
} else if (tok == TOK_UNSIGNED) {
t |= VT_UNSIGNED;
} else if (tok == TOK_TYPEDEF) {
t |= VT_TYPEDEF;
} else {
v = vat[tok];
if (!(v & VT_TYPEDEF))
break;
t = v & ~VT_TYPEDEF;
}
next();
}
t |= 2;
}
return t;
}
/* Read a type declaration (except basic type), and return the
type. If v is true, then also put variable name in 'vc' */
int typ(int *v, int t, int *array_size_ptr)
{
int u, p, n;
t = t & -3; /* suppress the ored '2' */
while (tok == '*') {
next();
t = t + VT_PTRINC;
}
/* recursive type */
/* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
if (tok == '(') {
next();
u = typ(v, 0, 0);
skip(')');
} else {
u = 0;
/* type identifier */
if (v) {
*v = tok;
next();
}
}
while(1) {
if (tok == '(') {
/* function declaration */
next();
p = 4;
while (tok != ')') {
/* read param name and compute offset */
if (t = ist())
t = typ(&n, t, 0); /* XXX: should accept both arg/non arg if v == 0 */
else {
n = tok;
t = 0;
next();
}
p = p + 4;
vat[n] = VT_LOCAL | VT_LVAL | t;
vac[n] = p;
if (tok == ',')
next();
}
next(); /* skip ')' */
if (u)
t = u + VT_BYTE;
else
t = t | VT_FUNC;
} else if (tok == '[') {
/* array definition */
if (t & VT_ARRAY)
error("multi dimension arrays not supported");
next();
n = 0;
if (tok != ']') {
n = expr_const();
if (array_size_ptr)
*array_size_ptr = n;
}
if (n <= 0 & array_size_ptr != 0)
error("invalid array size");
skip(']');
t = (t + VT_PTRINC) | VT_ARRAY;
} else
break;
}
return t;
}
/* define a new external reference to a function 'v' of type 'u' */
void external_func(v, u)
{
int t, n;
t = vat[v];
if (t == 0) {
n = dlsym(0, get_tok_str(v));
if (n == 0) {
vat[v] = u | VT_CONST | VT_LVAL | VT_FORWARD;
vac[v] = 0; /* used to generate symbol list */
} else {
vat[v] = u | VT_CONST | VT_LVAL; /* int f() */
vac[v] = n;
}
}
}
/* read a number in base b */
int getn(c, b)
{
int n, t;
n = 0;
#ifndef TINY
while (1) {
if (c >= 'a')
t = c - 'a' + 10;
else if (c >= 'A')
t = c - 'A' + 10;
else
t = c - '0';
if (t < 0 | t >= b)
break;
n = n * b + t;
c = inp();
}
#else
while (isnum(c)) {
n = n * b + c - '0';
c = inp();
}
#endif
ungetc(c, file);
return n;
}
int getq(n)
{
if (n == '\\') {
n = inp();
if (n == 'n')
n = '\n';
#ifndef TINY
else if (n == 'r')
n = '\r';
else if (n == 't')
n = '\t';
#endif
else if (isnum(n))
n = getn(n, 8);
}
return n;
}
void unary()
{
int n, t, ft, fc, p;
if (isnum(tok)) {
/* number */
#ifndef TINY
t = 10;
if (tok == '0') {
t = 8;
tok = inp();
if (tok == 'x') {
t = 16;
tok = inp();
}
}
vset(VT_CONST, getn(tok, t));
#else
vset(VT_CONST, getn(tok, 10));
#endif
next();
} else
#ifndef TINY
if (tok == '\'') {
vset(VT_CONST, getq(inp()));
next(); /* skip char */
skip('\'');
} else
#endif
if (tok == '\"') {
vset(VT_CONST | VT_PTRINC | VT_BYTE, glo);
while (tok == '\"') {
while((n = inp()) != 34) {
*(char *)glo++ = getq(n);
}
next();
}
*(char *)glo++ = 0;
} else {
t = tok;
next();
if (t == '(') {
/* cast ? */
if (t = ist()) {
ft = typ(0, t, 0);
skip(')');
unary();
vt = (vt & VT_TYPEN) | ft;
} else {
expr();
skip(')');
}
} else if (t == '*') {
unary();
if (vt & VT_LVAL)
gv();
#ifndef TINY
if (!(vt & VT_PTRMASK))
error("pointer expected");
#endif
vt = (vt - VT_PTRINC) | VT_LVAL;
} else if (t == '&') {
unary();
test_lvalue();
vt = (vt & VT_LVALN) + VT_PTRINC;
} else
#ifndef TINY
if (t == '!') {
unary();
if (vt & VT_CMP)
vc = vc ^ 1;
else
vset(VT_JMP, gtst(1, 0));
} else
if (t == '~') {
unary();
if ((vt & (VT_CONST | VT_LVAL)) == VT_CONST)
vc = ~vc;
else {
gv();
o(0xd0f7);
}
} else
if (t == '+') {
unary();
} else
#endif
if (t == TOK_INC | t == TOK_DEC) {
unary();
inc(PRE_ADD, t);
} else if (t == '-') {
unary();
if ((vt & (VT_CONST | VT_LVAL)) == VT_CONST)
vc = -vc;
else {
gv();
o(0xd8f7); /* neg %eax */
}
} else
{
if (vat[t] == 0) {
if (tok != '(')
error("undefined symbol");
/* for simple function calls, we tolerate undeclared
external reference */
external_func(t, VT_FUNC); /* int() function */
}
vset(vat[t], vac[t]);
/* if forward reference, we must point to vac[t] */
if (vt & VT_FORWARD)
vc = t;
}
}
/* post operations */
if (tok == TOK_INC | tok == TOK_DEC) {
inc(POST_ADD, tok);
next();
} else
if (tok == '[') {
#ifndef TINY
if (!(vt & VT_PTRMASK))
error("pointer expected");
#endif
gen_op('+', -1);
/* dereference pointer */
vt = (vt - VT_PTRINC) | VT_LVAL;
skip(']');
} else
if (tok == '(') {
/* function call */
/* lvalue is implied */
vt = vt & VT_LVALN;
if ((vt & VT_CONST) == 0) {
/* evaluate function address */
gv();
o(0x50); /* push %eax */
}
ft = vt;
fc = vc;
next();
t = 0;
while (tok != ')') {
t = t + 4;
expr_eq();
gv();
o(0x50); /* push %eax */
if (tok == ',')
next();
}
skip(')');
/* horrible, but needed : convert to native ordering (could
parse parameters in reverse order, but would cost more
code) */
n = 0;
p = t - 4;
while (n < p) {
oad(0x24848b, p); /* mov x(%esp,1), %eax */
oad(0x248487, n); /* xchg x(%esp,1), %eax */
oad(0x248489, p); /* mov %eax, x(%esp,1) */
n = n + 4;
p = p - 4;
}
if (ft & VT_CONST) {
/* forward reference */
if (ft & VT_FORWARD) {
vac[fc] = psym(0xe8, vac[fc]);
} else
oad(0xe8, fc - ind - 5);
/* return value is variable, and take type from function proto */
vt = VT_VAR | (ft & VT_TYPE & VT_FUNCN);
} else {
oad(0x2494ff, t); /* call *xxx(%esp) */
t = t + 4;
/* return value is variable, int */
vt = VT_VAR;
}
if (t)
oad(0xc481, t);
}
}
void uneq()
{
int ft, fc, b;
unary();
if (tok == '=' |
(tok >= TOK_A_MOD & TOK_A_DIV) |
tok == TOK_A_XOR | tok == TOK_A_OR |
tok == TOK_A_SHL | tok == TOK_A_SHR) {
test_lvalue();
fc = vc;
ft = vt;
b = (vt & VT_TYPE) == VT_BYTE;
if (ft & VT_VAR)
o(0x50); /* push %eax */
if (tok == '=') {
next();
expr_eq();
#ifndef TINY
if ((vt & VT_PTRMASK) != (ft & VT_PTRMASK))
warning("incompatible type");
#endif
gv(); /* generate value */
} else
gen_op(tok & 0x7f, -2); /* XXX: incorrect, must call expr_eq */
if (ft & VT_VAR) {
o(0x59); /* pop %ecx */
o(0x0189 - b); /* mov %eax/%al, (%ecx) */
} else if (ft & VT_LOCAL)
oad(0x8589 - b, fc); /* mov %eax/%al,xxx(%ebp) */
else
oad(0xa3 - b, fc); /* mov %eax/%al,xxx */
}
}
void sum(l)
{
#ifndef TINY
int t;
#endif
if (l == 0)
uneq();
else {
sum(--l);
while ((l == 0 & (tok == '*' | tok == '/' | tok == '%')) |
(l == 1 & (tok == '+' | tok == '-')) |
#ifndef TINY
(l == 2 & (tok == TOK_SHL | tok == TOK_SHR)) |
#endif
(l == 3 & (tok >= TOK_LT & tok <= TOK_GT)) |
(l == 4 & (tok == TOK_EQ | tok == TOK_NE)) |
(l == 5 & tok == '&') |
(l == 6 & tok == '^') |
(l == 7 & tok == '|')) {
gen_op(tok, l);
}
}
}
#ifdef TINY
void expr()
{
sum(8);
}
#else
void eand()
{
int t;
sum(8);
t = 0;
while (1) {
if (tok != TOK_LAND) {
if (t) {
t = gtst(1, t);
vset(VT_JMP | 1, t);
}
break;
}
t = gtst(1, t);
next();
sum(8);
}
}
void eor()
{
int t, u;
eand();
t = 0;
while (1) {
if (tok != TOK_LOR) {
if (t) {
t = gtst(0, t);
vset(VT_JMP, t);
}
break;
}
t = gtst(0, t);
next();
eand();
}
}
void expr_eq()
{
int t, u;
eor();
if (tok == '?') {
next();
t = gtst(1, 0);
expr();
gv();
skip(':');
u = psym(0xe9, 0);
gsym(t);
expr_eq();
gv();
gsym(u);
}
}
void expr()
{
while (1) {
expr_eq();
if (tok != ',')
break;
next();
}
}
#endif
void block(int *bsym, int *csym, int *case_sym, int *def_sym)
{
int a, b, c, d;
if (tok == TOK_IF) {
/* if test */
next();
skip('(');
expr();
skip(')');
a = gtst(1, 0);
block(bsym, csym, case_sym, def_sym);
c = tok;
if (c == TOK_ELSE) {
next();
d = psym(0xe9, 0); /* jmp */
gsym(a);
block(bsym, csym, case_sym, def_sym);
gsym(d); /* patch else jmp */
} else
gsym(a);
} else if (tok == TOK_WHILE) {
next();
d = ind;
skip('(');
expr();
skip(')');
a = gtst(1, 0);
b = 0;
block(&a, &b, case_sym, def_sym);
oad(0xe9, d - ind - 5); /* jmp */
gsym(a);
gsym_addr(b, d);
} else if (tok == '{') {
next();
/* declarations */
decl(VT_LOCAL);
while (tok != '}')
block(bsym, csym, case_sym, def_sym);
next();
} else if (tok == TOK_RETURN) {
next();
if (tok != ';') {
expr();
gv();
}
skip(';');
rsym = psym(0xe9, rsym); /* jmp */
} else if (tok == TOK_BREAK) {
/* compute jump */
if (!bsym)
error("cannot break");
*bsym = psym(0xe9, *bsym);
next();
skip(';');
} else if (tok == TOK_CONTINUE) {
/* compute jump */
if (!csym)
error("cannot continue");
*csym = psym(0xe9, *csym);
next();
skip(';');
} else
#ifndef TINY
if (tok == TOK_FOR) {
int e;
next();
skip('(');
if (tok != ';')
expr();
skip(';');
d = ind;
c = ind;
a = 0;
b = 0;
if (tok != ';') {
expr();
a = gtst(1, 0);
}
skip(';');
if (tok != ')') {
e = psym(0xe9, 0);
c = ind;
expr();
oad(0xe9, d - ind - 5); /* jmp */
gsym(e);
}
skip(')');
block(&a, &b, case_sym, def_sym);
oad(0xe9, c - ind - 5); /* jmp */
gsym(a);
gsym_addr(b, c);
} else
if (tok == TOK_DO) {
next();
a = 0;
b = 0;
d = ind;
block(&a, &b, case_sym, def_sym);
skip(TOK_WHILE);
skip('(');
gsym(b);
expr();
c = gtst(0, 0);
gsym_addr(c, d);
skip(')');
gsym(a);
} else
if (tok == TOK_SWITCH) {
next();
skip('(');
expr();
gv();
skip(')');
a = 0;
b = 0;
c = 0;
block(&a, csym, &b, &c);
/* if no default, jmp after switch */
if (c == 0)
c = ind;
/* default label */
gsym_addr(b, c);
/* break label */
gsym(a);
} else
if (tok == TOK_CASE) {
next();
a = expr_const();
if (!case_sym)
error("switch expected");
gsym(*case_sym);
oad(0x3d, a); /* cmp $xxx, %eax */
*case_sym = psym(0x850f, 0); /* jne xxx */
skip(':');
block(bsym, csym, case_sym, def_sym);
} else
if (tok == TOK_DEFAULT) {
next();
skip(':');
if (!def_sym)
error("switch expected");
if (*def_sym)
error("too many 'default'");
*def_sym = ind;
block(bsym, csym, case_sym, def_sym);
} else
if (tok == TOK_GOTO) {
next();
a = vat[tok];
if (a == 0) {
/* put forward definition */
a = VT_LABEL | VT_FORWARD;
vat[tok] = a;
vac[tok] = 0;
} else if (!(a & VT_LABEL))
error("invalid label name");
/* label already defined */
if (a & VT_FORWARD)
vac[tok] = psym(0xe9, vac[tok]); /* jmp xxx */
else
oad(0xe9, vac[tok] - ind - 5); /* jmp xxx */
next();
skip(';');
} else
#endif
{
b = tok;
next();
if (tok == ':') {
next();
/* label case */
a = vat[b];
if (a != 0) {
if (!(a & VT_LABEL))
error("invalid label name");
else if (!(a & VT_FORWARD))
error("multiple defined label");
gsym(vac[b]);
}
vac[b] = ind;
vat[b] = VT_LABEL;
block(bsym, csym, case_sym, def_sym);
} else {
/* expression case: go backward of one token */
/* XXX: currently incorrect if number/string/char */
tok1 = tok;
tok = b;
if (tok != ';') {
expr();
}
skip(';');
}
}
}
/* 'l' is VT_LOCAL or VT_CONST to define default storage type */
void decl(l)
{
int *a, t, b, s, align, v, u, n;
while (b = ist()) {
if ((b & VT_ENUM) && tok == ';') {
/* we accept no variable after */
next();
continue;
}
while (1) { /* iterate thru each declaration */
s = 1;
t = typ(&v, b, &s);
if (tok == '{') {
/* patch forward references */
if (vat[v] & VT_FORWARD)
gsym(vac[v]);
/* put function address */
vat[v] = VT_CONST | VT_LVAL | t;
vac[v] = ind;
loc = 0;
o(0xe58955); /* push %ebp, mov %esp, %ebp */
a = oad(0xec81, 0); /* sub $xxx, %esp */
rsym = 0;
block(0, 0, 0, 0);
gsym(rsym);
o(0xc3c9); /* leave, ret */
*a = (-loc + 3) & -4; /* align local size to word &
save local variables */
break;
} else {
if (t & VT_TYPEDEF) {
vat[v] = t; /* save typedefed type */
} else if (t & VT_FUNC) {
/* external function definition */
external_func(v, t);
} else {
/* not lvalue if array */
if (!(t & VT_ARRAY))
t |= VT_LVAL;
if (t & VT_EXTERN) {
/* external variable */
n = dlsym(NULL, get_tok_str(v));
if (!n)
error("unknown external variable");
vat[v] = VT_CONST | t;
vac[v] = n;
} else {
u = l;
if (t & VT_STATIC)
u = VT_CONST;
vat[v] = u | t;
if (t & VT_ARRAY)
t -= VT_PTRINC;
align = type_size(t);
s *= align;
if (u == VT_LOCAL) {
/* allocate space down on the stack */
loc = (loc - s) & -align;
vac[v] = loc;
} else {
/* allocate space up in the data space */
glo = (glo + align - 1) & -align;
vac[v] = glo;
glo += s;
}
}
}
if (tok != ',') {
skip(';');
break;
}
next();
}
}
}
}
int main(int c, char **v)
{
int (*t)();
if (c < 2) {
printf("usage: tc src\n");
return 1;
}
v++;
filename = *v;
file = fopen(filename, "r");
#ifndef TINY
if (!file) {
perror(filename);
exit(1);
}
#endif
idtable = malloc(SYM_TABLE_SIZE);
#ifdef TINY
memcpy(idtable,
"int\0void\0char\0if\0else\0while\0break\0return\0define\0main", 53);
idptr = idtable + 53;
#else
memcpy(idtable,
"int\0void\0char\0if\0else\0while\0break\0return\0define\0main\0for\0extern\0static\0unsigned\0goto\0do\0continue\0switch\0case\0const\0volatile\0long\0register\0signed\0float\0double\0struct\0union\0typedef\0default\0enum", 192);
idptr = idtable + 192;
#endif
glo = malloc(DATA_SIZE);
prog = malloc(TEXT_SIZE);
vac = malloc(VAR_TABLE_SIZE);
vat = malloc(VAR_TABLE_SIZE);
macro_stack = malloc(256);
macro_stack_ptr = macro_stack;
ind = prog;
line_num = 1;
next();
decl(VT_CONST);
#ifdef TEST
{
FILE *f;
f = fopen(v[1], "w");
fwrite((void *)prog, 1, ind - prog, f);
fclose(f);
return 0;
}
#else
t = vac[TOK_MAIN];
#ifndef TINY
if (!t)
error("main() not defined");
#endif
return (*t)(c - 1, v);
#endif
}
|