* sim/ucsim/configure.in,
[fw/sdcc] / src / SDCCsymt.h
1 /*-------------------------------------------------------------------------
2   SDCCsymt.h - Header file for Symbols table related structures and MACRO's.              
3               Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
4
5    This program is free software; you can redistribute it and/or modify it
6    under the terms of the GNU General Public License as published by the
7    Free Software Foundation; either version 2, or (at your option) any
8    later version.
9    
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14    
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18    
19    In other words, you are welcome to use, share and improve this program.
20    You are forbidden to forbid anyone else to use, share and improve
21    what you give them.   Help stamp out software-hoarding!  
22 -------------------------------------------------------------------------*/
23
24 #ifndef  SDCCSYMT_H
25 #define  SDCCSYMT_H
26
27 #define MAX_NEST_LEVEL  256
28 #define SDCC_SYMNAME_MAX 64
29 #define SDCC_NAME_MAX  3*SDCC_SYMNAME_MAX // big enough for _<func>_<var>_etc
30 #include "SDCChasht.h"
31 #include "SDCCglobl.h"
32
33 #define INTNO_MAX 255                   /* maximum allowed interrupt number */
34 #define INTNO_UNSPEC (INTNO_MAX+1)      /* interrupt number unspecified */
35
36 #define BITVAR_PAD -1
37
38 enum {
39     TYPEOF_INT=1,
40     TYPEOF_SHORT,
41     TYPEOF_CHAR,
42     TYPEOF_LONG,
43     TYPEOF_FLOAT,
44     TYPEOF_BIT,
45     TYPEOF_BITFIELD,
46     TYPEOF_SBIT,
47     TYPEOF_SFR,
48     TYPEOF_VOID,
49     TYPEOF_STRUCT,
50     TYPEOF_ARRAY,
51     TYPEOF_FUNCTION,
52     TYPEOF_POINTER,
53     TYPEOF_FPOINTER,
54     TYPEOF_CPOINTER,
55     TYPEOF_GPOINTER,
56     TYPEOF_PPOINTER,
57     TYPEOF_IPOINTER,
58     TYPEOF_EEPPOINTER
59 };
60
61 // values for first byte of generic pointer.
62 #define GPTYPE_NEAR     0
63 #define GPTYPE_FAR      1
64 #define GPTYPE_CODE     2
65 #define GPTYPE_XSTACK   3
66 #define GPTYPE_GPTR     4       // Never used?
67 #define GPTYPE_IDATA    5
68
69 #define HASHTAB_SIZE 256
70
71 /* hash table bucket */
72 typedef struct bucket
73   {
74     void *sym;                  /* pointer to the object   */
75     char name[SDCC_NAME_MAX + 1];       /* name of this symbol          */
76     int level;                  /* nest level for this symbol   */
77     int block;                  /* belongs to which block */
78     struct bucket *prev;        /* ptr 2 previous bucket   */
79     struct bucket *next;        /* ptr 2 next bucket       */
80   }
81 bucket;
82
83 typedef struct structdef
84   {
85     char tag[SDCC_NAME_MAX + 1];        /* tag part of structure      */
86     unsigned char level;        /* Nesting level         */
87     struct symbol *fields;      /* pointer to fields     */
88     unsigned size;              /* sizeof the table in bytes  */
89     int type;                   /* STRUCT or UNION */
90   }
91 structdef;
92
93 /* noun definitions */
94 typedef enum
95   {
96     V_INT = 1,
97     V_FLOAT,
98     V_CHAR,
99     V_VOID,
100     V_STRUCT,
101     V_LABEL,
102     V_BIT,
103     V_BITFIELD,
104     V_SBIT,
105     V_DOUBLE
106   }
107 NOUN;
108
109 /* storage class    */
110 typedef enum
111   {
112     S_FIXED = 0,
113     S_AUTO,
114     S_REGISTER,
115     S_SFR,
116     S_SBIT,
117     S_CODE,
118     S_XDATA,
119     S_DATA,
120     S_IDATA,
121     S_PDATA,
122     S_LITERAL,
123     S_STACK,
124     S_XSTACK,
125     S_BIT,
126     S_EEPROM
127   }
128 STORAGE_CLASS;
129
130 /* specifier is the last in the type-chain */
131 typedef struct specifier
132   {
133     NOUN noun;                  /* CHAR INT STRUCTURE LABEL   */
134     STORAGE_CLASS sclass;       /* REGISTER,AUTO,FIX,CONSTANT */
135     struct memmap *oclass;      /* output storage class       */
136     unsigned _long:1;           /* 1=long            */
137     unsigned _short:1;          /* 1=short int    */
138     unsigned _unsigned:1;       /* 1=unsigned, 0=signed       */
139     unsigned _signed:1;         /* just for sanity checks only*/
140     unsigned _static:1;         /* 1=static keyword found     */
141     unsigned _extern:1;         /* 1=extern found             */
142     unsigned _absadr:1;         /* absolute address specfied  */
143     unsigned _volatile:1;       /* is marked as volatile      */
144     unsigned _const:1;          /* is a constant              */
145     unsigned _typedef:1;        /* is typedefed               */
146     unsigned _isregparm:1;      /* is the first parameter     */
147     unsigned _isenum:1;         /* is an enumerated type      */
148     unsigned _addr;             /* address of symbol          */
149     unsigned _stack;            /* stack offset for stacked v */
150     unsigned _bitStart;         /* bit start position         */
151     int _bitLength;             /* bit length                 */
152     int argreg;                 /* reg no for regparm         */
153     union
154       {                         /* Values if constant or enum */
155         TYPE_WORD   v_int;      /* 2 bytes: int and char values        */
156         char       *v_char;     /*          character string           */
157         TYPE_UWORD  v_uint;     /* 2 bytes: unsigned int const value   */
158         TYPE_DWORD  v_long;     /* 4 bytes: long constant value        */
159         TYPE_UDWORD v_ulong;    /* 4 bytes: unsigned long constant val */
160         double      v_float;    /*          floating point constant value */
161         struct symbol *v_enum;  /* ptr 2 enum_list if enum==1 */
162       }
163     const_val;
164     struct structdef *v_struct; /* structure pointer      */
165   }
166 specifier;
167
168 /* types of declarators */
169 typedef enum
170   {
171     POINTER = 0,                /* pointer to near data */
172     FPOINTER,                   /* pointer to far data  */
173     CPOINTER,                   /* pointer to code space */
174     GPOINTER,                   /* _generic pointer     */
175     PPOINTER,                   /* paged area pointer   */
176     IPOINTER,                   /* pointer to upper 128 bytes */
177     UPOINTER,                   /* unknown pointer used only when parsing */
178     EEPPOINTER,                 /* pointer to eeprom     */
179     ARRAY,
180     FUNCTION
181   }
182 DECLARATOR_TYPE;
183
184 typedef struct declarator
185   {
186     DECLARATOR_TYPE dcl_type;   /* POINTER,ARRAY or FUNCTION  */
187     unsigned int num_elem;      /* # of elems if type==array  */
188     unsigned ptr_const:1;       /* pointer is constant        */
189     unsigned ptr_volatile:1;    /* pointer is volatile        */
190     struct sym_link *tspec;     /* pointer type specifier     */
191   }
192 declarator;
193
194 typedef enum {
195   DECLARATOR=1,
196   SPECIFIER
197 } SYM_LINK_CLASS;
198 #define DECLSPEC2TXT(select) (select==DECLARATOR?"DECLARATOR":select==SPECIFIER?"SPECIFIER":"UNKNOW")
199
200 typedef struct sym_link
201   {
202     SYM_LINK_CLASS class;       /* DECLARATOR or SPECIFIER    */
203     unsigned tdef:1;            /* current link created by    */
204     /* typedef if this flag is set */
205     union
206       {
207         specifier s;            /* if CLASS == SPECIFIER      */
208         declarator d;           /* if CLASS == DECLARATOR     */
209       } select;
210
211     /* function attributes */
212     struct {
213       struct value *args;       /* the defined arguments      */
214       unsigned hasVargs:1;      /* functions has varargs      */
215       unsigned calleeSaves:1;   /* functions uses callee save */
216       unsigned hasbody:1;       /* function body defined      */
217       unsigned hasFcall:1;      /* does it call other functions */
218       unsigned reent:1;         /* function is reentrant      */
219       unsigned naked:1;         /* naked function             */
220
221       unsigned nonbanked:1;     /* function has the nonbanked attribute */
222       unsigned banked:1;        /* function has the banked attribute */
223       unsigned critical:1;      /* critical function          */
224       unsigned intrtn:1;        /* this is an interrupt routin */
225       unsigned rbank:1;         /* seperate register bank     */
226       unsigned intno;           /* 1=Interrupt svc routine    */
227       unsigned regbank;         /* register bank 2b used      */
228       unsigned builtin;         /* is a builtin function      */
229       unsigned javaNative;      /* is a JavaNative Function (TININative ONLY) */
230       unsigned overlay;         /* force parameters & locals into overlay segment */
231       unsigned hasStackParms;   /* function has parameters on stack */
232     } funcAttrs;
233
234     struct sym_link *next;      /* next element on the chain  */
235   }
236 sym_link;
237
238 typedef struct symbol
239   {
240     char name[SDCC_SYMNAME_MAX + 1];    /* Input Variable Name     */
241     char rname[SDCC_NAME_MAX + 1];      /* internal name           */
242
243     short level;                /* declration lev,fld offset */
244     short block;                /* sequential block # of defintion */
245     int key;
246     unsigned implicit:1;        /* implicit flag                     */
247     unsigned undefined:1;       /* undefined variable                */
248     unsigned _isparm:1;         /* is a parameter          */
249     unsigned ismyparm:1;        /* is parameter of the function being generated */
250     unsigned isitmp:1;          /* is an intermediate temp */
251     unsigned islbl:1;           /* is a temporary label */
252     unsigned isref:1;           /* has been referenced  */
253     unsigned isind:1;           /* is a induction variable */
254     unsigned isinvariant:1;     /* is a loop invariant  */
255     unsigned cdef:1;            /* compiler defined symbol */
256     unsigned addrtaken:1;       /* address of the symbol was taken */
257     unsigned isreqv:1;          /* is the register quivalent of a symbol */
258     unsigned udChked:1;         /* use def checking has been already done */
259
260     /* following flags are used by the backend
261        for code generation and can be changed
262        if a better scheme for backend is thought of */
263     unsigned isLiveFcall:1;     /* is live at or across a function call */
264     unsigned isspilt:1;         /* has to be spilt */
265     unsigned spillA:1;          /* spilt be register allocator */
266     unsigned remat:1;           /* can be remateriazed */
267     unsigned isptr:1;           /* is a pointer */
268     unsigned uptr:1;            /* used as a pointer */
269     unsigned isFree:1;          /* used by register allocator */
270     unsigned islocal:1;         /* is a local variable        */
271     unsigned blockSpil:1;       /* spilt at block level       */
272     unsigned remainSpil:1;      /* spilt because not used in remainder */
273     unsigned stackSpil:1;       /* has been spilt on temp stack location */
274     unsigned onStack:1;         /* this symbol allocated on the stack */
275     unsigned iaccess:1;         /* indirect access      */
276     unsigned ruonly:1;          /* used in return statement only */
277     unsigned spildir:1;         /* spilt in direct space */
278     unsigned ptrreg:1;          /* this symbol assigned to a ptr reg */
279     unsigned noSpilLoc:1;       /* cannot be assigned a spil location */
280     unsigned isstrlit;          /* is a string literal and it's usage count  */
281     unsigned accuse;            /* can be left in the accumulator
282                                    On the Z80 accuse is devided into
283                                    ACCUSE_A and ACCUSE_HL as the idea
284                                    is quite similar.
285                                  */
286     unsigned dptr;              /* 8051 variants with multiple DPTRS
287                                    currently implemented in DS390 only
288                                 */
289     int allocreq ;              /* allocation is required for this variable */
290     int stack;                  /* offset on stack      */
291     int xstack;                 /* offset on xternal stack */
292     short nRegs;                /* number of registers required */
293     short regType;              /* type of register required    */
294
295     struct regs *regs[4];       /* can have at the most 4 registers */
296     struct asmop *aop;          /* asmoperand for this symbol */
297     struct iCode *fuse;         /* furthest use */
298     struct iCode *rematiCode;   /* rematerialse with which instruction */
299     struct operand *reqv;       /* register equivalent of a local variable */
300     struct symbol *prereqv;     /* symbol before register equiv. substituion */
301     union
302       {
303         struct symbol *spillLoc;        /* register spil location */
304         struct set *itmpStack;  /* symbols spilt @ this stack location */
305       }
306     usl;
307     short bitVar;               /* this is a bit variable    */
308     unsigned offset;            /* offset from top if struct */
309
310     int lineDef;                /* defined line number        */
311     char *fileDef;              /* defined filename           */
312     int lastLine;               /* for functions the last line */
313     struct sym_link *type;      /* 1st link to declator chain */
314     struct sym_link *etype;     /* last link to declarator chn */
315     struct symbol *next;        /* crosslink to next symbol   */
316     struct symbol *localof;     /* local variable of which function */
317     struct initList *ival;      /* ptr to initializer if any  */
318     struct bitVect *defs;       /* bit vector for definitions */
319     struct bitVect *uses;       /* bit vector for uses        */
320     struct bitVect *regsUsed;   /* for functions registers used */
321     int liveFrom;               /* live from iCode sequence number */
322     int liveTo;                 /* live to sequence number */
323     int used;                   /* no. of times this was used */
324     int recvSize;               /* size of first argument  */
325     struct bitVect *clashes;    /* overlaps with what other symbols */
326   }
327 symbol;
328
329 extern sym_link *validateLink(sym_link  *l, 
330                                const char       *macro,
331                                const char       *args,
332                                const char       select,
333                                const char       *file, 
334                                unsigned         line);
335 /* Easy Access Macros */
336 #define DCL_TYPE(l)  validateLink(l, "DCL_TYPE", #l, DECLARATOR, __FILE__, __LINE__)->select.d.dcl_type
337 #define DCL_ELEM(l)  validateLink(l, "DCL_ELEM", #l, DECLARATOR, __FILE__, __LINE__)->select.d.num_elem
338 #define DCL_PTR_CONST(l) validateLink(l, "DCL_PTR_CONST", #l, DECLARATOR, __FILE__, __LINE__)->select.d.ptr_const
339 #define DCL_PTR_VOLATILE(l) validateLink(l, "DCL_PTR_VOLATILE", #l, DECLARATOR, __FILE__, __LINE__)->select.d.ptr_volatile
340 #define DCL_TSPEC(l) validateLink(l, "DCL_TSPEC", #l, DECLARATOR, __FILE__, __LINE__)->select.d.tspec
341
342 #define FUNC_DEBUG //assert(IS_FUNC(x));
343 #define FUNC_HASVARARGS(x) (x->funcAttrs.hasVargs)
344 #define IFFUNC_HASVARARGS(x) (IS_FUNC(x) && FUNC_HASVARARGS(x))
345 #define FUNC_ARGS(x) (x->funcAttrs.args)
346 #define IFFUNC_ARGS(x) (IS_FUNC(x) && FUNC_ARGS(x))
347 #define FUNC_HASFCALL(x) (x->funcAttrs.hasFcall)
348 #define IFFUNC_HASFCALL(x) (IS_FUNC(x) && FUNC_HASFCALL(x))
349 #define FUNC_HASBODY(x) (x->funcAttrs.hasbody)
350 #define IFFUNC_HASBODY(x) (IS_FUNC(x) && FUNC_HASBODY(x))
351 #define FUNC_CALLEESAVES(x) (x->funcAttrs.calleeSaves)
352 #define IFFUNC_CALLEESAVES(x) (IS_FUNC(x) && FUNC_CALLEESAVES(x))
353 #define FUNC_ISISR(x) (x->funcAttrs.intrtn)
354 #define IFFUNC_ISISR(x) (IS_FUNC(x) && FUNC_ISISR(x))
355 #define IFFUNC_RBANK(x) (IS_FUNC(x) && FUNC_RBANK(x))
356 #define FUNC_INTNO(x) (x->funcAttrs.intno)
357 #define FUNC_REGBANK(x) (x->funcAttrs.regbank)
358 #define FUNC_HASSTACKPARM(x) (x->funcAttrs.hasStackParms)
359
360 #define FUNC_ISREENT(x) (x->funcAttrs.reent)
361 #define IFFUNC_ISREENT(x) (IS_FUNC(x) && FUNC_ISREENT(x))
362 #define FUNC_ISNAKED(x) (x->funcAttrs.naked)
363 #define IFFUNC_ISNAKED(x) (IS_FUNC(x) && FUNC_ISNAKED(x))
364 #define FUNC_NONBANKED(x) (x->funcAttrs.nonbanked)
365 #define IFFUNC_NONBANKED(x) (IS_FUNC(x) && FUNC_NONBANKED(x))
366 #define FUNC_BANKED(x) (x->funcAttrs.banked)
367 #define IFFUNC_BANKED(x) (IS_FUNC(x) && FUNC_BANKED(x))
368 #define FUNC_ISCRITICAL(x) (x->funcAttrs.critical)
369 #define IFFUNC_ISCRITICAL(x) (IS_FUNC(x) && FUNC_ISCRITICAL(x))
370 #define FUNC_ISBUILTIN(x) (x->funcAttrs.builtin)
371 #define IFFUNC_ISBUILTIN(x) (IS_FUNC(x) && FUNC_ISBUILTIN(x))
372 #define FUNC_ISJAVANATIVE(x) (x->funcAttrs.javaNative)
373 #define IFFUNC_ISJAVANATIVE(x) (IS_FUNC(x) && FUNC_ISJAVANATIVE(x))
374 #define FUNC_ISOVERLAY(x) (x->funcAttrs.overlay)
375 #define IFFUNC_ISOVERLAY(x) (IS_FUNC(x) && FUNC_ISOVERLAY(x))
376
377 #define IFFUNC_ISBANKEDCALL(x) (!IFFUNC_NONBANKED(x) && \
378   (options.model == MODEL_LARGE || \
379    options.model == MODEL_MEDIUM || \
380   IFFUNC_BANKED(x)))
381
382 #define SPEC_NOUN(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s.noun
383 #define SPEC_LONG(x) validateLink(x, "SPEC_LONG", #x, SPECIFIER, __FILE__, __LINE__)->select.s._long
384 #define SPEC_SHORT(x) validateLink(x, "SPEC_LONG", #x, SPECIFIER, __FILE__, __LINE__)->select.s._short
385 #define SPEC_USIGN(x) validateLink(x, "SPEC_USIGN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._unsigned
386 #define SPEC_SCLS(x) validateLink(x, "SPEC_SCLS", #x, SPECIFIER, __FILE__, __LINE__)->select.s.sclass
387 #define SPEC_ENUM(x) validateLink(x, "SPEC_ENUM", #x, SPECIFIER, __FILE__, __LINE__)->select.s._isenum
388 #define SPEC_OCLS(x) validateLink(x, "SPEC_OCLS", #x, SPECIFIER, __FILE__, __LINE__)->select.s.oclass
389 #define SPEC_STAT(x) validateLink(x, "SPEC_STAT", #x, SPECIFIER, __FILE__, __LINE__)->select.s._static
390 #define SPEC_EXTR(x) validateLink(x, "SPEC_EXTR", #x, SPECIFIER, __FILE__, __LINE__)->select.s._extern
391 #define SPEC_CODE(x) validateLink(x, "SPEC_CODE", #x, SPECIFIER, __FILE__, __LINE__)->select.s._codesg
392 #define SPEC_ABSA(x) validateLink(x, "SPEC_ABSA", #x, SPECIFIER, __FILE__, __LINE__)->select.s._absadr
393 #define SPEC_BANK(x) validateLink(x, "SPEC_BANK", #x, SPECIFIER, __FILE__, __LINE__)->select.s._regbank
394 #define SPEC_ADDR(x) validateLink(x, "SPEC_ADDR", #x, SPECIFIER, __FILE__, __LINE__)->select.s._addr
395 #define SPEC_STAK(x) validateLink(x, "SPEC_STAK", #x, SPECIFIER, __FILE__, __LINE__)->select.s._stack
396 #define SPEC_CVAL(x) validateLink(x, "SPEC_CVAL", #x, SPECIFIER, __FILE__, __LINE__)->select.s.const_val
397 #define SPEC_BSTR(x) validateLink(x, "SPEC_BSTR", #x, SPECIFIER, __FILE__, __LINE__)->select.s._bitStart
398 #define SPEC_BLEN(x) validateLink(x, "SPEC_BLEN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._bitLength
399
400 /* Sleaze: SPEC_ISR_SAVED_BANKS is only used on 
401  * function type symbols, which obviously cannot
402  * be of BIT type. Therefore, we recycle the 
403  * _bitStart field instead of defining a new field.
404  */
405 #define SPEC_ISR_SAVED_BANKS(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._bitStart
406 #define SPEC_VOLATILE(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._volatile
407 #define SPEC_CONST(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._const
408 #define SPEC_STRUCT(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s.v_struct
409 #define SPEC_TYPEDEF(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._typedef
410 #define SPEC_REGPARM(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s._isregparm
411 #define SPEC_ARGREG(x) validateLink(x, "SPEC_NOUN", #x, SPECIFIER, __FILE__, __LINE__)->select.s.argreg
412
413 /* type check macros */
414 #define IS_DECL(x)   ( x && x->class == DECLARATOR      )
415 #define IS_SPEC(x)   ( x && x->class == SPECIFIER  )
416 #define IS_ARRAY(x)  (IS_DECL(x) && DCL_TYPE(x) == ARRAY)
417 #define IS_DATA_PTR(x) (IS_DECL(x) && DCL_TYPE(x) == POINTER)
418 #define IS_PTR(x)    (IS_DECL(x) && (DCL_TYPE(x) == POINTER    ||    \
419                                      DCL_TYPE(x) == FPOINTER   ||    \
420                                      DCL_TYPE(x) == GPOINTER   ||    \
421                                      DCL_TYPE(x) == IPOINTER   ||    \
422                                      DCL_TYPE(x) == PPOINTER   ||    \
423                                      DCL_TYPE(x) == EEPPOINTER ||    \
424                                      DCL_TYPE(x) == CPOINTER   ||    \
425                                      DCL_TYPE(x) == UPOINTER  ))
426 #define IS_PTR_CONST(x) (IS_PTR(x) && DCL_PTR_CONST(x))
427 #define IS_FARPTR(x) (IS_DECL(x) && DCL_TYPE(x) == FPOINTER)
428 #define IS_CODEPTR(x) (IS_DECL(x) && DCL_TYPE(x) == CPOINTER)
429 #define IS_GENPTR(x) (IS_DECL(x) && DCL_TYPE(x) == GPOINTER)
430 #define IS_FUNC(x)   (IS_DECL(x) && DCL_TYPE(x) == FUNCTION)
431 #define IS_LONG(x)   (IS_SPEC(x) && x->select.s._long)
432 #define IS_UNSIGNED(x) (IS_SPEC(x) && x->select.s._unsigned)
433 #define IS_TYPEDEF(x)(IS_SPEC(x) && x->select.s._typedef)
434 #define IS_CONSTANT(x)  (!x ? 0 : \
435                            IS_SPEC(x) ? \
436                            x->select.s._const : \
437                            x->select.d.ptr_const)
438 #define IS_STRUCT(x) (IS_SPEC(x) && x->select.s.noun == V_STRUCT)
439 #define IS_ABSOLUTE(x)  (IS_SPEC(x) && x->select.s._absadr )
440 #define IS_REGISTER(x)  (IS_SPEC(x) && SPEC_SCLS(x) == S_REGISTER)
441 #define IS_RENT(x)   (IS_SPEC(x) && x->select.s._reent )
442 #define IS_STATIC(x) (IS_SPEC(x) && SPEC_STAT(x))
443 #define IS_INT(x)    (IS_SPEC(x) && x->select.s.noun == V_INT)
444 #define IS_VOID(x)   (IS_SPEC(x) && x->select.s.noun == V_VOID)
445 #define IS_CHAR(x)   (IS_SPEC(x) && x->select.s.noun == V_CHAR)
446 #define IS_EXTERN(x)    (IS_SPEC(x) && x->select.s._extern)
447 #define IS_VOLATILE(x)  (!x ? 0 : \
448                            IS_SPEC(x) ? \
449                            x->select.s._volatile : \
450                            x->select.d.ptr_volatile)
451 #define IS_INTEGRAL(x) (IS_SPEC(x) && (x->select.s.noun == V_INT ||  \
452                                        x->select.s.noun == V_CHAR || \
453                                        x->select.s.noun == V_BITFIELD || \
454                                        x->select.s.noun == V_BIT ||  \
455                                        x->select.s.noun == V_SBIT ))
456 #define IS_BITFIELD(x) (IS_SPEC(x) && (x->select.s.noun == V_BITFIELD))
457 #define IS_BITVAR(x) (IS_SPEC(x) && (x->select.s.noun == V_BITFIELD || \
458                                      x->select.s.noun  == V_BIT ||   \
459                                      x->select.s.noun == V_SBIT ))
460 #define IS_BIT(x) (IS_SPEC(x) && (x->select.s.noun  == V_BIT ||   \
461                                   x->select.s.noun == V_SBIT ))
462 #define IS_FLOAT(x)  (IS_SPEC(x) && x->select.s.noun == V_FLOAT)
463 #define IS_ARITHMETIC(x) (IS_INTEGRAL(x) || IS_FLOAT(x))
464 #define IS_AGGREGATE(x) (IS_ARRAY(x) || IS_STRUCT(x))
465 #define IS_LITERAL(x)   (IS_SPEC(x)  && x->select.s.sclass == S_LITERAL)
466 #define IS_CODE(x)      (IS_SPEC(x)  && SPEC_SCLS(x) == S_CODE)
467 #define IS_REGPARM(x)   (IS_SPEC(x) && SPEC_REGPARM(x))
468
469 /* forward declaration for the global vars */
470 extern bucket *SymbolTab[];
471 extern bucket *StructTab[];
472 extern bucket *TypedefTab[];
473 extern bucket *LabelTab[];
474 extern bucket *enumTab[];
475 extern symbol *__fsadd;
476 extern symbol *__fssub;
477 extern symbol *__fsmul;
478 extern symbol *__fsdiv;
479 extern symbol *__fseq;
480 extern symbol *__fsneq;
481 extern symbol *__fslt;
482 extern symbol *__fslteq;
483 extern symbol *__fsgt;
484 extern symbol *__fsgteq;
485
486 /* Dims: mul/div/mod, BYTE/WORD/DWORD, SIGNED/UNSIGNED */
487 extern symbol *__muldiv[3][3][2];
488 /* Dims: BYTE/WORD/DWORD SIGNED/UNSIGNED */
489 extern sym_link *__multypes[3][2];
490 /* Dims: to/from float, BYTE/WORD/DWORD, SIGNED/USIGNED */
491 extern symbol *__conv[2][3][2];
492 /* Dims: shift left/shift right, BYTE/WORD/DWORD, SIGNED/UNSIGNED */
493 extern symbol *__rlrr[2][3][2];
494
495 #define CHARTYPE        __multypes[0][0]
496 #define UCHARTYPE       __multypes[0][1]
497 #define INTTYPE         __multypes[1][0]
498 #define UINTTYPE        __multypes[1][1]
499 #define LONGTYPE        __multypes[2][0]
500 #define ULONGTYPE       __multypes[2][1]
501
502
503 extern sym_link *floatType;
504
505 #include "SDCCval.h"
506
507 typedef enum
508 {
509   RESULT_TYPE_NONE = 0, /* operands will be promoted to int */
510   RESULT_CHECK = 0, /* TODO: replace all occurences with the appropriate type and remove me */
511   RESULT_TYPE_BIT,
512   RESULT_TYPE_CHAR,
513   RESULT_TYPE_INT,
514   RESULT_TYPE_OTHER,    /* operands will be promoted to int */
515   RESULT_TYPE_IFX,
516   RESULT_TYPE_NOPROM,   /* operands will be promoted to int */
517 } RESULT_TYPE;
518
519 /* forward definitions for the symbol table related functions */
520 void initSymt ();
521 symbol *newSymbol (char *, int);
522 sym_link *newLink (SYM_LINK_CLASS);
523 sym_link *newFloatLink ();
524 structdef *newStruct (char *);
525 void addDecl (symbol *, int, sym_link *);
526 sym_link *mergeSpec (sym_link *, sym_link *, char *name);
527 symbol *reverseSyms (symbol *);
528 sym_link *reverseLink (sym_link *);
529 symbol *copySymbol (symbol *);
530 symbol *copySymbolChain (symbol *);
531 void printSymChain (symbol *, int);
532 void printStruct (structdef *, int);
533 char *genSymName (int);
534 sym_link *getSpec (sym_link *);
535 char *genSymName (int);
536 int compStructSize (int, structdef *);
537 sym_link *copyLinkChain (sym_link *);
538 int checkDecl (symbol *, int);
539 void checkBasic (sym_link *, sym_link *);
540 value *checkPointerIval (sym_link *, value *);
541 value *checkStructIval (symbol *, value *);
542 value *checkArrayIval (sym_link *, value *);
543 value *checkIval (sym_link *, value *);
544 unsigned int getSize (sym_link *);
545 unsigned int bitsForType (sym_link *);
546 sym_link *newIntLink ();
547 sym_link *newCharLink ();
548 sym_link *newLongLink ();
549 int compareType (sym_link *, sym_link *);
550 int compareTypeExact (sym_link *, sym_link *, int);
551 int checkFunction (symbol *, symbol *);
552 void cleanUpLevel (bucket **, int);
553 void cleanUpBlock (bucket **, int);
554 int funcInChain (sym_link *);
555 void addSymChain (symbol *);
556 sym_link *structElemType (sym_link *, value *);
557 symbol *getStructElement (structdef *, symbol *);
558 sym_link *computeType (sym_link *, sym_link *, RESULT_TYPE, char);
559 void processFuncArgs (symbol *);
560 int isSymbolEqual (symbol *, symbol *);
561 int powof2 (TYPE_UDWORD);
562 void printTypeChain (sym_link *, FILE *);
563 void printTypeChainRaw (sym_link *, FILE *);
564 void initCSupport ();
565 void initBuiltIns ();
566 void pointerTypes (sym_link *, sym_link *);
567 void cdbStructBlock (int);
568 void initHashT ();
569 bucket *newBucket ();
570 void addSym (bucket **, void *, char *, int, int, int checkType);
571 void deleteSym (bucket **, void *, char *);
572 void *findSym (bucket **, void *, const char *);
573 void *findSymWithLevel (bucket **, struct symbol *);
574 void *findSymWithBlock (bucket **, struct symbol *, int);
575 void changePointer (symbol * sym);
576 void checkTypeSanity(sym_link *etype, char *name);
577 sym_link *typeFromStr (char *) ;
578 STORAGE_CLASS sclsFromPtr(sym_link *ptr);
579 sym_link *newEnumType (symbol *);
580 void  promoteAnonStructs (int, structdef *);
581
582
583 extern char *nounName(sym_link *); /* noun strings */
584 extern void printFromToType (sym_link *, sym_link *);
585
586 #endif