annotate mc-inline.c @ 805:362b0258b4db

fix func_disp_offset in PS3
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 23 Nov 2010 23:08:56 +0900
parents 6b93d95a1564
children c59753132812
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 ** 連絡先: 琉球大学情報工学科 河野 真治
795
a4fd2ab28e24 i64 va_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
6 *)* (E-Mail Address: kono@ie.u-ryukyu.ac.jp)
607
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);
715
83e18db76c96 architecture depenedent argument alignment
kono
parents: 713
diff changeset
230 else {
83e18db76c96 architecture depenedent argument alignment
kono
parents: 713
diff changeset
231 fwddef(cslabel);
83e18db76c96 architecture depenedent argument alignment
kono
parents: 713
diff changeset
232 }
83e18db76c96 architecture depenedent argument alignment
kono
parents: 713
diff changeset
233 cslist= 1;
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
234 }
462
kono
parents:
diff changeset
235 #else
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
236 if (!(cst && cslist)) {
648
234bc5f79a11 alignement attribute (working)
kono
parents: 625
diff changeset
237 if(dlabel) df_label(cslabel,dlabel);
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
238 else fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
239 }
462
kono
parents:
diff changeset
240 #endif
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
241 free_glist2(csvalue1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
242 if (cst && !cslist) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
243 if(pending_jmp!=cslabel)
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
244 fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
245 else pending_jmp = 0; // cslabel is here
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
246 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
247 fwddef(blabel);
462
kono
parents:
diff changeset
248 csvalue1=svalue;
kono
parents:
diff changeset
249 cslabel=scase;
kono
parents:
diff changeset
250 dlabel=sdefault;
kono
parents:
diff changeset
251 blabel=sbreak;
kono
parents:
diff changeset
252 cslist = slist;
kono
parents:
diff changeset
253 }
kono
parents:
diff changeset
254
kono
parents:
diff changeset
255
kono
parents:
diff changeset
256 extern void
kono
parents:
diff changeset
257 st_comp(int e1){
kono
parents:
diff changeset
258 g_expr_u(caddr(e1));
kono
parents:
diff changeset
259 }
kono
parents:
diff changeset
260
kono
parents:
diff changeset
261
kono
parents:
diff changeset
262 extern void
kono
parents:
diff changeset
263 st_break(int e1){
kono
parents:
diff changeset
264 checkret();
kono
parents:
diff changeset
265 // conv->break_();
kono
parents:
diff changeset
266 if (control)
kono
parents:
diff changeset
267 gen_jmp(blabel);
kono
parents:
diff changeset
268 }
kono
parents:
diff changeset
269
kono
parents:
diff changeset
270
kono
parents:
diff changeset
271 extern void
kono
parents:
diff changeset
272 st_continue(int e1){
kono
parents:
diff changeset
273 checkret();
kono
parents:
diff changeset
274 // conv->continue_();
kono
parents:
diff changeset
275 if (control) gen_jmp(clabel);
kono
parents:
diff changeset
276 }
kono
parents:
diff changeset
277
kono
parents:
diff changeset
278
kono
parents:
diff changeset
279 extern void
kono
parents:
diff changeset
280 st_case(int e1){
kono
parents:
diff changeset
281 #if CASE_CODE
569
1fcad06b264a gcc4 (ia32)
kono
parents: 566
diff changeset
282 int l=0,clist=caddr(e1),c;
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
283 int cst = (car(csvalue1)==CONST);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
284 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
285 c=cadr(csvalue1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
286 for(;clist;clist=cadr(clist)) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
287 if (car(clist)==c) break;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
288 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
289 if (!clist) return; // no match
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
290 } else
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
291 l = fwdlabel();
462
kono
parents:
diff changeset
292 if (retpending) {
kono
parents:
diff changeset
293 ret(); retpending=0;
kono
parents:
diff changeset
294 }
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
295 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
296 if (cslist) { // may duplicat csvalue
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
297 return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
298 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
299 cslist=1;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
300 fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
301 return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
302 }
462
kono
parents:
diff changeset
303 if (!cslabel) {
kono
parents:
diff changeset
304 if (!control) {
kono
parents:
diff changeset
305 cmpdimm(car(clist),csvalue1,cslabel=fwdlabel(),1);
kono
parents:
diff changeset
306 caddr(clist)=0;
kono
parents:
diff changeset
307 } else {
kono
parents:
diff changeset
308 error(-1);
kono
parents:
diff changeset
309 }
kono
parents:
diff changeset
310 }
kono
parents:
diff changeset
311 while(clist) {
kono
parents:
diff changeset
312 caddr(clist) = l;
kono
parents:
diff changeset
313 clist = cadr(c=clist); cadr(c) = 0; // insert destroy cadr of clist
kono
parents:
diff changeset
314 cslist=insert_ascend(cslist,c,docase_eq);
kono
parents:
diff changeset
315 }
kono
parents:
diff changeset
316 fwddef(l);
kono
parents:
diff changeset
317 control=1;
kono
parents:
diff changeset
318 #else
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
319 int c,clist,l;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
320 int cst = (car(csvalue1)==CONST);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
321 clist = caddr(e1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
322 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
323 c=cadr(csvalue1);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
324 for(;clist;clist=cadr(clist)) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
325 if (car(clist)==c) break; // no match
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
326 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
327 if (!clist) return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
328 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
329 if (cst) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
330 if (!cslist) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
331 if (retpending) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
332 ret(); retpending=0;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
333 }
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
334 fwddef(cslabel);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
335 cslist = 1;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
336 } // else error(CSERR);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
337 return;
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
338 }
462
kono
parents:
diff changeset
339 if (retpending) {
kono
parents:
diff changeset
340 ret(); retpending=0;
kono
parents:
diff changeset
341 }
kono
parents:
diff changeset
342 l=fwdlabel();
kono
parents:
diff changeset
343 if (control) {
kono
parents:
diff changeset
344 control=0;
kono
parents:
diff changeset
345 gen_jmp(l);
kono
parents:
diff changeset
346 }
kono
parents:
diff changeset
347 if (cslabel) fwddef(cslabel);
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
348 while(cadr(clist)) {
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
349 cmpdimm(car(clist),csvalue1,l,0);
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
350 clist=cadr(clist);
462
kono
parents:
diff changeset
351 }
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
352 cmpdimm(car(clist),csvalue1,cslabel=fwdlabel(),1);
462
kono
parents:
diff changeset
353 if (l) fwddef(l);
kono
parents:
diff changeset
354 #endif
kono
parents:
diff changeset
355 }
kono
parents:
diff changeset
356
kono
parents:
diff changeset
357
kono
parents:
diff changeset
358 extern void
kono
parents:
diff changeset
359 st_default(int e1){
558
528fed826f17 const value switch statement prune.
kono
parents: 557
diff changeset
360 // int cst = (car(csvalue1)==CONST);
462
kono
parents:
diff changeset
361 control=1;
kono
parents:
diff changeset
362 checkret();
kono
parents:
diff changeset
363 if (dlabel) error(STERR); // double default:
kono
parents:
diff changeset
364 dlabel = backdef();
kono
parents:
diff changeset
365 // conv->case_(0,1);
kono
parents:
diff changeset
366 }
kono
parents:
diff changeset
367
kono
parents:
diff changeset
368
kono
parents:
diff changeset
369 extern void
kono
parents:
diff changeset
370 st_return(int e1){
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
371 int e,t;
462
kono
parents:
diff changeset
372
kono
parents:
diff changeset
373 if (!cslabel) gen_jmp(cslabel = fwdlabel());
kono
parents:
diff changeset
374 if(!(e=caddr(e1))) {
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
375 // no return value
462
kono
parents:
diff changeset
376 retpending = 1;
kono
parents:
diff changeset
377 return;
kono
parents:
diff changeset
378 }
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
379 t = type_value(cadr(fnptr->ty));
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
380 if (t>0 && (car(t)==STRUCT || car(t)==UNION)) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
381 // copy is included in e, pass the pointer
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
382 t = list2(POINTER,type_value(cadr(fnptr->ty)));
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
383 }
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
384 if (e) {
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
385 g_expr(e);
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
386 }
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
387 if (e && t!=VOID) {
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
388 if (ret_reg_mode==0) {
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
389 // return value register is not fixed
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
390 ret_reg_mode=1;
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
391 ret_register = code_get_fixed_creg(USE_CREG,t);
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
392 } else {
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
393 code_set_fixed_creg(ret_register,1,t);
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
394 }
462
kono
parents:
diff changeset
395 }
kono
parents:
diff changeset
396 // conv->return_end_();
kono
parents:
diff changeset
397 retpending = 1;
kono
parents:
diff changeset
398 }
kono
parents:
diff changeset
399
kono
parents:
diff changeset
400 extern void
kono
parents:
diff changeset
401 st_goto(int e){
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
402 int e1;
462
kono
parents:
diff changeset
403
kono
parents:
diff changeset
404 checkret();
kono
parents:
diff changeset
405 e1 = caddr(e);
kono
parents:
diff changeset
406 if (car(e1)==RINDIRECT) {
kono
parents:
diff changeset
407 gen_indirect_goto(cadr(e1));
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
408 return ;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
409 } else if (car(e1)==RLVAR) {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
410 gen_indirect_goto(e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
411 return ;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
412 } else if (car(e1)==LVAR||car(e1)==FLABEL) {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
413 gen_jmp(cadr(e1));
462
kono
parents:
diff changeset
414 control=0;
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
415 return ;
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
416 } else if (car(e1)==JUMP) {
462
kono
parents:
diff changeset
417 /* CbC continuation */
kono
parents:
diff changeset
418 // conv->jump_(env);
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
419 // should be separate function
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
420 jump(cadr(e1),caddr(e1));
462
kono
parents:
diff changeset
421 control=0;
kono
parents:
diff changeset
422 // conv->sm_();
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
423 return ;
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
424 } else {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
425 error(-1);
462
kono
parents:
diff changeset
426 }
kono
parents:
diff changeset
427 }
kono
parents:
diff changeset
428
kono
parents:
diff changeset
429
kono
parents:
diff changeset
430 #if ASM_CODE
kono
parents:
diff changeset
431 extern void
kono
parents:
diff changeset
432 st_asm(int e1){
kono
parents:
diff changeset
433 checkret();
kono
parents:
diff changeset
434 g_expr_u(list3(ASM,caddr(e1),cadddr(e1)));
kono
parents:
diff changeset
435 }
kono
parents:
diff changeset
436 #endif
kono
parents:
diff changeset
437
kono
parents:
diff changeset
438
kono
parents:
diff changeset
439 extern void
kono
parents:
diff changeset
440 st_label(int e1){
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
441 int lb = caddr(e1);
462
kono
parents:
diff changeset
442 control=1;
kono
parents:
diff changeset
443 checkret();
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
444 if (car(lb)==LVAR) { // label variable case
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
445 } else if (car(lb)!=FLABEL) error(-1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
446 fwddef(cadr(lb));
462
kono
parents:
diff changeset
447 }
kono
parents:
diff changeset
448
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
449 static
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
450 char *plinebuf; // last comment in parse tree (for compiler debug)
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
451
713
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
452 static int plineno;
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
453
462
kono
parents:
diff changeset
454 extern void
kono
parents:
diff changeset
455 st_comment(int e1){
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
456 glineno++;
585
a5b902b20300 ia32 reconfigure end (correct?)
kono
parents: 574
diff changeset
457 printf("## %d ",glineno);
713
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
458 plineno = caddr(e1);
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
459 gen_comment(plinebuf=(char *)ncadddr(e1));
462
kono
parents:
diff changeset
460 }
kono
parents:
diff changeset
461
kono
parents:
diff changeset
462 /*
kono
parents:
diff changeset
463 partial evaluator
kono
parents:
diff changeset
464 */
kono
parents:
diff changeset
465
kono
parents:
diff changeset
466 static int
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
467 p_vartable(int adisp,int ldisp)
462
kono
parents:
diff changeset
468 {
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
469 int i;
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
470 int pvartable = getfree(adisp-ldisp); // have to be local heap
509
e58848f6ebc1 inline continue...
kono
parents: 508
diff changeset
471 pdisp = pvartable-ldisp;
e58848f6ebc1 inline continue...
kono
parents: 508
diff changeset
472 for(i=ldisp;i<0;i++) {
e58848f6ebc1 inline continue...
kono
parents: 508
diff changeset
473 heap[pdisp+i] = 0;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
474 }
505
5d4112735c5c *** empty log message ***
kono
parents: 504
diff changeset
475 return pvartable;
462
kono
parents:
diff changeset
476 }
kono
parents:
diff changeset
477
795
a4fd2ab28e24 i64 va_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
478 extern int
462
kono
parents:
diff changeset
479 p_lvar(int e1)
kono
parents:
diff changeset
480 {
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
481 int sz = is_memory(e1);
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
482 int d = cadr(e1);
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
483 int d1,e;
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
484 if ((d1=(heap[pdisp+d]))) return d1;
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
485 fprintf(stderr,"## undeclared ivar %d\n",d);
795
a4fd2ab28e24 i64 va_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
486 error(-1);
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
487 e = heap[pdisp+d]=list3(LVAR,new_lvar(sz),0);
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
488 inline_lvars = glist2(e,inline_lvars);
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
489 return e;
462
kono
parents:
diff changeset
490 }
kono
parents:
diff changeset
491
kono
parents:
diff changeset
492 static int
kono
parents:
diff changeset
493 pfunction(int e)
kono
parents:
diff changeset
494 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
495 // list4(INLINE,e1,arglist,ftype);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
496 // include code segement case
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
497 int e1 = pexpr(cadr(e));
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
498 int arglist = caddr(e);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
499 int newargs = 0;
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
500 int ftype = cadddr(e);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
501 int e3;
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
502 for (e3 = arglist; e3; e3 = cadr(e3)) {
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
503 newargs = list3( pexpr(car(e3)), newargs, caddr(e3));
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
504 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
505 newargs = reverse0(newargs);
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
506 return list4(car(e),e1,newargs,ftype);
462
kono
parents:
diff changeset
507 }
kono
parents:
diff changeset
508
kono
parents:
diff changeset
509 static int
kono
parents:
diff changeset
510 prindirect(int e)
kono
parents:
diff changeset
511 {
525
d84cea14dbdc *** empty log message ***
kono
parents: 524
diff changeset
512 int lvar;
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
513 int offset = caddr(e);
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
514 int type0;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
515 type = cadddr(e);
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
516 type0 = type_value(type);
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
517 if (type0>0 && car(type0)==POINTER)
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
518 type=set_type_with_attr(cadr(type),type);
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
519 if (car(lvar=cadr(e))==IVAR) {
525
d84cea14dbdc *** empty log message ***
kono
parents: 524
diff changeset
520 lvar=p_lvar(cadr(e)); // can be anything....
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
521 switch(car(lvar)) {
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
522 case LVAR:
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
523 if(offset) {
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
524 return list3(car(e),lvar,offset);
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
525 }
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
526 return rvalue_t(lvar,cadddr(e));
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
527 case REGISTER: case DREGISTER:
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
528 case FREGISTER: case LREGISTER:
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
529 case CONST: case FCONST: case DCONST: case LCONST:
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
530 // should do type check
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
531 if (offset) error(-1);
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
532 return lvar;
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
533 }
512
53ec17a8af7d inline continue....
kono
parents: 511
diff changeset
534 }
533
80b5058f0535 inline code-gen test passed.
kono
parents: 532
diff changeset
535 return list3(car(e),pexpr(cadr(e)),offset);
462
kono
parents:
diff changeset
536 }
kono
parents:
diff changeset
537
kono
parents:
diff changeset
538 static int
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
539 pindirect(int e)
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
540 {
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
541 //int lvar;
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
542 //if (car(lvar=cadr(e))==IVAR)
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
543 // lvar=p_lvar(cadr(e)); // can be anything....
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
544 return list3(car(e),pexpr(cadr(e)),caddr(e));
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
545 }
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
546
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
547 static int
462
kono
parents:
diff changeset
548 paddress(int e)
kono
parents:
diff changeset
549 {
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
550 // if (car(cadr(e))==INDIRECT) return pexpr(cadr(cadr(e)));
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
551 return list2(car(e),pexpr(cadr(e)));
462
kono
parents:
diff changeset
552 }
kono
parents:
diff changeset
553
kono
parents:
diff changeset
554 static int
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
555 p_conv(int e1,int e2)
462
kono
parents:
diff changeset
556 {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
557 int t,stype = type;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
558 if (is_const(e2) && (t=type_of_conv(e1))) {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
559 type = INT;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
560 e1 = correct_type(e2,t);
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
561 type = stype;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
562 return e1;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
563 }
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
564 return list3(CONV,pexpr(e2),e1);
462
kono
parents:
diff changeset
565 }
kono
parents:
diff changeset
566
kono
parents:
diff changeset
567 static int
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
568 pbinop(int op,int e1,int e2)
462
kono
parents:
diff changeset
569 {
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
570 e1 = pexpr(e1);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
571 e2 = pexpr(e2);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
572 if (is_const(e1)&&is_const(e2)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
573 int t;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
574 if((t= type_of_bop(op)))
599
df04bc5fd5fe *** empty log message ***
kono
parents: 585
diff changeset
575 return binop(OP(op),e1,e2,t,t);
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
576 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
577 return list3(op,e1,e2);
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
578 }
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
579
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
580 static int
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
581 plor(int op,int e1,int e2)
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
582 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
583 int e = pexpr(e1);
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
584 return list3(op,e,pexpr(e2));
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
585 }
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
586
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
587 static int
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
588 pland(int op,int e1,int e2)
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
589 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
590 int e = pexpr(e1);
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
591 return list3(op,e,pexpr(e2));
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
592 }
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
593
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
594 static int
462
kono
parents:
diff changeset
595 psassign(int e)
kono
parents:
diff changeset
596 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
597 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
598 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
599 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
600 }
kono
parents:
diff changeset
601
kono
parents:
diff changeset
602 static int
kono
parents:
diff changeset
603 passign(int e)
kono
parents:
diff changeset
604 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
605 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
606 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
607 return list3(car(e),e1,e2);
462
kono
parents:
diff changeset
608 }
kono
parents:
diff changeset
609
kono
parents:
diff changeset
610 static int
kono
parents:
diff changeset
611 passop(int e)
kono
parents:
diff changeset
612 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
613 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
614 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
615 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
616 }
kono
parents:
diff changeset
617
kono
parents:
diff changeset
618 static int
kono
parents:
diff changeset
619 pdassign(int e)
kono
parents:
diff changeset
620 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
621 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
622 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
623 return list3(car(e),e1,e2);
462
kono
parents:
diff changeset
624 }
kono
parents:
diff changeset
625
kono
parents:
diff changeset
626 static int
kono
parents:
diff changeset
627 pdassop(int e)
kono
parents:
diff changeset
628 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
629 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
630 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
631 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
632 }
kono
parents:
diff changeset
633
kono
parents:
diff changeset
634 static int
kono
parents:
diff changeset
635 plassign(int e)
kono
parents:
diff changeset
636 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
637 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
638 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
639 return list3(car(e),e1,e2);
462
kono
parents:
diff changeset
640 }
kono
parents:
diff changeset
641
kono
parents:
diff changeset
642 static int
kono
parents:
diff changeset
643 plassop(int e)
kono
parents:
diff changeset
644 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
645 int e1 = pexpr(cadr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
646 int e2 = pexpr(caddr(e));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
647 return list4(car(e),e1,e2,cadddr(e));
462
kono
parents:
diff changeset
648 }
kono
parents:
diff changeset
649
kono
parents:
diff changeset
650 static int
kono
parents:
diff changeset
651 palloc(int e)
kono
parents:
diff changeset
652 {
695
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
653 int e1 = pexpr(e);
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
654 if (car(e1)==CONST)
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
655 return list2(ADDRESS,list3(LVAR,new_lvar_align(cadr(e1),16),0));
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
656 return list2(ALLOCA,e1);
462
kono
parents:
diff changeset
657 }
kono
parents:
diff changeset
658
kono
parents:
diff changeset
659 static int
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
660 pcomma(int e1,int e2)
462
kono
parents:
diff changeset
661 {
556
ef225b589888 s-dandy fix
kono
parents: 555
diff changeset
662 int e = pexpr(e1);
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
663 return list3(COMMA,e,pexpr(e2));
462
kono
parents:
diff changeset
664 }
kono
parents:
diff changeset
665
kono
parents:
diff changeset
666 static int
kono
parents:
diff changeset
667 prbit_field(int e)
kono
parents:
diff changeset
668 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
669 return list3(car(e),pexpr(cadr(e)),caddr(e));
462
kono
parents:
diff changeset
670 }
kono
parents:
diff changeset
671
kono
parents:
diff changeset
672 static int
kono
parents:
diff changeset
673 pbassign(int e)
kono
parents:
diff changeset
674 {
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
675 // list4(BASS,e1,e2,list2(BASS,t)));
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
676 int e1=pexpr(caddr(e));
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
677 return list4(car(e),pexpr(cadr(e)),e1,cadddr(e));
462
kono
parents:
diff changeset
678 }
kono
parents:
diff changeset
679
kono
parents:
diff changeset
680 static int
kono
parents:
diff changeset
681 pbassop(int e)
kono
parents:
diff changeset
682 {
695
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
683 int e1 = caddr(e);
3e69986a7b82 *** empty log message ***
kono
parents: 692
diff changeset
684 if (car(e)==BASSOP) e1=pexpr(e1);
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
685 return list4(car(e),pexpr(cadr(e)),e1,cadddr(e));
462
kono
parents:
diff changeset
686 }
kono
parents:
diff changeset
687
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
688 /*
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
689 variable initialization with offset
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
690 */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
691
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
692 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
693 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
694 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
695 int ass,sz,bfd;
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 #if STRUCT_ALIGN
786
3ebbec5a72dc i64 strinit inlined struct init does not zero fill
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 785
diff changeset
698 if (t!=EMPTY) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
699 int strtype=0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
700 if (t>0 && (car(t)==STRUCT||car(t)==UNION))
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
701 strtype=1;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
702 sz = size(t);
794
032dc03be02e i64 arg_register in inline mode
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 788
diff changeset
703 if (lp64 && (sz%size_of_longlong==0||strtype)) {
032dc03be02e i64 arg_register in inline mode
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 788
diff changeset
704 offset = align(offset,size_of_longlong);
032dc03be02e i64 arg_register in inline mode
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 788
diff changeset
705 } else if (sz%size_of_int==0||strtype) {
032dc03be02e i64 arg_register in inline mode
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 788
diff changeset
706 offset = align(offset,size_of_int);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
707 }
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 #endif
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
710 if (car(e)==ADDRESS||car(e)==GVAR) {
702
8eadf0db2970 *** empty log message ***
kono
parents: 701
diff changeset
711 if (scalar(t)) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
712 t = list2(POINTER,VOID); // fake
702
8eadf0db2970 *** empty log message ***
kono
parents: 701
diff changeset
713 } else if (t>0 && car(t)==ARRAY) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
714 } else {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
715 error(TYERR);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
716 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
717 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
718 if (t==EMPTY) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
719 /* empty space in partial initialization */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
720 return offset+cadr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
721 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
722 type = t;
702
8eadf0db2970 *** empty log message ***
kono
parents: 701
diff changeset
723 // e = rvalue_t(e,t);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
724 if (!scalar(type) && (type>0 && (car(type)!=ADDRESS && car(type)!=ARRAY)))
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
725 e = correct_type(e,target_type);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
726 /* 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
727 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
728 */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
729 ass = assign_expr0(
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
730 offset?
770
b674d8421430 i64 inline ( indirect call )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 767
diff changeset
731 lp64?list3(LADD,var,llist2(LCONST,offset)): // binop?
b674d8421430 i64 inline ( indirect call )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 767
diff changeset
732 list3(ADD,var,list2(CONST,offset)):
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
733 var,
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
734 e,target_type,t); // already correct_typed
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
735 init_vars = list2(ass,init_vars);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
736 if (t>0&&car(t)==BIT_FIELD) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
737 sz = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
738 bfd = cadr(caddr(t)); /* bit_field_disp */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
739 #if BIT_FIELD_CODE
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
740 code_bit_field_disp(t,&offset,&bfd,&sz);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
741 #endif
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
742 return offset+sz;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
743 }
785
33d9a4b05bc8 i64 decl_data
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 778
diff changeset
744 return offset+size(target_type);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
745 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
746
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
747 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
748
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
749 static void
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
750 pflush_decl_data(int var,int sz)
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 int offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
753 int offset0=0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
754 int e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
755 int t,offset1=0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
756 int smode=mode;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
757 int init = decl_str_init;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
758
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
759 decl_str_init = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
760 mode = STADECL;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
761 /*
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
762 decl_str_init
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
763 output delayed decl data
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
764 list4(offset,next,expression,list2(type0,type1));
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 while (init) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
767 offset= car(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
768 e=caddr(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
769 t=car(cadddr(init)); // type of source
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
770 type=cadr(cadddr(init)); // destination type
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
771 if (offset!=offset0) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
772 // make space
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
773 passign_data(var,EMPTY,list2(CONST,offset-offset0),EMPTY,offset0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
774 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
775 e = pexpr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
776 // offset0 = passign_data(var,type,e,t,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
777 offset0 = pdecl_data(var,type,e,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
778 init = cadr(init);
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 offset = offset0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
781 if ((sz=(offset1+sz-offset))>0)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
782 passign_data(var,EMPTY,list2(CONST,sz),EMPTY,offset0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
783 local_nptr = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
784 mode=smode;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
785 }
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 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
788 str_init_eq()
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
789 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
790 // error(-1); // duplicate struct field value
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
791 return 2; // allow override keep unique
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
792 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
793
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 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
796 pdecl_data_array(int var,int init,int target_type,int offset)
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 int type0 = cadr(target_type); /* array item type */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
799 int e;
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 for(; init; init = cadr(init)) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
802 // unordered data with tag or array offset
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
803 if (car(init)!=DECL_DATA_ARRAY) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
804 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
805 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
806 e = pexpr(caddr(init));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
807 offset = pdecl_data(var,type0,e,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
808 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
809 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
810 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
811
788
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
812 #if 0
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
813 static void
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
814 pzfill(int var, int offset, int sz)
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
815 {
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
816 int c0 = list2(CONST,0);
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
817 int l0 = llist2(LCONST,0L);
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
818 while(sz>0) {
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
819 int t,c;
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
820 switch(sz) {
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
821 case 1: t = UCHAR; c = c0; break;
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
822 case 2: t = USHORT; c = c0; break;
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
823 case 4: t = UNSIGNED; c = c0; break;
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
824 default: t = ULONGLONG; c = l0; break;
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
825 }
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
826 int ass = assign_expr0(
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
827 offset?
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
828 lp64?list3(LADD,var,llist2(LCONST,offset)): // binop?
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
829 list3(ADD,var,list2(CONST,offset)):
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
830 var,
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
831 c ,t,t); // already correct_typed
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
832 init_vars = list2(ass,init_vars);
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
833 sz -= size(t);
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
834 offset += size(t);
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
835 }
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
836 }
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
837 #endif
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
838
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
839 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
840 pdecl_data_field(int var,int init,int target_type,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
841 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
842 int type0 = target_type; /* list of fields */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
843 int e,t,type1,foffset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
844 NMTBL *n;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
845
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
846 for(; init; init = cadr(init)) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
847 // unordered data with tag or array offset
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
848 if (car(init)!=DECL_DATA_FIELD) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
849 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
850 }
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
851 n = ncadddr(init);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
852 type1 = search_struct_type(type0,n->nm,&foffset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
853 e = caddr(init);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
854 if (car(e)!=DECL_DATA) error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
855 t = caddr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
856 decl_str_init=insert_ascend(decl_str_init,
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
857 glist4(offset+foffset,0,e,glist2(type1,t)),str_init_eq);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
858 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
859 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
860 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
861
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
862 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
863 pdecl_data_list(int var,int init,int target_type,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
864 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
865 int type0 = caddr(target_type); /* list of fields */
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
866 int e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
867
703
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
868 for(; init; init = cadr(init),type0 = cadr(type0)) {
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
869 if (car(init)==DECL_DATA) {
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
870 // casted initilizer ?
703
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
871 //error(-1);
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
872 e = cadr(init); // value
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
873 if (!e) continue; // {...,} case
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
874 e = pexpr(e);
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
875 offset = pdecl_data(var,caddr(init),e,offset);
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
876 continue;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
877 }
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
878 // ordered data
703
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
879 if (car(init)!=DECL_DATA_LIST) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
880 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
881 }
703
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
882 e = caddr(init);
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
883 if (!e) continue; // {...,} case
874adc2528f9 strinit fix on parse mode (half done)
kono
parents: 702
diff changeset
884 e = pexpr(e);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
885 offset = pdecl_data(var,car(type0),e,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
886 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
887 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
888 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
889
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
890 static int
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
891 pdecl_data(int var, int target_type, int init,int offset)
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
892 {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
893 int t,e;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
894 int save_decl_str_init = decl_str_init;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
895 decl_str_init = 0;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
896 target_type = type_value(target_type);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
897
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
898 if (init==0) {
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
899 // empty declaration
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
900 // it can happen like a = (struct hoge){};
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
901 return offset;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
902 }
682
639db8597a58 decl_data optimization
kono
parents: 681
diff changeset
903 e = cadr(init);
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
904 if (car(init)==DECL_DATA) {
682
639db8597a58 decl_data optimization
kono
parents: 681
diff changeset
905 switch(car(e)) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
906 case DECL_DATA_LIST:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
907 offset = pdecl_data_list(var,e,target_type,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
908 break;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
909 case DECL_DATA_FIELD:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
910 offset = pdecl_data_field(var,e,target_type,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
911 break;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
912 case DECL_DATA_ARRAY:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
913 offset = pdecl_data_array(var,e,target_type,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
914 break;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
915 default:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
916 e = pexpr(e);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
917 t = caddr(init); // type of source
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
918 offset = passign_data(var,target_type,e,t,offset);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
919 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
920 } else {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
921 error(-1);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
922 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
923 if (decl_str_init) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
924 int sz = size(target_type);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
925 pflush_decl_data(var,sz);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
926 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
927 decl_str_init = save_decl_str_init;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
928 return offset;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
929 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
930
561
de0b0380c461 comments
kono
parents: 558
diff changeset
931 // handle local variable declaration
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
932 // initialization is accumrated in init argument
561
de0b0380c461 comments
kono
parents: 558
diff changeset
933 // should consider int k=some_compile_time_constant;
462
kono
parents:
diff changeset
934 static int
kono
parents:
diff changeset
935 p_decl(int e)
kono
parents:
diff changeset
936 {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
937 // list4(ST_DECL,parse,(int)n,list3(mode,stmode,ctmode),init);
712
bf94c295d763 *** empty log message ***
kono
parents: 711
diff changeset
938 int ctmode=caddr(e);
bf94c295d763 *** empty log message ***
kono
parents: 711
diff changeset
939 NMTBL *n=ncaddddr(e);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
940 int dsp = n->dsp;
569
1fcad06b264a gcc4 (ia32)
kono
parents: 566
diff changeset
941 int v=0;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
942 int sstmode = stmode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
943 int smode = mode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
944 int save_init_vars = init_vars;
712
bf94c295d763 *** empty log message ***
kono
parents: 711
diff changeset
945 int init = cadddr(e); // variable initialization
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
946
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
947 init_vars = 0;
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
948 // in real partial evaluation, we have to check whether this variable
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
949 // is used or not.
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
950 if (ctmode) {
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
951 mode = car(ctmode); stmode = cadr(ctmode); ctmode = caddr(ctmode);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
952 } else {
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
953 mode = LDECL; stmode = 0; ctmode = 0;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
954 }
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
955 switch(stmode) {
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
956 case EXTRN: case EXTRN1: case STATIC:
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
957 // def(n,ctmode); we don't need this. already done.
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
958 // stmode = sstmode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
959 if (init) error(-1);
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
960 stmode = sstmode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
961 mode = smode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
962 init_vars = save_init_vars;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
963 return pexpr(cadr(e));
529
ad874ef77dde use_input_reg...
kono
parents: 528
diff changeset
964 #if 1
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
965 case REGISTER:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
966 switch(n->ty) {
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
967 case ULONGLONG: case LONGLONG:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
968 v = get_lregister_var(n); break;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
969 case FLOAT:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
970 v = get_dregister_var(n,0); break;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
971 case DOUBLE:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
972 v = get_dregister_var(n,1); break;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
973 default:
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
974 if (scalar(n->ty))
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
975 v = get_register_var(n);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
976 else
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
977 error(TYERR);
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
978 }
529
ad874ef77dde use_input_reg...
kono
parents: 528
diff changeset
979 break;
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
980 #endif
701
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
981 // case LLDECL: LLDECL is mode, not stmode (bad design)
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
982 // v = list2(FLABEL,fwdlabel()); break;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
983 default:
701
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
984 if (mode==STADECL) {
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
985 if (init) {
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
986 v = list3n(GVAR,0,n);
701
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
987 gen_decl_data(init,v);
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
988 }
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
989 stmode = sstmode;
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
990 mode = smode;
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
991 init_vars = save_init_vars;
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
992 return pexpr(cadr(e));
bf4fd39737e9 fix static in parse mode
kono
parents: 699
diff changeset
993 }
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
994 if (n->sc==FLABEL)
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
995 v = list3n(LVAR,fwdlabel(),n);
801
6b93d95a1564 lvar align
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 795
diff changeset
996 else {
6b93d95a1564 lvar align
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 795
diff changeset
997 NMTBL tn;
6b93d95a1564 lvar align
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 795
diff changeset
998 tn = *n;
6b93d95a1564 lvar align
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 795
diff changeset
999 code_lvar_alignment(disp,&tn,n->ty,size(n->ty));
6b93d95a1564 lvar align
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 795
diff changeset
1000 v = list3n(LVAR,tn.dsp,n);
6b93d95a1564 lvar align
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 795
diff changeset
1001 }
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1002 }
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1003 if (n->sc!=FLABEL)
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1004 inline_lvars = glist2(v,inline_lvars);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1005 if (heap[pdisp+dsp]) {
712
bf94c295d763 *** empty log message ***
kono
parents: 711
diff changeset
1006 fprintf(stderr,"## double p_decl %s %s\n",(ncaddr(heap[pdisp+dsp]))->nm,n->nm);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1007 error(-1);
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1008 }
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1009 heap[pdisp+dsp]=v;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1010 stmode = sstmode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1011 mode = smode;
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1012 if (init) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1013 pdecl_data(v,n->ty,init,0);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1014 if (init_vars) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1015 int e1 = pexpr(cadr(e));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1016 init_vars = reverse0(init_vars);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1017 while (init_vars) {
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1018 e1 = list3(ST_COMP,e1,car(init_vars));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1019 init_vars = cadr(init_vars);
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1020 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1021 init_vars = save_init_vars;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1022 return e1;
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1023 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1024 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1025 init_vars = save_init_vars;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1026 return pexpr(cadr(e));
462
kono
parents:
diff changeset
1027 }
kono
parents:
diff changeset
1028
kono
parents:
diff changeset
1029 static int
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1030 p_if(int e1)
462
kono
parents:
diff changeset
1031 {
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1032 int cond,l1,l2;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1033 int e2=caddr(e1),e3;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1034 cond = pexpr(car(e2));
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1035 // conv->if_then_();
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1036 l1 = pexpr(cadr(e2));
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1037 if ((e3=caddr(e2))) { // else
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1038 l2 = pexpr(e3);
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1039 } else {
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1040 l2 = 0;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1041 }
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1042 return list3(ST_IF,pexpr(cadr(e1)),list3(cond,l1,l2));
462
kono
parents:
diff changeset
1043 }
kono
parents:
diff changeset
1044
kono
parents:
diff changeset
1045 static int
kono
parents:
diff changeset
1046 p_do(int e)
kono
parents:
diff changeset
1047 {
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1048 int e2 = pexpr(caddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1049 int e3 = pexpr(cadddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1050 return list4(ST_DO,pexpr(cadr(e)),e2,e3);
462
kono
parents:
diff changeset
1051 }
kono
parents:
diff changeset
1052
kono
parents:
diff changeset
1053 static int
kono
parents:
diff changeset
1054 p_while(int e)
kono
parents:
diff changeset
1055 {
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1056 int e2 = pexpr(caddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1057 int e3 = pexpr(cadddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1058 return list4(ST_WHILE,pexpr(cadr(e)),e2,e3);
462
kono
parents:
diff changeset
1059 }
kono
parents:
diff changeset
1060
kono
parents:
diff changeset
1061 static int
kono
parents:
diff changeset
1062 p_for(int e)
kono
parents:
diff changeset
1063 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1064 int e1=caddr(e);
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1065 int p0=pexpr(car(e1));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1066 int p1=pexpr(cadr(e1));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1067 int p2=pexpr(caddr(e1));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1068 int p3=pexpr(cadddr(e1));
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1069 // unfolding for constant case?
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1070 return list3(ST_FOR,pexpr(cadr(e)), list4(p0,p1,p2,p3));
462
kono
parents:
diff changeset
1071 }
kono
parents:
diff changeset
1072
kono
parents:
diff changeset
1073 static int
kono
parents:
diff changeset
1074 p_switch(int e)
kono
parents:
diff changeset
1075 {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1076 int e2 = pexpr(caddr(e)); // switch variable
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1077 int e3 = pexpr(cadddr(e)); // a statement in switch
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1078 // if cadr(e) is a constant, we have to prune case statement.
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1079 // No we cannot. A statement in case may contain labels or
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1080 // falling down entry.
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1081 // case constants are need to be pexpred in p_case.
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1082
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1083 return list4(ST_SWITCH,pexpr(cadr(e)),e2,e3);
462
kono
parents:
diff changeset
1084 }
kono
parents:
diff changeset
1085
kono
parents:
diff changeset
1086 static int
kono
parents:
diff changeset
1087 p_comp(int e)
kono
parents:
diff changeset
1088 {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1089 int e1;
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1090 e1=pexpr(caddr(e));
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1091 return list3(ST_COMP,pexpr(cadr(e)),e1);
462
kono
parents:
diff changeset
1092 }
kono
parents:
diff changeset
1093
kono
parents:
diff changeset
1094 static int
kono
parents:
diff changeset
1095 p_break(int e)
kono
parents:
diff changeset
1096 {
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1097 return list2(ST_BREAK,pexpr(cadr(e)));
462
kono
parents:
diff changeset
1098 }
kono
parents:
diff changeset
1099
kono
parents:
diff changeset
1100 static int
kono
parents:
diff changeset
1101 p_continue(int e)
kono
parents:
diff changeset
1102 {
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1103 return list2(ST_CONTINUE,pexpr(cadr(e)));
462
kono
parents:
diff changeset
1104 }
kono
parents:
diff changeset
1105
kono
parents:
diff changeset
1106 static int
kono
parents:
diff changeset
1107 p_case(int e)
kono
parents:
diff changeset
1108 {
506
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1109 int new=0,clist = caddr(e);
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1110 // insert destory clist, we have to copy it now
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1111 // car(clist) have to be expred, it may contain operators.
506
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1112 for(;clist;clist=cadr(clist))
713
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
1113 // new=glist3(cexpr(pexpr(car(clist))),new,0);
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
1114 new=glist3(car(clist),new,0);
506
96af6754acd3 *** empty log message ***
kono
parents: 505
diff changeset
1115 return list3(ST_CASE,pexpr(cadr(e)),reverse0(new));
462
kono
parents:
diff changeset
1116 }
kono
parents:
diff changeset
1117
kono
parents:
diff changeset
1118 static int
kono
parents:
diff changeset
1119 p_default(int e)
kono
parents:
diff changeset
1120 {
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1121 // should be removed if case value is a constant
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1122 return list2(ST_DEFAULT,pexpr(cadr(e)));
462
kono
parents:
diff changeset
1123 }
kono
parents:
diff changeset
1124
kono
parents:
diff changeset
1125 static int
kono
parents:
diff changeset
1126 p_return(int e)
kono
parents:
diff changeset
1127 {
524
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1128 int e1=pexpr(caddr(e));
135afeb2e134 inline first work. no constant propagation.
kono
parents: 519
diff changeset
1129 return list3(ST_RETURN,pexpr(cadr(e)),e1);
462
kono
parents:
diff changeset
1130 }
kono
parents:
diff changeset
1131
kono
parents:
diff changeset
1132 static int
kono
parents:
diff changeset
1133 p_goto(int e)
kono
parents:
diff changeset
1134 {
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1135 int e1,lb,e2;
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1136 if ((e1=caddr(e))) {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1137 switch(car(e1)) {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1138 case RINDIRECT: e1=pexpr(e1); break;
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1139 case CODE: e2=pexpr(cadr(e1));
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
1140 e1=list3(JUMP,e2,pexpr(caddr(e1))); break;
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1141 case FLABEL: /* error(-1); */ break;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1142 case IVAR:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1143 lb = cadr(e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1144 if (!(e1=heap[pdisp+lb])) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1145 e1 = heap[pdisp+lb]=list2(FLABEL,fwdlabel());
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1146 }
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1147 break;
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1148 case JUMP:
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1149 e1 = list3(JUMP,pexpr(cadr(e1)),pexpr(caddr(e1)));
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1150 break;
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1151 default:
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
1152 error(-1);
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1153 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1154 }
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1155 return list3(ST_GOTO,pexpr(cadr(e)),e1);
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1156 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1157
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1158 static int
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1159 p_list_expr(int e)
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1160 {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1161 int e3,new = 0;
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1162 for (e3 = e; e3; e3 = cadr(e3)) {
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1163 new= list2( pexpr(car(e3)), new);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1164 }
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1165 return reverse0(new);
462
kono
parents:
diff changeset
1166 }
kono
parents:
diff changeset
1167
kono
parents:
diff changeset
1168 static int
kono
parents:
diff changeset
1169 p_asm(int e)
kono
parents:
diff changeset
1170 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1171 int param=caddr(e);
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1172 int e1 = p_list_expr(cadddr(e));
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1173 return list4(ST_ASM,pexpr(cadr(e)),param,e1);
462
kono
parents:
diff changeset
1174 }
kono
parents:
diff changeset
1175
kono
parents:
diff changeset
1176 static int
kono
parents:
diff changeset
1177 p_label(int e)
kono
parents:
diff changeset
1178 {
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1179 int e1,lb;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1180 if ((e1=caddr(e))) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1181 switch(car(e1)) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1182 case FLABEL: /* error(-1); */ break;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1183 case IVAR:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1184 lb = cadr(e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1185 if (!(e1=heap[pdisp+lb])) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1186 e1 = heap[pdisp+lb]=list2(FLABEL,fwdlabel());
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1187 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1188 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1189 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1190 return list3(ST_LABEL,pexpr(cadr(e)),e1);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1191 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1192
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1193 static int
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1194 p_label_var(int e)
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1195 {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1196 int d,e1;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1197 switch(car(e1=e)) {
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1198 case LVAR: /* error(-1) */ break;
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1199 case IVAR:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1200 // should this done in p_decl? (in __label__?)
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1201 d = cadr(e);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1202 if (!(e1=(heap[pdisp+d]))) {
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1203 // error(-1);
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1204 e1 = heap[pdisp+d]=list3(LVAR,fwdlabel(),caddr(e));
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1205 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1206 }
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1207 return list2(LABEL,e1);
462
kono
parents:
diff changeset
1208 }
kono
parents:
diff changeset
1209
kono
parents:
diff changeset
1210 static int
kono
parents:
diff changeset
1211 p_bool(int e)
kono
parents:
diff changeset
1212 {
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1213 error(-1);
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1214 return e;
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1215 }
462
kono
parents:
diff changeset
1216
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1217 static int
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1218 p_comment(int e)
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1219 {
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1220 glineno++;
713
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
1221 plineno = caddr(e);
88e364604533 *** empty log message ***
kono
parents: 712
diff changeset
1222 return list4n(ST_COMMENT,pexpr(cadr(e)),caddr(e),ncadddr(e));
462
kono
parents:
diff changeset
1223 }
kono
parents:
diff changeset
1224
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1225 static int
512
53ec17a8af7d inline continue....
kono
parents: 511
diff changeset
1226 p_inline(int e)
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1227 {
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1228 int e3;
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1229 int narg;
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1230
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1231 /* inline function arguments */
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1232 narg = 0;
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1233 for (e3 = caddr(e); e3; e3 = cadr(e3)) {
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1234 narg=list3(pexpr(car(e3)),narg,caddr(e3));
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1235 }
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1236 return list4(INLINE,cadr(e),reverse0(narg),cadddr(e));
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1237 }
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1238
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1239 extern int
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1240 pexpr(int e1)
462
kono
parents:
diff changeset
1241 {
kono
parents:
diff changeset
1242 int e2,e3;
kono
parents:
diff changeset
1243
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1244 // if (inmode) error(-1);
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1245 if (e1==0) return 0;
462
kono
parents:
diff changeset
1246 e2 = cadr(e1);
kono
parents:
diff changeset
1247 switch (car(e1)){
kono
parents:
diff changeset
1248 case GVAR: case RGVAR: case CRGVAR: case CURGVAR: case SRGVAR:
788
fcb642ef08c9 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 786
diff changeset
1249 case URGVAR:
462
kono
parents:
diff changeset
1250 case SURGVAR: case REGISTER:
kono
parents:
diff changeset
1251 case DREGISTER: case FREGISTER:
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1252 case FRGVAR: case DRGVAR:
462
kono
parents:
diff changeset
1253 case LREGISTER:
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1254 case LRGVAR: case LURGVAR:
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1255 case CONST:
462
kono
parents:
diff changeset
1256 case DCONST: case FCONST:
kono
parents:
diff changeset
1257 case LCONST:
kono
parents:
diff changeset
1258 case STRING:
778
a177c65f3e37 large string (STRINGS)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 770
diff changeset
1259 case STRINGS:
462
kono
parents:
diff changeset
1260 case FNAME:
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1261 case FLABEL:
616
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1262 case BUILTIN_INF:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1263 case BUILTIN_INFF:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1264 case BUILTIN_INFL:
462
kono
parents:
diff changeset
1265 return e1;
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1266 case RSTRUCT:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1267 // list3(RSTRUCT,e,size)
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1268 return pexpr(e2);
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1269 case LABEL:
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1270 return p_label_var(e2);
462
kono
parents:
diff changeset
1271 case LVAR:
kono
parents:
diff changeset
1272 case RLVAR: case CRLVAR: case CURLVAR: case SRLVAR: case SURLVAR:
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1273 case FRLVAR: case DRLVAR:
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1274 case LRLVAR: case LURLVAR:
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1275 return e1;
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1276 case IVAR:
462
kono
parents:
diff changeset
1277 return p_lvar(e1);
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1278 case CODE:
462
kono
parents:
diff changeset
1279 case FUNCTION:
kono
parents:
diff changeset
1280 return pfunction(e1);
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
1281 case JUMP:
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1282 e2 = pexpr(e2);
574
aad312f61654 remove too much inmode.
kono
parents: 569
diff changeset
1283 return list3(car(e1),e2,pexpr(cadddr(e1)));
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1284 case ARRAY:
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1285 e2 = pexpr(e2);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1286 e1 = binop(ADD,e2,pexpr(caddr(e1)),cadddr(e1),caddddr(e1));
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1287 return indop(e1);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1288 case PERIOD:
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1289 e2 = pexpr(e2);
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1290 nptr = ncadddr(e1);
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1291 type = caddr(e1);
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1292 return strop(e2,0);
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1293 case ARROW:
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1294 e2 = pexpr(e2);
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1295 nptr = ncadddr(e1);
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1296 type = caddr(e1);
601
6b808480f08b strcut, array parse tree in inmode.
kono
parents: 599
diff changeset
1297 return strop(e2,1);
462
kono
parents:
diff changeset
1298 case INLINE:
512
53ec17a8af7d inline continue....
kono
parents: 511
diff changeset
1299 return p_inline(e1);
462
kono
parents:
diff changeset
1300 case INDIRECT:
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
1301 return pindirect(e1);
462
kono
parents:
diff changeset
1302 case RINDIRECT: case URINDIRECT:
kono
parents:
diff changeset
1303 case CRINDIRECT: case CURINDIRECT:
kono
parents:
diff changeset
1304 case SRINDIRECT: case SURINDIRECT:
kono
parents:
diff changeset
1305 case FRINDIRECT: case DRINDIRECT:
kono
parents:
diff changeset
1306 case LRINDIRECT: case LURINDIRECT:
kono
parents:
diff changeset
1307 return prindirect(e1);
kono
parents:
diff changeset
1308 case ADDRESS:
502
bc66e49e25a2 inline continue...
kono
parents: 501
diff changeset
1309 return paddress(e1);
566
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1310 case ST_OP:
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1311 e3=caddr(e1);
ddc435b64fc8 binop/inline interaction
kono
parents: 561
diff changeset
1312 e1=pexpr(car(e3));
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1313 return binop0(e2,e1,pexpr(cadr(e3)),caddr(e3),cadddr(e3));
462
kono
parents:
diff changeset
1314 case MINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1315 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1316 if (car(e3)==CONST) return list2(CONST,-cadr(e3));
kono
parents:
diff changeset
1317 return list2(car(e1),e3);
kono
parents:
diff changeset
1318 #if LONGLONG_CODE
kono
parents:
diff changeset
1319 case LMINUS:
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 llist2(LCONST,-lcadr(e3));
kono
parents:
diff changeset
1322 return list2(car(e1),e3);
kono
parents:
diff changeset
1323 #endif
kono
parents:
diff changeset
1324 #if FLOAT_CODE
kono
parents:
diff changeset
1325 case DMINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1326 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1327 if (car(e3)==DCONST) return dlist2(DCONST,-dcadr(e3));
kono
parents:
diff changeset
1328 if (car(e3)==FCONST) return dlist2(FCONST,-dcadr(e3));
kono
parents:
diff changeset
1329 return list2(car(e1),e3);
kono
parents:
diff changeset
1330 case FMINUS:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1331 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1332 if (car(e3)==DCONST) return dlist2(DCONST,-dcadr(e3));
kono
parents:
diff changeset
1333 if (car(e3)==FCONST) return dlist2(FCONST,-dcadr(e3));
kono
parents:
diff changeset
1334 return list2(car(e1),e3);
kono
parents:
diff changeset
1335 #endif
kono
parents:
diff changeset
1336 case CONV:
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1337 return p_conv(caddr(e1),e2);
462
kono
parents:
diff changeset
1338 case BNOT: /* ~ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1339 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1340 if (car(e3)==CONST) return list2(CONST,~cadr(e3));
kono
parents:
diff changeset
1341 return list2(BNOT,e3);
kono
parents:
diff changeset
1342 case LNOT: /* ! */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1343 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1344 if (car(e3)==CONST) return list2(CONST,!cadr(e3));
kono
parents:
diff changeset
1345 return list2(LNOT,e3);
kono
parents:
diff changeset
1346 case PREINC:
kono
parents:
diff changeset
1347 case UPREINC:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1348 if ((e3 = pexpr(e2))==e2) return e1;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1349 if (car(e3)==CONST) return list2(CONST,cadr(e3)+caddr(e1));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1350 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1351 case POSTINC:
kono
parents:
diff changeset
1352 case UPOSTINC:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1353 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1354 if (car(e3)==CONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1355 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1356 #if FLOAT_CODE
kono
parents:
diff changeset
1357 case DPREINC: /* ++d */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1358 if ((e3 = pexpr(e2))==e2) return e1;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1359 if (car(e3)==FCONST) return dlist2(FCONST,dcadr(e3)+cadr(e2));
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1360 if (car(e3)==DCONST) return dlist2(DCONST,dcadr(e3)+cadr(e2));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1361 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1362 case DPOSTINC: /* d++ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1363 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1364 if (car(e3)==FCONST||car(e3)==DCONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1365 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1366 case FPREINC: /* ++f */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1367 if ((e3 = pexpr(e2))==e2) return e1;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1368 if (car(e3)==FCONST) return dlist2(FCONST,dcadr(e3)+cadr(e2));
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1369 if (car(e3)==DCONST) return dlist2(DCONST,dcadr(e3)+cadr(e2));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1370 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1371 case FPOSTINC: /* f++ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1372 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1373 if (car(e3)==FCONST||car(e3)==DCONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1374 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1375 #endif
kono
parents:
diff changeset
1376 #if LONGLONG_CODE
kono
parents:
diff changeset
1377 case LPREINC: /* ++d */
kono
parents:
diff changeset
1378 case LUPREINC: /* ++d */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1379 if ((e3 = pexpr(e2))==e2) return e1;
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1380 if (car(e3)==LCONST) return llist2(LCONST,lcadr(e3)+cadr(e2));
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1381 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1382 case LPOSTINC: /* d++ */
kono
parents:
diff changeset
1383 case LUPOSTINC: /* d++ */
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1384 if ((e3 = pexpr(e2))==e2) return e1;
462
kono
parents:
diff changeset
1385 if (car(e3)==LCONST) return e3;
503
3c95c69aa80e *** empty log message ***
kono
parents: 502
diff changeset
1386 return list4(car(e1),e3,caddr(e1),cadddr(e1));
462
kono
parents:
diff changeset
1387 #endif
kono
parents:
diff changeset
1388 case MUL: case UMUL:
kono
parents:
diff changeset
1389 case DIV: case UDIV:
kono
parents:
diff changeset
1390 case MOD: case UMOD:
kono
parents:
diff changeset
1391 case LSHIFT: case ULSHIFT: case RSHIFT: case URSHIFT:
kono
parents:
diff changeset
1392 case ADD: case SUB: case BAND: case EOR: case BOR: case CMP: case CMPGE:
kono
parents:
diff changeset
1393 case UCMP: case CMPEQ: case CMPNEQ: case UCMPGE:
kono
parents:
diff changeset
1394 #if FLOAT_CODE
kono
parents:
diff changeset
1395 case DMUL: case DDIV:
kono
parents:
diff changeset
1396 case DADD: case DSUB:
kono
parents:
diff changeset
1397 case DCMP: case DCMPGE: case DCMPEQ: case DCMPNEQ:
kono
parents:
diff changeset
1398 case FMUL: case FDIV:
kono
parents:
diff changeset
1399 case FADD: case FSUB:
kono
parents:
diff changeset
1400 case FCMP: case FCMPGE: case FCMPEQ: case FCMPNEQ:
kono
parents:
diff changeset
1401 #endif
kono
parents:
diff changeset
1402 #if LONGLONG_CODE
kono
parents:
diff changeset
1403 case LMUL: case LUMUL:
kono
parents:
diff changeset
1404 case LDIV: case LUDIV:
kono
parents:
diff changeset
1405 case LMOD: case LUMOD:
kono
parents:
diff changeset
1406 case LLSHIFT: case LULSHIFT: case LRSHIFT: case LURSHIFT:
kono
parents:
diff changeset
1407 case LADD: case LSUB: case LBAND: case LEOR: case LBOR: case LCMP:
kono
parents:
diff changeset
1408 #endif
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1409 return pbinop(car(e1),e2,caddr(e1));
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1410 // relational operator
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1411 case GT: case UGT: case GE: case UGE: case LT:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1412 case ULT: case LE: case ULE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1413 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
1414 case LOP+ULT: case LOP+LE: case LOP+ULE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1415 case DOP+GT: case DOP+GE: case DOP+LT: case DOP+LE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1416 case FOP+GT: case FOP+GE: case FOP+LT: case FOP+LE:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1417 case FOP+EQ: case FOP+NEQ:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1418 case EQ: case NEQ: case DOP+EQ: case DOP+NEQ:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1419 case LOP+EQ: case LOP+NEQ:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1420 return pbinop(car(e1),e2,caddr(e1));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1421 case LAND:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1422 return pland(car(e1),cadr(e1),caddr(e1));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1423 case LOR:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1424 return plor(car(e1),cadr(e1),caddr(e1));
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
1425 case LCOND: case DCOND: case FCOND: case COND: case UCOND: case LUCOND:
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1426 e2 = pexpr(e2);
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1427 if (car(e2)==CONST) return
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1428 caddr(e1)? pexpr(cadr(e2)?caddr(e1):cadddr(e1)) :
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1429 pexpr(cadr(e2)?e2:cadddr(e1)); // GNU extension h?:g
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1430 e3=pexpr(caddr(e1));
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1431 return list4(car(e1),e2,e3,pexpr(cadddr(e1)));
462
kono
parents:
diff changeset
1432 case STASS:
kono
parents:
diff changeset
1433 return psassign(e1);
kono
parents:
diff changeset
1434 case ASS: case CASS: case SASS:
kono
parents:
diff changeset
1435 return passign(e1);
kono
parents:
diff changeset
1436 case SASSOP: case SUASSOP:
kono
parents:
diff changeset
1437 case ASSOP: case CASSOP: case CUASSOP:
kono
parents:
diff changeset
1438 return passop(e1);
kono
parents:
diff changeset
1439 #if FLOAT_CODE
kono
parents:
diff changeset
1440 case FASS: case DASS:
kono
parents:
diff changeset
1441 return pdassign(e1);
kono
parents:
diff changeset
1442 case DASSOP: case FASSOP:
kono
parents:
diff changeset
1443 return pdassop(e1);
616
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1444
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1445 case BUILTIN_FABS:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1446 case BUILTIN_FABSF:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1447 case BUILTIN_FABSL:
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1448 e2 = pexpr(e2);
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1449 if (is_const(e2)) {
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1450 if (dcadr(e2) >= 0.0 ) return e2;
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1451 return pexpr(list2(car(e1)==BUILTIN_FABSF?
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1452 FMINUS:DMINUS,e2));
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1453 }
2ba903c8e749 builtin_fabs
kono
parents: 609
diff changeset
1454 return list2(car(e1),e2);
462
kono
parents:
diff changeset
1455 #endif
kono
parents:
diff changeset
1456 #if LONGLONG_CODE
kono
parents:
diff changeset
1457 case LASS:
kono
parents:
diff changeset
1458 return plassign(e1);
kono
parents:
diff changeset
1459 case LASSOP: case LUASSOP:
kono
parents:
diff changeset
1460 return plassop(e1);
kono
parents:
diff changeset
1461 #endif
kono
parents:
diff changeset
1462 case ALLOCA:
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1463 return palloc(e2);
462
kono
parents:
diff changeset
1464 case BUILTINP:
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1465 return list2(CONST,is_const(pexpr(e2)));
462
kono
parents:
diff changeset
1466 case COMMA:
555
ac181d7f9c82 IA32 eval order
kono
parents: 554
diff changeset
1467 return pcomma(e2,caddr(e1));
462
kono
parents:
diff changeset
1468 case RETURN:
kono
parents:
diff changeset
1469 case ENVIRONMENT:
kono
parents:
diff changeset
1470 case LCALL:
kono
parents:
diff changeset
1471 return e1;
kono
parents:
diff changeset
1472 #if BIT_FIELD_CODE
kono
parents:
diff changeset
1473 case RBIT_FIELD:
kono
parents:
diff changeset
1474 return prbit_field(e1);
553
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
1475 case BIT_FIELD:
293f827ccfb2 Linux kernel source compiled.
kono
parents: 552
diff changeset
1476 return list3(BIT_FIELD,pexpr(e2),caddr(e1));
462
kono
parents:
diff changeset
1477 case BASS:
kono
parents:
diff changeset
1478 return pbassign(e1);
kono
parents:
diff changeset
1479 case BPREINC:
kono
parents:
diff changeset
1480 case BPOSTINC:
kono
parents:
diff changeset
1481 case BASSOP:
kono
parents:
diff changeset
1482 return pbassop(e1);
kono
parents:
diff changeset
1483 #endif
kono
parents:
diff changeset
1484 #if ASM_CODE
kono
parents:
diff changeset
1485 case ASM:
kono
parents:
diff changeset
1486 return list3(ASM,list4(
501
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1487 car(e2),cadr(e2),caddr(e2),cadddr(e2)),
a63eb2319d11 inline continue...
kono
parents: 500
diff changeset
1488 caddr(e1));
462
kono
parents:
diff changeset
1489 #endif
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1490 case CAST:
692
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1491 if (e2==0) {
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1492 // casted empty structure (struct hoge){}
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1493 // I think we can skip it. It means nothing in declaration
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1494 return 0;
6785c63f0558 decl_data static incomplete
kono
parents: 691
diff changeset
1495 } else if (car(e2)==DECL_DATA) {
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1496 // casted initialized structure (struct hoge){...}
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1497 return list3(DECL_DATA,pexpr(cadr(e2)),caddr(e2));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1498 }
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1499 if (type_compatible(caddr(e1),cadddr(e1))) {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1500 return pexpr(e2); // rvalue ?
687
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1501 } else {
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1502 e2 = pexpr(e2); // will override type
687
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1503 type = cadddr(e1);
690
5d3b4669854c fix prindirect
kono
parents: 687
diff changeset
1504 return correct_type(e2,caddr(e1));
687
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1505 // return list4(CAST,pexpr(e2),caddr(e1),cadddr(e1));
1ed8cb78cf9b *** empty log message ***
kono
parents: 682
diff changeset
1506 }
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1507 case DECL_DATA:
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1508 return list3(DECL_DATA,pexpr(e2),caddr(e1));
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1509 case DECL_DATA_LIST:
697
e31cba38f7fc *** empty log message ***
kono
parents: 696
diff changeset
1510 case DECL_DATA_ARRAY:
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1511 return list4(car(e1),pexpr(e2),pexpr(caddr(e1)),cadddr(e1));
681
e16b34f2b386 DECL_DATA has parse tree now.
kono
parents: 648
diff changeset
1512 case DECL_DATA_FIELD:
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1513 return list4n(car(e1),pexpr(e2),pexpr(caddr(e1)),ncadddr(e1));
462
kono
parents:
diff changeset
1514 case ST_DECL: return p_decl(e1);
kono
parents:
diff changeset
1515 case ST_IF: return p_if(e1);
kono
parents:
diff changeset
1516 case ST_DO: return p_do(e1);
kono
parents:
diff changeset
1517 case ST_WHILE: return p_while(e1);
kono
parents:
diff changeset
1518 case ST_FOR: return p_for(e1);
kono
parents:
diff changeset
1519 case ST_SWITCH: return p_switch(e1);
kono
parents:
diff changeset
1520 case ST_COMP: return p_comp(e1);
kono
parents:
diff changeset
1521 case ST_BREAK: return p_break(e1);
kono
parents:
diff changeset
1522 case ST_CONTINUE: return p_continue(e1);
kono
parents:
diff changeset
1523 case ST_CASE: return p_case(e1);
kono
parents:
diff changeset
1524 case ST_DEFAULT: return p_default(e1);
kono
parents:
diff changeset
1525 case ST_RETURN: return p_return(e1);
kono
parents:
diff changeset
1526 case ST_GOTO: return p_goto(e1);
kono
parents:
diff changeset
1527 case ST_ASM: return p_asm(e1);
kono
parents:
diff changeset
1528 case ST_LABEL: return p_label(e1);
kono
parents:
diff changeset
1529 case ST_COMMENT: return p_comment(e1);
kono
parents:
diff changeset
1530 default:
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 549
diff changeset
1531 error(-1);
462
kono
parents:
diff changeset
1532 return p_bool(e1);
kono
parents:
diff changeset
1533 }
kono
parents:
diff changeset
1534 return VOID;
kono
parents:
diff changeset
1535 }
kono
parents:
diff changeset
1536
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1537 /*
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1538 Prepare pvariable table
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1539 */
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1540
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1541 static int
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1542 replace_inline_parameter(NMTBL *anptr,int t,int e4,int narg,int evals)
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1543 {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1544 int arg;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1545 if (has_attr(anptr,KONST) && !has_attr(anptr,HAS_ADDRESS)) {
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1546 // replacable const variable
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1547 if (is_memory(e4)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1548 heap[pdisp+narg]=reference(e4);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1549 return evals;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1550 } else if (is_const(e4)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1551 heap[pdisp+narg]=e4;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1552 return evals;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1553 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1554 }
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1555 // we need real local variable for this inline
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1556 arg = heap[pdisp+narg]=list3n(LVAR,new_lvar(size(t)),anptr);
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1557 inline_lvars = glist2(arg,inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1558 evals=list2(assign_expr0(arg,e4,anptr->ty,t),evals);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1559 return evals;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1560 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1561
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1562 /*
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1563 setup parameter replacement of inline call
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1564 */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1565
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1566 static void
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1567 enter_inline(NMTBL *n, int e,int toplevel)
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1568 {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1569 int e1 = attr_value(n,INLINE);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1570 int arg_disp = cadr(e1); // number of arguments
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1571 int narg,e3,e4, e5, fargtype;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1572 int evals = 0;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1573 int t, replace;
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1574 NMTBL *anptr;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1575
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1576 fnptr = n; // st_return see this
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1577 pvartable = p_vartable(arg_disp, /* number of arg */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1578 caddr(e1) /* number of local parameter */);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1579
704
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1580 replace = (is_code(fnptr)||toplevel);
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1581
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1582 /* function arguments type */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1583 fargtype = n->dsp; // we cannot do destruct reverse here
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1584
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1585 /* inline function arguments */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1586 narg = 0;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1587 if (!fargtype) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1588 goto no_args; // wrong number of arguments
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1589 }
699
0bc5f2ff86cc code segement argument offset in parse mode.
kono
parents: 697
diff changeset
1590
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1591 for (e3 = e5 = reverse0(caddr(e)); e3; e3 = cadr(e3)) {
712
bf94c295d763 *** empty log message ***
kono
parents: 711
diff changeset
1592 anptr = ncadddr(fargtype);
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1593 if (!anptr) break; // should not happen?
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1594 t=caddr(e3); // type
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1595 e4 = car(e3);
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1596 if (replace) {
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1597 heap[pdisp+narg]=reference(e4);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1598 } else {
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1599 evals = replace_inline_parameter(anptr,t,e4,narg,evals);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1600 }
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1601 narg ++;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1602 fargtype = cadr(fargtype);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1603 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1604 caddr(e) = reverse0(e5); // make it normal
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1605 if (eval_order==NORMAL) evals = reverse0(evals);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1606 for(;evals;evals=cadr(evals)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1607 g_expr_u(car(evals));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1608 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1609 no_args:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1610 return;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1611 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1612
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1613 /*
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1614 pass local static variable list to our parents
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1615 clean up and free used inline parameters
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1616 */
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1617
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1618 static void
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1619 leave_inline(int e1,int toplevel)
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1620 {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1621 NMTBL *n;
712
bf94c295d763 *** empty log message ***
kono
parents: 711
diff changeset
1622 NMTBL *local_statics = ncadddr(e1); // local static list
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1623
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1624 if (retcont && !toplevel) error(STERR);
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1625 // inline can't handle return/environment except top level
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1626
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1627 if (local_statics && local_statics != &null_nptr) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1628 // append our local static variables to the parent list
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1629 n = local_statics;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1630 while(n->next != &null_nptr) n=n->next;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1631 n->next = local_static_list; local_static_list = local_statics;
767
c14a1426cfed i64 strop/simp1/alloca
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 715
diff changeset
1632 ncadddr(e1) = 0; // prevent duplicate initialize
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1633 }
625
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1634
4b4c6b1ea69a *** empty log message ***
kono
parents: 616
diff changeset
1635 // free used local variables or registers
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1636 while(inline_lvars) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1637 int e;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1638 int l = car(inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1639 switch(car(l)) {
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1640 case LVAR: free_lvar(cadr(l)); break;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1641 case REGISTER: case DREGISTER:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1642 case FREGISTER: case LREGISTER:
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1643 free_register(cadr(l));
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1644 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1645 e = cadr(inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1646 free_glist2(inline_lvars);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1647 inline_lvars = e;
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1648 }
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1649 }
530
58aceee8e4b4 get_lregister messed up
kono
parents: 529
diff changeset
1650
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1651 extern int
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1652 gen_inline(int e, int toplevel)
462
kono
parents:
diff changeset
1653 {
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1654 // these saved value should be some struct
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1655 int sretlabel;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1656 NMTBL *sfnptr;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1657 int svartable;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1658
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1659 int scslabel = cslabel;
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1660 int sdisp = pdisp;
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1661 int sret_register;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1662 int sret_reg_mode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1663 int sinline_lvars;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1664 int slfree;
531
19f5882997f5 *** empty log message ***
kono
parents: 530
diff changeset
1665 // int slreg_count=lreg_count;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1666
711
35e6841ba01a pointer fixes (partial)
kono
parents: 709
diff changeset
1667 NMTBL *n = (NMTBL*)ncaddr(cadr(e));
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1668 int e1 = attr_value(n,INLINE);
500
0a4ca939f403 inline continue...
kono
parents: 464
diff changeset
1669 int parse = car(e1); // inline parse tree
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1670 int dots;
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1671 int ret_type = function_type(cadddr(e),&dots);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1672
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1673 checkret();
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1674 checkjmp(-1);
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1675
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1676 svartable = pvartable;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1677
552
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1678 scslabel = cslabel;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1679 sdisp = pdisp;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1680 sret_register = ret_register;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1681 sret_reg_mode = ret_reg_mode;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1682 sinline_lvars = inline_lvars;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1683 slfree=lfree;
74bbea56b8e5 inline scope with gcc extension passed.
kono
parents: 551
diff changeset
1684 // int slreg_count=lreg_count;
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1685
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1686 sretlabel = retlabel;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1687 sfnptr = fnptr;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1688
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1689 cslabel = -1;
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1690 retpending = 0;
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
1691 inline_lvars = 0;
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1692 if (!toplevel) {
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1693 retlabel = fwdlabel();
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1694 }
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1695
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1696 enter_inline(n,e,toplevel);
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 525
diff changeset
1697
704
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1698 if (toplevel) {
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1699 ret_register = code_set_return_register(0); // fnptr required
704
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1700 ret_reg_mode = 1;
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1701 } else {
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1702 ret_register = 555;
704
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1703 ret_reg_mode = 0;
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1704 }
6e6dc2d644ed *** empty log message ***
kono
parents: 703
diff changeset
1705
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1706 // partial evaluation of parse tree
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1707 // constant propergation, etc.
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1708 parse = pexpr(parse);
463
50a59dfb4606 inline continue...
kono
parents: 462
diff changeset
1709 pdisp = sdisp;
464
d88f08d81bba inline continue....
kono
parents: 463
diff changeset
1710 pvartable = svartable;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1711
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1712 // generate code if necessary
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1713 if (ret_type!=VOID)
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1714 g_expr0(parse);
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1715 else
557
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1716 g_expr_u(parse);
c3053086f790 a little partial evaluation.
kono
parents: 556
diff changeset
1717
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1718 if (!toplevel) {
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1719 checkret();
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1720 fwddef(retlabel);
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1721 control=1;
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
1722 }
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1723
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1724 leave_inline(e1,toplevel);
510
2bd6ff6ee9a8 inline continue...
kono
parents: 509
diff changeset
1725
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1726 fnptr = sfnptr;
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1727 retlabel = sretlabel;
696
7f0f92380714 code segment parse tree fix (incomplete)
kono
parents: 695
diff changeset
1728
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1729 cslabel = scslabel;
514
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1730 ret_register = sret_register;
a2047e4555be inline continue....
kono
parents: 513
diff changeset
1731 ret_reg_mode = sret_reg_mode;
527
6b0fd56848e6 inline continue....
kono
parents: 526
diff changeset
1732 inline_lvars = sinline_lvars;
528
d6fff671793a minor fix inline
kono
parents: 527
diff changeset
1733 lfree=slfree;
513
4c2607e72ab5 inline continue... fix function call
kono
parents: 512
diff changeset
1734
508
d8102a46b78d inline test routine first compile passed.
kono
parents: 506
diff changeset
1735 return ret_type;
462
kono
parents:
diff changeset
1736 }
kono
parents:
diff changeset
1737
kono
parents:
diff changeset
1738 /* end */