annotate mc.h @ 635:e4fffa4bf9cf

Intel Mac complete
author kono
date Wed, 11 Oct 2006 17:09:48 +0900
parents 2ba903c8e749
children 0d7baf338fc2
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
607
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
3
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
4 /************************************************************************
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
5 ** Copyright (C) 2006 Shinji Kono
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
6 ** 連絡先: 琉球大学情報工学科 河野 真治
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
7 ** (E-Mail Address: kono@ie.u-ryukyu.ac.jp)
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
8 **
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
9 ** このソースのいかなる複写,改変,修正も許諾します。ただし、
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
10 ** その際には、誰が貢献したを示すこの部分を残すこと。
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
11 ** 再配布や雑誌の付録などの問い合わせも必要ありません。
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
12 ** 営利利用も上記に反しない範囲で許可します。
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
13 ** バイナリの配布の際にはversion messageを保存することを条件とします。
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
14 ** このプログラムについては特に何の保証もしない、悪しからず。
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
15 **
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
16 ** Everyone is permitted to do anything on this program
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
17 ** including copying, modifying, improving,
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
18 ** as long as you don't try to pretend that you wrote it.
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
19 ** i.e., the above copyright notice has to appear in all copies.
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
20 ** Binary distribution requires original version messages.
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
21 ** You don't have to ask before copying, redistribution or publishing.
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
22 ** THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
23 ***********************************************************************/
e055df7c1082 *** empty log message ***
kono
parents: 602
diff changeset
24
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
25 #define FLOAT_CODE 1
237
1933266f1efa long long ia32 (imcomplete)
kono
parents: 235
diff changeset
26 #define LONGLONG_CODE 1
292
6d4231b6f9fe switch statement prepare
kono
parents: 278
diff changeset
27 #define CASE_CODE 1
316
22d92986c7f7 asm, valued statement, local decls continue...
kono
parents: 313
diff changeset
28 #define ASM_CODE 1
329
4c8f8ef8c0cf bit field continue...
kono
parents: 327
diff changeset
29 #define BIT_FIELD_CODE 1
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
30
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
31 /* reserved word start */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
32
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
33 /* type ( keyword ) */
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
34
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
35 #define INT (-1)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
36 #define UNSIGNED (-2)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
37 #define CHAR (-3)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
38 #define UCHAR (-4)
162
0c604d2ff585 *** empty log message ***
kono
parents: 150
diff changeset
39 #define POINTER (-5)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
40 #define ARRAY (-6)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
41 #define STRUCT (-7)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
42 #define UNION (-8)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
43 #define FUNCTION (-9)
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
44
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
45 #define SIGNED (-10)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
46 #define LONG (-11)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
47 #define SHORT (-12)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
48 #define USHORT (-13)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
49 #define VOID (-14)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
50 #define CODE (-15)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
51 #define ENUM (-16)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
52
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
53 #define FLOAT (-17)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
54 #define DOUBLE (-18)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
55 #define LONGLONG (-19)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
56 #define ULONGLONG (-20)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
57
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
58 /* type qualifier */
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
59
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
60 #define KONST (-21)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
61 #define STATIC (-22)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
62 #define EXTRN (-23)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
63 #define EXTRN1 (-24)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
64 #define VOLATILE (-25)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
65 #define RESTRICT (-26)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
66 #define INLINE (-27)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
67 #define REGISTER (-28)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
68 #define FREGISTER (-29)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
69 #define DREGISTER (-30)
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
70 #define LREGISTER (-31)
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
71 #define POSSIBLE_VALUES (-32)
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
72
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
73 #define DOTS (-33)
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
74
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
75 /* keyword */
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
76
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
77 #define GOTO (-34)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
78 #define RETURN (-35)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
79 #define BREAK (-36)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
80 #define CONTINUE (-37)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
81 #define IF (-38)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
82 #define ELSE (-39)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
83 #define FOR (-40)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
84 #define DO (-41)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
85 #define WHILE (-42)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
86 #define SWITCH (-43)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
87 #define CASE (-44)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
88 #define DEFAULT (-45)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
89 #define RESERVE (-46)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
90 #define TAG (-47)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
91 #define FIELD (-48)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
92 #define IDENT (-49)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
93 #define MACRO (-50)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
94 #define BLABEL (-51)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
95 #define FLABEL (-52)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
96 #define TYPEDEF (-53)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
97 #define SIZEOF (-54)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
98 #define TYPE (-55)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
99 #define DEFINED (-56)
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
100
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
101 #define ENVIRONMENT (-57)
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
102
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
103 #define FMACRO (-58)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
104 #define LMACRO (-59)
482
8370ba6e8557 *** empty log message ***
kono
parents: 467
diff changeset
105
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
106 #define TYPEOF (-60)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
107 #define ASM (-61)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
108
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
109 #define C_FILE (-62)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
110 #define C_FUNCTION (-63)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
111 #define C_LINE (-64)
544
dbfd6e88e2c3 s-dandy compile OK
kono
parents: 526
diff changeset
112
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
113 /* reserved word end */
78
8418d4b7caa7 *** empty log message ***
kono
parents: 77
diff changeset
114
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
115 #define EMPTY (-99)
103
f849af4b5ea9 *** empty log message ***
kono
parents: 101
diff changeset
116
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
117 /* mode start */
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
118 #define TOP 0
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
119 #define GDECL 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
120 #define GSDECL 2
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
121 #define GUDECL 3
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
122 #define ADECL 4
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
123 #define LDECL 5
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
124 #define LSDECL 6
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
125 #define LUDECL 7
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
126 #define STADECL 8
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
127 #define STAT 9
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
128 #define GTDECL 10
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
129 #define LTDECL 11
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
130 #define IFDEF 12
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
131 #define MDECL 13
176
kono
parents: 174
diff changeset
132 #define GEDECL 14
kono
parents: 174
diff changeset
133 #define LEDECL 15
362
5cf12c7a3274 local label first try
kono
parents: 358
diff changeset
134 #define LLDECL 16
5cf12c7a3274 local label first try
kono
parents: 358
diff changeset
135 #define SFDINIT 17
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
136 /* mode end */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
137
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
138 #define US 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
139 #define AS 10000
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
140 #define SOP 200
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
141 #define COP 400
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
142 #define DOP 600
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
143 #define FOP 800
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
144 #define LOP 1000
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
145
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
146 /* tree node tags start */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
147
316
22d92986c7f7 asm, valued statement, local decls continue...
kono
parents: 313
diff changeset
148 #define LIST_ARGS(i) (i==FUNCTION||i==CODE||i==ASM)
599
df04bc5fd5fe *** empty log message ***
kono
parents: 590
diff changeset
149 #define OP(i) (i%SOP) /* tag value without attribute */
df04bc5fd5fe *** empty log message ***
kono
parents: 590
diff changeset
150 #define OP_TAG(i) (((i)/SOP)*SOP) /* attribute of tag */
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
151
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
152 /* nullary argments */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
153
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
154 #define GVAR 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
155 #define RGVAR 2
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
156 #define URGVAR 3
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
157 #define LVAR 4
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
158 #define RLVAR 5
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
159 #define URLVAR 6
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
160 #define CRGVAR (COP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
161 #define CURGVAR (COP+URGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
162 #define CRLVAR (COP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
163 #define CURLVAR (COP+URLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
164 #define FRGVAR (FOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
165 #define FRLVAR (FOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
166 #define DRGVAR (DOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
167 #define DRLVAR (DOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
168 #define SRGVAR (SOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
169 #define SURGVAR (SOP+URGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
170 #define SRLVAR (SOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
171 #define SURLVAR (SOP+URLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
172 #define LRGVAR (LOP+RGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
173 #define LURGVAR (LOP+URGVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
174 #define LRLVAR (LOP+RLVAR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
175 #define LURLVAR (LOP+URLVAR)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
176
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
177 #define CONST 7
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
178 #define DCONST (DOP+CONST)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
179 #define FCONST (FOP+CONST)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
180 #define LCONST (LOP+CONST)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
181 #define STRING 8
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
182 #define FNAME 9
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
183 #define LCALL 10
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
184 #define COMMENT 11
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
185 #define DECL 12
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
186 #define COMP 13
602
429ec87e03e7 *** empty log message ***
kono
parents: 599
diff changeset
187 #define IVAR 14
429ec87e03e7 *** empty log message ***
kono
parents: 599
diff changeset
188 #define RIVAR 15
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
189 #define BUILTIN_INF 16
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
190 #define BUILTIN_INFF 17
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
191 #define BUILTIN_INFL 18
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
192 #define LABEL 19
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
193
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
194 #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
195
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
196 /* unary argments */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
197
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
198 #define ADDRESS 20
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
199 #define MINUS 21
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
200 #define LNOT 22
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
201 #define BNOT 23
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
202 #define INC 24
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
203 #define PERIOD 25
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
204 #define ARROW 26
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
205 #define POSTINC 27
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
206 #define UPOSTINC 28
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
207 #define PREINC 29
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
208 #define UPREINC 30
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
209 #define POSTDEC 31
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
210 #define UPOSTDEC 32
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
211 #define PREDEC 33
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
212 #define UPREDEC 34
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
213 #define DEC 35
196
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
214 #define CPOSTINC (COP+POSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
215 #define CUPOSTINC (COP+UPOSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
216 #define CPREINC (COP+PREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
217 #define CUPREINC (COP+UPREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
218 #define CPOSTDEC (COP+POSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
219 #define CUPOSTDEC (COP+UPOSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
220 #define CPREDEC (COP+CPREDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
221 #define CUPREDEC (COP+UPREDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
222 #define SPOSTINC (SOP+POSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
223 #define SUPOSTINC (SOP+UPOSTINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
224 #define SPREINC (SOP+PREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
225 #define SUPREINC (SOP+UPREINC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
226 #define SPOSTDEC (SOP+POSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
227 #define SUPOSTDEC (SOP+UPOSTDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
228 #define SPREDEC (SOP+PREDEC)
5f70abd9453d *** empty log message ***
kono
parents: 195
diff changeset
229 #define SUPREDEC (SOP+UPREDEC)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
230 #define FPOSTINC (FOP+POSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
231 #define FPREINC (FOP+PREINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
232 #define DPOSTINC (DOP+POSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
233 #define DPREINC (DOP+PREINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
234 #define LPOSTINC (LOP+POSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
235 #define LPREINC (LOP+PREINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
236 #define LUPOSTINC (LOP+UPOSTINC)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
237 #define LUPREINC (LOP+UPREINC)
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
238 #define INDIRECT 36
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
239 #define RINDIRECT 37
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
240 #define URINDIRECT 38
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
241 #define CRINDIRECT (COP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
242 #define CURINDIRECT (COP+URINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
243 #define SRINDIRECT (SOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
244 #define SURINDIRECT (SOP+URINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
245 #define FRINDIRECT (FOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
246 #define DRINDIRECT (DOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
247 #define LRINDIRECT (LOP+RINDIRECT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
248 #define LURINDIRECT (LOP+URINDIRECT)
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
249 #define RSTRUCT 39
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
250 #define ALLOCA 40
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
251 #define BUILTINP 41
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
252 #define BUILTIN_EXPECT 42
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
253 #define BUILTIN_FABS 43
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
254 #define BUILTIN_FABSF 44
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
255 #define BUILTIN_FABSL 45
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
256 #define ATTRIBUTE 46
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
257 #define BIT_FIELD 47
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
258 #define RBIT_FIELD 48
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
259 #define BPREINC 49
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
260 #define BPOSTINC 50
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
261 #define CONV 51
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
262
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
263 #define UNARY_ARGS(i) (ADDRESS<=(i%SOP)&&(i%SOP)<=CONV)
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
264
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
265 /* binary argments */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
266
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
267 #define MUL 52
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
268 #define UMUL 53
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
269 #define DIV 54
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
270 #define UDIV 55
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
271 #define MOD 56
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
272 #define UMOD 57
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
273 #define ADD 58
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
274 #define SUB 59
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
275 #define CMP 60
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
276 #define RSHIFT 61
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
277 #define URSHIFT 62
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
278 #define LSHIFT 63
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
279 #define ULSHIFT 64
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
280 #define GT 65
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
281 #define UGT 66
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
282 #define GE 67
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
283 #define UGE 68
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
284 #define LT 69
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
285 #define ULT 70
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
286 #define LE 71
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
287 #define ULE 72
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
288 #define EQ 73
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
289 #define NEQ 74
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
290 #define BAND 75
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
291 #define EOR 76
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
292 #define BOR 77
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
293 #define LAND 78
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
294 #define LOR 79
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
295 #define ASS 80
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
296 #define UCMP 81
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
297 #define UCMPGE 82
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
298 #define CMPGE 83
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
299 #define CMPEQ 84
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
300 #define CMPNEQ 85
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
301 #define ASSOP 86
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
302 #define UASSOP 87
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
303 #define COMMA 88
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
304
612
26daeeef30a0 *** empty log message ***
kono
parents: 609
diff changeset
305 #define CASS (COP+ASS)
26daeeef30a0 *** empty log message ***
kono
parents: 609
diff changeset
306 #define CASSOP (COP+ASSOP)
26daeeef30a0 *** empty log message ***
kono
parents: 609
diff changeset
307 #define CUASSOP (COP+UASSOP)
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
308
612
26daeeef30a0 *** empty log message ***
kono
parents: 609
diff changeset
309 #define SASS (SOP+ASS)
26daeeef30a0 *** empty log message ***
kono
parents: 609
diff changeset
310 #define SASSOP (SOP+ASSOP)
26daeeef30a0 *** empty log message ***
kono
parents: 609
diff changeset
311 #define SUASSOP (SOP+UASSOP)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
312
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
313 #define DASS (DOP+ASS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
314 #define DCMPGE (DOP+CMPGE)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
315 #define DCMPEQ (DOP+CMPEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
316 #define DCMPNEQ (DOP+CMPNEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
317 #define DASSOP (DOP+ASSOP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
318 #define DCMP (DOP+CMP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
319 #define DMINUS (DOP+MINUS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
320 #define DMUL (DOP+MUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
321 #define DDIV (DOP+DIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
322 #define DADD (DOP+ADD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
323 #define DSUB (DOP+SUB)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
324
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
325 #define FASS (FOP+ASS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
326 #define FCMPGE (FOP+CMPGE)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
327 #define FCMPEQ (FOP+CMPEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
328 #define FCMPNEQ (FOP+CMPNEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
329 #define FASSOP (FOP+ASSOP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
330 #define FCMP (FOP+CMP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
331 #define FMINUS (FOP+MINUS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
332 #define FMUL (FOP+MUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
333 #define FDIV (FOP+DIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
334 #define FADD (FOP+ADD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
335 #define FSUB (FOP+SUB)
78
8418d4b7caa7 *** empty log message ***
kono
parents: 77
diff changeset
336
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
337 #define LASS (LOP+CASS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
338 #define LCMPGE (LOP+CMPGE)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
339 #define LCMPEQ (LOP+CMPEQ)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
340 #define LCMPNEQ (LOP+CMPNEQ)
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
341 #define LASSOP (LOP+CASSOP)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
342 #define LUASSOP (LOP+CUASSOP)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
343 #define LCMP (LOP+CMP)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
344 #define LMINUS (LOP+MINUS)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
345 #define LMUL (LOP+MUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
346 #define LDIV (LOP+DIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
347 #define LUMUL (LOP+UMUL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
348 #define LUDIV (LOP+UDIV)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
349 #define LADD (LOP+ADD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
350 #define LSUB (LOP+SUB)
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
351
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
352
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
353 #define LMOD (LOP+MOD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
354 #define LUMOD (LOP+UMOD)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
355 #define LLSHIFT (LOP+LSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
356 #define LULSHIFT (LOP+ULSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
357 #define LRSHIFT (LOP+RSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
358 #define LURSHIFT (LOP+URSHIFT)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
359 #define LBAND (LOP+BAND)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
360 #define LEOR (LOP+EOR)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
361 #define LBOR (LOP+BOR)
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
362
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
363 #define BASS 89
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
364 #define BASSOP 90
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
365 #define BFD_REPL 91
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
366
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
367 #define JUMP 92
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
368
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
369 #define STASS 93
326
e5d40f8c4cce bit-field continue.
kono
parents: 318
diff changeset
370
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
371
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
372 #define BINARY_ARGS(i) ((MUL<=(i%SOP)&&(i%SOP)<=STASS))
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
373
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
374 /* ternary argments */
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
375
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
376 #define COND 94
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
377 #define UCOND 95
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
378 #define SCOND (SOP+COND)
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
379 #define SUCOND (SOP+UCOND)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
380 #define DCOND (DOP+COND)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
381 #define FCOND (FOP+COND)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
382 #define LCOND (LOP+COND)
490
95fcc858fd1c cond unsigned fix.
kono
parents: 482
diff changeset
383 #define LUCOND (LOP+UCOND)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
384
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
385 #define TERNARY_ARGS(i) (COND==(i%SOP)||UCOND==(i%SOP))
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
386
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
387 /* not appeared as tags */
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
388
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
389 #define LPAR 96
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
390 #define RPAR 97
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
391 #define LBRA 98
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
392 #define RBRA 99
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
393 #define LC 100
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
394 #define RC 101
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
395 #define COLON 102
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
396 #define SM 103
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
397 #define CNAME 104
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
398
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
399 #define I2C 105
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
400 #define I2S 106
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
401 #define I2I 107
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
402 #define I2U 108
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
403 #define I2D 109
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
404 #define I2F 110
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
405 #define I2LL 111
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
406 #define I2ULL 112
353
41ed77cb9c67 name table reogranization, extendable cheap done.
kono
parents: 351
diff changeset
407
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
408 #define U2UC 113
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
409 #define U2US 114
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
410 #define U2I 115
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
411 #define U2U 116
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
412 #define U2D 117
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
413 #define U2F 118
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
414 #define U2LL 119
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
415 #define U2ULL 120
353
41ed77cb9c67 name table reogranization, extendable cheap done.
kono
parents: 351
diff changeset
416
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
417
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
418 #define D2I (DOP+I2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
419 #define D2U (DOP+I2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
420 #define D2D (DOP+I2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
421 #define D2F (DOP+I2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
422 #define D2LL (DOP+I2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
423 #define D2ULL (DOP+I2ULL)
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
424
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
425 #define F2I (FOP+I2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
426 #define F2U (FOP+I2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
427 #define F2D (FOP+I2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
428 #define F2F (FOP+I2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
429 #define F2LL (FOP+I2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
430 #define F2ULL (FOP+I2ULL)
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
431
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
432 #define LL2I (LOP+I2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
433 #define LL2U (LOP+I2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
434 #define LL2D (LOP+I2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
435 #define LL2F (LOP+I2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
436 #define LL2LL (LOP+I2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
437 #define LL2ULL (LOP+I2ULL)
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
438
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
439 #define ULL2I (LOP+U2I)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
440 #define ULL2U (LOP+U2U)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
441 #define ULL2D (LOP+U2D)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
442 #define ULL2F (LOP+U2F)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
443 #define ULL2LL (LOP+U2LL)
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
444 #define ULL2ULL (LOP+U2ULL)
194
114e9d64b5cc *** empty log message ***
kono
parents: 188
diff changeset
445
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
446 /* tree node tags end */
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
447
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
448 /* statement start */
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
449
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
450 #define ST_DECL 121
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
451 #define ST_IF 122
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
452 #define ST_DO 123
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
453 #define ST_WHILE 124
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
454 #define ST_FOR 125
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
455 #define ST_SWITCH 126
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
456 #define ST_COMP 127
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
457 #define ST_BREAK 128
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
458 #define ST_CONTINUE 129
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
459 #define ST_CASE 130
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
460 #define ST_DEFAULT 131
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
461 #define ST_RETURN 132
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
462 #define ST_GOTO 133
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
463 #define ST_ASM 134
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
464 #define ST_LABEL 135
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
465 #define ST_OP 136
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
466 #define ST_COMMENT 137
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
467
509
e58848f6ebc1 inline continue...
kono
parents: 500
diff changeset
468 #define IS_STATEMENT(i) (i==INLINE||(ST_DECL<=i&&i<=ST_COMMENT))
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
469
616
2ba903c8e749 builtin_fabs
kono
parents: 612
diff changeset
470 #define HAS_ADDRESS 138
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 523
diff changeset
471
453
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
472 /* statement end */
1e5ca85d3f97 inline on going...
kono
parents: 452
diff changeset
473
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
474 /* error number start */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
475
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
476 #define FILERR 1
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
477 #define DCERR 2
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
478 #define RDERR 3
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
479 #define STERR 4
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
480 #define EXERR 5
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
481 #define CNERR 6
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
482 #define CHERR 7
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
483 #define GSERR 8
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
484 #define LSERR 9
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
485 #define STRERR 10
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
486 #define LNERR 11
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
487 #define EOFERR 12
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
488 #define MCERR 13
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
489 #define INCERR 14
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
490 #define HPERR 15
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
491 #define TYERR 16
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
492 #define LVERR 17
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
493 #define UDERR 18
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
494 #define OPTION 19
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
495 #define REG_ERR 20
389
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
496 #define RGERR 21
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
497 #define CODE_ERR 22
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
498 #define MSERR 23
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
499 #define BTERR 24
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
500 #define HSERR 25
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
501 #define NMERR 26
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
502 #define MMERR 27
68fb244e0e3c mc-arm generates code-gen-all.s with no error,
kono
parents: 363
diff changeset
503 #define INERR 28
523
009289571b54 *** empty log message ***
kono
parents: 509
diff changeset
504 #define AGERR 29
009289571b54 *** empty log message ***
kono
parents: 509
diff changeset
505 #define ILERR 30
558
528fed826f17 const value switch statement prune.
kono
parents: 544
diff changeset
506 #define CSERR 31
572
388baa7d4bee more strict errors.
kono
parents: 566
diff changeset
507 #define GTERR 32
388baa7d4bee more strict errors.
kono
parents: 566
diff changeset
508 #define FNERR 33
388baa7d4bee more strict errors.
kono
parents: 566
diff changeset
509 #define UCERR 34
388baa7d4bee more strict errors.
kono
parents: 566
diff changeset
510 #define UFERR 35
574
aad312f61654 remove too much inmode.
kono
parents: 572
diff changeset
511 #define ENERR 36
aad312f61654 remove too much inmode.
kono
parents: 572
diff changeset
512 #define SIERR 37
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
513
164
1c2a9232ea93 mc.h generation
kono
parents: 162
diff changeset
514 /* error number end */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
515
526
9ff5cd7afe2f *** empty log message ***
kono
parents: 523
diff changeset
516 /* ctmode bit */
9ff5cd7afe2f *** empty log message ***
kono
parents: 523
diff changeset
517
461
2a49dfe59540 attribute
kono
parents: 456
diff changeset
518 #define KONST_BIT 1
2a49dfe59540 attribute
kono
parents: 456
diff changeset
519 #define VOLATILE_BIT 2
2a49dfe59540 attribute
kono
parents: 456
diff changeset
520 #define RESTRICT_BIT 4
2a49dfe59540 attribute
kono
parents: 456
diff changeset
521
25
b7a94557bf92 *** empty log message ***
kono
parents: 20
diff changeset
522 #define FILES 10
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
523 #define MAX_INCLUDE_PATH_COUNT 10
448
422415e15eb8 *** empty log message ***
kono
parents: 447
diff changeset
524 /*
422415e15eb8 *** empty log message ***
kono
parents: 447
diff changeset
525 For this comiler 8192*2 is Ok. Linux kernel requires 8192*4.
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
526 we need automatic increment of gsyms?
448
422415e15eb8 *** empty log message ***
kono
parents: 447
diff changeset
527 */
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
528 #define GSYMS (8192*32)
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
529 #define HEAPSIZE 120000
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
530 #define CHEAPSIZE (sizeof(NMTBL)*8192)
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
531 #define LBUFSIZE 4096
347
cef4d8eb9a26 name table reconfigure continue...
kono
parents: 346
diff changeset
532 #define STRSIZE 4096
254
5aaca4f9d96b *** empty log message ***
kono
parents: 250
diff changeset
533
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
534 typedef struct nametable {
327
da2e3f2d127d macro/codegen reorganization
kono
parents: 326
diff changeset
535 char *nm;
348
e77b3a7002ad name table reconfigure compiled. debug start.
kono
parents: 347
diff changeset
536 struct nametable *next;
445
kono
parents: 435
diff changeset
537 int sc,attr;
kono
parents: 435
diff changeset
538 int ty,dsp; } NMTBL;
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
539
452
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
540 extern int *heap; /* heap area (in cheap ) */
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
541 extern NMTBL *global_list; /* list of all global NMTBL */
8e3284b0a8c9 minor update
kono
parents: 451
diff changeset
542 extern NMTBL *local_static_list; /* list of local static variable */
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
543
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
544 #if FLOAT_CODE
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
545 extern int dlist2(int e1, double e2);
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
546 #endif
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
547 #if LONGLONG_CODE
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
548 extern int llist2(int e1, long long e2);
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
549 #endif
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
550 extern int list2(int e1, int e2);
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
551 extern int list3(int e1, int e2, int e3);
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
552 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
553 extern int list5(int e1, int e2, int e3,int e4,int e5);
318
9fe0b32a7d57 asm continue...
kono
parents: 316
diff changeset
554 extern int length(int e1);
464
d88f08d81bba inline continue....
kono
parents: 461
diff changeset
555 extern int getfree(int size);
318
9fe0b32a7d57 asm continue...
kono
parents: 316
diff changeset
556 extern int nth(int n,int e1);
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
557 extern int reverse0(int t1);
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
558 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
559 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
560 extern int insert_ascend(int p,int e,int eq());
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
561
347
cef4d8eb9a26 name table reconfigure continue...
kono
parents: 346
diff changeset
562 extern void free_nptr(NMTBL *n);
cef4d8eb9a26 name table reconfigure continue...
kono
parents: 346
diff changeset
563 extern NMTBL *get_nptr();
346
969089695850 name reconfigure.... continue...
kono
parents: 331
diff changeset
564
609
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
565 // mc-tree.c
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
566
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
567 extern void print_expr(int e, FILE *vout);
af6b9ae79583 modificatioon for udpcl
kono
parents: 607
diff changeset
568
590
cc2a83f98188 ia32 reorganization etc.
kono
parents: 574
diff changeset
569 #if 1
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
570 extern int heapsize;
467
32737bad7489 fix list/tag interference
kono
parents: 464
diff changeset
571 #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
572 #else
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
573 #define CHECK_HEAP(b) (b)
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
574 #endif
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
575
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
576 #define car(e) (heap[(int)(CHECK_HEAP(e))])
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
577
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
578 #define cadr(e) (heap[((int)(CHECK_HEAP(e)))+1])
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
579
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
580 #define caddr(e) (heap[((int)(CHECK_HEAP(e)))+2])
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
581
450
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
582 #define cadddr(e) (heap[((int)(CHECK_HEAP(e)))+3])
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
583
eaf9e2746c83 parallel assign for simple expr. (too complex solution)
kono
parents: 449
diff changeset
584 #define caddddr(e) (heap[((int)(CHECK_HEAP(e)))+4])
449
c55363eff5e5 parallel assignment (modify not completed)
kono
parents: 448
diff changeset
585
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
586 #if FLOAT_CODE
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
587 #define dcadr(e) (*(double*)&heap[((int)(e))+1])
f94ca1168520 float first try...
kono
parents: 78
diff changeset
588 #define dcaddr(e) (*(double*)&heap[((int)(e))+2])
195
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
589 #endif
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
590
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
591 #if LONGLONG_CODE
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
592 #define lcadr(e) (*(long long*)&heap[((int)(e))+1])
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
593 #define lcaddr(e) (*(long long*)&heap[((int)(e))+2])
c193120ee2a6 *** empty log message ***
kono
parents: 194
diff changeset
594 #endif
81
f94ca1168520 float first try...
kono
parents: 78
diff changeset
595
33
8500dbb69dd9 bad macro processing. give up this method.
kono
parents: 32
diff changeset
596 /* end */