annotate mc-inline.c @ 696:7f0f92380714

code segment parse tree fix (incomplete)
author kono
date Sat, 20 Oct 2007 15:40:29 +0900
parents 3e69986a7b82
children e31cba38f7fc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
462
kono
parents:
diff changeset
1 /* Micro-C Partial Evaluator Part */
kono
parents:
diff changeset
2
607
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
3 /************************************************************************
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
4 ** Copyright (C) 2006 Shinji Kono
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
5 ** 連絡先: 琉球大学情報工学科 河野 真治
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
6 ** (E-Mail Address: kono@ie.u-ryukyu.ac.jp)
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
7 **
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
8 ** このソースのいかなる複写,改変,修正も許諾します。ただし、
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
9 ** その際には、誰が貢献したを示すこの部分を残すこと。
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
10 ** 再配布や雑誌の付録などの問い合わせも必要ありません。
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
11 ** 営利利用も上記に反しない範囲で許可します。
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
12 ** バイナリの配布の際にはversion messageを保存することを条件とします。
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
13 ** このプログラムについては特に何の保証もしない、悪しからず。
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
14 **
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
15 ** Everyone is permitted to do anything on this program
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
16 ** including copying, modifying, improving,
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
17 ** as long as you don't try to pretend that you wrote it.
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
18 ** i.e., the above copyright notice has to appear in all copies.
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
19 ** Binary distribution requires original version messages.
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
20 ** You don't have to ask before copying, redistribution or publishing.
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
21 ** THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.
e055df7c1082 *** empty log message ***
kono
parents: 601
diff changeset
22 ***********************************************************************/
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
23
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
24 /*
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
25
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
26 Inline handler
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
27
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
28 inline code is stored as parse tree
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
29 expr already has parse tree
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
30 statement part is handled here
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
31
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
32 st_hoge() code generator (called from gexpr())
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
33 p_hoge() partial evaluator called in gen_inline()
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
34 after p_hoge(), it contains no ST_* node.
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
35
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
36 PVAR has an offset for pvartable, it can be
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
37 constant, local variable or global variable
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
38 other complex expression is evaluated before the code expansion
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
39
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
40 We always perform inline expansion.
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
41 Non static inline function can be referenced from other. Real
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
42 function body is generated by pfdecl() in mc-parse.c.
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
43
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
44 */
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
45
462
kono
parents:
diff changeset
46 #include <stdio.h>
kono
parents:
diff changeset
47 #include "mc.h"
kono
parents:
diff changeset
48 #include "mc-parse.h"
kono
parents:
diff changeset
49 #include "mc-codegen.h"
kono
parents:
diff changeset
50 #include "mc-switch.h"
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
51 #include "mc-code.h"
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
52 #include "mc-inline.h"
462
kono
parents:
diff changeset
53
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
54 static int pvartable;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
55 static int pdisp;
462
kono
parents:
diff changeset
56
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
57 static int ret_register,ret_reg_mode;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
58
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
59 static int inline_lvars;
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
60
462
kono
parents:
diff changeset
61 /*
kono
parents:
diff changeset
62 Basic code generator from parse tree
kono
parents:
diff changeset
63 */
kono
parents:
diff changeset
64
kono
parents:
diff changeset
65 extern void
kono
parents:
diff changeset
66 st_decl(int e1){
kono
parents:
diff changeset
67 // NMTBL *n = (NMTBL *)caddr(e1);
kono
parents:
diff changeset
68 // int stmode = cadddr(e1);
kono
parents:
diff changeset
69 }
kono
parents:
diff changeset
70
kono
parents:
diff changeset
71 extern void
kono
parents:
diff changeset
72 st_if(int e1){
kono
parents:
diff changeset
73 int l1,l2,slfree;
kono
parents:
diff changeset
74 int e2=caddr(e1),e3;
kono
parents:
diff changeset
75 // conv->if_();
kono
parents:
diff changeset
76 slfree=lfree;
kono
parents:
diff changeset
77 checkret();
kono
parents:
diff changeset
78 l1 = bexpr(car(e2),0,fwdlabel());
kono
parents:
diff changeset
79 // conv->if_then_();
kono
parents:
diff changeset
80 g_expr_u(cadr(e2));
kono
parents:
diff changeset
81 checkret();
kono
parents:
diff changeset
82 if ((e3=caddr(e2))) { // else
kono
parents:
diff changeset
83 // conv->if_else_();
kono
parents:
diff changeset
84 if ((l2 = control))
kono
parents:
diff changeset
85 gen_jmp(l2=fwdlabel());
kono
parents:
diff changeset
86 fwddef(l1);
kono
parents:
diff changeset
87 g_expr_u(e3);
kono
parents:
diff changeset
88 checkret();
kono
parents:
diff changeset
89 if (l2) fwddef(l2);
kono
parents:
diff changeset
90 } else {
kono
parents:
diff changeset
91 fwddef(l1);
kono
parents:
diff changeset
92 }
kono
parents:
diff changeset
93 // conv->if_endif_();
kono
parents:
diff changeset
94 }
kono
parents:
diff changeset
95
kono
parents:
diff changeset
96
kono
parents:
diff changeset
97 extern void
kono
parents:
diff changeset
98 st_do(int e1){
kono
parents:
diff changeset
99 int sbreak,scontinue,l;
kono
parents:
diff changeset
100
kono
parents:
diff changeset
101 sbreak=blabel;
kono
parents:
diff changeset
102 scontinue=clabel;
kono
parents:
diff changeset
103 blabel=fwdlabel();
kono
parents:
diff changeset
104 clabel=fwdlabel();
kono
parents:
diff changeset
105 control=1;
kono
parents:
diff changeset
106 checkret();
kono
parents:
diff changeset
107 l=backdef();
kono
parents:
diff changeset
108 // conv->dowhile_();
kono
parents:
diff changeset
109 g_expr_u(cadddr(e1));
kono
parents:
diff changeset
110 checkret();
kono
parents:
diff changeset
111 // conv->dowhile_cond_();
kono
parents:
diff changeset
112 bexpr(caddr(e1),1,l);
kono
parents:
diff changeset
113 // conv->dowhile_end_();
kono
parents:
diff changeset
114 fwddef(blabel);
kono
parents:
diff changeset
115 clabel=scontinue;
kono
parents:
diff changeset
116 blabel=sbreak;
kono
parents:
diff changeset
117 }
kono
parents:
diff changeset
118
kono
parents:
diff changeset
119
kono
parents:
diff changeset
120 extern void
kono
parents:
diff changeset
121 st_while(int e1){
kono
parents:
diff changeset
122 int sbreak,scontinue,e;
kono
parents:
diff changeset
123
kono
parents:
diff changeset
124 sbreak=blabel;
kono
parents:
diff changeset
125 scontinue=clabel;
kono
parents:
diff changeset
126 blabel=fwdlabel();
kono
parents:
diff changeset
127 control=1;
kono
parents:
diff changeset
128 checkret();
kono
parents:
diff changeset
129 clabel=backdef();
kono
parents:
diff changeset
130 // conv->while_();
kono
parents:
diff changeset
131 // conv->while_body_();
kono
parents:
diff changeset
132 if(!(e=cadddr(e1))) {
kono
parents:
diff changeset
133 bexpr(caddr(e1),1,clabel);
kono
parents:
diff changeset
134 // conv->sm_();
kono
parents:
diff changeset
135 } else {
kono
parents:
diff changeset
136 bexpr(caddr(e1),0,blabel);
kono
parents:
diff changeset
137 g_expr_u(e);
kono
parents:
diff changeset
138 checkret();
kono
parents:
diff changeset
139 if(control)
kono
parents:
diff changeset
140 gen_jmp(clabel);
kono
parents:
diff changeset
141 }
kono
parents:
diff changeset
142 // conv->while_end_();
kono
parents:
diff changeset
143 fwddef(blabel);
kono
parents:
diff changeset
144 clabel=scontinue;
kono
parents:
diff changeset
145 blabel=sbreak;
kono
parents:
diff changeset
146 }
kono
parents:
diff changeset
147
kono
parents:
diff changeset
148
kono
parents:
diff changeset
149 extern void
kono
parents:
diff changeset
150 st_for(int e1){
kono
parents:
diff changeset
151 int p0,p1,p2,body;
kono
parents:
diff changeset
152 int l,e;
kono
parents:
diff changeset
153 int sbreak=blabel;
kono
parents:
diff changeset
154 int scontinue=clabel;
kono
parents:
diff changeset
155
kono
parents:
diff changeset
156 e = caddr(e1);
kono
parents:
diff changeset
157 p0 = car(e); p1 = cadr(e); p2 = caddr(e); body = cadddr(e);
kono
parents:
diff changeset
158
kono
parents:
diff changeset
159 blabel=fwdlabel();
kono
parents:
diff changeset
160 // conv->for_();
kono
parents:
diff changeset
161 if (p0) {
kono
parents:
diff changeset
162 checkret();
kono
parents:
diff changeset
163 g_expr_u(p0);
kono
parents:
diff changeset
164 }
kono
parents:
diff changeset
165 // conv->for1_();
kono
parents:
diff changeset
166 control=1;
kono
parents:
diff changeset
167 checkret();
kono
parents:
diff changeset
168 l=backdef();
kono
parents:
diff changeset
169 if (p1) {
kono
parents:
diff changeset
170 bexpr(p1,0,blabel);
kono
parents:
diff changeset
171 }
kono
parents:
diff changeset
172 // conv->for2_();
kono
parents:
diff changeset
173 // conv->for_body_();
kono
parents:
diff changeset
174 if (!p2) {
kono
parents:
diff changeset
175 clabel=l;
kono
parents:
diff changeset
176 g_expr_u(body);
kono
parents:
diff changeset
177 checkret();
kono
parents:
diff changeset
178 } else {
kono
parents:
diff changeset
179 clabel=fwdlabel();
kono
parents:
diff changeset
180 g_expr_u(body);
kono
parents:
diff changeset
181 checkret();
kono
parents:
diff changeset
182 fwddef(clabel);
kono
parents:
diff changeset
183 g_expr_u(p2);
kono
parents:
diff changeset
184 }
kono
parents:
diff changeset
185 // conv->for_end_();
kono
parents:
diff changeset
186 gen_jmp(l);
kono
parents:
diff changeset
187 fwddef(blabel);
kono
parents:
diff changeset
188 clabel=scontinue;
kono
parents:
diff changeset
189 blabel=sbreak;
kono
parents:
diff changeset
190 }
kono
parents:
diff changeset
191
kono
parents:
diff changeset
192
kono
parents:
diff changeset
193 extern void
kono
parents:
diff changeset
194 st_switch(int e1){
kono
parents:
diff changeset
195 int sbreak,scase,sdefault,slfree,svalue,slist;
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
196 int cst,e;
462
kono
parents:
diff changeset
197
kono
parents:
diff changeset
198 checkret();
kono
parents:
diff changeset
199 slist = cslist;
kono
parents:
diff changeset
200 cslist = 0;
kono
parents:
diff changeset
201 sbreak=blabel; /* save parents break label */
kono
parents:
diff changeset
202 blabel=fwdlabel();
kono
parents:
diff changeset
203 sdefault=dlabel; /* save parents default label */
kono
parents:
diff changeset
204 dlabel=0;
kono
parents:
diff changeset
205 scase=cslabel; /* save parents next case label */
kono
parents:
diff changeset
206 // conv->switch_();
kono
parents:
diff changeset
207 slfree=lfree;
kono
parents:
diff changeset
208 svalue=csvalue1; /* save parents switch value */
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
209 e =caddr(e1); /* switch value */
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
210 if (car(e)==CONST) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
211 cst = 1;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
212 csvalue1=glist2(CONST,cadr(e));
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
213 gen_jmp( cslabel=fwdlabel());
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
214 } else {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
215 cst = 0;
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
216 g_expr(e); /* switch value */
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
217 csvalue1=csvalue() ;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
218 cslabel = control = 0;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
219 }
462
kono
parents:
diff changeset
220 // conv->switch_body_();
kono
parents:
diff changeset
221 g_expr_u(cadddr(e1));
kono
parents:
diff changeset
222 // conv->switch_end_();
kono
parents:
diff changeset
223 checkret();
kono
parents:
diff changeset
224 #if CASE_CODE
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
225 if (!cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
226 if (control) gen_jmp(blabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
227 genswitch(cslist,cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
228 } else if (!cslist) {
648
234bc5f79a11 alignement attribute (working)
kono
parents: 625
diff changeset
229 if(dlabel) df_label(cslabel,dlabel);
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
230 else fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
231 }
462
kono
parents:
diff changeset
232 #else
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
233 if (!(cst && cslist)) {
648
234bc5f79a11 alignement attribute (working)
kono
parents: 625
diff changeset
234 if(dlabel) df_label(cslabel,dlabel);
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
235 else fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
236 }
462
kono
parents:
diff changeset
237 #endif
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
238 free_glist2(csvalue1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
239 if (cst && !cslist) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
240 if(pending_jmp!=cslabel)
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
241 fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
242 else pending_jmp = 0; // cslabel is here
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
243 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
244 fwddef(blabel);
462
kono
parents:
diff changeset
245 csvalue1=svalue;
kono
parents:
diff changeset
246 cslabel=scase;
kono
parents:
diff changeset
247 dlabel=sdefault;
kono
parents:
diff changeset
248 blabel=sbreak;
kono
parents:
diff changeset
249 cslist = slist;
kono
parents:
diff changeset
250 }
kono
parents:
diff changeset
251
kono
parents:
diff changeset
252
kono
parents:
diff changeset
253 extern void
kono
parents:
diff changeset
254 st_comp(int e1){
kono
parents:
diff changeset
255 g_expr_u(caddr(e1));
kono
parents:
diff changeset
256 }
kono
parents:
diff changeset
257
kono
parents:
diff changeset
258
kono
parents:
diff changeset
259 extern void
kono
parents:
diff changeset
260 st_break(int e1){
kono
parents:
diff changeset
261 checkret();
kono
parents:
diff changeset
262 // conv->break_();
kono
parents:
diff changeset
263 if (control)
kono
parents:
diff changeset
264 gen_jmp(blabel);
kono
parents:
diff changeset
265 }
kono
parents:
diff changeset
266
kono
parents:
diff changeset
267
kono
parents:
diff changeset
268 extern void
kono
parents:
diff changeset
269 st_continue(int e1){
kono
parents:
diff changeset
270 checkret();
kono
parents:
diff changeset
271 // conv->continue_();
kono
parents:
diff changeset
272 if (control) gen_jmp(clabel);
kono
parents:
diff changeset
273 }
kono
parents:
diff changeset
274
kono
parents:
diff changeset
275
kono
parents:
diff changeset
276 extern void
kono
parents:
diff changeset
277 st_case(int e1){
kono
parents:
diff changeset
278 #if CASE_CODE
569
1fcad06b264a gcc4 (ia32)
kono
parents: 566
diff changeset
279 int l=0,clist=caddr(e1),c;
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
280 int cst = (car(csvalue1)==CONST);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
281 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
282 c=cadr(csvalue1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
283 for(;clist;clist=cadr(clist)) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
284 if (car(clist)==c) break;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
285 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
286 if (!clist) return; // no match
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
287 } else
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
288 l = fwdlabel();
462
kono
parents:
diff changeset
289 if (retpending) {
kono
parents:
diff changeset
290 ret(); retpending=0;
kono
parents:
diff changeset
291 }
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
292 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
293 if (cslist) { // may duplicat csvalue
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
294 return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
295 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
296 cslist=1;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
297 fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
298 return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
299 }
462
kono
parents:
diff changeset
300 if (!cslabel) {
kono
parents:
diff changeset
301 if (!control) {
kono
parents:
diff changeset
302 cmpdimm(car(clist),csvalue1,cslabel=fwdlabel(),1);
kono
parents:
diff changeset
303 caddr(clist)=0;
kono
parents:
diff changeset
304 } else {
kono
parents:
diff changeset
305 error(-1);
kono
parents:
diff changeset
306 }
kono
parents:
diff changeset
307 }
kono
parents:
diff changeset
308 while(clist) {
kono
parents:
diff changeset
309 caddr(clist) = l;
kono
parents:
diff changeset
310 clist = cadr(c=clist); cadr(c) = 0; // insert destroy cadr of clist
kono
parents:
diff changeset
311 cslist=insert_ascend(cslist,c,docase_eq);
kono
parents:
diff changeset
312 }
kono
parents:
diff changeset
313 fwddef(l);
kono
parents:
diff changeset
314 control=1;
kono
parents:
diff changeset
315 #else
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
316 int c,clist,l;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
317 int cst = (car(csvalue1)==CONST);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
318 clist = caddr(e1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
319 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
320 c=cadr(csvalue1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
321 for(;clist;clist=cadr(clist)) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
322 if (car(clist)==c) break; // no match
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
323 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
324 if (!clist) return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
325 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
326 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
327 if (!cslist) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
328 if (retpending) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
329 ret(); retpending=0;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
330 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
331 fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
332 cslist = 1;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
333 } // else error(CSERR);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
334 return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
335 }
462
kono
parents:
diff changeset
336 if (retpending) {
kono
parents:
diff changeset
337 ret(); retpending=0;
kono
parents:
diff changeset
338 }
kono
parents:
diff changeset
339 l=fwdlabel();
kono
parents:
diff changeset
340 if (control) {
kono
parents:
diff changeset
341 control=0;
kono
parents:
diff changeset
342 gen_jmp(l);
kono
parents:
diff changeset
343 }
kono
parents:
diff changeset
344 if (cslabel) fwddef(cslabel);
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
345 while(cadr(clist)) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
346 cmpdimm(car(clist),csvalue1,l,0);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
347 clist=cadr(clist);
462
kono
parents:
diff changeset
348 }
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
349 cmpdimm(car(clist),csvalue1,cslabel=fwdlabel(),1);
462
kono
parents:
diff changeset
350 if (l) fwddef(l);
kono
parents:
diff changeset
351 #endif
kono
parents:
diff changeset
352 }
kono
parents:
diff changeset
353
kono
parents:
diff changeset
354
kono
parents:
diff changeset
355 extern void
kono
parents:
diff changeset
356 st_default(int e1){
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
357 // int cst = (car(csvalue1)==CONST);
462
kono
parents:
diff changeset
358 control=1;
kono
parents:
diff changeset
359 checkret();
kono
parents:
diff changeset
360 if (dlabel) error(STERR); // double default:
kono
parents:
diff changeset
361 dlabel = backdef();
kono
parents:
diff changeset
362 // conv->case_(0,1);
kono
parents:
diff changeset
363 }
kono
parents:
diff changeset
364
kono
parents:
diff changeset
365
kono
parents:
diff changeset
366 extern void
kono
parents:
diff changeset
367 st_return(int e1){
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
368 int e,t;
462
kono
parents:
diff changeset
369
kono
parents:
diff changeset
370 if (!cslabel) gen_jmp(cslabel = fwdlabel());
kono
parents:
diff changeset
371 if(!(e=caddr(e1))) {
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
372 // no return value
462
kono
parents:
diff changeset
373 retpending = 1;
kono
parents:
diff changeset
374 return;
kono
parents:
diff changeset
375 }
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
376 t = type_value(cadr(fnptr->ty));
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
377 if (t>0 && (car(t)==STRUCT || car(t)==UNION)) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
378 // copy is included in e, pass the pointer
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
379 t = list2(POINTER,type_value(cadr(fnptr->ty)));
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
380 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
381 g_expr(e);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
382 if (ret_reg_mode==0) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
383 // return value register is not fixed
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
384 ret_reg_mode=1;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
385 ret_register = code_get_fixed_creg(USE_CREG,t);
462
kono
parents:
diff changeset
386 } else {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
387 code_set_fixed_creg(ret_register,1,t);
462
kono
parents:
diff changeset
388 }
kono
parents:
diff changeset
389 // conv->return_end_();
kono
parents:
diff changeset
390 retpending = 1;
kono
parents:
diff changeset
391 }
kono
parents:
diff changeset
392
kono
parents:
diff changeset
393 extern void
kono
parents:
diff changeset
394 st_goto(int e){
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
395 int e1;
462
kono
parents:
diff changeset
396
kono
parents:
diff changeset
397 checkret();
kono
parents:
diff changeset
398 e1 = caddr(e);
kono
parents:
diff changeset
399 if (car(e1)==RINDIRECT) {
kono
parents:
diff changeset
400 gen_indirect_goto(cadr(e1));
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
401 return ;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
402 } else if (car(e1)==RLVAR) {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
403 gen_indirect_goto(e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
404 return ;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
405 } else if (car(e1)==LVAR||car(e1)==FLABEL) {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
406 gen_jmp(cadr(e1));
462
kono
parents:
diff changeset
407 control=0;
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
408 return ;
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
409 } else if (car(e1)==JUMP) {
462
kono
parents:
diff changeset
410 /* CbC continuation */
kono
parents:
diff changeset
411 // conv->jump_(env);
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
412 // should be separate function
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
413 jump(cadr(e1),caddr(e1));
462
kono
parents:
diff changeset
414 control=0;
kono
parents:
diff changeset
415 // conv->sm_();
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
416 return ;
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
417 } else {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
418 error(-1);
462
kono
parents:
diff changeset
419 }
kono
parents:
diff changeset
420 }
kono
parents:
diff changeset
421
kono
parents:
diff changeset
422
kono
parents:
diff changeset
423 #if ASM_CODE
kono
parents:
diff changeset
424 extern void
kono
parents:
diff changeset
425 st_asm(int e1){
kono
parents:
diff changeset
426 checkret();
kono
parents:
diff changeset
427 g_expr_u(list3(ASM,caddr(e1),cadddr(e1)));
kono
parents:
diff changeset
428 }
kono
parents:
diff changeset
429 #endif
kono
parents:
diff changeset
430
kono
parents:
diff changeset
431
kono
parents:
diff changeset
432 extern void
kono
parents:
diff changeset
433 st_label(int e1){
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
434 int lb = caddr(e1);
462
kono
parents:
diff changeset
435 control=1;
kono
parents:
diff changeset
436 checkret();
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
437 if (car(lb)==LVAR) { // label variable case
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
438 } else if (car(lb)!=FLABEL) error(-1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
439 fwddef(cadr(lb));
462
kono
parents:
diff changeset
440 }
kono
parents:
diff changeset
441
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
442 static
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
443 char *plinebuf; // last comment in parse tree (for compiler debug)
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
444
462
kono
parents:
diff changeset
445 extern void
kono
parents:
diff changeset
446 st_comment(int e1){
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
447 glineno++;
585
a5b902b20300 ia32 reconfigure end (correct?)
kono
parents: 574
diff changeset
448 printf("## %d ",glineno);
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
449 gen_comment(plinebuf=(char *)caddr(e1));
462
kono
parents:
diff changeset
450 }
kono
parents:
diff changeset
451
kono
parents:
diff changeset
452 /*
kono
parents:
diff changeset
453 partial evaluator
kono
parents:
diff changeset
454 */
kono
parents:
diff changeset
455
kono
parents:
diff changeset
456 static int
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
457 p_vartable(int adisp,int ldisp)
462
kono
parents:
diff changeset
458 {
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
459 int i;
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
460 int pvartable = getfree(adisp-ldisp); // have to be local heap
509
e58848f6ebc1 inline continue...
kono
parents: 508
diff changeset
461 pdisp = pvartable-ldisp;
e58848f6ebc1 inline continue...
kono
parents: 508
diff changeset
462 for(i=ldisp;i<0;i++) {
e58848f6ebc1 inline continue...
kono
parents: 508
diff changeset
463 heap[pdisp+i] = 0;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
464 }
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
465 return pvartable;
462
kono
parents:
diff changeset
466 }
kono
parents:
diff changeset
467
kono
parents:
diff changeset
468 static int
kono
parents:
diff changeset
469 p_lvar(int e1)
kono
parents:
diff changeset
470 {
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
471 int sz = is_memory(e1);
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
472 int d = cadr(e1);
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
473 int d1,e;
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
474 if ((d1=(heap[pdisp+d]))) return d1;
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
475 fprintf(stderr,"## undeclared ivar %d\n",d);
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
476 // error(-1);
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
477 e = heap[pdisp+d]=list3(LVAR,new_lvar(sz),0);
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
478 inline_lvars = glist2(e,inline_lvars);
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
479 return e;
462
kono
parents:
diff changeset
480 }
kono
parents:
diff changeset
481
kono
parents:
diff changeset
482 static int
kono
parents:
diff changeset
483 pfunction(int e)
kono
parents:
diff changeset
484 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
485 // list4(INLINE,e1,arglist,ftype);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
486 // include code segement case
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
487 int e1 = pexpr(cadr(e));
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
488 int arglist = caddr(e);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
489 int newargs = 0;
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
490 int ftype = cadddr(e);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
491 int e3;
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
492 for (e3 = arglist; e3; e3 = cadr(e3)) {
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
493 newargs = list3( pexpr(car(e3)), newargs, caddr(e3));
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
494 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
495 newargs = reverse0(newargs);
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
496 return list4(car(e),e1,newargs,ftype);
462
kono
parents:
diff changeset
497 }
kono
parents:
diff changeset
498
kono
parents:
diff changeset
499 static int
kono
parents:
diff changeset
500 prindirect(int e)
kono
parents:
diff changeset
501 {
525
d84cea14dbdc *** empty log message ***
kono
parents: 524
diff changeset
502 int lvar;
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
503 int offset = caddr(e);
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
504 int type0;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
505 type = cadddr(e);
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
506 type0 = type_value(type);
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
507 if (type0>0 && car(type0)==POINTER)
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
508 type=set_type_with_attr(cadr(type),type);
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
509 if (car(lvar=cadr(e))==IVAR) {
525
d84cea14dbdc *** empty log message ***
kono
parents: 524
diff changeset
510 lvar=p_lvar(cadr(e)); // can be anything....
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
511 switch(car(lvar)) {
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
512 case LVAR:
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
513 if(offset) {
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
514 return list3(car(e),lvar,offset);
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
515 }
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
516 return rvalue_t(lvar,cadddr(e));
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
517 case REGISTER: case DREGISTER:
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
518 case FREGISTER: case LREGISTER:
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
519 case CONST: case FCONST: case DCONST: case LCONST:
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
520 // should do type check
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
521 if (offset) error(-1);
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
522 return lvar;
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
523 }
512
53ec17a8af7d inline continue....
kono
parents: 511
diff changeset
524 }
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
525 return list3(car(e),pexpr(cadr(e)),offset);
462
kono
parents:
diff changeset
526 }
kono
parents:
diff changeset
527
kono
parents:
diff changeset
528 static int
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
529 pindirect(int e)
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
530 {
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
531 //int lvar;
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
532 //if (car(lvar=cadr(e))==IVAR)
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
533 // lvar=p_lvar(cadr(e)); // can be anything....
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
534 return list3(car(e),pexpr(cadr(e)),caddr(e));
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
535 }
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
536
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
537 static int
462
kono
parents:
diff changeset
538 paddress(int e)
kono
parents:
diff changeset
539 {
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
540 // if (car(cadr(e))==INDIRECT) return pexpr(cadr(cadr(e)));
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
541 return list2(car(e),pexpr(cadr(e)));
462
kono
parents:
diff changeset
542 }
kono
parents:
diff changeset
543
kono
parents:
diff changeset
544 static int
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
545 p_conv(int e1,int e2)
462
kono
parents:
diff changeset
546 {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
547 int t,stype = type;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
548 if (is_const(e2) && (t=type_of_conv(e1))) {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
549 type = INT;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
550 e1 = correct_type(e2,t);
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
551 type = stype;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
552 return e1;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
553 }
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
554 return list3(CONV,pexpr(e2),e1);
462
kono
parents:
diff changeset
555 }
kono
parents:
diff changeset
556
kono
parents:
diff changeset
557 static int
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
558 pbinop(int op,int e1,int e2)
462
kono
parents:
diff changeset
559 {
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
560 e1 = pexpr(e1);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
561 e2 = pexpr(e2);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
562 if (is_const(e1)&&is_const(e2)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
563 int t;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
564 if((t= type_of_bop(op)))
599
df04bc5fd5fe *** empty log message ***
kono
parents: 585
diff changeset
565 return binop(OP(op),e1,e2,t,t);
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
566 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
567 return list3(op,e1,e2);
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
568 }
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
569
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
570 static int
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
571 plor(int op,int e1,int e2)
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
572 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
573 int e = pexpr(e1);
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
574 return list3(op,e,pexpr(e2));
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
575 }
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
576
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
577 static int
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
578 pland(int op,int e1,int e2)
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
579 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
580 int e = pexpr(e1);
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
581 return list3(op,e,pexpr(e2));
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
582 }
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
583
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
584 static int
462
kono
parents:
diff changeset
585 psassign(int e)
kono
parents:
diff changeset
586 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
587 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
588 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
589 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
590 }
kono
parents:
diff changeset
591
kono
parents:
diff changeset
592 static int
kono
parents:
diff changeset
593 passign(int e)
kono
parents:
diff changeset
594 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
595 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
596 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
597 return list3(car(e),e1,e2);
462
kono
parents:
diff changeset
598 }
kono
parents:
diff changeset
599
kono
parents:
diff changeset
600 static int
kono
parents:
diff changeset
601 passop(int e)
kono
parents:
diff changeset
602 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
603 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
604 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
605 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
606 }
kono
parents:
diff changeset
607
kono
parents:
diff changeset
608 static int
kono
parents:
diff changeset
609 pdassign(int e)
kono
parents:
diff changeset
610 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
611 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
612 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
613 return list3(car(e),e1,e2);
462
kono
parents:
diff changeset
614 }
kono
parents:
diff changeset
615
kono
parents:
diff changeset
616 static int
kono
parents:
diff changeset
617 pdassop(int e)
kono
parents:
diff changeset
618 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
619 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
620 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
621 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
622 }
kono
parents:
diff changeset
623
kono
parents:
diff changeset
624 static int
kono
parents:
diff changeset
625 plassign(int e)
kono
parents:
diff changeset
626 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
627 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
628 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
629 return list3(car(e),e1,e2);
462
kono
parents:
diff changeset
630 }
kono
parents:
diff changeset
631
kono
parents:
diff changeset
632 static int
kono
parents:
diff changeset
633 plassop(int e)
kono
parents:
diff changeset
634 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
635 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
636 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
637 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
638 }
kono
parents:
diff changeset
639
kono
parents:
diff changeset
640 static int
kono
parents:
diff changeset
641 palloc(int e)
kono
parents:
diff changeset
642 {
695
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
643 int e1 = pexpr(e);
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
644 if (car(e1)==CONST)
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
645 return list2(ADDRESS,list3(LVAR,new_lvar_align(cadr(e1),16),0));
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
646 return list2(ALLOCA,e1);
462
kono
parents:
diff changeset
647 }
kono
parents:
diff changeset
648
kono
parents:
diff changeset
649 static int
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
650 pcomma(int e1,int e2)
462
kono
parents:
diff changeset
651 {
556
ef225b589888 s-dandy fix
kono
parents: 555
diff changeset
652 int e = pexpr(e1);
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
653 return list3(COMMA,e,pexpr(e2));
462
kono
parents:
diff changeset
654 }
kono
parents:
diff changeset
655
kono
parents:
diff changeset
656 static int
kono
parents:
diff changeset
657 prbit_field(int e)
kono
parents:
diff changeset
658 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
659 return list3(car(e),pexpr(cadr(e)),caddr(e));
462
kono
parents:
diff changeset
660 }
kono
parents:
diff changeset
661
kono
parents:
diff changeset
662 static int
kono
parents:
diff changeset
663 pbassign(int e)
kono
parents:
diff changeset
664 {
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
665 // list4(BASS,e1,e2,list2(BASS,t)));
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
666 int e1=pexpr(caddr(e));
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
667 return list4(car(e),pexpr(cadr(e)),e1,cadddr(e));
462
kono
parents:
diff changeset
668 }
kono
parents:
diff changeset
669
kono
parents:
diff changeset
670 static int
kono
parents:
diff changeset
671 pbassop(int e)
kono
parents:
diff changeset
672 {
695
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
673 int e1 = caddr(e);
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
674 if (car(e)==BASSOP) e1=pexpr(e1);
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
675 return list4(car(e),pexpr(cadr(e)),e1,cadddr(e));
462
kono
parents:
diff changeset
676 }
kono
parents:
diff changeset
677
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
678 /*
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
679 variable initialization with offset
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
680 */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
682 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
683 passign_data(int var,int target_type, int e,int t,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
684 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
685 int ass,sz,bfd;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
686
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
687 #if STRUCT_ALIGN
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
688 if (t!=-99) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
689 int strtype=0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
690 if (t>0 && (car(t)==STRUCT||car(t)==UNION))
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
691 strtype=1;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
692 sz = size(t);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
693 if (sz%size_of_int==0||strtype) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
694 offset = ((offset+(size_of_int-1))&~(size_of_int-1));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
695 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
696 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
697 #endif
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
698 if (car(e)==ADDRESS||car(e)==GVAR) {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
699 if (scalar(t)||car(t)==ARRAY) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
700 t = list2(POINTER,VOID); // fake
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
701 } else {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
702 error(TYERR);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
703 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
704 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
705 if (t==EMPTY) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
706 /* empty space in partial initialization */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
707 return offset+cadr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
708 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
709 type = t;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
710 e = rvalue_t(e,t);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
711 if (!scalar(type) && (type>0 && (car(type)!=ADDRESS && car(type)!=ARRAY)))
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
712 e = correct_type(e,target_type);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
713 /* If this is a local declared constant, we don't have to assign.
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
714 But some one may take it's address. We have to generate assign.
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
715 */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
716 ass = assign_expr0(
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
717 offset?
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
718 list3(ADD,var,list2(CONST,offset)):
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
719 var,
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
720 e,target_type,t); // already correct_typed
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
721 init_vars = list2(ass,init_vars);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
722 if (t>0&&car(t)==BIT_FIELD) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
723 sz = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
724 bfd = cadr(caddr(t)); /* bit_field_disp */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
725 #if BIT_FIELD_CODE
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
726 code_bit_field_disp(t,&offset,&bfd,&sz);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
727 #endif
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
728 return offset+sz;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
729 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
730 return offset+((t==EMPTY)?cadr(e):size(t));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
731 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
732
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
733 static int pdecl_data(int var, int target_type, int init,int offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
734
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
735 static void
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
736 pflush_decl_data(int var,int sz)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
737 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
738 int offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
739 int offset0=0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
740 int e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
741 int t,offset1=0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
742 int smode=mode;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
743 int init = decl_str_init;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
744
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
745 decl_str_init = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
746 mode = STADECL;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
747 /*
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
748 decl_str_init
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
749 output delayed decl data
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
750 list4(offset,next,expression,list2(type0,type1));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
751 */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
752 while (init) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
753 offset= car(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
754 e=caddr(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
755 t=car(cadddr(init)); // type of source
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
756 type=cadr(cadddr(init)); // destination type
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
757 if (offset!=offset0) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
758 // make space
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
759 passign_data(var,EMPTY,list2(CONST,offset-offset0),EMPTY,offset0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
760 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
761 e = pexpr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
762 // offset0 = passign_data(var,type,e,t,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
763 offset0 = pdecl_data(var,type,e,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
764 init = cadr(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
765 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
766 offset = offset0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
767 if ((sz=(offset1+sz-offset))>0)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
768 passign_data(var,EMPTY,list2(CONST,sz),EMPTY,offset0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
769 local_nptr = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
770 mode=smode;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
771 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
772
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
773 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
774 str_init_eq()
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
775 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
776 // error(-1); // duplicate struct field value
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
777 return 2; // allow override keep unique
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
778 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
779
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
780
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
781 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
782 pdecl_data_array(int var,int init,int target_type,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
783 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
784 int type0 = cadr(target_type); /* array item type */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
785 int e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
786
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
787 for(; init; init = cadr(init)) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
788 // unordered data with tag or array offset
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
789 if (car(init)!=DECL_DATA_ARRAY) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
790 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
791 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
792 e = pexpr(caddr(init));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
793 offset = pdecl_data(var,type0,e,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
794 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
795 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
796 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
797
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
798 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
799 pdecl_data_field(int var,int init,int target_type,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
800 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
801 int type0 = target_type; /* list of fields */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
802 int e,t,type1,foffset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
803 NMTBL *n;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
804
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
805 for(; init; init = cadr(init)) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
806 // unordered data with tag or array offset
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
807 if (car(init)!=DECL_DATA_FIELD) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
808 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
809 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
810 n = (NMTBL*)cadddr(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
811 type1 = search_struct_type(type0,n->nm,&foffset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
812 e = caddr(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
813 if (car(e)!=DECL_DATA) error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
814 t = caddr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
815 decl_str_init=insert_ascend(decl_str_init,
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
816 glist4(offset+foffset,0,e,glist2(type1,t)),str_init_eq);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
817 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
818 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
819 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
820
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
821 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
822 pdecl_data_list(int var,int init,int target_type,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
823 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
824 int type0 = caddr(target_type); /* list of fields */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
825 int e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
826
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
827 for(; init; init = cadr(init)) {
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
828 int e1 = init;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
829 if (car(e1)==DECL_DATA) {
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
830 // casted initilizer ?
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
831 continue;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
832 }
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
833 // ordered data
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
834 if (car(e1)!=DECL_DATA_LIST) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
835 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
836 }
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
837 e = pexpr(caddr(e1));
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
838 offset = pdecl_data(var,car(type0),e,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
839 type0 = cadr(type0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
840 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
841 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
842 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
843
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
844 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
845 pdecl_data(int var, int target_type, int init,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
846 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
847 int t,e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
848 int save_decl_str_init = decl_str_init;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
849 decl_str_init = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
850 target_type = type_value(target_type);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
851
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
852 if (init==0) {
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
853 // empty declaration
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
854 // it can happen like a = (struct hoge){};
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
855 return offset;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
856 }
682
639db8597a58 decl_data optimization
kono
parents: 681
diff changeset
857 e = cadr(init);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
858 if (car(init)==DECL_DATA) {
682
639db8597a58 decl_data optimization
kono
parents: 681
diff changeset
859 switch(car(e)) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
860 case DECL_DATA_LIST:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
861 offset = pdecl_data_list(var,e,target_type,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
862 break;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
863 case DECL_DATA_FIELD:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
864 offset = pdecl_data_field(var,e,target_type,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
865 break;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
866 case DECL_DATA_ARRAY:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
867 offset = pdecl_data_array(var,e,target_type,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
868 break;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
869 default:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
870 e = pexpr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
871 t = caddr(init); // type of source
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
872 offset = passign_data(var,target_type,e,t,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
873 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
874 } else {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
875 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
876 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
877 if (decl_str_init) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
878 int sz = size(target_type);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
879 pflush_decl_data(var,sz);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
880 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
881 decl_str_init = save_decl_str_init;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
882 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
883 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
884
561
de0b0380c461 comments
kono
parents: 558
diff changeset
885 // handle local variable declaration
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
886 // initialization is accumrated in init argument
561
de0b0380c461 comments
kono
parents: 558
diff changeset
887 // should consider int k=some_compile_time_constant;
462
kono
parents:
diff changeset
888 static int
kono
parents:
diff changeset
889 p_decl(int e)
kono
parents:
diff changeset
890 {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
891 // list4(ST_DECL,parse,(int)n,list3(mode,stmode,ctmode),init);
554
dc677ac7a744 emit_pop_free kills creg after emit_copy.
kono
parents: 553
diff changeset
892 int ctmode=cadddr(e);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
893 NMTBL *n=(NMTBL*)caddr(e);
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
894 int dsp = n->dsp;
569
1fcad06b264a gcc4 (ia32)
kono
parents: 566
diff changeset
895 int v=0;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
896 int sstmode = stmode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
897 int smode = mode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
898 int save_init_vars = init_vars;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
899 int init = caddddr(e); // variable initialization
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
900
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
901 init_vars = 0;
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
902 // in real partial evaluation, we have to check whether this variable
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
903 // is used or not.
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
904 if (ctmode) {
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
905 mode = car(ctmode); stmode = cadr(ctmode); ctmode = caddr(ctmode);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
906 } else {
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
907 mode = LDECL; stmode = 0; ctmode = 0;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
908 }
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
909 switch(stmode) {
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
910 case EXTRN: case EXTRN1: case STATIC:
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
911 // def(n,ctmode); we don't need this. already done.
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
912 // stmode = sstmode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
913 if (init) error(-1);
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
914 stmode = sstmode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
915 mode = smode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
916 init_vars = save_init_vars;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
917 return pexpr(cadr(e));
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
918 // case LLDECL: LLDECL is mode, not stmode (bad design)
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
919 // v = list2(FLABEL,fwdlabel()); break;
529
ad874ef77dde use_input_reg...
kono
parents: 528
diff changeset
920 #if 1
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
921 case REGISTER:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
922 switch(n->ty) {
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
923 case ULONGLONG: case LONGLONG:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
924 v = get_lregister_var(n); break;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
925 case FLOAT:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
926 v = get_dregister_var(n,0); break;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
927 case DOUBLE:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
928 v = get_dregister_var(n,1); break;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
929 default:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
930 if (scalar(n->ty))
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
931 v = get_register_var(n);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
932 else
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
933 error(TYERR);
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
934 }
529
ad874ef77dde use_input_reg...
kono
parents: 528
diff changeset
935 break;
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
936 #endif
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
937 default:
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
938 if (n->sc==FLABEL)
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
939 v = list3(LVAR,fwdlabel(),(int)n);
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
940 else
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
941 v = list3(LVAR,new_lvar(size(n->ty)),(int)n);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
942 }
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
943 if (n->sc!=FLABEL)
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
944 inline_lvars = glist2(v,inline_lvars);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
945 if (heap[pdisp+dsp]) {
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
946 fprintf(stderr,"## double p_decl %s %s\n",((NMTBL*)(caddr(heap[pdisp+dsp])))->nm,n->nm);
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
947 error(-1);
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
948 }
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
949 heap[pdisp+dsp]=v;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
950 stmode = sstmode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
951 mode = smode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
952 if (init) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
953 pdecl_data(v,n->ty,init,0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
954 if (init_vars) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
955 int e1 = pexpr(cadr(e));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
956 init_vars = reverse0(init_vars);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
957 while (init_vars) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
958 e1 = list3(ST_COMP,e1,car(init_vars));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
959 init_vars = cadr(init_vars);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
960 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
961 init_vars = save_init_vars;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
962 return e1;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
963 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
964 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
965 init_vars = save_init_vars;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
966 return pexpr(cadr(e));
462
kono
parents:
diff changeset
967 }
kono
parents:
diff changeset
968
kono
parents:
diff changeset
969 static int
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
970 p_if(int e1)
462
kono
parents:
diff changeset
971 {
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
972 int cond,l1,l2;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
973 int e2=caddr(e1),e3;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
974 cond = pexpr(car(e2));
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
975 // conv->if_then_();
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
976 l1 = pexpr(cadr(e2));
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
977 if ((e3=caddr(e2))) { // else
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
978 l2 = pexpr(e3);
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
979 } else {
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
980 l2 = 0;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
981 }
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
982 return list3(ST_IF,pexpr(cadr(e1)),list3(cond,l1,l2));
462
kono
parents:
diff changeset
983 }
kono
parents:
diff changeset
984
kono
parents:
diff changeset
985 static int
kono
parents:
diff changeset
986 p_do(int e)
kono
parents:
diff changeset
987 {
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
988 int e2 = pexpr(caddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
989 int e3 = pexpr(cadddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
990 return list4(ST_DO,pexpr(cadr(e)),e2,e3);
462
kono
parents:
diff changeset
991 }
kono
parents:
diff changeset
992
kono
parents:
diff changeset
993 static int
kono
parents:
diff changeset
994 p_while(int e)
kono
parents:
diff changeset
995 {
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
996 int e2 = pexpr(caddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
997 int e3 = pexpr(cadddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
998 return list4(ST_WHILE,pexpr(cadr(e)),e2,e3);
462
kono
parents:
diff changeset
999 }
kono
parents:
diff changeset
1000
kono
parents:
diff changeset
1001 static int
kono
parents:
diff changeset
1002 p_for(int e)
kono
parents:
diff changeset
1003 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1004 int e1=caddr(e);
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1005 int p0=pexpr(car(e1));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1006 int p1=pexpr(cadr(e1));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1007 int p2=pexpr(caddr(e1));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1008 int p3=pexpr(cadddr(e1));
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1009 // unfolding for constant case?
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1010 return list3(ST_FOR,pexpr(cadr(e)), list4(p0,p1,p2,p3));
462
kono
parents:
diff changeset
1011 }
kono
parents:
diff changeset
1012
kono
parents:
diff changeset
1013 static int
kono
parents:
diff changeset
1014 p_switch(int e)
kono
parents:
diff changeset
1015 {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1016 int e2 = pexpr(caddr(e)); // switch variable
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1017 int e3 = pexpr(cadddr(e)); // a statement in switch
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1018 // if cadr(e) is a constant, we have to prune case statement.
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1019 // No we cannot. A statement in case may contain labels or
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1020 // falling down entry.
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1021 // case constants are need to be pexpred in p_case.
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1022
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1023 return list4(ST_SWITCH,pexpr(cadr(e)),e2,e3);
462
kono
parents:
diff changeset
1024 }
kono
parents:
diff changeset
1025
kono
parents:
diff changeset
1026 static int
kono
parents:
diff changeset
1027 p_comp(int e)
kono
parents:
diff changeset
1028 {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1029 int e1;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1030 e1=pexpr(caddr(e));
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1031 return list3(ST_COMP,pexpr(cadr(e)),e1);
462
kono
parents:
diff changeset
1032 }
kono
parents:
diff changeset
1033
kono
parents:
diff changeset
1034 static int
kono
parents:
diff changeset
1035 p_break(int e)
kono
parents:
diff changeset
1036 {
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1037 return list2(ST_BREAK,pexpr(cadr(e)));
462
kono
parents:
diff changeset
1038 }
kono
parents:
diff changeset
1039
kono
parents:
diff changeset
1040 static int
kono
parents:
diff changeset
1041 p_continue(int e)
kono
parents:
diff changeset
1042 {
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1043 return list2(ST_CONTINUE,pexpr(cadr(e)));
462
kono
parents:
diff changeset
1044 }
kono
parents:
diff changeset
1045
kono
parents:
diff changeset
1046 static int
kono
parents:
diff changeset
1047 p_case(int e)
kono
parents:
diff changeset
1048 {
506
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1049 int new=0,clist = caddr(e);
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1050 // insert destory clist, we have to copy it now
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1051 // car(clist) have to be expred, it may contain operators.
506
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1052 for(;clist;clist=cadr(clist))
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1053 new=glist3(cexpr(pexpr(car(clist))),new,0);
506
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1054 return list3(ST_CASE,pexpr(cadr(e)),reverse0(new));
462
kono
parents:
diff changeset
1055 }
kono
parents:
diff changeset
1056
kono
parents:
diff changeset
1057 static int
kono
parents:
diff changeset
1058 p_default(int e)
kono
parents:
diff changeset
1059 {
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1060 // should be removed if case value is a constant
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1061 return list2(ST_DEFAULT,pexpr(cadr(e)));
462
kono
parents:
diff changeset
1062 }
kono
parents:
diff changeset
1063
kono
parents:
diff changeset
1064 static int
kono
parents:
diff changeset
1065 p_return(int e)
kono
parents:
diff changeset
1066 {
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1067 int e1=pexpr(caddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1068 return list3(ST_RETURN,pexpr(cadr(e)),e1);
462
kono
parents:
diff changeset
1069 }
kono
parents:
diff changeset
1070
kono
parents:
diff changeset
1071 static int
kono
parents:
diff changeset
1072 p_goto(int e)
kono
parents:
diff changeset
1073 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1074 int e1,lb,e2;
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1075 if ((e1=caddr(e))) {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1076 switch(car(e1)) {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1077 case RINDIRECT: e1=pexpr(e1); break;
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1078 case CODE: e2=pexpr(cadr(e1));
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
1079 e1=list3(JUMP,e2,pexpr(caddr(e1))); break;
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1080 case FLABEL: /* error(-1); */ break;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1081 case IVAR:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1082 lb = cadr(e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1083 if (!(e1=heap[pdisp+lb])) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1084 e1 = heap[pdisp+lb]=list2(FLABEL,fwdlabel());
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1085 }
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1086 break;
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1087 case JUMP:
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1088 e1 = list3(JUMP,pexpr(cadr(e1)),pexpr(caddr(e1)));
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1089 break;
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1090 default:
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1091 error(-1);
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1092 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1093 }
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1094 return list3(ST_GOTO,pexpr(cadr(e)),e1);
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1095 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1096
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1097 static int
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1098 p_list_expr(int e)
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1099 {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1100 int e3,new = 0;
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1101 for (e3 = e; e3; e3 = cadr(e3)) {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1102 new= list2( pexpr(car(e3)), new);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1103 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1104 return reverse0(new);
462
kono
parents:
diff changeset
1105 }
kono
parents:
diff changeset
1106
kono
parents:
diff changeset
1107 static int
kono
parents:
diff changeset
1108 p_asm(int e)
kono
parents:
diff changeset
1109 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1110 int param=caddr(e);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1111 int e1 = p_list_expr(cadddr(e));
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1112 return list4(ST_ASM,pexpr(cadr(e)),param,e1);
462
kono
parents:
diff changeset
1113 }
kono
parents:
diff changeset
1114
kono
parents:
diff changeset
1115 static int
kono
parents:
diff changeset
1116 p_label(int e)
kono
parents:
diff changeset
1117 {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1118 int e1,lb;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1119 if ((e1=caddr(e))) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1120 switch(car(e1)) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1121 case FLABEL: /* error(-1); */ break;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1122 case IVAR:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1123 lb = cadr(e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1124 if (!(e1=heap[pdisp+lb])) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1125 e1 = heap[pdisp+lb]=list2(FLABEL,fwdlabel());
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1126 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1127 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1128 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1129 return list3(ST_LABEL,pexpr(cadr(e)),e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1130 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1131
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1132 static int
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1133 p_label_var(int e)
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1134 {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1135 int d,e1;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1136 switch(car(e1=e)) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1137 case LVAR: /* error(-1) */ break;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1138 case IVAR:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1139 // should this done in p_decl? (in __label__?)
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1140 d = cadr(e);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1141 if (!(e1=(heap[pdisp+d]))) {
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1142 // error(-1);
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1143 e1 = heap[pdisp+d]=list3(LVAR,fwdlabel(),caddr(e));
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1144 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1145 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1146 return list2(LABEL,e1);
462
kono
parents:
diff changeset
1147 }
kono
parents:
diff changeset
1148
kono
parents:
diff changeset
1149 static int
kono
parents:
diff changeset
1150 p_bool(int e)
kono
parents:
diff changeset
1151 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1152 error(-1);
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1153 return e;
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1154 }
462
kono
parents:
diff changeset
1155
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1156 static int
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1157 p_comment(int e)
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1158 {
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1159 glineno++;
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1160 return list3(ST_COMMENT,pexpr(cadr(e)),caddr(e));
462
kono
parents:
diff changeset
1161 }
kono
parents:
diff changeset
1162
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1163 static int
512
53ec17a8af7d inline continue....
kono
parents: 511
diff changeset
1164 p_inline(int e)
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1165 {
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1166 int e3;
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1167 int narg;
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1168
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1169 /* inline function arguments */
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1170 narg = 0;
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1171 for (e3 = caddr(e); e3; e3 = cadr(e3)) {
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1172 narg=list3(pexpr(car(e3)),narg,caddr(e3));
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1173 }
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1174 return list4(INLINE,cadr(e),reverse0(narg),cadddr(e));
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1175 }
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1176
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1177 extern int
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1178 pexpr(int e1)
462
kono
parents:
diff changeset
1179 {
kono
parents:
diff changeset
1180 int e2,e3;
kono
parents:
diff changeset
1181
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1182 // if (inmode) error(-1);
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1183 if (e1==0) return 0;
462
kono
parents:
diff changeset
1184 e2 = cadr(e1);
kono
parents:
diff changeset
1185 switch (car(e1)){
kono
parents:
diff changeset
1186 case GVAR: case RGVAR: case CRGVAR: case CURGVAR: case SRGVAR:
kono
parents:
diff changeset
1187 case SURGVAR: case REGISTER:
kono
parents:
diff changeset
1188 case DREGISTER: case FREGISTER:
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1189 case FRGVAR: case DRGVAR:
462
kono
parents:
diff changeset
1190 case LREGISTER:
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1191 case LRGVAR: case LURGVAR:
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1192 case CONST:
462
kono
parents:
diff changeset
1193 case DCONST: case FCONST:
kono
parents:
diff changeset
1194 case LCONST:
kono
parents:
diff changeset
1195 case STRING:
kono
parents:
diff changeset
1196 case FNAME:
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1197 case FLABEL:
616
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1198 case BUILTIN_INF:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1199 case BUILTIN_INFF:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1200 case BUILTIN_INFL:
462
kono
parents:
diff changeset
1201 return e1;
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1202 case RSTRUCT:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1203 // list3(RSTRUCT,e,size)
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1204 return pexpr(e2);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1205 case LABEL:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1206 return p_label_var(e2);
462
kono
parents:
diff changeset
1207 case LVAR:
kono
parents:
diff changeset
1208 case RLVAR: case CRLVAR: case CURLVAR: case SRLVAR: case SURLVAR:
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1209 case FRLVAR: case DRLVAR:
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1210 case LRLVAR: case LURLVAR:
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1211 return e1;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1212 case IVAR:
462
kono
parents:
diff changeset
1213 return p_lvar(e1);
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1214 case CODE:
462
kono
parents:
diff changeset
1215 case FUNCTION:
kono
parents:
diff changeset
1216 return pfunction(e1);
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
1217 case JUMP:
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1218 e2 = pexpr(e2);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1219 return list3(car(e1),e2,pexpr(cadddr(e1)));
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1220 case ARRAY:
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1221 e2 = pexpr(e2);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1222 e1 = binop(ADD,e2,pexpr(caddr(e1)),cadddr(e1),caddddr(e1));
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1223 return indop(e1);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1224 case PERIOD:
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1225 e2 = pexpr(e2);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1226 nptr = (NMTBL*)caddr(e1);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1227 type = cadddr(e1);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1228 return strop(e2,0);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1229 case ARROW:
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1230 e2 = pexpr(e2);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1231 nptr = (NMTBL*)caddr(e1);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1232 type = cadddr(e1);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1233 return strop(e2,1);
462
kono
parents:
diff changeset
1234 case INLINE:
512
53ec17a8af7d inline continue....
kono
parents: 511
diff changeset
1235 return p_inline(e1);
462
kono
parents:
diff changeset
1236 case INDIRECT:
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
1237 return pindirect(e1);
462
kono
parents:
diff changeset
1238 case RINDIRECT: case URINDIRECT:
kono
parents:
diff changeset
1239 case CRINDIRECT: case CURINDIRECT:
kono
parents:
diff changeset
1240 case SRINDIRECT: case SURINDIRECT:
kono
parents:
diff changeset
1241 case FRINDIRECT: case DRINDIRECT:
kono
parents:
diff changeset
1242 case LRINDIRECT: case LURINDIRECT:
kono
parents:
diff changeset
1243 return prindirect(e1);
kono
parents:
diff changeset
1244 case ADDRESS:
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1245 return paddress(e1);
566
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1246 case ST_OP:
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1247 e3=caddr(e1);
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1248 e1=pexpr(car(e3));
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1249 return binop(e2,e1,pexpr(cadr(e3)),caddr(e3),cadddr(e3));
462
kono
parents:
diff changeset
1250 case MINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1251 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1252 if (car(e3)==CONST) return list2(CONST,-cadr(e3));
kono
parents:
diff changeset
1253 return list2(car(e1),e3);
kono
parents:
diff changeset
1254 #if LONGLONG_CODE
kono
parents:
diff changeset
1255 case LMINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1256 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1257 if (car(e3)==LCONST) return llist2(LCONST,-lcadr(e3));
kono
parents:
diff changeset
1258 return list2(car(e1),e3);
kono
parents:
diff changeset
1259 #endif
kono
parents:
diff changeset
1260 #if FLOAT_CODE
kono
parents:
diff changeset
1261 case DMINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1262 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1263 if (car(e3)==DCONST) return dlist2(DCONST,-dcadr(e3));
kono
parents:
diff changeset
1264 if (car(e3)==FCONST) return dlist2(FCONST,-dcadr(e3));
kono
parents:
diff changeset
1265 return list2(car(e1),e3);
kono
parents:
diff changeset
1266 case FMINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1267 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1268 if (car(e3)==DCONST) return dlist2(DCONST,-dcadr(e3));
kono
parents:
diff changeset
1269 if (car(e3)==FCONST) return dlist2(FCONST,-dcadr(e3));
kono
parents:
diff changeset
1270 return list2(car(e1),e3);
kono
parents:
diff changeset
1271 #endif
kono
parents:
diff changeset
1272 case CONV:
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1273 return p_conv(caddr(e1),e2);
462
kono
parents:
diff changeset
1274 case BNOT: /* ~ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1275 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1276 if (car(e3)==CONST) return list2(CONST,~cadr(e3));
kono
parents:
diff changeset
1277 return list2(BNOT,e3);
kono
parents:
diff changeset
1278 case LNOT: /* ! */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1279 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1280 if (car(e3)==CONST) return list2(CONST,!cadr(e3));
kono
parents:
diff changeset
1281 return list2(LNOT,e3);
kono
parents:
diff changeset
1282 case PREINC:
kono
parents:
diff changeset
1283 case UPREINC:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1284 if ((e3 = pexpr(e2))==e2) return e1;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1285 if (car(e3)==CONST) return list2(CONST,cadr(e3)+caddr(e1));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1286 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1287 case POSTINC:
kono
parents:
diff changeset
1288 case UPOSTINC:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1289 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1290 if (car(e3)==CONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1291 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1292 #if FLOAT_CODE
kono
parents:
diff changeset
1293 case DPREINC: /* ++d */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1294 if ((e3 = pexpr(e2))==e2) return e1;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1295 if (car(e3)==FCONST) return dlist2(FCONST,dcadr(e3)+cadr(e2));
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1296 if (car(e3)==DCONST) return dlist2(DCONST,dcadr(e3)+cadr(e2));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1297 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1298 case DPOSTINC: /* d++ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1299 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1300 if (car(e3)==FCONST||car(e3)==DCONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1301 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1302 case FPREINC: /* ++f */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1303 if ((e3 = pexpr(e2))==e2) return e1;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1304 if (car(e3)==FCONST) return dlist2(FCONST,dcadr(e3)+cadr(e2));
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1305 if (car(e3)==DCONST) return dlist2(DCONST,dcadr(e3)+cadr(e2));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1306 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1307 case FPOSTINC: /* f++ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1308 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1309 if (car(e3)==FCONST||car(e3)==DCONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1310 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1311 #endif
kono
parents:
diff changeset
1312 #if LONGLONG_CODE
kono
parents:
diff changeset
1313 case LPREINC: /* ++d */
kono
parents:
diff changeset
1314 case LUPREINC: /* ++d */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1315 if ((e3 = pexpr(e2))==e2) return e1;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1316 if (car(e3)==LCONST) return llist2(LCONST,lcadr(e3)+cadr(e2));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1317 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1318 case LPOSTINC: /* d++ */
kono
parents:
diff changeset
1319 case LUPOSTINC: /* d++ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1320 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1321 if (car(e3)==LCONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1322 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1323 #endif
kono
parents:
diff changeset
1324 case MUL: case UMUL:
kono
parents:
diff changeset
1325 case DIV: case UDIV:
kono
parents:
diff changeset
1326 case MOD: case UMOD:
kono
parents:
diff changeset
1327 case LSHIFT: case ULSHIFT: case RSHIFT: case URSHIFT:
kono
parents:
diff changeset
1328 case ADD: case SUB: case BAND: case EOR: case BOR: case CMP: case CMPGE:
kono
parents:
diff changeset
1329 case UCMP: case CMPEQ: case CMPNEQ: case UCMPGE:
kono
parents:
diff changeset
1330 #if FLOAT_CODE
kono
parents:
diff changeset
1331 case DMUL: case DDIV:
kono
parents:
diff changeset
1332 case DADD: case DSUB:
kono
parents:
diff changeset
1333 case DCMP: case DCMPGE: case DCMPEQ: case DCMPNEQ:
kono
parents:
diff changeset
1334 case FMUL: case FDIV:
kono
parents:
diff changeset
1335 case FADD: case FSUB:
kono
parents:
diff changeset
1336 case FCMP: case FCMPGE: case FCMPEQ: case FCMPNEQ:
kono
parents:
diff changeset
1337 #endif
kono
parents:
diff changeset
1338 #if LONGLONG_CODE
kono
parents:
diff changeset
1339 case LMUL: case LUMUL:
kono
parents:
diff changeset
1340 case LDIV: case LUDIV:
kono
parents:
diff changeset
1341 case LMOD: case LUMOD:
kono
parents:
diff changeset
1342 case LLSHIFT: case LULSHIFT: case LRSHIFT: case LURSHIFT:
kono
parents:
diff changeset
1343 case LADD: case LSUB: case LBAND: case LEOR: case LBOR: case LCMP:
kono
parents:
diff changeset
1344 #endif
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1345 return pbinop(car(e1),e2,caddr(e1));
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1346 // relational operator
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1347 case GT: case UGT: case GE: case UGE: case LT:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1348 case ULT: case LE: case ULE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1349 case LOP+GT: case LOP+UGT: case LOP+GE: case LOP+UGE: case LOP+LT:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1350 case LOP+ULT: case LOP+LE: case LOP+ULE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1351 case DOP+GT: case DOP+GE: case DOP+LT: case DOP+LE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1352 case FOP+GT: case FOP+GE: case FOP+LT: case FOP+LE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1353 case FOP+EQ: case FOP+NEQ:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1354 case EQ: case NEQ: case DOP+EQ: case DOP+NEQ:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1355 case LOP+EQ: case LOP+NEQ:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1356 return pbinop(car(e1),e2,caddr(e1));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1357 case LAND:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1358 return pland(car(e1),cadr(e1),caddr(e1));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1359 case LOR:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1360 return plor(car(e1),cadr(e1),caddr(e1));
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
1361 case LCOND: case DCOND: case FCOND: case COND: case UCOND: case LUCOND:
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1362 e2 = pexpr(e2);
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1363 if (car(e2)==CONST) return
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1364 caddr(e1)? pexpr(cadr(e2)?caddr(e1):cadddr(e1)) :
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1365 pexpr(cadr(e2)?e2:cadddr(e1)); // GNU extension h?:g
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1366 e3=pexpr(caddr(e1));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1367 return list4(car(e1),e2,e3,pexpr(cadddr(e1)));
462
kono
parents:
diff changeset
1368 case STASS:
kono
parents:
diff changeset
1369 return psassign(e1);
kono
parents:
diff changeset
1370 case ASS: case CASS: case SASS:
kono
parents:
diff changeset
1371 return passign(e1);
kono
parents:
diff changeset
1372 case SASSOP: case SUASSOP:
kono
parents:
diff changeset
1373 case ASSOP: case CASSOP: case CUASSOP:
kono
parents:
diff changeset
1374 return passop(e1);
kono
parents:
diff changeset
1375 #if FLOAT_CODE
kono
parents:
diff changeset
1376 case FASS: case DASS:
kono
parents:
diff changeset
1377 return pdassign(e1);
kono
parents:
diff changeset
1378 case DASSOP: case FASSOP:
kono
parents:
diff changeset
1379 return pdassop(e1);
616
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1380
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1381 case BUILTIN_FABS:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1382 case BUILTIN_FABSF:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1383 case BUILTIN_FABSL:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1384 e2 = pexpr(e2);
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1385 if (is_const(e2)) {
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1386 if (dcadr(e2) >= 0.0 ) return e2;
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1387 return pexpr(list2(car(e1)==BUILTIN_FABSF?
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1388 FMINUS:DMINUS,e2));
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1389 }
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1390 return list2(car(e1),e2);
462
kono
parents:
diff changeset
1391 #endif
kono
parents:
diff changeset
1392 #if LONGLONG_CODE
kono
parents:
diff changeset
1393 case LASS:
kono
parents:
diff changeset
1394 return plassign(e1);
kono
parents:
diff changeset
1395 case LASSOP: case LUASSOP:
kono
parents:
diff changeset
1396 return plassop(e1);
kono
parents:
diff changeset
1397 #endif
kono
parents:
diff changeset
1398 case ALLOCA:
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1399 return palloc(e2);
462
kono
parents:
diff changeset
1400 case BUILTINP:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1401 return list2(CONST,is_const(pexpr(e2)));
462
kono
parents:
diff changeset
1402 case COMMA:
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1403 return pcomma(e2,caddr(e1));
462
kono
parents:
diff changeset
1404 case RETURN:
kono
parents:
diff changeset
1405 case ENVIRONMENT:
kono
parents:
diff changeset
1406 case LCALL:
kono
parents:
diff changeset
1407 return e1;
kono
parents:
diff changeset
1408 #if BIT_FIELD_CODE
kono
parents:
diff changeset
1409 case RBIT_FIELD:
kono
parents:
diff changeset
1410 return prbit_field(e1);
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
1411 case BIT_FIELD:
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
1412 return list3(BIT_FIELD,pexpr(e2),caddr(e1));
462
kono
parents:
diff changeset
1413 case BASS:
kono
parents:
diff changeset
1414 return pbassign(e1);
kono
parents:
diff changeset
1415 case BPREINC:
kono
parents:
diff changeset
1416 case BPOSTINC:
kono
parents:
diff changeset
1417 case BASSOP:
kono
parents:
diff changeset
1418 return pbassop(e1);
kono
parents:
diff changeset
1419 #endif
kono
parents:
diff changeset
1420 #if ASM_CODE
kono
parents:
diff changeset
1421 case ASM:
kono
parents:
diff changeset
1422 return list3(ASM,list4(
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1423 car(e2),cadr(e2),caddr(e2),cadddr(e2)),
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1424 caddr(e1));
462
kono
parents:
diff changeset
1425 #endif
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1426 case CAST:
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1427 if (e2==0) {
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1428 // casted empty structure (struct hoge){}
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1429 // I think we can skip it. It means nothing in declaration
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1430 return 0;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1431 } else if (car(e2)==DECL_DATA) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1432 // casted initialized structure (struct hoge){...}
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1433 return list3(DECL_DATA,pexpr(cadr(e2)),caddr(e2));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1434 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1435 if (type_compatible(caddr(e1),cadddr(e1))) {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1436 return pexpr(e2); // rvalue ?
687
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1437 } else {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1438 e2 = pexpr(e2); // will override type
687
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1439 type = cadddr(e1);
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1440 return correct_type(e2,caddr(e1));
687
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1441 // return list4(CAST,pexpr(e2),caddr(e1),cadddr(e1));
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1442 }
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1443 case DECL_DATA:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1444 return list3(DECL_DATA,pexpr(e2),caddr(e1));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1445 case DECL_DATA_LIST:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1446 return list4(DECL_DATA_LIST,pexpr(e2),pexpr(caddr(e1)),cadddr(e1));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1447 case DECL_DATA_FIELD:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1448 return list4(DECL_DATA_FIELD,pexpr(e2),pexpr(caddr(e1)),cadddr(e1));
462
kono
parents:
diff changeset
1449 case ST_DECL: return p_decl(e1);
kono
parents:
diff changeset
1450 case ST_IF: return p_if(e1);
kono
parents:
diff changeset
1451 case ST_DO: return p_do(e1);
kono
parents:
diff changeset
1452 case ST_WHILE: return p_while(e1);
kono
parents:
diff changeset
1453 case ST_FOR: return p_for(e1);
kono
parents:
diff changeset
1454 case ST_SWITCH: return p_switch(e1);
kono
parents:
diff changeset
1455 case ST_COMP: return p_comp(e1);
kono
parents:
diff changeset
1456 case ST_BREAK: return p_break(e1);
kono
parents:
diff changeset
1457 case ST_CONTINUE: return p_continue(e1);
kono
parents:
diff changeset
1458 case ST_CASE: return p_case(e1);
kono
parents:
diff changeset
1459 case ST_DEFAULT: return p_default(e1);
kono
parents:
diff changeset
1460 case ST_RETURN: return p_return(e1);
kono
parents:
diff changeset
1461 case ST_GOTO: return p_goto(e1);
kono
parents:
diff changeset
1462 case ST_ASM: return p_asm(e1);
kono
parents:
diff changeset
1463 case ST_LABEL: return p_label(e1);
kono
parents:
diff changeset
1464 case ST_COMMENT: return p_comment(e1);
kono
parents:
diff changeset
1465 default:
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1466 error(-1);
462
kono
parents:
diff changeset
1467 return p_bool(e1);
kono
parents:
diff changeset
1468 }
kono
parents:
diff changeset
1469 return VOID;
kono
parents:
diff changeset
1470 }
kono
parents:
diff changeset
1471
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1472 /*
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1473 Prepare pvariable table
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1474 */
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1475
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1476 static int
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1477 replace_inline_parameter(NMTBL *anptr,int t,int e4,int narg,int evals)
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1478 {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1479 int arg;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1480 if (has_attr(anptr,KONST) && !has_attr(anptr,HAS_ADDRESS)) {
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1481 // replacable const variable
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1482 if (is_memory(e4)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1483 heap[pdisp+narg]=reference(e4);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1484 return evals;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1485 } else if (is_const(e4)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1486 heap[pdisp+narg]=e4;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1487 return evals;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1488 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1489 }
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1490 // we need real local variable for this inline
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1491 arg = heap[pdisp+narg]=list3(LVAR,new_lvar(size(t)),0);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1492 inline_lvars = glist2(arg,inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1493 evals=list2(assign_expr0(arg,e4,anptr->ty,t),evals);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1494 return evals;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1495 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1496
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1497 /*
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1498 setup parameter replacement of inline call
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1499 */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1500
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1501 static void
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1502 enter_inline(NMTBL *n, int e,int toplevel)
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1503 {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1504 int e1 = attr_value(n,INLINE);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1505 int arg_disp = cadr(e1); // number of arguments
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1506 int narg,e3,e4, e5, fargtype;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1507 int evals = 0;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1508 int t, replace;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1509 NMTBL *anptr;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1510
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1511 fnptr = n; // st_return see this
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1512 pvartable = p_vartable(arg_disp, /* number of arg */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1513 caddr(e1) /* number of local parameter */);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1514
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1515 replace = is_code(fnptr);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1516
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1517 /* function arguments type */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1518 fargtype = n->dsp; // we cannot do destruct reverse here
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1519
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1520 /* inline function arguments */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1521 narg = 0;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1522 if (!fargtype) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1523 goto no_args; // wrong number of arguments
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1524 }
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1525 if (is_code(n) && toplevel) {
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1526 }
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1527 for (e3 = e5 = reverse0(caddr(e)); e3; e3 = cadr(e3)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1528 anptr = (NMTBL*)caddr(fargtype);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1529 if (!anptr) break; // should not happen?
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1530 t=caddr(e3); // type
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1531 e4 = car(e3);
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1532 if (replace) {
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1533 heap[pdisp+narg]=reference(e4);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1534 } else {
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1535 evals = replace_inline_parameter(anptr,t,e4,narg,evals);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1536 }
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1537 narg ++;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1538 fargtype = cadr(fargtype);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1539 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1540 caddr(e) = reverse0(e5); // make it normal
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1541 if (eval_order==NORMAL) evals = reverse0(evals);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1542 for(;evals;evals=cadr(evals)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1543 g_expr_u(car(evals));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1544 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1545 no_args:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1546 return;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1547 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1548
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1549 /*
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1550 pass local static variable list to our parents
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1551 clean up and free used inline parameters
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1552 */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1553
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1554 static void
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1555 leave_inline(int e1,int toplevel)
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1556 {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1557 NMTBL *n;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1558 NMTBL *local_statics = (NMTBL*)cadddr(e1); // local static list
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1559
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1560 if (retcont && !toplevel) error(STERR);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1561 // inline can't handle return/environment except top level
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1562
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1563 if (local_statics && local_statics != &null_nptr) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1564 // append our local static variables to the parent list
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1565 n = local_statics;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1566 while(n->next != &null_nptr) n=n->next;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1567 n->next = local_static_list; local_static_list = local_statics;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1568 cadddr(e1) = 0; // prevent duplicate initialize
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1569 }
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1570
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1571 // free used local variables or registers
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1572 while(inline_lvars) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1573 int e;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1574 int l = car(inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1575 switch(car(l)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1576 case LVAR: free_lvar(cadr(l)); break;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1577 case REGISTER: case DREGISTER:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1578 case FREGISTER: case LREGISTER:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1579 free_register(cadr(l));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1580 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1581 e = cadr(inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1582 free_glist2(inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1583 inline_lvars = e;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1584 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1585 }
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
1586
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1587 extern int
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1588 gen_inline(int e, int toplevel)
462
kono
parents:
diff changeset
1589 {
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1590 // these saved value should be some struct
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1591 int sretlabel;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1592 NMTBL *sfnptr;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1593 int svartable;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1594
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1595 int scslabel = cslabel;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1596 int sdisp = pdisp;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1597 int sret_register;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1598 int sret_reg_mode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1599 int sinline_lvars;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1600 int slfree;
531
19f5882997f5 *** empty log message ***
kono
parents: 530
diff changeset
1601 // int slreg_count=lreg_count;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1602
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1603 NMTBL *n = (NMTBL*)cadr(cadr(e));
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1604 int e1 = attr_value(n,INLINE);
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1605 int parse = car(e1); // inline parse tree
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1606 int dots;
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1607 int ret_type = function_type(cadddr(e),&dots);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1608
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1609 checkret();
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1610 checkjmp(-1);
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1611
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1612 svartable = pvartable;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1613
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1614 scslabel = cslabel;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1615 sdisp = pdisp;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1616 sret_register = ret_register;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1617 sret_reg_mode = ret_reg_mode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1618 sinline_lvars = inline_lvars;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1619 slfree=lfree;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1620 // int slreg_count=lreg_count;
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1621
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1622 sretlabel = retlabel;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1623 sfnptr = fnptr;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1624
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1625 cslabel = -1;
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1626 retpending = 0;
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1627 ret_reg_mode = 0;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1628 ret_register = 5555;
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
1629 inline_lvars = 0;
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1630 retlabel = fwdlabel();
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1631
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1632 enter_inline(n,e,toplevel);
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
1633
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1634 // partial evaluation of parse tree
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1635 // constant propergation, etc.
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1636 parse = pexpr(parse);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1637 pdisp = sdisp;
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1638 pvartable = svartable;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1639
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1640 // generate code if necessary
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1641 if (ret_type!=VOID)
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1642 g_expr0(parse);
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1643 else
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1644 g_expr_u(parse);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1645
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1646 checkret();
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1647 fwddef(retlabel);
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1648 control=1;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1649
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1650 leave_inline(e1,toplevel);
510
2bd6ff6ee9a8 inline continue...
kono
parents: 509
diff changeset
1651
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1652 fnptr = sfnptr;
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1653 retlabel = sretlabel;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1654
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1655 cslabel = scslabel;
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1656 ret_register = sret_register;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1657 ret_reg_mode = sret_reg_mode;
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
1658 inline_lvars = sinline_lvars;
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
1659 lfree=slfree;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1660
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1661 return ret_type;
462
kono
parents:
diff changeset
1662 }
kono
parents:
diff changeset
1663
kono
parents:
diff changeset
1664 /* end */