Implementaion of builtin functions
[fw/sdcc] / src / SDCCast.h
1 /*-------------------------------------------------------------------------
2   SDCCast.h - header file for parser support & all ast related routines
3
4              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
5
6    This program is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by the
8    Free Software Foundation; either version 2, or (at your option) any
9    later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19    
20    In other words, you are welcome to use, share and improve this program.
21    You are forbidden to forbid anyone else to use, share and improve
22    what you give them.   Help stamp out software-hoarding!  
23 -------------------------------------------------------------------------*/
24
25 #ifndef SDCCEXPR_H
26 #define SDCCEXPR_H
27
28 #include "SDCCglobl.h"
29 #include "SDCCsymt.h"
30 #include "SDCCval.h"
31 #include "SDCCset.h"
32 #include "SDCCmem.h"
33
34 #define  EX_OP       0
35 #define  EX_VALUE    1
36 #define  EX_LINK     2
37 #define  EX_STMNT    3
38 #define  EX_OPERAND  4
39
40 /* expression tree   */
41 typedef struct ast
42   {
43
44     unsigned type:3;
45     unsigned decorated:1;
46     unsigned isError:1;
47     unsigned funcName:1;
48     unsigned rvalue:1;
49     unsigned lvalue:1;
50     unsigned initMode:1;
51     int level;                  /* level for expr */
52     int block;                  /* block number   */
53     /* union of values expression can have */
54     union
55       {
56         value *val;             /* value if type = EX_VALUE */
57         sym_link *lnk;          /* sym_link * if type= EX_LINK  */
58         struct operand *oprnd;  /* used only for side effecting function calls */
59         unsigned stmnt;         /* statement if type=EX_STMNT */
60         unsigned op;            /* operator if type= EX_OP  */
61       }
62     opval;
63
64     /* union for special processing */
65     union
66       {
67         char *inlineasm;        /* pointer to inline assembler code */
68         literalList *constlist; /* init list for array initializer. */
69         symbol *sym;            /* if block then -> symbols */
70         value *args;            /* if function then args    */
71         /* if switch then switch values */
72         struct
73           {
74             value *swVals;      /* switch comparison values */
75             int swDefault;      /* default if present       */
76             int swNum;          /* switch number            */
77           }
78         switchVals;
79         /* if for then for values */
80         struct
81           {
82             struct ast *initExpr;       /* init portion */
83             struct ast *condExpr;       /* conditional portion */
84             struct ast *loopExpr;       /* iteration portion   */
85             symbol *trueLabel;  /* entry point into body */
86             symbol *falseLabel; /* exit point */
87             symbol *continueLabel;      /* conditional check   */
88             symbol *condLabel;  /* conditional label   */
89           }
90         forVals;
91         unsigned literalFromCast;       /* true if this is an EX_VALUE of LITERAL 
92                                          * type resulting from a typecast.
93                                          */
94       }
95     values;
96
97     int lineno;                 /* source file line number     */
98     char *filename;             /* filename of the source file */
99
100     sym_link *ftype;            /* start of type chain for this subtree */
101     sym_link *etype;            /* end of type chain for this subtree   */
102
103     struct ast *left;           /* pointer to left tree        */
104     struct ast *right;          /* pointer to right tree       */
105     symbol *trueLabel;          /* if statement trueLabel */
106     symbol *falseLabel;         /* if statement falseLabel */
107   }
108 ast;
109
110
111 /* easy access macros   */
112 #define  IS_AST_OP(x)                   (x && x->type == EX_OP)
113 #define IS_CALLOP(x)   (IS_AST_OP(x) && x->opval.op == CALL)
114 #define IS_BITOR(x) (IS_AST_OP(x) && x->opval.op == '|')
115 #define IS_BITAND(x) (IS_AST_OP(x) && x->opval.op == '&' && \
116                       x->left && x->right )
117 #define IS_FOR_STMT(x) (IS_AST_OP(x) && x->opval.op == FOR)
118 #define IS_LEFT_OP(x) (IS_AST_OP(x) && x->opval.op == LEFT_OP)
119 #define IS_RIGHT_OP(x) (IS_AST_OP(x) && x->opval.op == RIGHT_OP)
120 #define  IS_AST_VALUE(x)        (x && x->type == EX_VALUE && x->opval.val)
121 #define  IS_AST_LINK(x)         (x->type == EX_LINK)
122 #define  IS_AST_NOT_OPER(x)     (x && IS_AST_OP(x) && x->opval.op == '!')
123 #define  IS_ARRAY_OP(x) (IS_AST_OP(x) && x->opval.op == '[')
124 #define  IS_COMPARE_OP(x)       (IS_AST_OP(x)           &&              \
125                                   (x->opval.op == '>'   ||              \
126                                    x->opval.op == '<'   ||              \
127                                    x->opval.op == LE_OP ||              \
128                                    x->opval.op == GE_OP ||              \
129                                    x->opval.op == EQ_OP ||              \
130                                    x->opval.op == NE_OP ))
131 #define IS_CAST_OP(x) (IS_AST_OP(x) && x->opval.op == CAST)
132 #define IS_TERNARY_OP(x) (IS_AST_OP(x) && x->opval.op == '?')
133 #define IS_COLON_OP(x) (IS_AST_OP(x) && x->opval.op == ':')
134 #define IS_ADDRESS_OF_OP(x)    (IS_AST_OP(x)            &&              \
135                                 x->opval.op == '&'      &&              \
136                                 x->right == NULL )
137 #define IS_AST_LIT_VALUE(x) (IS_AST_VALUE(x) && \
138                              IS_LITERAL(x->opval.val->etype))
139 #define IS_AST_SYM_VALUE(x)     (IS_AST_VALUE(x) && x->opval.val->sym)
140 #define AST_LIT_VALUE(x)        (floatFromVal(x->opval.val))
141 #define AST_SYMBOL(x)           (x->opval.val->sym)
142 #define AST_VALUE(x)            (x->opval.val)
143 #define AST_VALUES(x,y) (x->values.y)
144 #define AST_FOR(x,y) x->values.forVals.y
145 #define  IS_AST_PARAM(x)        (IS_AST_OP(x) && x->opval.op == PARAM)
146
147 #define  CAN_EVAL(x)    (     x ==  '[' || x == '.' || x == PTR_OP ||   \
148               x ==  '&' || x == '|' || x == '^'    || x == '*' || \
149               x ==  '-' || x == '+' || x == '~'    ||   \
150               x ==  '!' || x == LEFT_OP || x == RIGHT_OP ||       \
151               x ==  '/' || x == '%' || x == '>' || x == '<'    || \
152               x == LE_OP || x == GE_OP || x == EQ_OP || x == NE_OP || \
153               x == AND_OP || x == OR_OP || x == '='  )
154
155 #define  LEFT_FIRST(x) ( x  ==  AND_OP  ||      x       ==      OR_OP   )
156
157 #define SIDE_EFFECTS_CHECK(op,rVal)  if (!sideEffects)  {               \
158                                          werror(W_NO_SIDE_EFFECTS,op);  \
159                                          return rVal    ;               \
160                                      }
161 #define IS_MODIFYING_OP(x) ( x == INC_OP || x == DEC_OP || x == '=' ||  \
162                         x == AND_ASSIGN || x== OR_ASSIGN || x == XOR_ASSIGN )
163
164 #define IS_ASSIGN_OP(x) ( x == '=' || x == ADD_ASSIGN || x == SUB_ASSIGN ||\
165                           x == MUL_ASSIGN || x == DIV_ASSIGN || x == XOR_ASSIGN ||\
166                           x == AND_ASSIGN || x == OR_ASSIGN || x == INC_OP || x == DEC_OP)
167 #define IS_DEREF_OP(x) (( x->opval.op == '*' && x->right == NULL) || x->opval.op == '.')
168
169 /* forward declarations for global variables */
170 extern ast *staticAutos;
171 extern FILE *codeOutFile;
172 extern struct memmap *GcurMemmap;
173
174 /* forward definitions for functions   */
175 ast *newAst_VALUE (value * val);
176 ast *newAst_OP (unsigned op);
177 ast *newAst_LINK (sym_link * val);
178 ast *newAst_STMNT (unsigned val);
179
180 void initAst ();
181 ast *newNode (long, ast *, ast *);
182 ast *copyAst (ast *);
183 value *sizeofOp (sym_link *);
184 value *evalStmnt (ast *);
185 ast *createFunction (symbol *, ast *);
186 ast *createBlock (symbol *, ast *);
187 ast *createLabel (symbol *, ast *);
188 ast *createCase (ast *, ast *, ast *);
189 ast *createDefault (ast *, ast *);
190 ast *optimizeCompare (ast *);
191 ast *forLoopOptForm (ast *);
192 ast *argAst (ast *);
193 ast *resolveSymbols (ast *);
194 ast *decorateType (ast *);
195 ast *createWhile (symbol *, symbol *, symbol *, ast *, ast *);
196 ast *createIf (ast *, ast *, ast *);
197 ast *createDo (symbol *, symbol *, symbol *, ast *, ast *);
198 ast *createFor (symbol *, symbol *, symbol *, symbol *, ast *, ast *, ast *, ast *);
199 void eval2icode (ast *);
200 value *constExprValue (ast *, int);
201 symbol *funcOfType (char *, sym_link *, sym_link *, int, int);
202 symbol * funcOfTypeVarg (char *, char * , int , char **);
203 ast *initAggregates (symbol *, initList *, ast *);
204 bool hasSEFcalls (ast *);
205 void addSymToBlock (symbol *, ast *);
206
207 // exported variables 
208 extern set *operKeyReset;
209 extern int noAlloc;
210 extern int inInitMode;
211
212 #endif