462
|
1 /* Micro-C Partial Evaluator Part */
|
|
2 /* $Id$ */
|
|
3
|
|
4 #include <stdio.h>
|
|
5 #include "mc.h"
|
|
6 #include "mc-parse.h"
|
|
7 #include "mc-codegen.h"
|
|
8 #include "mc-switch.h"
|
464
|
9 #include "mc-code.h"
|
|
10 #include "mc-inline.h"
|
462
|
11
|
463
|
12 static int pvartable;
|
|
13 static int pdisp;
|
462
|
14
|
514
|
15 static int ret_register,ret_reg_mode;
|
|
16
|
527
|
17 static int inline_lvars;
|
|
18
|
462
|
19 /*
|
|
20 Basic code generator from parse tree
|
|
21 */
|
|
22
|
|
23 extern void
|
|
24 st_decl(int e1){
|
|
25 // NMTBL *n = (NMTBL *)caddr(e1);
|
|
26 // int stmode = cadddr(e1);
|
|
27 }
|
|
28
|
|
29 extern void
|
|
30 st_if(int e1){
|
|
31 int l1,l2,slfree;
|
|
32 int e2=caddr(e1),e3;
|
|
33 // conv->if_();
|
|
34 slfree=lfree;
|
|
35 checkret();
|
|
36 l1 = bexpr(car(e2),0,fwdlabel());
|
|
37 // conv->if_then_();
|
|
38 g_expr_u(cadr(e2));
|
|
39 checkret();
|
|
40 if ((e3=caddr(e2))) { // else
|
|
41 // conv->if_else_();
|
|
42 if ((l2 = control))
|
|
43 gen_jmp(l2=fwdlabel());
|
|
44 fwddef(l1);
|
|
45 g_expr_u(e3);
|
|
46 checkret();
|
|
47 if (l2) fwddef(l2);
|
|
48 } else {
|
|
49 fwddef(l1);
|
|
50 }
|
|
51 // conv->if_endif_();
|
|
52 }
|
|
53
|
|
54
|
|
55 extern void
|
|
56 st_do(int e1){
|
|
57 int sbreak,scontinue,l;
|
|
58
|
|
59 sbreak=blabel;
|
|
60 scontinue=clabel;
|
|
61 blabel=fwdlabel();
|
|
62 clabel=fwdlabel();
|
|
63 control=1;
|
|
64 checkret();
|
|
65 l=backdef();
|
|
66 // conv->dowhile_();
|
|
67 g_expr_u(cadddr(e1));
|
|
68 checkret();
|
|
69 // conv->dowhile_cond_();
|
|
70 bexpr(caddr(e1),1,l);
|
|
71 // conv->dowhile_end_();
|
|
72 fwddef(blabel);
|
|
73 clabel=scontinue;
|
|
74 blabel=sbreak;
|
|
75 }
|
|
76
|
|
77
|
|
78 extern void
|
|
79 st_while(int e1){
|
|
80 int sbreak,scontinue,e;
|
|
81
|
|
82 sbreak=blabel;
|
|
83 scontinue=clabel;
|
|
84 blabel=fwdlabel();
|
|
85 control=1;
|
|
86 checkret();
|
|
87 clabel=backdef();
|
|
88 // conv->while_();
|
|
89 // conv->while_body_();
|
|
90 if(!(e=cadddr(e1))) {
|
|
91 bexpr(caddr(e1),1,clabel);
|
|
92 // conv->sm_();
|
|
93 } else {
|
|
94 bexpr(caddr(e1),0,blabel);
|
|
95 g_expr_u(e);
|
|
96 checkret();
|
|
97 if(control)
|
|
98 gen_jmp(clabel);
|
|
99 }
|
|
100 // conv->while_end_();
|
|
101 fwddef(blabel);
|
|
102 clabel=scontinue;
|
|
103 blabel=sbreak;
|
|
104 }
|
|
105
|
|
106
|
|
107 extern void
|
|
108 st_for(int e1){
|
|
109 int p0,p1,p2,body;
|
|
110 int l,e;
|
|
111 int sbreak=blabel;
|
|
112 int scontinue=clabel;
|
|
113
|
|
114 e = caddr(e1);
|
|
115 p0 = car(e); p1 = cadr(e); p2 = caddr(e); body = cadddr(e);
|
|
116
|
|
117 blabel=fwdlabel();
|
|
118 // conv->for_();
|
|
119 if (p0) {
|
|
120 checkret();
|
|
121 g_expr_u(p0);
|
|
122 }
|
|
123 // conv->for1_();
|
|
124 control=1;
|
|
125 checkret();
|
|
126 l=backdef();
|
|
127 if (p1) {
|
|
128 bexpr(p1,0,blabel);
|
|
129 }
|
|
130 // conv->for2_();
|
|
131 // conv->for_body_();
|
|
132 if (!p2) {
|
|
133 clabel=l;
|
|
134 g_expr_u(body);
|
|
135 checkret();
|
|
136 } else {
|
|
137 clabel=fwdlabel();
|
|
138 g_expr_u(body);
|
|
139 checkret();
|
|
140 fwddef(clabel);
|
|
141 g_expr_u(p2);
|
|
142 }
|
|
143 // conv->for_end_();
|
|
144 gen_jmp(l);
|
|
145 fwddef(blabel);
|
|
146 clabel=scontinue;
|
|
147 blabel=sbreak;
|
|
148 }
|
|
149
|
|
150
|
|
151 extern void
|
|
152 st_switch(int e1){
|
|
153 int sbreak,scase,sdefault,slfree,svalue,slist;
|
558
|
154 int cst,e;
|
462
|
155
|
|
156 checkret();
|
|
157 slist = cslist;
|
|
158 cslist = 0;
|
|
159 sbreak=blabel; /* save parents break label */
|
|
160 blabel=fwdlabel();
|
|
161 sdefault=dlabel; /* save parents default label */
|
|
162 dlabel=0;
|
|
163 scase=cslabel; /* save parents next case label */
|
|
164 // conv->switch_();
|
|
165 slfree=lfree;
|
|
166 svalue=csvalue1; /* save parents switch value */
|
558
|
167 e =caddr(e1); /* switch value */
|
|
168 if (car(e)==CONST) {
|
|
169 cst = 1;
|
|
170 csvalue1=glist2(CONST,cadr(e));
|
|
171 gen_jmp( cslabel=fwdlabel());
|
|
172 } else {
|
|
173 cst = 0;
|
|
174 gexpr(e,1); /* switch value */
|
|
175 csvalue1=csvalue() ;
|
|
176 cslabel = control = 0;
|
|
177 }
|
462
|
178 // conv->switch_body_();
|
|
179 g_expr_u(cadddr(e1));
|
|
180 // conv->switch_end_();
|
|
181 checkret();
|
|
182 #if CASE_CODE
|
558
|
183 if (!cst) {
|
|
184 if (control) gen_jmp(blabel);
|
|
185 genswitch(cslist,cslabel);
|
|
186 } else if (!cslist) {
|
|
187 if(dlabel) def_label(cslabel,dlabel);
|
|
188 else fwddef(cslabel);
|
|
189 }
|
462
|
190 #else
|
558
|
191 if (!(cst && cslist)) {
|
|
192 if(dlabel) def_label(cslabel,dlabel);
|
|
193 else fwddef(cslabel);
|
|
194 }
|
462
|
195 #endif
|
558
|
196 free_glist2(csvalue1);
|
|
197 if (cst && !cslist) {
|
|
198 if(pending_jmp!=cslabel)
|
|
199 fwddef(cslabel);
|
|
200 else pending_jmp = 0; // cslabel is here
|
|
201 }
|
|
202 fwddef(blabel);
|
462
|
203 csvalue1=svalue;
|
|
204 cslabel=scase;
|
|
205 dlabel=sdefault;
|
|
206 blabel=sbreak;
|
|
207 cslist = slist;
|
|
208 }
|
|
209
|
|
210
|
|
211 extern void
|
|
212 st_comp(int e1){
|
|
213 g_expr_u(caddr(e1));
|
|
214 }
|
|
215
|
|
216
|
|
217 extern void
|
|
218 st_break(int e1){
|
|
219 checkret();
|
|
220 // conv->break_();
|
|
221 if (control)
|
|
222 gen_jmp(blabel);
|
|
223 }
|
|
224
|
|
225
|
|
226 extern void
|
|
227 st_continue(int e1){
|
|
228 checkret();
|
|
229 // conv->continue_();
|
|
230 if (control) gen_jmp(clabel);
|
|
231 }
|
|
232
|
|
233
|
|
234 extern void
|
|
235 st_case(int e1){
|
|
236 #if CASE_CODE
|
|
237 int l,clist=caddr(e1),c;
|
558
|
238 int cst = (car(csvalue1)==CONST);
|
|
239 if (cst) {
|
|
240 c=cadr(csvalue1);
|
|
241 for(;clist;clist=cadr(clist)) {
|
|
242 if (car(clist)==c) break;
|
|
243 }
|
|
244 if (!clist) return; // no match
|
|
245 } else
|
|
246 l = fwdlabel();
|
462
|
247 if (retpending) {
|
|
248 ret(); retpending=0;
|
|
249 }
|
558
|
250 if (cst) {
|
|
251 if (cslist) { // may duplicat csvalue
|
|
252 return;
|
|
253 }
|
|
254 cslist=1;
|
|
255 fwddef(cslabel);
|
|
256 return;
|
|
257 }
|
462
|
258 if (!cslabel) {
|
|
259 if (!control) {
|
|
260 cmpdimm(car(clist),csvalue1,cslabel=fwdlabel(),1);
|
|
261 caddr(clist)=0;
|
|
262 } else {
|
|
263 error(-1);
|
|
264 }
|
|
265 }
|
|
266 while(clist) {
|
|
267 caddr(clist) = l;
|
|
268 clist = cadr(c=clist); cadr(c) = 0; // insert destroy cadr of clist
|
|
269 cslist=insert_ascend(cslist,c,docase_eq);
|
|
270 }
|
|
271 fwddef(l);
|
|
272 control=1;
|
|
273 #else
|
558
|
274 int c,clist,l;
|
|
275 int cst = (car(csvalue1)==CONST);
|
|
276 clist = caddr(e1);
|
|
277 if (cst) {
|
|
278 c=cadr(csvalue1);
|
|
279 for(;clist;clist=cadr(clist)) {
|
|
280 if (car(clist)==c) break; // no match
|
|
281 }
|
|
282 if (!clist) return;
|
|
283 }
|
|
284 if (cst) {
|
|
285 if (!cslist) {
|
|
286 if (retpending) {
|
|
287 ret(); retpending=0;
|
|
288 }
|
|
289 fwddef(cslabel);
|
|
290 cslist = 1;
|
|
291 } // else error(CSERR);
|
|
292 return;
|
|
293 }
|
462
|
294 if (retpending) {
|
|
295 ret(); retpending=0;
|
|
296 }
|
|
297 l=fwdlabel();
|
|
298 if (control) {
|
|
299 control=0;
|
|
300 gen_jmp(l);
|
|
301 }
|
|
302 if (cslabel) fwddef(cslabel);
|
558
|
303 while(cadr(clist)) {
|
|
304 cmpdimm(car(clist),csvalue1,l,0);
|
|
305 clist=cadr(clist);
|
462
|
306 }
|
558
|
307 cmpdimm(car(clist),csvalue1,cslabel=fwdlabel(),1);
|
462
|
308 if (l) fwddef(l);
|
|
309 #endif
|
|
310 }
|
|
311
|
|
312
|
|
313 extern void
|
|
314 st_default(int e1){
|
558
|
315 // int cst = (car(csvalue1)==CONST);
|
462
|
316 control=1;
|
|
317 checkret();
|
|
318 if (dlabel) error(STERR); // double default:
|
|
319 dlabel = backdef();
|
|
320 // conv->case_(0,1);
|
|
321 }
|
|
322
|
|
323
|
|
324 extern void
|
|
325 st_return(int e1){
|
514
|
326 int e,t;
|
462
|
327
|
|
328 if (!cslabel) gen_jmp(cslabel = fwdlabel());
|
|
329 if(!(e=caddr(e1))) {
|
513
|
330 // no return value
|
462
|
331 retpending = 1;
|
|
332 return;
|
|
333 }
|
551
|
334 t = type_value(cadr(fnptr->ty));
|
|
335 if (t>0 && (car(t)==STRUCT || car(t)==UNION)) {
|
|
336 // copy is included in e, pass the pointer
|
|
337 t = list2(POINTER,type_value(cadr(fnptr->ty)));
|
|
338 }
|
|
339 g_expr(e);
|
|
340 if (ret_reg_mode==0) {
|
|
341 // return value register is not fixed
|
|
342 ret_reg_mode=1;
|
|
343 ret_register = code_get_fixed_creg(USE_CREG,t);
|
462
|
344 } else {
|
551
|
345 code_set_fixed_creg(ret_register,1,t);
|
462
|
346 }
|
|
347 // conv->return_end_();
|
|
348 retpending = 1;
|
|
349 }
|
|
350
|
|
351 extern void
|
|
352 st_goto(int e){
|
551
|
353 NMTBL *nptr0;
|
|
354 int e1,e2,env;
|
462
|
355
|
|
356 checkret();
|
|
357 e1 = caddr(e);
|
|
358 if (car(e1)==RINDIRECT) {
|
|
359 gen_indirect_goto(cadr(e1));
|
505
|
360 return ;
|
552
|
361 } else if (car(e1)==RLVAR) {
|
551
|
362 gen_indirect_goto(e1);
|
|
363 return ;
|
552
|
364 } else if (car(e1)==LVAR||car(e1)==FLABEL) {
|
551
|
365 gen_jmp(cadr(e1));
|
462
|
366 control=0;
|
505
|
367 return ;
|
551
|
368 } else if (car(e1)==CODE) {
|
462
|
369 /* CbC continuation */
|
|
370 // conv->jump_(env);
|
551
|
371 // should be separate function
|
462
|
372 e2 = cadr(e1);
|
|
373 env = caddr(e1);
|
|
374 if (car(e2) == FNAME) {
|
|
375 nptr0=(NMTBL *)cadr(e2);
|
|
376 if (nptr0->sc==EMPTY)
|
|
377 nptr0->sc = EXTRN1;
|
|
378 else if(nptr0->sc==FUNCTION)
|
|
379 nptr0->sc = CODE;
|
|
380 if (nptr0->ty>0&&car(nptr0->ty)==FUNCTION)
|
|
381 car(nptr0->ty)=CODE;
|
|
382 }
|
|
383 gexpr(list3(CODE,e1,env),0);
|
|
384 control=0;
|
|
385 // conv->sm_();
|
505
|
386 return ;
|
551
|
387 } else {
|
|
388 error(-1);
|
462
|
389 }
|
|
390 }
|
|
391
|
|
392
|
|
393 #if ASM_CODE
|
|
394 extern void
|
|
395 st_asm(int e1){
|
|
396 checkret();
|
|
397 g_expr_u(list3(ASM,caddr(e1),cadddr(e1)));
|
|
398 }
|
|
399 #endif
|
|
400
|
|
401
|
|
402 extern void
|
|
403 st_label(int e1){
|
551
|
404 int lb = caddr(e1);
|
462
|
405 control=1;
|
|
406 checkret();
|
551
|
407 if (car(lb)==LVAR) { // label variable case
|
|
408 } else if (car(lb)!=FLABEL) error(-1);
|
|
409 fwddef(cadr(lb));
|
462
|
410 }
|
|
411
|
|
412 extern void
|
|
413 st_comment(int e1){
|
|
414 gen_comment((char *)caddr(e1));
|
|
415 }
|
|
416
|
|
417 /*
|
|
418 partial evaluator
|
|
419 */
|
|
420
|
|
421 static int
|
557
|
422 p_vartable(int adisp,int ldisp)
|
462
|
423 {
|
464
|
424 int i;
|
505
|
425 int pvartable = getfree(adisp-ldisp); // have to be local heap
|
509
|
426 pdisp = pvartable-ldisp;
|
|
427 for(i=ldisp;i<0;i++) {
|
|
428 heap[pdisp+i] = 0;
|
463
|
429 }
|
505
|
430 return pvartable;
|
462
|
431 }
|
|
432
|
|
433 static int
|
|
434 p_lvar(int e1)
|
|
435 {
|
463
|
436 int sz = is_memory(e1);
|
|
437 int d = cadr(e1);
|
527
|
438 int d1,e;
|
502
|
439 if ((d1=(heap[pdisp+d]))) return d1;
|
527
|
440 e = heap[pdisp+d]=list3(LVAR,new_lvar(sz),0);
|
|
441 inline_lvars = glist2(e,inline_lvars);
|
|
442 return e;
|
462
|
443 }
|
|
444
|
|
445 static int
|
|
446 pfunction(int e)
|
|
447 {
|
501
|
448 // list4(INLINE,e1,arglist,ftype);
|
|
449 // include code segement case
|
|
450 int e1 = pexpr(cadr(e));
|
|
451 int arglist = caddr(e);
|
|
452 int newargs = 0;
|
|
453 int ftype = cadddr(e);
|
|
454 int e3;
|
|
455 for (e3 = arglist; e3; e3 = cadr(e3)) {
|
514
|
456 newargs = list3( pexpr(car(e3)), newargs, caddr(e3));
|
501
|
457 }
|
|
458 newargs = reverse0(newargs);
|
513
|
459 return list4(car(e),e1,newargs,ftype);
|
462
|
460 }
|
|
461
|
|
462 static int
|
|
463 prindirect(int e)
|
|
464 {
|
525
|
465 int lvar;
|
533
|
466 int offset = caddr(e);
|
530
|
467 if (car(lvar=cadr(e))==IVAR) {
|
525
|
468 lvar=p_lvar(cadr(e)); // can be anything....
|
530
|
469 switch(car(lvar)) {
|
|
470 case LVAR:
|
533
|
471 if(offset) {
|
|
472 return list3(car(e),lvar,offset);
|
|
473 }
|
530
|
474 return rvalue_t(lvar,cadddr(e));
|
|
475 case REGISTER: case DREGISTER:
|
|
476 case FREGISTER: case LREGISTER:
|
|
477 case CONST: case FCONST: case DCONST: case LCONST:
|
|
478 // should do type check
|
533
|
479 if (offset) error(-1);
|
530
|
480 return lvar;
|
|
481 }
|
512
|
482 }
|
533
|
483 return list3(car(e),pexpr(cadr(e)),offset);
|
462
|
484 }
|
|
485
|
|
486 static int
|
527
|
487 pindirect(int e)
|
|
488 {
|
553
|
489 //int lvar;
|
|
490 //if (car(lvar=cadr(e))==IVAR)
|
|
491 // lvar=p_lvar(cadr(e)); // can be anything....
|
527
|
492 return list3(car(e),pexpr(cadr(e)),caddr(e));
|
|
493 }
|
|
494
|
|
495 static int
|
462
|
496 paddress(int e)
|
|
497 {
|
501
|
498 return list2(car(e),pexpr(cadr(e)));
|
462
|
499 }
|
|
500
|
|
501 static int
|
464
|
502 p_conv(int e1,int e2)
|
462
|
503 {
|
557
|
504 int t;
|
|
505 if (is_const(e2) && (t=type_of_conv(e1))) {
|
|
506 return correct_type(e2,t);
|
|
507 }
|
527
|
508 return list3(CONV,pexpr(e2),e1);
|
462
|
509 }
|
|
510
|
|
511 static int
|
464
|
512 pbinop(int op,int e1,int e2)
|
462
|
513 {
|
557
|
514 e1 = pexpr(e1);
|
|
515 e2 = pexpr(e2);
|
|
516 if (is_const(e1)&&is_const(e2)) {
|
|
517 int t;
|
|
518 if((t= type_of_bop(op)))
|
|
519 return binop(op_of(op),e1,e2,t,t);
|
|
520 }
|
|
521 return list3(op,e1,e2);
|
502
|
522 }
|
|
523
|
|
524 static int
|
526
|
525 plor(int op,int e1,int e2)
|
|
526 {
|
555
|
527 int e = pexpr(e1);
|
|
528 return list3(op,e,pexpr(e2));
|
526
|
529 }
|
|
530
|
|
531 static int
|
|
532 pland(int op,int e1,int e2)
|
|
533 {
|
555
|
534 int e = pexpr(e1);
|
|
535 return list3(op,e,pexpr(e2));
|
526
|
536 }
|
|
537
|
|
538 static int
|
462
|
539 psassign(int e)
|
|
540 {
|
555
|
541 int e1 = pexpr(cadr(e));
|
|
542 int e2 = pexpr(caddr(e));
|
|
543 return list4(car(e),e1,e2,cadddr(e));
|
462
|
544 }
|
|
545
|
|
546 static int
|
|
547 passign(int e)
|
|
548 {
|
555
|
549 int e1 = pexpr(cadr(e));
|
|
550 int e2 = pexpr(caddr(e));
|
|
551 return list3(car(e),e1,e2);
|
462
|
552 }
|
|
553
|
|
554 static int
|
|
555 passop(int e)
|
|
556 {
|
555
|
557 int e1 = pexpr(cadr(e));
|
|
558 int e2 = pexpr(caddr(e));
|
|
559 return list4(car(e),e1,e2,cadddr(e));
|
462
|
560 }
|
|
561
|
|
562 static int
|
|
563 pdassign(int e)
|
|
564 {
|
555
|
565 int e1 = pexpr(cadr(e));
|
|
566 int e2 = pexpr(caddr(e));
|
|
567 return list3(car(e),e1,e2);
|
462
|
568 }
|
|
569
|
|
570 static int
|
|
571 pdassop(int e)
|
|
572 {
|
555
|
573 int e1 = pexpr(cadr(e));
|
|
574 int e2 = pexpr(caddr(e));
|
|
575 return list4(car(e),e1,e2,cadddr(e));
|
462
|
576 }
|
|
577
|
|
578 static int
|
|
579 plassign(int e)
|
|
580 {
|
555
|
581 int e1 = pexpr(cadr(e));
|
|
582 int e2 = pexpr(caddr(e));
|
|
583 return list3(car(e),e1,e2);
|
462
|
584 }
|
|
585
|
|
586 static int
|
|
587 plassop(int e)
|
|
588 {
|
555
|
589 int e1 = pexpr(cadr(e));
|
|
590 int e2 = pexpr(caddr(e));
|
|
591 return list4(car(e),e1,e2,cadddr(e));
|
462
|
592 }
|
|
593
|
|
594 static int
|
|
595 palloc(int e)
|
|
596 {
|
501
|
597 return list2(car(e),pexpr(cadr(e)));
|
462
|
598 }
|
|
599
|
|
600 static int
|
464
|
601 pcomma(int e1,int e2)
|
462
|
602 {
|
556
|
603 int e = pexpr(e1);
|
555
|
604 return list3(COMMA,e,pexpr(e2));
|
462
|
605 }
|
|
606
|
|
607 static int
|
|
608 prbit_field(int e)
|
|
609 {
|
501
|
610 return list3(car(e),pexpr(cadr(e)),caddr(e));
|
462
|
611 }
|
|
612
|
|
613 static int
|
|
614 pbassign(int e)
|
|
615 {
|
553
|
616 // list4(BASS,e1,e2,list2(BASS,t)));
|
|
617 int e1=pexpr(caddr(e));
|
|
618 return list4(car(e),pexpr(cadr(e)),e1,cadddr(e));
|
462
|
619 }
|
|
620
|
|
621 static int
|
|
622 pbassop(int e)
|
|
623 {
|
553
|
624 int e1=pexpr(caddr(e));
|
|
625 return list4(car(e),pexpr(cadr(e)),e1,cadddr(e));
|
462
|
626 }
|
|
627
|
561
|
628 // handle local variable declaration
|
|
629 // initialization is accumrated in parse tree
|
|
630 // should consider int k=some_compile_time_constant;
|
462
|
631 static int
|
|
632 p_decl(int e)
|
|
633 {
|
552
|
634 // list4(ST_DECL,parse,(int)n,list3(mode,stmode,ctmode));
|
554
|
635 int ctmode=cadddr(e);
|
463
|
636 NMTBL *n=(NMTBL*)caddr(e);
|
|
637 int dsp = n->dsp;
|
|
638 int v;
|
552
|
639 int sstmode = stmode;
|
|
640 int smode = mode;
|
500
|
641 // in real partial evaluation, we have to check whether this variable
|
|
642 // is used or not.
|
552
|
643 if (ctmode) {
|
|
644 mode = car(ctmode); stmode = cadr(ctmode); ctmode = caddr(ctmode);
|
|
645 }
|
463
|
646 switch(stmode) {
|
528
|
647 case EXTRN: case EXTRN1: case STATIC:
|
552
|
648 // def(n,ctmode); we don't need this. already done.
|
|
649 // stmode = sstmode;
|
|
650 stmode = sstmode;
|
|
651 mode = smode;
|
|
652 return pexpr(cadr(e));
|
|
653 // case LLDECL: LLDECL is mode, not stmode (bad design)
|
|
654 // v = list2(FLABEL,fwdlabel()); break;
|
529
|
655 #if 1
|
463
|
656 case REGISTER:
|
|
657 switch(n->ty) {
|
|
658 case ULONGLONG: case LONGLONG:
|
|
659 v = get_lregister_var(n); break;
|
|
660 case FLOAT:
|
|
661 v = get_dregister_var(n,0); break;
|
|
662 case DOUBLE:
|
|
663 v = get_dregister_var(n,1); break;
|
|
664 default:
|
|
665 if (scalar(n->ty))
|
524
|
666 v = get_register_var(n);
|
463
|
667 else
|
|
668 error(TYERR);
|
|
669 }
|
529
|
670 break;
|
528
|
671 #endif
|
463
|
672 default:
|
552
|
673 if (n->sc==FLABEL)
|
|
674 v = list3(LVAR,fwdlabel(),(int)n);
|
|
675 else
|
|
676 v = list3(LVAR,new_lvar(size(n->ty)),(int)n);
|
463
|
677 }
|
552
|
678 if (n->sc!=FLABEL)
|
|
679 inline_lvars = glist2(v,inline_lvars);
|
463
|
680 if (heap[pdisp+dsp]) error(-1);
|
|
681 heap[pdisp+dsp]=v;
|
552
|
682 stmode = sstmode;
|
|
683 mode = smode;
|
463
|
684 return pexpr(cadr(e));
|
462
|
685 }
|
|
686
|
|
687 static int
|
500
|
688 p_if(int e1)
|
462
|
689 {
|
500
|
690 int cond,l1,l2;
|
|
691 int e2=caddr(e1),e3;
|
|
692 cond = pexpr(car(e2));
|
|
693 // conv->if_then_();
|
|
694 l1 = pexpr(cadr(e2));
|
|
695 if ((e3=caddr(e2))) { // else
|
|
696 l2 = pexpr(e3);
|
|
697 } else {
|
|
698 l2 = 0;
|
|
699 }
|
|
700 return list3(ST_IF,pexpr(cadr(e1)),list3(cond,l1,l2));
|
462
|
701 }
|
|
702
|
|
703 static int
|
|
704 p_do(int e)
|
|
705 {
|
524
|
706 int e2 = pexpr(caddr(e));
|
|
707 int e3 = pexpr(cadddr(e));
|
|
708 return list4(ST_DO,pexpr(cadr(e)),e2,e3);
|
462
|
709 }
|
|
710
|
|
711 static int
|
|
712 p_while(int e)
|
|
713 {
|
524
|
714 int e2 = pexpr(caddr(e));
|
|
715 int e3 = pexpr(cadddr(e));
|
|
716 return list4(ST_WHILE,pexpr(cadr(e)),e2,e3);
|
462
|
717 }
|
|
718
|
|
719 static int
|
|
720 p_for(int e)
|
|
721 {
|
501
|
722 int e1=caddr(e);
|
524
|
723 int p0=pexpr(car(e1));
|
|
724 int p1=pexpr(cadr(e1));
|
|
725 int p2=pexpr(caddr(e1));
|
|
726 int p3=pexpr(cadddr(e1));
|
|
727 return list3(ST_FOR,pexpr(cadr(e)), list4(p0,p1,p2,p3));
|
462
|
728 }
|
|
729
|
|
730 static int
|
|
731 p_switch(int e)
|
|
732 {
|
524
|
733 int e2 = pexpr(caddr(e));
|
|
734 int e3 = pexpr(cadddr(e));
|
|
735 return list4(ST_SWITCH,pexpr(cadr(e)),e2,e3);
|
462
|
736 }
|
|
737
|
|
738 static int
|
|
739 p_comp(int e)
|
|
740 {
|
524
|
741 int e1=pexpr(caddr(e));
|
|
742 return list3(ST_COMP,pexpr(cadr(e)),e1);
|
462
|
743 }
|
|
744
|
|
745 static int
|
|
746 p_break(int e)
|
|
747 {
|
502
|
748 return list2(ST_BREAK,pexpr(cadr(e)));
|
462
|
749 }
|
|
750
|
|
751 static int
|
|
752 p_continue(int e)
|
|
753 {
|
502
|
754 return list2(ST_CONTINUE,pexpr(cadr(e)));
|
462
|
755 }
|
|
756
|
|
757 static int
|
|
758 p_case(int e)
|
|
759 {
|
506
|
760 int new=0,clist = caddr(e);
|
|
761 // insert destory clist, we have to copy it now
|
|
762 for(;clist;clist=cadr(clist))
|
|
763 new=glist3(car(clist),new,0);
|
|
764 return list3(ST_CASE,pexpr(cadr(e)),reverse0(new));
|
462
|
765 }
|
|
766
|
|
767 static int
|
|
768 p_default(int e)
|
|
769 {
|
558
|
770 // should be removed if constant case value
|
502
|
771 return list2(ST_DEFAULT,pexpr(cadr(e)));
|
462
|
772 }
|
|
773
|
|
774 static int
|
|
775 p_return(int e)
|
|
776 {
|
524
|
777 int e1=pexpr(caddr(e));
|
|
778 return list3(ST_RETURN,pexpr(cadr(e)),e1);
|
462
|
779 }
|
|
780
|
|
781 static int
|
|
782 p_goto(int e)
|
|
783 {
|
555
|
784 int e1,lb,e2;
|
501
|
785 if ((e1=caddr(e))) {
|
|
786 switch(car(e1)) {
|
|
787 case RINDIRECT: e1=pexpr(e1); break;
|
555
|
788 case CODE: e2=pexpr(cadr(e1));
|
|
789 e1=list3(CODE,e2,pexpr(caddr(e1))); break;
|
551
|
790 case FLABEL: /* error(-1); */ break;
|
|
791 case IVAR:
|
|
792 lb = cadr(e1);
|
|
793 if (!(e1=heap[pdisp+lb])) {
|
|
794 e1 = heap[pdisp+lb]=list2(FLABEL,fwdlabel());
|
|
795 }
|
501
|
796 }
|
|
797 }
|
502
|
798 return list3(ST_GOTO,pexpr(cadr(e)),e1);
|
501
|
799 }
|
|
800
|
|
801 static int
|
|
802 p_list_expr(int e)
|
|
803 {
|
|
804 int e3,new = 0;
|
|
805 for (e3 = e; e3; e3 = cadr(e3)) {
|
|
806 new= list2( pexpr(car(e3)), new);
|
|
807 }
|
|
808 return reverse0(new);
|
462
|
809 }
|
|
810
|
|
811 static int
|
|
812 p_asm(int e)
|
|
813 {
|
501
|
814 int param=caddr(e);
|
|
815 int e1 = p_list_expr(cadddr(e));
|
|
816 return list4(ST_ASM,pexpr(cadr(e)),param,e1);
|
462
|
817 }
|
|
818
|
|
819 static int
|
|
820 p_label(int e)
|
|
821 {
|
551
|
822 int e1,lb;
|
|
823 if ((e1=caddr(e))) {
|
|
824 switch(car(e1)) {
|
|
825 case FLABEL: /* error(-1); */ break;
|
|
826 case IVAR:
|
|
827 lb = cadr(e1);
|
|
828 if (!(e1=heap[pdisp+lb])) {
|
|
829 e1 = heap[pdisp+lb]=list2(FLABEL,fwdlabel());
|
|
830 }
|
|
831 }
|
|
832 }
|
|
833 return list3(ST_LABEL,pexpr(cadr(e)),e1);
|
|
834 }
|
|
835
|
|
836 static int
|
|
837 p_label_var(int e)
|
|
838 {
|
|
839 int d,e1;
|
|
840 switch(car(e1=e)) {
|
|
841 case LVAR: /* error(-1) */ break;
|
|
842 case IVAR:
|
|
843 // should this done in p_decl? (in __label__?)
|
|
844 d = cadr(e);
|
|
845 if (!(e1=(heap[pdisp+d]))) {
|
552
|
846 // error(-1);
|
551
|
847 e1 = heap[pdisp+d]=list3(LVAR,fwdlabel(),caddr(e));
|
|
848 }
|
|
849 }
|
|
850 return list2(LABEL,e1);
|
462
|
851 }
|
|
852
|
|
853 static int
|
|
854 p_bool(int e)
|
|
855 {
|
501
|
856 error(-1);
|
464
|
857 return e;
|
|
858 }
|
462
|
859
|
464
|
860 static int
|
|
861 p_comment(int e)
|
|
862 {
|
501
|
863 return list3(ST_COMMENT,pexpr(cadr(e)),caddr(e));
|
462
|
864 }
|
|
865
|
508
|
866 static int
|
512
|
867 p_inline(int e)
|
508
|
868 {
|
|
869 int e3;
|
|
870 int narg;
|
|
871
|
|
872 /* inline function arguments */
|
|
873 narg = 0;
|
|
874 for (e3 = caddr(e); e3; e3 = cadr(e3)) {
|
|
875 narg=list3(pexpr(car(e3)),narg,caddr(e3));
|
|
876 }
|
|
877 return list4(INLINE,cadr(e),reverse0(narg),cadddr(e));
|
|
878 }
|
|
879
|
463
|
880 extern int
|
|
881 pexpr(int e1)
|
462
|
882 {
|
|
883 int e2,e3;
|
|
884
|
463
|
885 // if (inmode) error(-1);
|
502
|
886 if (e1==0) return 0;
|
462
|
887 e2 = cadr(e1);
|
|
888 switch (car(e1)){
|
|
889 case GVAR: case RGVAR: case CRGVAR: case CURGVAR: case SRGVAR:
|
|
890 case SURGVAR: case REGISTER:
|
|
891 case DREGISTER: case FREGISTER:
|
500
|
892 case FRGVAR: case DRGVAR:
|
462
|
893 case LREGISTER:
|
500
|
894 case LRGVAR: case LURGVAR:
|
551
|
895 case CONST:
|
462
|
896 case DCONST: case FCONST:
|
|
897 case LCONST:
|
|
898 case STRING:
|
|
899 case FNAME:
|
503
|
900 case FLABEL:
|
462
|
901 return e1;
|
551
|
902 case RSTRUCT:
|
|
903 // list3(RSTRUCT,e,size)
|
|
904 return pexpr(e2);
|
|
905 case LABEL:
|
|
906 return p_label_var(e2);
|
462
|
907 case LVAR:
|
|
908 case RLVAR: case CRLVAR: case CURLVAR: case SRLVAR: case SURLVAR:
|
500
|
909 case FRLVAR: case DRLVAR:
|
|
910 case LRLVAR: case LURLVAR:
|
|
911 return e1;
|
|
912 case IVAR:
|
462
|
913 return p_lvar(e1);
|
|
914 case FUNCTION:
|
|
915 return pfunction(e1);
|
|
916 case CODE:
|
463
|
917 return list2(car(e1),pexpr(e2));
|
462
|
918 case INLINE:
|
512
|
919 return p_inline(e1);
|
462
|
920 case INDIRECT:
|
527
|
921 return pindirect(e1);
|
462
|
922 case RINDIRECT: case URINDIRECT:
|
|
923 case CRINDIRECT: case CURINDIRECT:
|
|
924 case SRINDIRECT: case SURINDIRECT:
|
|
925 case FRINDIRECT: case DRINDIRECT:
|
|
926 case LRINDIRECT: case LURINDIRECT:
|
|
927 return prindirect(e1);
|
|
928 case ADDRESS:
|
502
|
929 return paddress(e1);
|
566
|
930 case ST_OP:
|
|
931 e3=caddr(e1);
|
|
932 e1=pexpr(car(e3));
|
|
933 return binop(e2,e1,pexpr(cadr(e3)),caddr(e3),cadddr(e3));
|
462
|
934 case MINUS:
|
463
|
935 if ((e3 = pexpr(e2))==e2) return e1;
|
557
|
936 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
937 if (car(e3)==CONST) return list2(CONST,-cadr(e3));
|
|
938 return list2(car(e1),e3);
|
|
939 #if LONGLONG_CODE
|
|
940 case LMINUS:
|
463
|
941 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
942 if (car(e3)==LCONST) return llist2(LCONST,-lcadr(e3));
|
|
943 return list2(car(e1),e3);
|
|
944 #endif
|
|
945 #if FLOAT_CODE
|
|
946 case DMINUS:
|
463
|
947 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
948 if (car(e3)==DCONST) return dlist2(DCONST,-dcadr(e3));
|
|
949 if (car(e3)==FCONST) return dlist2(FCONST,-dcadr(e3));
|
|
950 return list2(car(e1),e3);
|
|
951 case FMINUS:
|
463
|
952 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
953 if (car(e3)==DCONST) return dlist2(DCONST,-dcadr(e3));
|
|
954 if (car(e3)==FCONST) return dlist2(FCONST,-dcadr(e3));
|
|
955 return list2(car(e1),e3);
|
|
956 #endif
|
|
957 case CONV:
|
501
|
958 return p_conv(caddr(e1),e2);
|
462
|
959 case BNOT: /* ~ */
|
463
|
960 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
961 if (car(e3)==CONST) return list2(CONST,~cadr(e3));
|
|
962 return list2(BNOT,e3);
|
|
963 case LNOT: /* ! */
|
463
|
964 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
965 if (car(e3)==CONST) return list2(CONST,!cadr(e3));
|
|
966 return list2(LNOT,e3);
|
|
967 case PREINC:
|
|
968 case UPREINC:
|
463
|
969 if ((e3 = pexpr(e2))==e2) return e1;
|
557
|
970 if (car(e3)==CONST) return list2(CONST,cadr(e3)+caddr(e1));
|
503
|
971 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
972 case POSTINC:
|
|
973 case UPOSTINC:
|
463
|
974 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
975 if (car(e3)==CONST) return e3;
|
503
|
976 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
977 #if FLOAT_CODE
|
|
978 case DPREINC: /* ++d */
|
463
|
979 if ((e3 = pexpr(e2))==e2) return e1;
|
|
980 if (car(e3)==FCONST) return dlist2(FCONST,dcadr(e3)+cadr(e2));
|
|
981 if (car(e3)==DCONST) return dlist2(DCONST,dcadr(e3)+cadr(e2));
|
503
|
982 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
983 case DPOSTINC: /* d++ */
|
463
|
984 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
985 if (car(e3)==FCONST||car(e3)==DCONST) return e3;
|
503
|
986 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
987 case FPREINC: /* ++f */
|
463
|
988 if ((e3 = pexpr(e2))==e2) return e1;
|
|
989 if (car(e3)==FCONST) return dlist2(FCONST,dcadr(e3)+cadr(e2));
|
|
990 if (car(e3)==DCONST) return dlist2(DCONST,dcadr(e3)+cadr(e2));
|
503
|
991 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
992 case FPOSTINC: /* f++ */
|
463
|
993 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
994 if (car(e3)==FCONST||car(e3)==DCONST) return e3;
|
503
|
995 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
996 #endif
|
|
997 #if LONGLONG_CODE
|
|
998 case LPREINC: /* ++d */
|
|
999 case LUPREINC: /* ++d */
|
463
|
1000 if ((e3 = pexpr(e2))==e2) return e1;
|
|
1001 if (car(e3)==LCONST) return llist2(LCONST,lcadr(e3)+cadr(e2));
|
503
|
1002 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
1003 case LPOSTINC: /* d++ */
|
|
1004 case LUPOSTINC: /* d++ */
|
463
|
1005 if ((e3 = pexpr(e2))==e2) return e1;
|
462
|
1006 if (car(e3)==LCONST) return e3;
|
503
|
1007 return list4(car(e1),e3,caddr(e1),cadddr(e1));
|
462
|
1008 #endif
|
|
1009 case MUL: case UMUL:
|
|
1010 case DIV: case UDIV:
|
|
1011 case MOD: case UMOD:
|
|
1012 case LSHIFT: case ULSHIFT: case RSHIFT: case URSHIFT:
|
|
1013 case ADD: case SUB: case BAND: case EOR: case BOR: case CMP: case CMPGE:
|
|
1014 case UCMP: case CMPEQ: case CMPNEQ: case UCMPGE:
|
|
1015 #if FLOAT_CODE
|
|
1016 case DMUL: case DDIV:
|
|
1017 case DADD: case DSUB:
|
|
1018 case DCMP: case DCMPGE: case DCMPEQ: case DCMPNEQ:
|
|
1019 case FMUL: case FDIV:
|
|
1020 case FADD: case FSUB:
|
|
1021 case FCMP: case FCMPGE: case FCMPEQ: case FCMPNEQ:
|
|
1022 #endif
|
|
1023 #if LONGLONG_CODE
|
|
1024 case LMUL: case LUMUL:
|
|
1025 case LDIV: case LUDIV:
|
|
1026 case LMOD: case LUMOD:
|
|
1027 case LLSHIFT: case LULSHIFT: case LRSHIFT: case LURSHIFT:
|
|
1028 case LADD: case LSUB: case LBAND: case LEOR: case LBOR: case LCMP:
|
|
1029 #endif
|
501
|
1030 return pbinop(car(e1),e2,caddr(e1));
|
557
|
1031 // relational operator
|
|
1032 case GT: case UGT: case GE: case UGE: case LT:
|
|
1033 case ULT: case LE: case ULE:
|
|
1034 case LOP+GT: case LOP+UGT: case LOP+GE: case LOP+UGE: case LOP+LT:
|
|
1035 case LOP+ULT: case LOP+LE: case LOP+ULE:
|
|
1036 case DOP+GT: case DOP+GE: case DOP+LT: case DOP+LE:
|
|
1037 case FOP+GT: case FOP+GE: case FOP+LT: case FOP+LE:
|
|
1038 case FOP+EQ: case FOP+NEQ:
|
|
1039 case EQ: case NEQ: case DOP+EQ: case DOP+NEQ:
|
|
1040 case LOP+EQ: case LOP+NEQ:
|
|
1041 return pbinop(car(e1),e2,caddr(e1));
|
|
1042 case LAND:
|
|
1043 return pland(car(e1),cadr(e1),caddr(e1));
|
|
1044 case LOR:
|
|
1045 return plor(car(e1),cadr(e1),caddr(e1));
|
528
|
1046 case LCOND: case DCOND: case FCOND: case COND: case UCOND: case LUCOND:
|
555
|
1047 e2 = pexpr(e2);
|
|
1048 if (car(e2)==CONST) return
|
|
1049 caddr(e1)? pexpr(cadr(e2)?caddr(e1):cadddr(e1)) :
|
|
1050 pexpr(cadr(e2)?e2:cadddr(e1)); // GNU extension h?:g
|
|
1051 e3=pexpr(caddr(e1));
|
|
1052 return list4(car(e1),e2,e3,pexpr(cadddr(e1)));
|
462
|
1053 case STASS:
|
|
1054 return psassign(e1);
|
|
1055 case ASS: case CASS: case SASS:
|
|
1056 return passign(e1);
|
|
1057 case SASSOP: case SUASSOP:
|
|
1058 case ASSOP: case CASSOP: case CUASSOP:
|
|
1059 return passop(e1);
|
|
1060 #if FLOAT_CODE
|
|
1061 case FASS: case DASS:
|
|
1062 return pdassign(e1);
|
|
1063 case DASSOP: case FASSOP:
|
|
1064 return pdassop(e1);
|
|
1065 #endif
|
|
1066 #if LONGLONG_CODE
|
|
1067 case LASS:
|
|
1068 return plassign(e1);
|
|
1069 case LASSOP: case LUASSOP:
|
|
1070 return plassop(e1);
|
|
1071 #endif
|
|
1072 case ALLOCA:
|
501
|
1073 return palloc(e2);
|
462
|
1074 case BUILTINP:
|
463
|
1075 return list2(CONST,is_const(pexpr(e2)));
|
462
|
1076 case COMMA:
|
555
|
1077 return pcomma(e2,caddr(e1));
|
462
|
1078 case RETURN:
|
|
1079 case ENVIRONMENT:
|
|
1080 case LCALL:
|
|
1081 return e1;
|
|
1082 #if BIT_FIELD_CODE
|
|
1083 case RBIT_FIELD:
|
|
1084 return prbit_field(e1);
|
553
|
1085 case BIT_FIELD:
|
|
1086 return list3(BIT_FIELD,pexpr(e2),caddr(e1));
|
462
|
1087 case BASS:
|
|
1088 return pbassign(e1);
|
|
1089 case BPREINC:
|
|
1090 case BPOSTINC:
|
|
1091 case BASSOP:
|
|
1092 return pbassop(e1);
|
|
1093 #endif
|
|
1094 #if ASM_CODE
|
|
1095 case ASM:
|
|
1096 return list3(ASM,list4(
|
501
|
1097 car(e2),cadr(e2),caddr(e2),cadddr(e2)),
|
|
1098 caddr(e1));
|
462
|
1099 #endif
|
|
1100 case ST_DECL: return p_decl(e1);
|
|
1101 case ST_IF: return p_if(e1);
|
|
1102 case ST_DO: return p_do(e1);
|
|
1103 case ST_WHILE: return p_while(e1);
|
|
1104 case ST_FOR: return p_for(e1);
|
|
1105 case ST_SWITCH: return p_switch(e1);
|
|
1106 case ST_COMP: return p_comp(e1);
|
|
1107 case ST_BREAK: return p_break(e1);
|
|
1108 case ST_CONTINUE: return p_continue(e1);
|
|
1109 case ST_CASE: return p_case(e1);
|
|
1110 case ST_DEFAULT: return p_default(e1);
|
|
1111 case ST_RETURN: return p_return(e1);
|
|
1112 case ST_GOTO: return p_goto(e1);
|
|
1113 case ST_ASM: return p_asm(e1);
|
|
1114 case ST_LABEL: return p_label(e1);
|
|
1115 case ST_COMMENT: return p_comment(e1);
|
|
1116 default:
|
551
|
1117 error(-1);
|
462
|
1118 return p_bool(e1);
|
|
1119 }
|
|
1120 return VOID;
|
|
1121 }
|
|
1122
|
557
|
1123 static int
|
|
1124 replace_inline_parameter(NMTBL *anptr,int t,int e4,int narg,int evals)
|
|
1125 {
|
|
1126 int arg;
|
|
1127 if (has_attr(anptr,KONST) && !has_attr(anptr,HAS_ADDRESS)) {
|
|
1128 if (is_memory(e4)) {
|
|
1129 heap[pdisp+narg]=reference(e4);
|
|
1130 return evals;
|
|
1131 } else if (is_const(e4)) {
|
|
1132 heap[pdisp+narg]=e4;
|
|
1133 return evals;
|
|
1134 }
|
|
1135 }
|
|
1136 arg = heap[pdisp+narg]=list3(LVAR,new_lvar(size(t)),0);
|
|
1137 inline_lvars = glist2(arg,inline_lvars);
|
|
1138 evals=list2(assign_expr0(arg,e4,anptr->ty,t),evals);
|
|
1139 return evals;
|
|
1140 }
|
|
1141
|
|
1142 /*
|
|
1143 setup parameter replacement of inline call
|
|
1144 */
|
|
1145
|
|
1146 static void
|
|
1147 enter_inline(NMTBL *n, int e)
|
|
1148 {
|
|
1149 int e1 = attr_value(n,INLINE);
|
|
1150 int arg_disp = cadr(e1); // number of arguments
|
|
1151 int narg,e3,e4, e5, fargtype;
|
|
1152 int evals = 0;
|
|
1153 int t;
|
|
1154 NMTBL *anptr;
|
|
1155
|
|
1156 fnptr = n; // st_return see this
|
|
1157 pvartable = p_vartable(arg_disp, /* number of arg */
|
|
1158 caddr(e1) /* number of local parameter */);
|
|
1159
|
|
1160 /* function arguments type */
|
|
1161 fargtype = n->dsp; // we cannot do destruct reverse here
|
463
|
1162
|
557
|
1163 /* inline function arguments */
|
|
1164 narg = 0;
|
|
1165 if (!fargtype) {
|
|
1166 goto no_args; // wrong number of arguments
|
|
1167 }
|
|
1168 for (e3 = e5 = reverse0(caddr(e)); e3; e3 = cadr(e3)) {
|
|
1169 anptr = (NMTBL*)caddr(fargtype);
|
|
1170 if (!anptr) break; // should not happen?
|
|
1171 t=caddr(e3); // type
|
|
1172 e4 = car(e3);
|
|
1173 evals = replace_inline_parameter(anptr,t,e4,narg,evals);
|
|
1174 narg ++;
|
|
1175 fargtype = cadr(fargtype);
|
|
1176 }
|
|
1177 caddr(e) = reverse0(e5); // make it normal
|
|
1178 if (eval_order==NORMAL) evals = reverse0(evals);
|
|
1179 for(;evals;evals=cadr(evals)) {
|
|
1180 g_expr_u(car(evals));
|
|
1181 }
|
|
1182 no_args:
|
|
1183 return;
|
|
1184 }
|
|
1185
|
|
1186 /*
|
|
1187 pass local static variable list to our parents
|
|
1188 clean up and free used inline parameters
|
|
1189 */
|
|
1190
|
|
1191 static void
|
|
1192 leave_inline(int e1)
|
|
1193 {
|
|
1194 NMTBL *n;
|
|
1195 NMTBL *local_statics = (NMTBL*)cadddr(e1); // local static list
|
|
1196
|
|
1197 if (retcont) error(STERR); // inline can't handle return/environment
|
|
1198
|
|
1199 if (local_statics && local_statics != &null_nptr) {
|
|
1200 // append our local static variables to the parent list
|
|
1201 n = local_statics;
|
|
1202 while(n->next != &null_nptr) n=n->next;
|
|
1203 n->next = local_static_list; local_static_list = local_statics;
|
|
1204 cadddr(e1) = 0; // prevent duplicate initialize
|
|
1205 }
|
|
1206 while(inline_lvars) {
|
|
1207 int e;
|
|
1208 int l = car(inline_lvars);
|
|
1209 switch(car(l)) {
|
|
1210 case LVAR: free_lvar(cadr(l)); break;
|
|
1211 case REGISTER: case DREGISTER:
|
|
1212 case FREGISTER: case LREGISTER:
|
|
1213 free_register(cadr(l));
|
|
1214 }
|
|
1215 e = cadr(inline_lvars);
|
|
1216 free_glist2(inline_lvars);
|
|
1217 inline_lvars = e;
|
|
1218 }
|
|
1219 }
|
530
|
1220
|
463
|
1221 extern int
|
|
1222 gen_inline(int e)
|
462
|
1223 {
|
514
|
1224 // these saved value should be some struct
|
|
1225 int sretlabel;
|
|
1226 NMTBL *sfnptr;
|
552
|
1227 int svartable;
|
|
1228 int sretcont;
|
513
|
1229 int scslabel = cslabel;
|
463
|
1230 int sdisp = pdisp;
|
552
|
1231 int sret_register;
|
|
1232 int sret_reg_mode;
|
|
1233 int sinline_lvars;
|
|
1234 int slfree;
|
531
|
1235 // int slreg_count=lreg_count;
|
513
|
1236
|
463
|
1237 NMTBL *n = (NMTBL*)cadr(cadr(e));
|
|
1238 int e1 = attr_value(n,INLINE);
|
500
|
1239 int parse = car(e1); // inline parse tree
|
557
|
1240 int dots;
|
508
|
1241 int ret_type = function_type(cadddr(e),&dots);
|
463
|
1242
|
552
|
1243 checkret();
|
|
1244 checkjmp(-1);
|
|
1245
|
|
1246 svartable = pvartable;
|
|
1247 sretcont = retcont;
|
|
1248 scslabel = cslabel;
|
|
1249 sdisp = pdisp;
|
|
1250 sret_register = ret_register;
|
|
1251 sret_reg_mode = ret_reg_mode;
|
|
1252 sinline_lvars = inline_lvars;
|
|
1253 slfree=lfree;
|
|
1254 // int slreg_count=lreg_count;
|
514
|
1255
|
|
1256 sretlabel = retlabel;
|
|
1257 sfnptr = fnptr;
|
513
|
1258 retcont = 0;
|
|
1259 cslabel = -1;
|
|
1260 retpending = 0;
|
514
|
1261 ret_reg_mode = 0;
|
|
1262 ret_register = 5555;
|
527
|
1263 inline_lvars = 0;
|
514
|
1264 retlabel = fwdlabel();
|
513
|
1265
|
557
|
1266 enter_inline(n,e);
|
526
|
1267
|
557
|
1268 // partial evaluation of parse tree
|
|
1269 // constant propergation, etc.
|
|
1270 parse = pexpr(parse);
|
463
|
1271 pdisp = sdisp;
|
464
|
1272 pvartable = svartable;
|
513
|
1273
|
557
|
1274 // generate code if necessary
|
513
|
1275 if (ret_type!=VOID)
|
557
|
1276 g_expr0(parse);
|
513
|
1277 else
|
557
|
1278 g_expr_u(parse);
|
|
1279
|
524
|
1280 checkret();
|
513
|
1281 fwddef(retlabel);
|
514
|
1282 control=1;
|
513
|
1283
|
557
|
1284 leave_inline(e1);
|
510
|
1285
|
513
|
1286 fnptr = sfnptr;
|
|
1287 retlabel = sretlabel;
|
|
1288 retcont = sretcont;
|
|
1289 cslabel = scslabel;
|
514
|
1290 ret_register = sret_register;
|
|
1291 ret_reg_mode = sret_reg_mode;
|
527
|
1292 inline_lvars = sinline_lvars;
|
528
|
1293 lfree=slfree;
|
513
|
1294
|
508
|
1295 return ret_type;
|
462
|
1296 }
|
|
1297
|
|
1298 /* end */
|