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