annotate mc.h @ 490:95fcc858fd1c

cond unsigned fix.
author kono
date Tue, 20 Dec 2005 17:25:37 +0900
parents 8370ba6e8557
children a379da780856
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
1 /* Micro-C header file */
d35df41eac69 Initial revision
kono
parents:
diff changeset
2
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
3 #define FLOAT_CODE 1
237
1933266f1efa long long ia32 (imcomplete)
kono
parents: 235
diff changeset
4 #define LONGLONG_CODE 1
292
6d4231b6f9fe switch statement prepare
kono
parents: 278
diff changeset
5 #define CASE_CODE 1
316
22d92986c7f7 asm, valued statement, local decls continue...
kono
parents: 313
diff changeset
6 #define ASM_CODE 1
329
4c8f8ef8c0cf bit field continue...
kono
parents: 327
diff changeset
7 #define BIT_FIELD_CODE 1
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
8
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
9 /* reserved word start */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
10
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
11 /* type ( keyword ) */
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
12
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
13 #define INT (-1)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
14 #define UNSIGNED (-2)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
15 #define CHAR (-3)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
16 #define UCHAR (-4)
162
0c604d2ff585 *** empty log message ***
kono
parents: 150
diff changeset
17 #define POINTER (-5)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
18 #define ARRAY (-6)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
19 #define STRUCT (-7)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
20 #define UNION (-8)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
21 #define FUNCTION (-9)
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
22
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
23 #define SIGNED (-10)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
24 #define LONG (-11)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
25 #define SHORT (-12)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
26 #define USHORT (-13)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
27 #define VOID (-14)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
28 #define CODE (-15)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
29 #define ENUM (-16)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
30
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
31 #define FLOAT (-17)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
32 #define DOUBLE (-18)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
33 #define LONGLONG (-19)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
34 #define ULONGLONG (-20)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
35
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
36 /* type qualifier */
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
37
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
38 #define KONST (-21)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
39 #define STATIC (-22)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
40 #define EXTRN (-23)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
41 #define EXTRN1 (-24)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
42 #define VOLATILE (-25)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
43 #define RESTRICT (-26)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
44 #define INLINE (-27)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
45 #define REGISTER (-28)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
46 #define FREGISTER (-29)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
47 #define DREGISTER (-30)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
48 #define LREGISTER (-31)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
49
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
50 #define DOTS (-32)
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
51
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
52 /* keyword */
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
53
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
54 #define GOTO (-33)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
55 #define RETURN (-34)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
56 #define BREAK (-35)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
57 #define CONTINUE (-36)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
58 #define IF (-37)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
59 #define ELSE (-38)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
60 #define FOR (-39)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
61 #define DO (-40)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
62 #define WHILE (-41)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
63 #define SWITCH (-42)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
64 #define CASE (-43)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
65 #define DEFAULT (-44)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
66 #define RESERVE (-45)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
67 #define TAG (-46)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
68 #define FIELD (-47)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
69 #define IDENT (-48)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
70 #define MACRO (-49)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
71 #define BLABEL (-50)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
72 #define FLABEL (-51)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
73 #define TYPEDEF (-52)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
74 #define SIZEOF (-53)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
75 #define TYPE (-54)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
76 #define DEFINED (-55)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
77
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
78 #define ENVIRONMENT (-56)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
79
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
80 #define FMACRO (-57)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
81 #define LMACRO (-58)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
82
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
83 #define TYPEOF (-59)
2a49dfe59540 attribute
kono
parents: 456
diff changeset
84 #define ASM (-60)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
85
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
86 /* reserved word end */
78
8418d4b7caa7 *** empty log message ***
kono
parents: 77
diff changeset
87
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
88 #define EMPTY (-99)
103
f849af4b5ea9 *** empty log message ***
kono
parents: 101
diff changeset
89
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
90 /* mode start */
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
91 #define TOP 0
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
92 #define GDECL 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
93 #define GSDECL 2
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
94 #define GUDECL 3
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
95 #define ADECL 4
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
96 #define LDECL 5
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
97 #define LSDECL 6
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
98 #define LUDECL 7
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
99 #define STADECL 8
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
100 #define STAT 9
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
101 #define GTDECL 10
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
102 #define LTDECL 11
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
103 #define IFDEF 12
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
104 #define MDECL 13
176
kono
parents: 174
diff changeset
105 #define GEDECL 14
kono
parents: 174
diff changeset
106 #define LEDECL 15
362
5cf12c7a3274 local label first try
kono
parents: 358
diff changeset
107 #define LLDECL 16
5cf12c7a3274 local label first try
kono
parents: 358
diff changeset
108 #define SFDINIT 17
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
109 /* mode end */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
110
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
111 #define US 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
112 #define AS 10000
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
113 #define SOP 200
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
114 #define COP 400
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
115 #define DOP 600
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
116 #define FOP 800
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
117 #define LOP 1000
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
118
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
119 /* tree node tags start */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
120
316
22d92986c7f7 asm, valued statement, local decls continue...
kono
parents: 313
diff changeset
121 #define LIST_ARGS(i) (i==FUNCTION||i==CODE||i==ASM)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
122
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
123 /* nullary argments */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
124
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
125 #define GVAR 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
126 #define RGVAR 2
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
127 #define URGVAR 3
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
128 #define LVAR 4
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
129 #define RLVAR 5
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
130 #define URLVAR 6
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
131 #define CRGVAR (COP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
132 #define CURGVAR (COP+URGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
133 #define CRLVAR (COP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
134 #define CURLVAR (COP+URLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
135 #define FRGVAR (FOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
136 #define FRLVAR (FOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
137 #define DRGVAR (DOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
138 #define DRLVAR (DOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
139 #define SRGVAR (SOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
140 #define SURGVAR (SOP+URGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
141 #define SRLVAR (SOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
142 #define SURLVAR (SOP+URLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
143 #define LRGVAR (LOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
144 #define LURGVAR (LOP+URGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
145 #define LRLVAR (LOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
146 #define LURLVAR (LOP+URLVAR)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
147
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
148 #define CONST 7
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
149 #define DCONST (DOP+CONST)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
150 #define FCONST (FOP+CONST)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
151 #define LCONST (LOP+CONST)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
152 #define STRING 8
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
153 #define FNAME 9
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
154 #define LCALL 10
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
155 #define COMMENT 11
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
156 #define DECL 12
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
157 #define COMP 13
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
158 #define LABEL 14
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
159
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
160 #define NULLARY_ARGS(i) (i==RETURN||i==ENVIRONMENT||i==LCALL||i==REGISTER||i==DREGISTER||i==FREGISTER||i==LREGISTER||(GVAR<=(i%SOP)&&(i%SOP)<=LABEL))
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
161
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
162 /* unary argments */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
163
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
164 #define ADDRESS 15
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
165 #define MINUS 16
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
166 #define LNOT 17
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
167 #define BNOT 18
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
168 #define INC 19
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
169 #define POSTINC 20
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
170 #define UPOSTINC 21
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
171 #define PREINC 22
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
172 #define UPREINC 23
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
173 #define POSTDEC 24
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
174 #define UPOSTDEC 25
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
175 #define PREDEC 26
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
176 #define UPREDEC 27
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
177 #define DEC 28
196
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
178 #define CPOSTINC (COP+POSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
179 #define CUPOSTINC (COP+UPOSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
180 #define CPREINC (COP+PREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
181 #define CUPREINC (COP+UPREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
182 #define CPOSTDEC (COP+POSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
183 #define CUPOSTDEC (COP+UPOSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
184 #define CPREDEC (COP+CPREDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
185 #define CUPREDEC (COP+UPREDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
186 #define SPOSTINC (SOP+POSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
187 #define SUPOSTINC (SOP+UPOSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
188 #define SPREINC (SOP+PREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
189 #define SUPREINC (SOP+UPREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
190 #define SPOSTDEC (SOP+POSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
191 #define SUPOSTDEC (SOP+UPOSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
192 #define SPREDEC (SOP+PREDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
193 #define SUPREDEC (SOP+UPREDEC)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
194 #define FPOSTINC (FOP+POSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
195 #define FPREINC (FOP+PREINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
196 #define DPOSTINC (DOP+POSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
197 #define DPREINC (DOP+PREINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
198 #define LPOSTINC (LOP+POSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
199 #define LPREINC (LOP+PREINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
200 #define LUPOSTINC (LOP+UPOSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
201 #define LUPREINC (LOP+UPREINC)
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
202 #define INDIRECT 29
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
203 #define RINDIRECT 30
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
204 #define URINDIRECT 31
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
205 #define CRINDIRECT (COP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
206 #define CURINDIRECT (COP+URINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
207 #define SRINDIRECT (SOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
208 #define SURINDIRECT (SOP+URINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
209 #define FRINDIRECT (FOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
210 #define DRINDIRECT (DOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
211 #define LRINDIRECT (LOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
212 #define LURINDIRECT (LOP+URINDIRECT)
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
213 #define RSTRUCT 32
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
214 #define ALLOCA 33
456
b8f95294eb77 inline continue... if test passed.
kono
parents: 453
diff changeset
215 #define BUILTINP 34
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
216 #define BUILTIN_EXPECT 35
2a49dfe59540 attribute
kono
parents: 456
diff changeset
217 #define ATTRIBUTE 36
2a49dfe59540 attribute
kono
parents: 456
diff changeset
218 #define BIT_FIELD 37
2a49dfe59540 attribute
kono
parents: 456
diff changeset
219 #define RBIT_FIELD 38
2a49dfe59540 attribute
kono
parents: 456
diff changeset
220 #define BPREINC 39
2a49dfe59540 attribute
kono
parents: 456
diff changeset
221 #define BPOSTINC 40
2a49dfe59540 attribute
kono
parents: 456
diff changeset
222 #define CONV 41
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
223
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
224 #define UNARY_ARGS(i) (ADDRESS<=(i%SOP)&&(i%SOP)<=CONV)
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
225
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
226 /* binary argments */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
227
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
228 #define MUL 42
2a49dfe59540 attribute
kono
parents: 456
diff changeset
229 #define UMUL 43
2a49dfe59540 attribute
kono
parents: 456
diff changeset
230 #define DIV 44
2a49dfe59540 attribute
kono
parents: 456
diff changeset
231 #define UDIV 45
2a49dfe59540 attribute
kono
parents: 456
diff changeset
232 #define MOD 46
2a49dfe59540 attribute
kono
parents: 456
diff changeset
233 #define UMOD 47
2a49dfe59540 attribute
kono
parents: 456
diff changeset
234 #define ADD 48
2a49dfe59540 attribute
kono
parents: 456
diff changeset
235 #define SUB 49
2a49dfe59540 attribute
kono
parents: 456
diff changeset
236 #define CMP 50
2a49dfe59540 attribute
kono
parents: 456
diff changeset
237 #define RSHIFT 51
2a49dfe59540 attribute
kono
parents: 456
diff changeset
238 #define URSHIFT 52
2a49dfe59540 attribute
kono
parents: 456
diff changeset
239 #define LSHIFT 53
2a49dfe59540 attribute
kono
parents: 456
diff changeset
240 #define ULSHIFT 54
2a49dfe59540 attribute
kono
parents: 456
diff changeset
241 #define GT 55
2a49dfe59540 attribute
kono
parents: 456
diff changeset
242 #define UGT 56
2a49dfe59540 attribute
kono
parents: 456
diff changeset
243 #define GE 57
2a49dfe59540 attribute
kono
parents: 456
diff changeset
244 #define UGE 58
2a49dfe59540 attribute
kono
parents: 456
diff changeset
245 #define LT 59
2a49dfe59540 attribute
kono
parents: 456
diff changeset
246 #define ULT 60
2a49dfe59540 attribute
kono
parents: 456
diff changeset
247 #define LE 61
2a49dfe59540 attribute
kono
parents: 456
diff changeset
248 #define ULE 62
2a49dfe59540 attribute
kono
parents: 456
diff changeset
249 #define EQ 63
2a49dfe59540 attribute
kono
parents: 456
diff changeset
250 #define NEQ 64
2a49dfe59540 attribute
kono
parents: 456
diff changeset
251 #define BAND 65
2a49dfe59540 attribute
kono
parents: 456
diff changeset
252 #define EOR 66
2a49dfe59540 attribute
kono
parents: 456
diff changeset
253 #define BOR 67
2a49dfe59540 attribute
kono
parents: 456
diff changeset
254 #define LAND 68
2a49dfe59540 attribute
kono
parents: 456
diff changeset
255 #define LOR 69
2a49dfe59540 attribute
kono
parents: 456
diff changeset
256 #define ASS 70
2a49dfe59540 attribute
kono
parents: 456
diff changeset
257 #define UCMP 71
2a49dfe59540 attribute
kono
parents: 456
diff changeset
258 #define UCMPGE 72
2a49dfe59540 attribute
kono
parents: 456
diff changeset
259 #define CMPGE 73
2a49dfe59540 attribute
kono
parents: 456
diff changeset
260 #define CMPEQ 74
2a49dfe59540 attribute
kono
parents: 456
diff changeset
261 #define CMPNEQ 75
2a49dfe59540 attribute
kono
parents: 456
diff changeset
262 #define ASSOP 76
2a49dfe59540 attribute
kono
parents: 456
diff changeset
263 #define COMMA 77
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
264
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
265 #define CASS 78
2a49dfe59540 attribute
kono
parents: 456
diff changeset
266 #define CASSOP 79
2a49dfe59540 attribute
kono
parents: 456
diff changeset
267 #define CUASSOP 80
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
268
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
269 #define SASS (SOP+CASS)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
270 #define SASSOP (SOP+CASSOP)
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
271 #define SUASSOP (SOP+CUASSOP)
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
272
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
273 #define DASS (DOP+ASS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
274 #define DCMPGE (DOP+CMPGE)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
275 #define DCMPEQ (DOP+CMPEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
276 #define DCMPNEQ (DOP+CMPNEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
277 #define DASSOP (DOP+ASSOP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
278 #define DCMP (DOP+CMP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
279 #define DMINUS (DOP+MINUS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
280 #define DMUL (DOP+MUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
281 #define DDIV (DOP+DIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
282 #define DADD (DOP+ADD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
283 #define DSUB (DOP+SUB)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
284
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
285 #define FASS (FOP+ASS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
286 #define FCMPGE (FOP+CMPGE)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
287 #define FCMPEQ (FOP+CMPEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
288 #define FCMPNEQ (FOP+CMPNEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
289 #define FASSOP (FOP+ASSOP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
290 #define FCMP (FOP+CMP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
291 #define FMINUS (FOP+MINUS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
292 #define FMUL (FOP+MUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
293 #define FDIV (FOP+DIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
294 #define FADD (FOP+ADD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
295 #define FSUB (FOP+SUB)
78
8418d4b7caa7 *** empty log message ***
kono
parents: 77
diff changeset
296
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
297 #define LASS (LOP+CASS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
298 #define LCMPGE (LOP+CMPGE)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
299 #define LCMPEQ (LOP+CMPEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
300 #define LCMPNEQ (LOP+CMPNEQ)
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
301 #define LASSOP (LOP+CASSOP)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
302 #define LUASSOP (LOP+CUASSOP)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
303 #define LCMP (LOP+CMP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
304 #define LMINUS (LOP+MINUS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
305 #define LMUL (LOP+MUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
306 #define LDIV (LOP+DIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
307 #define LUMUL (LOP+UMUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
308 #define LUDIV (LOP+UDIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
309 #define LADD (LOP+ADD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
310 #define LSUB (LOP+SUB)
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
311
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
312
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
313 #define LMOD (LOP+MOD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
314 #define LUMOD (LOP+UMOD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
315 #define LLSHIFT (LOP+LSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
316 #define LULSHIFT (LOP+ULSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
317 #define LRSHIFT (LOP+RSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
318 #define LURSHIFT (LOP+URSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
319 #define LBAND (LOP+BAND)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
320 #define LEOR (LOP+EOR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
321 #define LBOR (LOP+BOR)
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
322
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
323 #define BASS 81
2a49dfe59540 attribute
kono
parents: 456
diff changeset
324 #define BASSOP 82
2a49dfe59540 attribute
kono
parents: 456
diff changeset
325 #define BFD_REPL 83
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
326
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
327 #define STASS 84
326
e5d40f8c4cce bit-field continue.
kono
parents: 318
diff changeset
328
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
329
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
330 #define BINARY_ARGS(i) (MUL<=(i%SOP)&&(i%SOP)<=STASS)
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
331
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
332 /* tarnary argments */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
333
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
334 #define COND 85
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
335 #define UCOND 86
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
336 #define SCOND (SOP+COND)
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
337 #define SUCOND (SOP+UCOND)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
338 #define DCOND (DOP+COND)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
339 #define FCOND (FOP+COND)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
340 #define LCOND (LOP+COND)
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
341 #define LUCOND (LOP+UCOND)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
342
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
343 #define TARNARY_ARGS(i) (COND==(i%SOP))
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
344
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
345 /* not appeared as tags */
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
346
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
347 #define LPAR 87
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
348 #define RPAR 88
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
349 #define LBRA 89
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
350 #define RBRA 90
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
351 #define LC 91
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
352 #define RC 92
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
353 #define COLON 93
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
354 #define SM 94
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
355 #define PERIOD 95
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
356 #define ARROW 96
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
357 #define CNAME 97
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
358
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
359 #define I2C 98
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
360 #define I2S 99
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
361 #define I2I 100
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
362 #define I2U 101
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
363 #define I2D 102
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
364 #define I2F 103
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
365 #define I2LL 104
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
366 #define I2ULL 105
353
41ed77cb9c67 name table reogranization, extendable cheap done.
kono
parents: 351
diff changeset
367
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
368 #define U2UC 106
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
369 #define U2US 107
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
370 #define U2I 108
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
371 #define U2U 109
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
372 #define U2D 110
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
373 #define U2F 111
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
374 #define U2LL 112
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
375 #define U2ULL 113
353
41ed77cb9c67 name table reogranization, extendable cheap done.
kono
parents: 351
diff changeset
376
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
377
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
378 #define D2I (DOP+I2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
379 #define D2U (DOP+I2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
380 #define D2D (DOP+I2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
381 #define D2F (DOP+I2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
382 #define D2LL (DOP+I2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
383 #define D2ULL (DOP+I2ULL)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
384
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
385 #define F2I (FOP+I2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
386 #define F2U (FOP+I2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
387 #define F2D (FOP+I2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
388 #define F2F (FOP+I2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
389 #define F2LL (FOP+I2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
390 #define F2ULL (FOP+I2ULL)
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
391
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
392 #define LL2I (LOP+I2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
393 #define LL2U (LOP+I2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
394 #define LL2D (LOP+I2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
395 #define LL2F (LOP+I2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
396 #define LL2LL (LOP+I2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
397 #define LL2ULL (LOP+I2ULL)
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
398
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
399 #define ULL2I (LOP+U2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
400 #define ULL2U (LOP+U2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
401 #define ULL2D (LOP+U2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
402 #define ULL2F (LOP+U2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
403 #define ULL2LL (LOP+U2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
404 #define ULL2ULL (LOP+U2ULL)
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
405
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
406 /* tree node tags end */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
407
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
408 /* statement start */
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
409
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
410 #define ST_DECL 114
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
411 #define ST_IF 115
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
412 #define ST_DO 116
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
413 #define ST_WHILE 117
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
414 #define ST_FOR 118
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
415 #define ST_SWITCH 119
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
416 #define ST_COMP 120
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
417 #define ST_BREAK 121
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
418 #define ST_CONTINUE 122
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
419 #define ST_CASE 123
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
420 #define ST_DEFAULT 124
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
421 #define ST_RETURN 125
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
422 #define ST_GOTO 126
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
423 #define ST_ASM 127
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
424 #define ST_LABEL 128
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
425 #define ST_COMMENT 129
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
426
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
427 #define IS_STATEMENT(i) (ST_DECL<=i&&i<=ST_COMMENT)
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
428
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
429 /* statement end */
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
430
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
431 /* error number start */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
432
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
433 #define FILERR 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
434 #define DCERR 2
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
435 #define RDERR 3
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
436 #define STERR 4
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
437 #define EXERR 5
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
438 #define CNERR 6
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
439 #define CHERR 7
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
440 #define GSERR 8
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
441 #define LSERR 9
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
442 #define STRERR 10
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
443 #define LNERR 11
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
444 #define EOFERR 12
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
445 #define MCERR 13
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
446 #define INCERR 14
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
447 #define HPERR 15
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
448 #define TYERR 16
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
449 #define LVERR 17
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
450 #define UDERR 18
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
451 #define OPTION 19
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
452 #define REG_ERR 20
389
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
453 #define RGERR 21
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
454 #define CODE_ERR 22
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
455 #define MSERR 23
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
456 #define BTERR 24
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
457 #define HSERR 25
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
458 #define NMERR 26
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
459 #define MMERR 27
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
460 #define INERR 28
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
461 #define ILERR 29
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
462
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
463 /* error number end */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
464
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
465 #define KONST_BIT 1
2a49dfe59540 attribute
kono
parents: 456
diff changeset
466 #define VOLATILE_BIT 2
2a49dfe59540 attribute
kono
parents: 456
diff changeset
467 #define RESTRICT_BIT 4
2a49dfe59540 attribute
kono
parents: 456
diff changeset
468
25
b7a94557bf92 *** empty log message ***
kono
parents: 20
diff changeset
469 #define FILES 10
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
470 #define MAX_INCLUDE_PATH_COUNT 10
448
422415e15eb8 *** empty log message ***
kono
parents: 447
diff changeset
471 /*
422415e15eb8 *** empty log message ***
kono
parents: 447
diff changeset
472 For this comiler 8192*2 is Ok. Linux kernel requires 8192*4.
422415e15eb8 *** empty log message ***
kono
parents: 447
diff changeset
473 */
447
818505dd6e1f TYPEOF fix. Hash function opt. Array in decl_data.
kono
parents: 445
diff changeset
474 #define GSYMS (8192*4)
358
4f1fe3731ff0 realloc heap
kono
parents: 357
diff changeset
475 #define HEAPSIZE 30000
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
476 #define CHEAPSIZE (sizeof(NMTBL)*8192)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
477 #define LBUFSIZE 4096
347
cef4d8eb9a26 name table reconfigure continue...
kono
parents: 346
diff changeset
478 #define STRSIZE 4096
254
5aaca4f9d96b *** empty log message ***
kono
parents: 250
diff changeset
479
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
480 typedef struct nametable {
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
481 char *nm;
348
e77b3a7002ad name table reconfigure compiled. debug start.
kono
parents: 347
diff changeset
482 struct nametable *next;
445
kono
parents: 435
diff changeset
483 int sc,attr;
kono
parents: 435
diff changeset
484 int ty,dsp; } NMTBL;
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
485
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
486 extern int *heap; /* heap area (in cheap ) */
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
487 extern NMTBL *global_list; /* list of all global NMTBL */
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
488 extern NMTBL *local_static_list; /* list of local static variable */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
489
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
490 #if FLOAT_CODE
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
491 extern int dlist2(int e1, double e2);
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
492 #endif
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
493 #if LONGLONG_CODE
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
494 extern int llist2(int e1, long long e2);
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
495 #endif
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
496 extern int list2(int e1, int e2);
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
497 extern int list3(int e1, int e2, int e3);
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
498 extern int list4(int e1, int e2, int e3,int e4);
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
499 extern int list5(int e1, int e2, int e3,int e4,int e5);
318
9fe0b32a7d57 asm continue...
kono
parents: 316
diff changeset
500 extern int length(int e1);
464
d88f08d81bba inline continue....
kono
parents: 461
diff changeset
501 extern int getfree(int size);
318
9fe0b32a7d57 asm continue...
kono
parents: 316
diff changeset
502 extern int nth(int n,int e1);
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
503 extern int reverse0(int t1);
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
504 extern int append4(int p,int a1,int a2,int a3);
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
505 extern int append5(int p,int a1,int a2,int a3,int a4);
309
a86612cf1a19 struct partial initialization (local struct copy)
kono
parents: 308
diff changeset
506 extern int insert_ascend(int p,int e,int eq());
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
507
347
cef4d8eb9a26 name table reconfigure continue...
kono
parents: 346
diff changeset
508 extern void free_nptr(NMTBL *n);
cef4d8eb9a26 name table reconfigure continue...
kono
parents: 346
diff changeset
509 extern NMTBL *get_nptr();
346
969089695850 name reconfigure.... continue...
kono
parents: 331
diff changeset
510
467
32737bad7489 fix list/tag interference
kono
parents: 464
diff changeset
511 #if 1
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
512 extern int heapsize;
467
32737bad7489 fix list/tag interference
kono
parents: 464
diff changeset
513 #define CHECK_HEAP(b) ({int _k=(int)(b);if(_k>heapsize||_k<0)error(-1);_k;})
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
514 #else
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
515 #define CHECK_HEAP(b) (b)
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
516 #endif
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
517
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
518 #define car(e) (heap[(int)(CHECK_HEAP(e))])
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
519
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
520 #define cadr(e) (heap[((int)(CHECK_HEAP(e)))+1])
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
521
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
522 #define caddr(e) (heap[((int)(CHECK_HEAP(e)))+2])
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
523
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
524 #define cadddr(e) (heap[((int)(CHECK_HEAP(e)))+3])
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
525
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
526 #define caddddr(e) (heap[((int)(CHECK_HEAP(e)))+4])
449
c55363eff5e5 parallel assignment (modify not completed)
kono
parents: 448
diff changeset
527
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
528 #if FLOAT_CODE
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
529 #define dcadr(e) (*(double*)&heap[((int)(e))+1])
f94ca1168520 float first try...
kono
parents: 78
diff changeset
530 #define dcaddr(e) (*(double*)&heap[((int)(e))+2])
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
531 #endif
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
532
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
533 #if LONGLONG_CODE
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
534 #define lcadr(e) (*(long long*)&heap[((int)(e))+1])
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
535 #define lcaddr(e) (*(long long*)&heap[((int)(e))+2])
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
536 #endif
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
537
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
538 /* end */