annotate mc-inline.c @ 876:f93bf97bbd1f

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