2 * neatcc - a small and simple C compiler
4 * Copyright (C) 2010-2011 Ali Gholami Rudi
6 * This file is released under GNU GPL version 2.
14 #include <sys/types.h>
19 #define MAXLOCALS (1 << 10)
20 #define MAXGLOBALS (1 << 10)
21 #define MAXARGS (1 << 5)
23 #define TYPE_BT(t) ((t)->ptr ? LONGSZ : (t)->bt)
24 #define TYPE_SZ(t) ((t)->ptr ? LONGSZ : (t)->bt & BT_SZMASK)
38 int id
; /* for structs, functions and arrays */
39 int addr
; /* the address is passed to gen.c; deref for value */
43 static struct type ts
[MAXTMP
];
46 static void ts_push_bt(unsigned bt
)
54 static void ts_push(struct type
*t
)
56 struct type
*d
= &ts
[nts
++];
57 memcpy(d
, t
, sizeof(*t
));
60 static void ts_push_addr(struct type
*t
)
66 static void ts_pop(struct type
*type
)
76 int len
= cpp_loc(err
, tok_addr());
77 strcpy(err
+ len
, msg
);
83 char elfname
[NAMELEN
]; /* local elf name for static variables in function */
85 long addr
; /* local stack offset, global data addr, struct offset */
88 static struct name locals
[MAXLOCALS
];
90 static struct name globals
[MAXGLOBALS
];
93 static void local_add(struct name
*name
)
95 if (nlocals
>= MAXLOCALS
)
96 err("nomem: MAXLOCALS reached!\n");
97 memcpy(&locals
[nlocals
++], name
, sizeof(*name
));
100 static int global_find(char *name
)
103 for (i
= 0; i
< nglobals
; i
++)
104 if (!strcmp(name
, globals
[i
].name
))
109 static void global_add(struct name
*name
)
111 int found
= global_find(name
->name
);
112 int i
= found
== -1 ? nglobals
++ : found
;
113 if (nglobals
>= MAXGLOBALS
)
114 err("nomem: MAXGLOBALS reached!\n");
115 memcpy(&globals
[i
], name
, sizeof(*name
));
118 #define MAXENUMS (1 << 10)
120 static struct enumval
{
126 static void enum_add(char *name
, int val
)
128 struct enumval
*ev
= &enums
[nenums
++];
129 if (nenums
>= MAXENUMS
)
130 err("nomem: MAXENUMS reached!\n");
131 strcpy(ev
->name
, name
);
135 static int enum_find(int *val
, char *name
)
138 for (i
= nenums
- 1; i
>= 0; --i
)
139 if (!strcmp(name
, enums
[i
].name
)) {
146 #define MAXTYPEDEFS (1 << 10)
148 static struct typdefinfo
{
151 } typedefs
[MAXTYPEDEFS
];
152 static int ntypedefs
;
154 static void typedef_add(char *name
, struct type
*type
)
156 struct typdefinfo
*ti
= &typedefs
[ntypedefs
++];
157 if (ntypedefs
>= MAXTYPEDEFS
)
158 err("nomem: MAXTYPEDEFS reached!\n");
159 strcpy(ti
->name
, name
);
160 memcpy(&ti
->type
, type
, sizeof(*type
));
163 static int typedef_find(char *name
)
166 for (i
= ntypedefs
- 1; i
>= 0; --i
)
167 if (!strcmp(name
, typedefs
[i
].name
))
172 #define MAXARRAYS (1 << 10)
174 static struct array
{
180 static int array_add(struct type
*type
, int n
)
182 struct array
*a
= &arrays
[narrays
++];
183 if (narrays
>= MAXARRAYS
)
184 err("nomem: MAXARRAYS reached!\n");
185 memcpy(&a
->type
, type
, sizeof(*type
));
190 static void array2ptr(struct type
*t
)
192 if (t
->flags
& T_ARRAY
&& !t
->ptr
) {
193 memcpy(t
, &arrays
[t
->id
].type
, sizeof(*t
));
198 #define MAXSTRUCTS (1 << 10)
199 #define MAXFIELDS (1 << 7)
201 static struct structinfo
{
203 struct name fields
[MAXFIELDS
];
207 } structs
[MAXSTRUCTS
];
210 static int struct_find(char *name
, int isunion
)
213 for (i
= nstructs
- 1; i
>= 0; --i
)
214 if (*structs
[i
].name
&& !strcmp(name
, structs
[i
].name
) &&
215 structs
[i
].isunion
== isunion
)
218 if (nstructs
>= MAXSTRUCTS
)
219 err("nomem: MAXTYPES reached!\n");
220 memset(&structs
[i
], 0, sizeof(structs
[i
]));
221 strcpy(structs
[i
].name
, name
);
222 structs
[i
].isunion
= isunion
;
226 static struct name
*struct_field(int id
, char *name
)
228 struct structinfo
*si
= &structs
[id
];
230 for (i
= 0; i
< si
->nfields
; i
++)
231 if (!strcmp(name
, si
->fields
[i
].name
))
232 return &si
->fields
[i
];
233 err("field not found\n");
236 #define MAXBREAK (1 << 7)
238 static long breaks
[MAXBREAK
];
240 static long continues
[MAXBREAK
];
241 static int ncontinues
;
243 static void break_fill(long addr
, int till
)
246 for (i
= till
; i
< nbreaks
; i
++)
247 o_filljmp2(breaks
[i
], addr
);
251 static void continue_fill(long addr
, int till
)
254 for (i
= till
; i
< ncontinues
; i
++)
255 o_filljmp2(continues
[i
], addr
);
259 static int type_totsz(struct type
*t
)
263 if (t
->flags
& T_ARRAY
)
264 return arrays
[t
->id
].n
* type_totsz(&arrays
[t
->id
].type
);
265 return t
->flags
& T_STRUCT
? structs
[t
->id
].size
: BT_SZ(t
->bt
);
268 static unsigned type_szde(struct type
*t
)
273 return type_totsz(&de
);
276 static void ts_de(int deref
)
278 struct type
*t
= &ts
[nts
- 1];
279 if (deref
&& t
->addr
&& (!(t
->flags
& T_ARRAY
) || (t
->ptr
)))
284 static void ts_pop_de(struct type
*t
)
291 if (t
->addr
&& !(t
->flags
& T_FUNC
))
296 static void ts_pop_de2(struct type
*t1
, struct type
*t2
)
304 static int tok_jmp(int tok
)
306 if (tok_see() != tok
)
312 static void tok_expect(int tok
)
314 if (tok_get() != tok
)
315 err("syntax error\n");
318 static unsigned bt_op(unsigned bt1
, unsigned bt2
)
320 unsigned s1
= BT_SZ(bt1
);
321 unsigned s2
= BT_SZ(bt2
);
322 return (bt1
| bt2
) & BT_SIGNED
| (s1
> s2
? s1
: s2
);
325 static void ts_binop(int op
)
329 ts_pop_de2(&t1
, &t2
);
330 if (op
== O_DIV
|| op
== O_MOD
)
333 bt
= bt_op(TYPE_BT(&t1
), TYPE_BT(&t2
));
334 o_bop(op
| (bt
& BT_SIGNED
? O_SIGNED
: 0));
338 static void ts_addop(int op
)
341 ts_pop_de2(&t1
, &t2
);
342 if (!t1
.ptr
&& !t2
.ptr
) {
344 ts_push_bt(bt_op(TYPE_BT(&t1
), TYPE_BT(&t2
)));
347 if (t1
.ptr
&& !t2
.ptr
)
349 if (!t1
.ptr
&& t2
.ptr
)
350 if (type_szde(&t2
) > 1) {
351 o_num(type_szde(&t2
));
354 if (t1
.ptr
&& !t2
.ptr
)
357 if (t1
.ptr
&& t2
.ptr
) {
358 int sz
= type_szde(&t1
);
363 ts_push_bt(4 | BT_SIGNED
);
365 ts_push(t1
.ptr
? &t1
: &t2
);
369 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
370 #define MIN(a, b) ((a) < (b) ? (a) : (b))
372 static int type_alignment(struct type
*t
)
374 if (t
->flags
& T_ARRAY
&& !t
->ptr
)
375 return type_alignment(&arrays
[t
->id
].type
);
376 if (t
->flags
& T_STRUCT
&& !t
->ptr
)
377 return type_alignment(&structs
[t
->id
].fields
[0].type
);
378 return MIN(LONGSZ
, type_totsz(t
));
381 static void structdef(void *data
, struct name
*name
, unsigned flags
)
383 struct structinfo
*si
= data
;
386 if (si
->size
< type_totsz(&name
->type
))
387 si
->size
= type_totsz(&name
->type
);
389 struct type
*t
= &name
->type
;
390 int alignment
= type_alignment(t
);
391 if (t
->flags
& T_ARRAY
&& !t
->ptr
)
392 alignment
= MIN(LONGSZ
, type_totsz(&arrays
[t
->id
].type
));
393 si
->size
= ALIGN(si
->size
, alignment
);
394 name
->addr
= si
->size
;
395 si
->size
+= type_totsz(&name
->type
);
397 memcpy(&si
->fields
[si
->nfields
++], name
, sizeof(*name
));
400 static int readdefs(void (*def
)(void *, struct name
*, unsigned f
), void *data
);
402 static int struct_create(char *name
, int isunion
)
404 int id
= struct_find(name
, isunion
);
405 struct structinfo
*si
= &structs
[id
];
407 while (tok_jmp('}')) {
408 readdefs(structdef
, si
);
414 static void readexpr(void);
416 static void enum_create(void)
420 while (tok_jmp('}')) {
422 tok_expect(TOK_NAME
);
423 strcpy(name
, tok_id());
424 if (tok_see() == '=') {
429 err("const expr expected!\n");
436 static int basetype(struct type
*type
, unsigned *flags
)
443 char name
[NAMELEN
] = "";
481 isunion
= tok_get() == TOK_UNION
;
482 if (!tok_jmp(TOK_NAME
))
483 strcpy(name
, tok_id());
484 if (tok_see() == '{')
485 type
->id
= struct_create(name
, isunion
);
487 type
->id
= struct_find(name
, isunion
);
488 type
->flags
|= T_STRUCT
;
494 if (tok_see() == '{')
496 type
->bt
= 4 | BT_SIGNED
;
499 if (tok_see() == TOK_NAME
) {
500 int id
= typedef_find(tok_id());
503 memcpy(type
, &typedefs
[id
].type
,
516 type
->bt
= size
| (sign
? BT_SIGNED
: 0);
520 static int readname(struct type
*main
, char *name
,
521 struct type
*base
, unsigned flags
);
523 static int readtype(struct type
*type
)
525 return readname(type
, NULL
, NULL
, 0);
528 static void readptrs(struct type
*type
)
530 while (!tok_jmp('*')) {
537 /* used to differenciate labels from case and cond exprs */
541 static void readpre(void);
543 static char *tmp_str(char *buf
, int len
)
545 static char name
[NAMELEN
];
548 sprintf(name
, "__neatcc.s%d", id
++);
549 dat
= dat_dat(name
, len
, 0);
550 memcpy(dat
, buf
, len
);
554 static void readprimary(void)
557 if (!tok_jmp(TOK_NUM
)) {
559 int bt
= tok_num(&n
);
564 if (!tok_jmp(TOK_STR
)) {
568 t
.bt
= 1 | BT_SIGNED
;
574 o_sym(tmp_str(buf
, len
));
577 if (!tok_jmp(TOK_NAME
)) {
578 struct name unkn
= {""};
579 char *name
= unkn
.name
;
581 strcpy(name
, tok_id());
582 /* don't search for labels here */
583 if (!ncexpr
&& !caseexpr
&& tok_see() == ':')
585 for (i
= nlocals
- 1; i
>= 0; --i
) {
586 struct type
*t
= &locals
[i
].type
;
587 if (!strcmp(locals
[i
].name
, name
)) {
588 o_local(locals
[i
].addr
);
593 if ((n
= global_find(name
)) != -1) {
594 struct name
*g
= &globals
[n
];
595 struct type
*t
= &g
->type
;
596 char *elfname
= *g
->elfname
? g
->elfname
: g
->name
;
601 if (!enum_find(&n
, name
)) {
602 ts_push_bt(4 | BT_SIGNED
);
606 if (tok_see() != '(')
607 err("unknown symbol\n");
621 if (!t
.ptr
|| !o
.ptr
)
631 static void arrayderef(void)
637 if (!(t
.flags
& T_ARRAY
) && t
.addr
) {
639 o_deref(TYPE_BT(&t
));
654 static void inc_post(int op
)
656 struct type t
= ts
[nts
- 1];
657 /* pushing the value before inc */
663 /* increment by 1 or pointer size */
667 o_num(t
.ptr
> 0 ? type_szde(&t
) : 1);
671 o_assign(TYPE_BT(&t
));
675 static void readfield(void)
679 tok_expect(TOK_NAME
);
682 field
= struct_field(t
.id
, tok_id());
687 ts_push_addr(&field
->type
);
690 #define MAXFUNCS (1 << 10)
692 static struct funcinfo
{
693 struct type args
[MAXFIELDS
];
699 static int func_create(struct type
*ret
, struct name
*args
, int nargs
)
701 struct funcinfo
*fi
= &funcs
[nfuncs
++];
703 if (nfuncs
>= MAXFUNCS
)
704 err("nomem: MAXFUNCS reached!\n");
705 memcpy(&fi
->ret
, ret
, sizeof(*ret
));
706 for (i
= 0; i
< nargs
; i
++)
707 memcpy(&fi
->args
[i
], &args
[i
].type
, sizeof(*ret
));
712 static void readcall(void)
718 if (t
.flags
& T_FUNC
&& t
.ptr
> 0)
720 fi
= t
.flags
& T_FUNC
? &funcs
[t
.id
] : NULL
;
721 if (tok_see() != ')') {
726 } while (!tok_jmp(','));
729 o_call(argc
, fi
? TYPE_BT(&fi
->ret
) : 4 | BT_SIGNED
);
731 if (TYPE_BT(&fi
->ret
))
732 o_cast(TYPE_BT(&fi
->ret
));
735 ts_push_bt(4 | BT_SIGNED
);
739 static void readpost(void)
753 if (!tok_jmp(TOK2("++"))) {
757 if (!tok_jmp(TOK2("--"))) {
765 if (!tok_jmp(TOK2("->"))) {
774 static void inc_pre(int op
)
778 /* copy the destination */
780 ts_push(&ts
[nts
- 1]);
781 /* increment by 1 or pointer size */
783 o_num(t
.ptr
> 0 ? type_szde(&t
) : 1);
785 /* assign the result */
786 o_assign(TYPE_BT(&t
));
790 static void readpre(void)
797 die("cannot use the address\n");
809 err("dereferencing non-pointer\n");
811 o_deref(TYPE_BT(&t
));
821 ts_push_bt(4 | BT_SIGNED
);
836 if (!tok_jmp(TOK2("++"))) {
840 if (!tok_jmp(TOK2("--"))) {
844 if (!tok_jmp(TOK_SIZEOF
)) {
846 int op
= !tok_jmp('(');
855 o_num(type_totsz(&t
));
863 static void readmul(void)
886 static void readadd(void)
904 static void shift(int op
)
908 ts_pop_de2(NULL
, &t
);
909 o_bop(op
| (BT_SIGNED
& TYPE_BT(&t
) ? O_SIGNED
: 0));
910 ts_push_bt(TYPE_BT(&t
));
913 static void readshift(void)
917 if (!tok_jmp(TOK2("<<"))) {
921 if (!tok_jmp(TOK2(">>"))) {
929 static void cmp(int op
)
934 ts_pop_de2(&t1
, &t2
);
935 bt
= bt_op(TYPE_BT(&t1
), TYPE_BT(&t2
));
936 o_bop(op
| (bt
& BT_SIGNED
? O_SIGNED
: 0));
937 ts_push_bt(4 | BT_SIGNED
);
940 static void readcmp(void)
952 if (!tok_jmp(TOK2("<="))) {
956 if (!tok_jmp(TOK2(">="))) {
964 static void eq(int op
)
967 ts_pop_de2(NULL
, NULL
);
969 ts_push_bt(4 | BT_SIGNED
);
972 static void readeq(void)
976 if (!tok_jmp(TOK2("=="))) {
980 if (!tok_jmp(TOK2("!="))) {
988 static void readbitand(void)
991 while (!tok_jmp('&')) {
997 static void readxor(void)
1000 while (!tok_jmp('^')) {
1006 static void readbitor(void)
1009 while (!tok_jmp('|')) {
1015 #define MAXCOND (1 << 7)
1017 static void readand(void)
1019 long conds
[MAXCOND
];
1024 if (tok_see() != TOK2("&&"))
1028 conds
[nconds
++] = o_jz(0);
1029 while (!tok_jmp(TOK2("&&"))) {
1032 conds
[nconds
++] = o_jz(0);
1037 for (i
= 0; i
< nconds
; i
++)
1038 o_filljmp(conds
[i
]);
1043 ts_push_bt(4 | BT_SIGNED
);
1046 static void reador(void)
1048 long conds
[MAXCOND
];
1053 if (tok_see() != TOK2("||"))
1057 conds
[nconds
++] = o_jnz(0);
1058 while (!tok_jmp(TOK2("||"))) {
1061 conds
[nconds
++] = o_jnz(0);
1066 for (i
= 0; i
< nconds
; i
++)
1067 o_filljmp(conds
[i
]);
1072 ts_push_bt(4 | BT_SIGNED
);
1075 static int readcexpr_const(void)
1099 static void readcexpr(void)
1108 if (readcexpr_const()) {
1127 static void opassign(int op
, int ptrop
)
1129 struct type t
= ts
[nts
- 1];
1134 o_assign(TYPE_BT(&ts
[nts
- 1]));
1139 static void doassign(void)
1141 struct type t
= ts
[nts
- 1];
1142 if (!t
.ptr
&& t
.flags
& T_STRUCT
) {
1144 o_num(type_totsz(&t
));
1148 o_assign(TYPE_BT(&ts
[nts
- 1]));
1153 static void readexpr(void)
1156 if (!tok_jmp('=')) {
1161 if (!tok_jmp(TOK2("+="))) {
1165 if (!tok_jmp(TOK2("-="))) {
1169 if (!tok_jmp(TOK2("*="))) {
1173 if (!tok_jmp(TOK2("/="))) {
1177 if (!tok_jmp(TOK2("%="))) {
1181 if (!tok_jmp(TOK3("<<="))) {
1185 if (!tok_jmp(TOK3(">>="))) {
1189 if (!tok_jmp(TOK3("&="))) {
1193 if (!tok_jmp(TOK3("|="))) {
1197 if (!tok_jmp(TOK3("^="))) {
1203 static void readestmt(void)
1209 } while (!tok_jmp(','));
1212 static void o_localoff(long addr
, int off
)
1221 static struct type
*innertype(struct type
*t
)
1223 if (t
->flags
& T_ARRAY
&& !t
->ptr
)
1224 return innertype(&arrays
[t
->id
].type
);
1228 static void initexpr(struct type
*t
, int off
, void *obj
,
1229 void (*set
)(void *obj
, int off
, struct type
*t
))
1235 if (!t
->ptr
&& t
->flags
& T_STRUCT
) {
1236 struct structinfo
*si
= &structs
[t
->id
];
1238 for (i
= 0; i
< si
->nfields
; i
++) {
1239 struct name
*field
= &si
->fields
[i
];
1240 if (!tok_jmp('.')) {
1241 tok_expect(TOK_NAME
);
1242 field
= struct_field(t
->id
, tok_id());
1245 initexpr(&field
->type
, off
+ field
->addr
, obj
, set
);
1246 if (tok_jmp(',') || tok_see() == '}')
1249 } else if (t
->flags
& T_ARRAY
) {
1250 struct type
*t_de
= &arrays
[t
->id
].type
;
1252 for (i
= 0; ; i
++) {
1254 struct type
*it
= t_de
;
1255 if (!tok_jmp('[')) {
1262 if (tok_see() != '{')
1263 it
= innertype(t_de
);
1264 initexpr(it
, off
+ type_totsz(it
) * idx
, obj
, set
);
1265 if (tok_jmp(',') || tok_see() == '}')
1272 static void jumpbrace(void)
1275 while (tok_see() != '}' || depth
--)
1276 if (tok_get() == '{')
1281 static int initsize(void)
1283 long addr
= tok_addr();
1285 if (!tok_jmp(TOK_STR
)) {
1292 while (tok_jmp('}')) {
1294 if (!tok_jmp('[')) {
1303 while (tok_see() != '}' && tok_see() != ',')
1304 if (tok_get() == '{')
1313 #define F_GLOBAL(flags) (!((flags) & F_STATIC))
1315 static void globalinit(void *obj
, int off
, struct type
*t
)
1317 struct name
*name
= obj
;
1318 char *elfname
= *name
->elfname
? name
->elfname
: name
->name
;
1319 if (t
->flags
& T_ARRAY
&& tok_see() == TOK_STR
) {
1320 struct type
*t_de
= &arrays
[t
->id
].type
;
1321 if (!t_de
->ptr
&& !t_de
->flags
&& TYPE_SZ(t_de
) == 1) {
1324 tok_expect(TOK_STR
);
1326 memcpy((void *) name
->addr
+ off
, buf
, len
);
1331 o_datset(elfname
, off
, TYPE_BT(t
));
1335 static void globaldef(void *data
, struct name
*name
, unsigned flags
)
1337 struct type
*t
= &name
->type
;
1338 char *elfname
= *name
->elfname
? name
->elfname
: name
->name
;
1340 if (t
->flags
& T_ARRAY
&& !t
->ptr
&& !arrays
[t
->id
].n
)
1341 if (~flags
& F_EXTERN
)
1342 arrays
[t
->id
].n
= initsize();
1344 if (!(flags
& F_EXTERN
) && (!(t
->flags
& T_FUNC
) || t
->ptr
)) {
1346 name
->addr
= (long) dat_dat(elfname
, sz
, F_GLOBAL(flags
));
1348 dat_bss(elfname
, sz
, F_GLOBAL(flags
));
1352 initexpr(t
, 0, name
, globalinit
);
1355 static void localinit(void *obj
, int off
, struct type
*t
)
1357 long addr
= *(long *) obj
;
1358 if (t
->flags
& T_ARRAY
&& tok_see() == TOK_STR
) {
1359 struct type
*t_de
= &arrays
[t
->id
].type
;
1360 if (!t_de
->ptr
&& !t_de
->flags
&& TYPE_SZ(t_de
) == 1) {
1363 tok_expect(TOK_STR
);
1365 o_localoff(addr
, off
);
1366 o_sym(tmp_str(buf
, len
));
1373 o_localoff(addr
, off
);
1381 /* current function name */
1382 static char func_name
[NAMELEN
];
1384 static void localdef(void *data
, struct name
*name
, unsigned flags
)
1386 struct type
*t
= &name
->type
;
1387 if (flags
& (F_STATIC
| F_EXTERN
)) {
1388 sprintf(name
->elfname
, "__neatcc.%s.%s", func_name
, name
->name
);
1389 globaldef(data
, name
, flags
);
1392 if (t
->flags
& T_ARRAY
&& !t
->ptr
&& !arrays
[t
->id
].n
)
1393 arrays
[t
->id
].n
= initsize();
1394 name
->addr
= o_mklocal(type_totsz(&name
->type
));
1396 if (flags
& F_INIT
) {
1397 if (t
->flags
& (T_ARRAY
| T_STRUCT
) && !t
->ptr
) {
1398 o_local(name
->addr
);
1400 o_num(type_totsz(t
));
1404 initexpr(t
, 0, &name
->addr
, localinit
);
1408 static void funcdef(char *name
, struct type
*type
, struct name
*args
,
1409 int nargs
, unsigned flags
)
1411 struct name global
= {""};
1413 strcpy(global
.name
, name
);
1414 strcpy(func_name
, name
);
1415 memcpy(&global
.type
, type
, sizeof(*type
));
1416 o_func_beg(name
, F_GLOBAL(flags
));
1417 global_add(&global
);
1418 for (i
= 0; i
< nargs
; i
++) {
1419 args
[i
].addr
= o_arg(i
);
1420 local_add(&args
[i
]);
1424 static int readargs(struct name
*args
)
1428 while (tok_see() != ')') {
1429 if (!tok_jmp(TOK3("...")))
1431 readname(&args
[nargs
].type
, args
[nargs
].name
, NULL
, 0);
1432 array2ptr(&args
[nargs
].type
);
1438 if (nargs
== 1 && !TYPE_BT(&args
[0].type
))
1443 static int readname(struct type
*main
, char *name
,
1444 struct type
*base
, unsigned flags
)
1446 struct type tpool
[3];
1448 struct type
*type
= &tpool
[npool
++];
1449 struct type
*func
= NULL
;
1450 struct type
*ret
= NULL
;
1454 memset(tpool
, 0, sizeof(tpool
));
1458 if (basetype(type
, &flags
))
1461 memcpy(type
, base
, sizeof(*base
));
1464 if (!tok_jmp('(')) {
1466 type
= &tpool
[npool
++];
1470 if (!tok_jmp(TOK_NAME
) && name
)
1471 strcpy(name
, tok_id());
1472 while (!tok_jmp('[')) {
1478 err("const expr expected\n");
1483 for (i
= nar
- 1; i
>= 0; i
--) {
1484 type
->id
= array_add(type
, arsz
[i
]);
1485 if (func
&& i
== nar
- 1)
1486 func
= &arrays
[type
->id
].type
;
1487 type
->flags
= T_ARRAY
;
1493 if (tok_see() == '(') {
1494 struct name args
[MAXARGS
] = {{""}};
1495 int nargs
= readargs(args
);
1499 type
= &tpool
[npool
++];
1502 func
->flags
= T_FUNC
;
1504 func
->id
= func_create(ret
, args
, nargs
);
1505 if (fdef
&& tok_see() == '{') {
1506 funcdef(name
, func
, args
, nargs
, flags
);
1510 memcpy(main
, type
, sizeof(*type
));
1514 static int readdefs(void (*def
)(void *data
, struct name
*name
, unsigned flags
),
1518 unsigned base_flags
;
1519 if (basetype(&base
, &base_flags
))
1521 while (tok_see() != ';' && tok_see() != '{') {
1522 struct name name
= {{""}};
1523 unsigned flags
= base_flags
;
1524 if (readname(&name
.type
, name
.name
, &base
, flags
))
1528 def(data
, &name
, flags
);
1534 static void typedefdef(void *data
, struct name
*name
, unsigned flags
)
1536 typedef_add(name
->name
, &name
->type
);
1539 static void readstmt(void);
1541 #define MAXCASES (1 << 7)
1543 static void readswitch(void)
1545 int break_beg
= nbreaks
;
1546 long val_addr
= o_mklocal(LONGSZ
);
1547 long matched
[MAXCASES
];
1558 o_assign(TYPE_BT(&t
));
1563 while (tok_jmp('}')) {
1565 while (tok_see() == TOK_CASE
|| tok_see() == TOK_DEFAULT
) {
1567 matched
[nmatched
++] = o_jmp(0);
1570 if (!tok_jmp(TOK_CASE
)) {
1576 o_deref(TYPE_BT(&t
));
1584 if (!tok_jmp(TOK_DEFAULT
)) {
1589 for (i
= 0; i
< nmatched
; i
++)
1590 o_filljmp(matched
[i
]);
1594 o_rmlocal(val_addr
, LONGSZ
);
1597 break_fill(o_mklabel(), break_beg
);
1600 #define MAXGOTO (1 << 10)
1602 static struct gotoinfo
{
1608 static struct labelinfo
{
1614 static void goto_add(char *name
)
1616 strcpy(gotos
[ngotos
].name
, name
);
1617 gotos
[ngotos
++].addr
= o_jmp(0);
1620 static void label_add(char *name
)
1622 strcpy(labels
[nlabels
].name
, name
);
1623 labels
[nlabels
++].addr
= o_mklabel();
1626 static void goto_fill(void)
1629 for (i
= 0; i
< ngotos
; i
++)
1630 for (j
= 0; j
< nlabels
; j
++)
1631 if (!strcmp(gotos
[i
].name
, labels
[j
].name
)) {
1632 o_filljmp2(gotos
[i
].addr
, labels
[j
].addr
);
1637 static void readstmt(void)
1641 if (!tok_jmp('{')) {
1642 int _nlocals
= nlocals
;
1643 int _nglobals
= nglobals
;
1644 int _nenums
= nenums
;
1645 int _ntypedefs
= ntypedefs
;
1646 int _nstructs
= nstructs
;
1647 int _nfuncs
= nfuncs
;
1648 int _narrays
= narrays
;
1649 while (tok_jmp('}'))
1653 ntypedefs
= _ntypedefs
;
1654 nstructs
= _nstructs
;
1657 nglobals
= _nglobals
;
1660 if (!readdefs(localdef
, NULL
)) {
1664 if (!tok_jmp(TOK_TYPEDEF
)) {
1665 readdefs(typedefdef
, NULL
);
1669 if (!tok_jmp(TOK_IF
)) {
1677 if (!tok_jmp(TOK_ELSE
)) {
1687 if (!tok_jmp(TOK_WHILE
)) {
1689 int break_beg
= nbreaks
;
1690 int continue_beg
= ncontinues
;
1700 break_fill(o_mklabel(), break_beg
);
1701 continue_fill(l1
, continue_beg
);
1704 if (!tok_jmp(TOK_DO
)) {
1706 int break_beg
= nbreaks
;
1707 int continue_beg
= ncontinues
;
1710 tok_expect(TOK_WHILE
);
1717 break_fill(o_mklabel(), break_beg
);
1718 continue_fill(l2
, continue_beg
);
1721 if (!tok_jmp(TOK_FOR
)) {
1722 long l_check
, l_jump
, j_fail
, j_pass
;
1723 int break_beg
= nbreaks
;
1724 int continue_beg
= ncontinues
;
1727 if (tok_see() != ';')
1730 l_check
= o_mklabel();
1731 if (tok_see() != ';') {
1739 l_jump
= o_mklabel();
1740 if (tok_see() != ')')
1749 break_fill(o_mklabel(), break_beg
);
1750 continue_fill(l_jump
, continue_beg
);
1753 if (!tok_jmp(TOK_SWITCH
)) {
1757 if (!tok_jmp(TOK_RETURN
)) {
1758 int ret
= tok_see() != ';';
1767 if (!tok_jmp(TOK_BREAK
)) {
1769 breaks
[nbreaks
++] = o_jmp(0);
1772 if (!tok_jmp(TOK_CONTINUE
)) {
1774 continues
[ncontinues
++] = o_jmp(0);
1777 if (!tok_jmp(TOK_GOTO
)) {
1778 tok_expect(TOK_NAME
);
1785 if (!tok_jmp(':')) {
1786 label_add(tok_id());
1792 static void readdecl(void)
1794 if (!tok_jmp(TOK_TYPEDEF
)) {
1795 readdefs(typedefdef
, NULL
);
1799 readdefs(globaldef
, NULL
);
1800 if (tok_see() == '{') {
1804 func_name
[0] = '\0';
1813 static void parse(void)
1815 while (tok_see() != TOK_EOF
)
1819 int main(int argc
, char *argv
[])
1824 while (i
< argc
&& argv
[i
][0] == '-') {
1825 if (argv
[i
][1] == 'I')
1826 cpp_addpath(argv
[i
][2] ? argv
[i
] + 2 : argv
[++i
]);
1827 if (argv
[i
][1] == 'D') {
1828 char *name
= argv
[i
] + 2;
1830 char *eq
= strchr(name
, '=');
1835 cpp_define(name
, def
);
1840 die("neatcc: no file given\n");
1841 if (cpp_init(argv
[i
]))
1842 die("neatcc: cannot open input file\n");
1844 strcpy(obj
, argv
[i
]);
1845 obj
[strlen(obj
) - 1] = 'o';
1846 ofd
= open(obj
, O_WRONLY
| O_TRUNC
| O_CREAT
, 0600);