7606c13d87e49eb2a06357bf66a7f176ab63ef62
[fw/sdcc] / src / SDCCast.c
1 /*-------------------------------------------------------------------------
2   SDCCast.c - source 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 #include "common.h"
26 #include "newalloc.h"
27
28 int currLineno = 0;
29 set *astList = NULL;
30 set *operKeyReset = NULL;
31 ast *staticAutos = NULL;
32 int labelKey = 1;
33
34 #define LRVAL(x) x->left->rvalue
35 #define RRVAL(x) x->right->rvalue
36 #define TRVAL(x) x->rvalue
37 #define LLVAL(x) x->left->lvalue
38 #define RLVAL(x) x->right->lvalue
39 #define TLVAL(x) x->lvalue
40 #define RTYPE(x) x->right->ftype
41 #define RETYPE(x) x->right->etype
42 #define LTYPE(x) x->left->ftype
43 #define LETYPE(x) x->left->etype
44 #define TTYPE(x) x->ftype
45 #define TETYPE(x) x->etype
46 #define ALLOCATE 1
47 #define DEALLOCATE 2
48
49 char buffer[1024];
50 int noLineno = 0;
51 int noAlloc = 0;
52 symbol *currFunc;
53 ast *createIval (ast *, sym_link *, initList *, ast *);
54 ast *createIvalCharPtr (ast *, sym_link *, ast *);
55 ast *optimizeRRCRLC (ast *);
56 ast *optimizeGetHbit (ast *);
57 ast *backPatchLabels (ast *, symbol *, symbol *);
58 int inInitMode = 0;
59 memmap *GcurMemmap=NULL;  /* points to the memmap that's currently active */
60 FILE *codeOutFile;
61 int 
62 ptt (ast * tree)
63 {
64   printTypeChain (tree->ftype, stdout);
65   return 0;
66 }
67
68
69 /*-----------------------------------------------------------------*/
70 /* newAst - creates a fresh node for an expression tree           */
71 /*-----------------------------------------------------------------*/
72 #if 0
73 ast *
74 newAst (int type, void *op)
75 {
76   ast *ex;
77   static int oldLineno = 0;
78
79   Safe_calloc (1, ex, sizeof (ast));
80
81   ex->type = type;
82   ex->lineno = (noLineno ? oldLineno : yylineno);
83   ex->filename = currFname;
84   ex->level = NestLevel;
85   ex->block = currBlockno;
86   ex->initMode = inInitMode;
87
88   /* depending on the type */
89   switch (type)
90     {
91     case EX_VALUE:
92       ex->opval.val = (value *) op;
93       break;
94     case EX_OP:
95       ex->opval.op = (long) op;
96       break;
97     case EX_LINK:
98       ex->opval.lnk = (sym_link *) op;
99       break;
100     case EX_STMNT:
101       ex->opval.stmnt = (unsigned) op;
102     }
103
104   return ex;
105 }
106 #endif
107
108 static ast *
109 newAst_ (unsigned type)
110 {
111   ast *ex;
112   static int oldLineno = 0;
113
114   ex = Safe_calloc (1, sizeof (ast));
115
116   ex->type = type;
117   ex->lineno = (noLineno ? oldLineno : yylineno);
118   ex->filename = currFname;
119   ex->level = NestLevel;
120   ex->block = currBlockno;
121   ex->initMode = inInitMode;
122   return ex;
123 }
124
125 ast *
126 newAst_VALUE (value * val)
127 {
128   ast *ex = newAst_ (EX_VALUE);
129   ex->opval.val = val;
130   return ex;
131 }
132
133 ast *
134 newAst_OP (unsigned op)
135 {
136   ast *ex = newAst_ (EX_OP);
137   ex->opval.op = op;
138   return ex;
139 }
140
141 ast *
142 newAst_LINK (sym_link * val)
143 {
144   ast *ex = newAst_ (EX_LINK);
145   ex->opval.lnk = val;
146   return ex;
147 }
148
149 ast *
150 newAst_STMNT (unsigned val)
151 {
152   ast *ex = newAst_ (EX_STMNT);
153   ex->opval.stmnt = val;
154   return ex;
155 }
156
157 /*-----------------------------------------------------------------*/
158 /* newNode - creates a new node                                    */
159 /*-----------------------------------------------------------------*/
160 ast *
161 newNode (long op, ast * left, ast * right)
162 {
163   ast *ex;
164
165   ex = newAst_OP (op);
166   ex->left = left;
167   ex->right = right;
168
169   return ex;
170 }
171
172 /*-----------------------------------------------------------------*/
173 /* newIfxNode - creates a new Ifx Node                             */
174 /*-----------------------------------------------------------------*/
175 ast *
176 newIfxNode (ast * condAst, symbol * trueLabel, symbol * falseLabel)
177 {
178   ast *ifxNode;
179
180   /* if this is a literal then we already know the result */
181   if (condAst->etype && IS_LITERAL (condAst->etype))
182     {
183       /* then depending on the expression value */
184       if (floatFromVal (condAst->opval.val))
185         ifxNode = newNode (GOTO,
186                            newAst_VALUE (symbolVal (trueLabel)),
187                            NULL);
188       else
189         ifxNode = newNode (GOTO,
190                            newAst_VALUE (symbolVal (falseLabel)),
191                            NULL);
192     }
193   else
194     {
195       ifxNode = newNode (IFX, condAst, NULL);
196       ifxNode->trueLabel = trueLabel;
197       ifxNode->falseLabel = falseLabel;
198     }
199
200   return ifxNode;
201 }
202
203 /*-----------------------------------------------------------------*/
204 /* copyAstValues - copies value portion of ast if needed     */
205 /*-----------------------------------------------------------------*/
206 void 
207 copyAstValues (ast * dest, ast * src)
208 {
209   switch (src->opval.op)
210     {
211     case BLOCK:
212       dest->values.sym = copySymbolChain (src->values.sym);
213       break;
214
215     case SWITCH:
216       dest->values.switchVals.swVals =
217         copyValue (src->values.switchVals.swVals);
218       dest->values.switchVals.swDefault =
219         src->values.switchVals.swDefault;
220       dest->values.switchVals.swNum =
221         src->values.switchVals.swNum;
222       break;
223
224     case INLINEASM:
225       dest->values.inlineasm = Safe_calloc (1, strlen (src->values.inlineasm) + 1);
226       strcpy (dest->values.inlineasm, src->values.inlineasm);
227       break;
228
229     case ARRAYINIT:
230         dest->values.constlist = copyLiteralList(src->values.constlist);
231         break;
232         
233     case FOR:
234       AST_FOR (dest, trueLabel) = copySymbol (AST_FOR (src, trueLabel));
235       AST_FOR (dest, continueLabel) = copySymbol (AST_FOR (src, continueLabel));
236       AST_FOR (dest, falseLabel) = copySymbol (AST_FOR (src, falseLabel));
237       AST_FOR (dest, condLabel) = copySymbol (AST_FOR (src, condLabel));
238       AST_FOR (dest, initExpr) = copyAst (AST_FOR (src, initExpr));
239       AST_FOR (dest, condExpr) = copyAst (AST_FOR (src, condExpr));
240       AST_FOR (dest, loopExpr) = copyAst (AST_FOR (src, loopExpr));
241     }
242
243 }
244
245 /*-----------------------------------------------------------------*/
246 /* copyAst - makes a copy of a given astession                     */
247 /*-----------------------------------------------------------------*/
248 ast *
249 copyAst (ast * src)
250 {
251   ast *dest;
252
253   if (!src)
254     return NULL;
255
256   dest = Safe_calloc (1, sizeof (ast));
257
258   dest->type = src->type;
259   dest->lineno = src->lineno;
260   dest->level = src->level;
261   dest->funcName = src->funcName;
262   dest->argSym = src->argSym;
263
264   /* if this is a leaf */
265   /* if value */
266   if (src->type == EX_VALUE)
267     {
268       dest->opval.val = copyValue (src->opval.val);
269       goto exit;
270     }
271
272   /* if link */
273   if (src->type == EX_LINK)
274     {
275       dest->opval.lnk = copyLinkChain (src->opval.lnk);
276       goto exit;
277     }
278
279   dest->opval.op = src->opval.op;
280
281   /* if this is a node that has special values */
282   copyAstValues (dest, src);
283
284   if (src->ftype)
285     dest->etype = getSpec (dest->ftype = copyLinkChain (src->ftype));
286
287   dest->trueLabel = copySymbol (src->trueLabel);
288   dest->falseLabel = copySymbol (src->falseLabel);
289   dest->left = copyAst (src->left);
290   dest->right = copyAst (src->right);
291 exit:
292   return dest;
293
294 }
295
296 /*-----------------------------------------------------------------*/
297 /* hasSEFcalls - returns TRUE if tree has a function call          */
298 /*-----------------------------------------------------------------*/
299 bool 
300 hasSEFcalls (ast * tree)
301 {
302   if (!tree)
303     return FALSE;
304
305   if (tree->type == EX_OP &&
306       (tree->opval.op == CALL ||
307        tree->opval.op == PCALL ||
308        tree->opval.op == '=' ||
309        tree->opval.op == INC_OP ||
310        tree->opval.op == DEC_OP))
311     return TRUE;
312
313   return (hasSEFcalls (tree->left) |
314           hasSEFcalls (tree->right));
315 }
316
317 /*-----------------------------------------------------------------*/
318 /* isAstEqual - compares two asts & returns 1 if they are equal    */
319 /*-----------------------------------------------------------------*/
320 int 
321 isAstEqual (ast * t1, ast * t2)
322 {
323   if (!t1 && !t2)
324     return 1;
325
326   if (!t1 || !t2)
327     return 0;
328
329   /* match type */
330   if (t1->type != t2->type)
331     return 0;
332
333   switch (t1->type)
334     {
335     case EX_OP:
336       if (t1->opval.op != t2->opval.op)
337         return 0;
338       return (isAstEqual (t1->left, t2->left) &&
339               isAstEqual (t1->right, t2->right));
340       break;
341
342     case EX_VALUE:
343       if (t1->opval.val->sym)
344         {
345           if (!t2->opval.val->sym)
346             return 0;
347           else
348             return isSymbolEqual (t1->opval.val->sym,
349                                   t2->opval.val->sym);
350         }
351       else
352         {
353           if (t2->opval.val->sym)
354             return 0;
355           else
356             return (floatFromVal (t1->opval.val) ==
357                     floatFromVal (t2->opval.val));
358         }
359       break;
360
361       /* only compare these two types */
362     default:
363       return 0;
364     }
365
366   return 0;
367 }
368
369 /*-----------------------------------------------------------------*/
370 /* resolveSymbols - resolve symbols from the symbol table          */
371 /*-----------------------------------------------------------------*/
372 ast *
373 resolveSymbols (ast * tree)
374 {
375   /* walk the entire tree and check for values */
376   /* with symbols if we find one then replace  */
377   /* symbol with that from the symbol table    */
378
379   if (tree == NULL)
380     return tree;
381
382   /* print the line          */
383   /* if not block & function */
384   if (tree->type == EX_OP &&
385       (tree->opval.op != FUNCTION &&
386        tree->opval.op != BLOCK &&
387        tree->opval.op != NULLOP))
388     {
389       filename = tree->filename;
390       lineno = tree->lineno;
391     }
392
393   /* make sure we resolve the true & false labels for ifx */
394   if (tree->type == EX_OP && tree->opval.op == IFX)
395     {
396       symbol *csym;
397
398       if (tree->trueLabel)
399         {
400           if ((csym = findSym (LabelTab, tree->trueLabel,
401                                tree->trueLabel->name)))
402             tree->trueLabel = csym;
403           else
404             werror (E_LABEL_UNDEF, tree->trueLabel->name);
405         }
406
407       if (tree->falseLabel)
408         {
409           if ((csym = findSym (LabelTab,
410                                tree->falseLabel,
411                                tree->falseLabel->name)))
412             tree->falseLabel = csym;
413           else
414             werror (E_LABEL_UNDEF, tree->falseLabel->name);
415         }
416
417     }
418
419   /* if this is a label resolve it from the labelTab */
420   if (IS_AST_VALUE (tree) &&
421       tree->opval.val->sym &&
422       tree->opval.val->sym->islbl)
423     {
424
425       symbol *csym = findSym (LabelTab, tree->opval.val->sym,
426                               tree->opval.val->sym->name);
427
428       if (!csym)
429         werror (E_LABEL_UNDEF, tree->opval.val->sym->name);
430       else
431         tree->opval.val->sym = csym;
432
433       goto resolveChildren;
434     }
435
436   /* do only for leafs */
437   if (IS_AST_VALUE (tree) &&
438       tree->opval.val->sym &&
439       !tree->opval.val->sym->implicit)
440     {
441
442       symbol *csym = findSymWithLevel (SymbolTab, tree->opval.val->sym);
443
444       /* if found in the symbol table & they r not the same */
445       if (csym && tree->opval.val->sym != csym)
446         {
447           tree->opval.val->sym = csym;
448           tree->opval.val->type = csym->type;
449           tree->opval.val->etype = csym->etype;
450         }
451
452       /* if not found in the symbol table */
453       /* mark it as undefined assume it is */
454       /* an integer in data space         */
455       if (!csym && !tree->opval.val->sym->implicit)
456         {
457
458           /* if this is a function name then */
459           /* mark it as returning an int     */
460           if (tree->funcName)
461             {
462               tree->opval.val->sym->type = newLink ();
463               DCL_TYPE (tree->opval.val->sym->type) = FUNCTION;
464               tree->opval.val->sym->type->next =
465                 tree->opval.val->sym->etype = newIntLink ();
466               tree->opval.val->etype = tree->opval.val->etype;
467               tree->opval.val->type = tree->opval.val->sym->type;
468               werror (W_IMPLICIT_FUNC, tree->opval.val->sym->name);
469               allocVariables (tree->opval.val->sym);
470             }
471           else
472             {
473               tree->opval.val->sym->undefined = 1;
474               tree->opval.val->type =
475                 tree->opval.val->etype = newIntLink ();
476               tree->opval.val->sym->type =
477                 tree->opval.val->sym->etype = newIntLink ();
478             }
479         }
480     }
481
482 resolveChildren:
483   resolveSymbols (tree->left);
484   resolveSymbols (tree->right);
485
486   return tree;
487 }
488
489 /*-----------------------------------------------------------------*/
490 /* setAstLineno - walks a ast tree & sets the line number          */
491 /*-----------------------------------------------------------------*/
492 int 
493 setAstLineno (ast * tree, int lineno)
494 {
495   if (!tree)
496     return 0;
497
498   tree->lineno = lineno;
499   setAstLineno (tree->left, lineno);
500   setAstLineno (tree->right, lineno);
501   return 0;
502 }
503
504 #if 0
505 /* this functions seems to be superfluous?! kmh */
506
507 /*-----------------------------------------------------------------*/
508 /* resolveFromTable - will return the symbal table value           */
509 /*-----------------------------------------------------------------*/
510 value *
511 resolveFromTable (value * val)
512 {
513   symbol *csym;
514
515   if (!val->sym)
516     return val;
517
518   csym = findSymWithLevel (SymbolTab, val->sym);
519
520   /* if found in the symbol table & they r not the same */
521   if (csym && val->sym != csym &&
522       csym->level == val->sym->level &&
523       csym->_isparm &&
524       !csym->ismyparm)
525     {
526
527       val->sym = csym;
528       val->type = csym->type;
529       val->etype = csym->etype;
530     }
531
532   return val;
533 }
534 #endif
535
536 /*-----------------------------------------------------------------*/
537 /* funcOfType :- function of type with name                        */
538 /*-----------------------------------------------------------------*/
539 symbol *
540 funcOfType (char *name, sym_link * type, sym_link * argType,
541             int nArgs, int rent)
542 {
543   symbol *sym;
544   /* create the symbol */
545   sym = newSymbol (name, 0);
546
547   /* if arguments required */
548   if (nArgs)
549     {
550
551       value *args;
552       args = sym->args = newValue ();
553
554       while (nArgs--)
555         {
556           args->type = copyLinkChain (argType);
557           args->etype = getSpec (args->type);
558           if (!nArgs)
559             break;
560           args = args->next = newValue ();
561         }
562     }
563
564   /* setup return value */
565   sym->type = newLink ();
566   DCL_TYPE (sym->type) = FUNCTION;
567   sym->type->next = copyLinkChain (type);
568   sym->etype = getSpec (sym->type);
569   SPEC_RENT (sym->etype) = rent;
570
571   /* save it */
572   addSymChain (sym);
573   sym->cdef = 1;
574   allocVariables (sym);
575   return sym;
576
577 }
578
579 /*-----------------------------------------------------------------*/
580 /* reverseParms - will reverse a parameter tree                    */
581 /*-----------------------------------------------------------------*/
582 void 
583 reverseParms (ast * ptree)
584 {
585   ast *ttree;
586   if (!ptree)
587     return;
588
589   /* top down if we find a nonParm tree then quit */
590   if (ptree->type == EX_OP && ptree->opval.op == PARAM)
591     {
592       ttree = ptree->left;
593       ptree->left = ptree->right;
594       ptree->right = ttree;
595       reverseParms (ptree->left);
596       reverseParms (ptree->right);
597     }
598
599   return;
600 }
601
602 /*-----------------------------------------------------------------*/
603 /* processParms  - makes sure the parameters are okay and do some  */
604 /*                 processing with them                            */
605 /*-----------------------------------------------------------------*/
606 int 
607 processParms (ast * func,
608               value * defParm,
609               ast * actParm,
610               int *parmNumber,
611               bool rightmost)
612 {
613   int castError=0;
614   sym_link *fetype = func->etype;
615
616   /* if none of them exist */
617   if (!defParm && !actParm)
618     return 0;
619
620   if (defParm) {
621     if (getenv("DEBUG_SANITY")) {
622       fprintf (stderr, "addSym: %s ", defParm->name);
623     }
624     /* make sure the type is complete and sane */
625     checkTypeSanity(defParm->etype, defParm->name);
626   }
627
628   /* if the function is being called via a pointer &   */
629   /* it has not been defined a reentrant then we cannot */
630   /* have parameters                                   */
631   if (func->type != EX_VALUE && !IS_RENT (fetype) && !options.stackAuto)
632     {
633       werror (W_NONRENT_ARGS);
634       return 1;
635     }
636
637   /* if defined parameters ended but actual parameters */
638   /* exist and this is not defined as a variable arg   */
639   /* also check if statckAuto option is specified      */
640   if ((!defParm) && actParm && (!func->hasVargs) &&
641       !options.stackAuto && !IS_RENT (fetype))
642     {
643       werror (E_TOO_MANY_PARMS);
644       return 1;
645     }
646
647   /* if defined parameters present but no actual parameters */
648   if (defParm && !actParm)
649     {
650       werror (E_TOO_FEW_PARMS);
651       return 1;
652     }
653
654   /* If this is a varargs function... */
655   if (!defParm && actParm && func->hasVargs)
656     {
657       ast *newType = NULL;
658       sym_link *ftype;
659
660       if (IS_CAST_OP (actParm)
661           || (IS_AST_LIT_VALUE (actParm) && actParm->values.literalFromCast))
662         {
663           /* Parameter was explicitly typecast; don't touch it. */
664           return 0;
665         }
666
667       /* The ternary ('?') operator is weird: the ftype of the 
668        * operator is the type of the condition, but it will return a 
669        * (possibly) different type. 
670        */
671       if (IS_TERNARY_OP(actParm))
672       {
673           assert(IS_COLON_OP(actParm->right));
674           assert(actParm->right->left);
675           ftype = actParm->right->left->ftype;
676       }
677       else
678       {
679           ftype = actParm->ftype;
680       }
681           
682       /* If it's a small integer, upcast to int. */
683       if (IS_INTEGRAL (ftype)
684           && (getSize (ftype) < (unsigned) INTSIZE))
685         {
686           newType = newAst_LINK(INTTYPE);
687         }
688
689       if (IS_PTR(ftype) && !IS_GENPTR(ftype))
690         {
691           newType = newAst_LINK (copyLinkChain(ftype));
692           DCL_TYPE (newType->opval.lnk) = GPOINTER;
693         }
694
695       if (IS_AGGREGATE (ftype))
696         {
697           newType = newAst_LINK (copyLinkChain (ftype));
698           DCL_TYPE (newType->opval.lnk) = GPOINTER;
699         }
700       if (newType)
701         {
702           /* cast required; change this op to a cast. */
703           ast *parmCopy = resolveSymbols (copyAst (actParm));
704
705           actParm->type = EX_OP;
706           actParm->opval.op = CAST;
707           actParm->left = newType;
708           actParm->right = parmCopy;
709           decorateType (actParm);
710         }
711       else if (actParm->type == EX_OP && actParm->opval.op == PARAM)
712         {
713           return (processParms (func, NULL, actParm->left, parmNumber, FALSE) ||
714           processParms (func, NULL, actParm->right, parmNumber, rightmost));
715         }
716       return 0;
717     }
718
719   /* if defined parameters ended but actual has not & */
720   /* stackAuto                */
721   if (!defParm && actParm &&
722       (options.stackAuto || IS_RENT (fetype)))
723     return 0;
724
725   resolveSymbols (actParm);
726   /* if this is a PARAM node then match left & right */
727   if (actParm->type == EX_OP && actParm->opval.op == PARAM)
728     {
729       return (processParms (func, defParm, actParm->left, parmNumber, FALSE) ||
730               processParms (func, defParm->next, actParm->right, parmNumber, rightmost));
731     }
732   else
733     {
734       /* If we have found a value node by following only right-hand links,
735        * then we know that there are no more values after us.
736        *
737        * Therefore, if there are more defined parameters, the caller didn't
738        * supply enough.
739        */
740       if (rightmost && defParm->next)
741         {
742           werror (E_TOO_FEW_PARMS);
743           return 1;
744         }
745     }
746
747
748   /* the parameter type must be at least castable */
749   if (compareType (defParm->type, actParm->ftype) == 0)
750     {
751       castError++;
752     }
753
754 #ifdef JWK20010916
755   if (!IS_SPEC(defParm->type) && !IS_SPEC(actParm->ftype)) {
756     // now we have two pointers, check if they point to the same
757     sym_link *dtype=defParm->type, *atype=actParm->ftype;
758     do {
759       dtype=dtype->next;
760       atype=atype->next;
761       if (
762           (dtype->next && !atype->next) ||
763           (!dtype->next && atype->next) ||
764           compareType (dtype, atype)!=1) {
765         castError++;
766       }
767     } while (dtype->next && atype->next);
768     if (IS_SPEC(dtype) && IS_SPEC(atype)) {
769       // ok so far, we have two etypes, they must have the same SCLASS
770       if (SPEC_SCLS(dtype)!=SPEC_SCLS(atype)) {
771         castError++;
772       }
773     }
774   }
775 #endif
776
777   if (castError) {
778     werror (W_INCOMPAT_CAST);
779     fprintf (stderr, "type --> '");
780     printTypeChain (actParm->ftype, stderr);
781     fprintf (stderr, "' ");
782     fprintf (stderr, "assigned to type --> '");
783     printTypeChain (defParm->type, stderr);
784     fprintf (stderr, "'\n");
785   }
786
787   /* if the parameter is castable then add the cast */
788   if (compareType (defParm->type, actParm->ftype) < 0)
789     {
790       ast *pTree = resolveSymbols (copyAst (actParm));
791
792       /* now change the current one to a cast */
793       actParm->type = EX_OP;
794       actParm->opval.op = CAST;
795       actParm->left = newAst_LINK (defParm->type);
796       actParm->right = pTree;
797       actParm->etype = defParm->etype;
798       actParm->ftype = defParm->type;
799     }
800
801 /*    actParm->argSym = resolveFromTable(defParm)->sym ; */
802
803   actParm->argSym = defParm->sym;
804   /* make a copy and change the regparm type to the defined parm */
805   actParm->etype = getSpec (actParm->ftype = copyLinkChain (actParm->ftype));
806   SPEC_REGPARM (actParm->etype) = SPEC_REGPARM (defParm->etype);
807   (*parmNumber)++;
808   return 0;
809 }
810 /*-----------------------------------------------------------------*/
811 /* createIvalType - generates ival for basic types                 */
812 /*-----------------------------------------------------------------*/
813 ast *
814 createIvalType (ast * sym, sym_link * type, initList * ilist)
815 {
816   ast *iExpr;
817
818   /* if initList is deep */
819   if (ilist->type == INIT_DEEP)
820     ilist = ilist->init.deep;
821
822   iExpr = decorateType (resolveSymbols (list2expr (ilist)));
823   return decorateType (newNode ('=', sym, iExpr));
824 }
825
826 /*-----------------------------------------------------------------*/
827 /* createIvalStruct - generates initial value for structures       */
828 /*-----------------------------------------------------------------*/
829 ast *
830 createIvalStruct (ast * sym, sym_link * type, initList * ilist)
831 {
832   ast *rast = NULL;
833   symbol *sflds;
834   initList *iloop;
835
836   sflds = SPEC_STRUCT (type)->fields;
837   if (ilist->type != INIT_DEEP)
838     {
839       werror (E_INIT_STRUCT, "");
840       return NULL;
841     }
842
843   iloop = ilist->init.deep;
844
845   for (; sflds; sflds = sflds->next, iloop = (iloop ? iloop->next : NULL))
846     {
847       ast *lAst;
848
849       /* if we have come to end */
850       if (!iloop)
851         break;
852       sflds->implicit = 1;
853       lAst = newNode (PTR_OP, newNode ('&', sym, NULL), newAst_VALUE (symbolVal (sflds)));
854       lAst = decorateType (resolveSymbols (lAst));
855       rast = decorateType (resolveSymbols (createIval (lAst, sflds->type, iloop, rast)));
856     }
857   return rast;
858 }
859
860
861 /*-----------------------------------------------------------------*/
862 /* createIvalArray - generates code for array initialization       */
863 /*-----------------------------------------------------------------*/
864 ast *
865 createIvalArray (ast * sym, sym_link * type, initList * ilist)
866 {
867   ast *rast = NULL;
868   initList *iloop;
869   int lcnt = 0, size = 0;
870   literalList *literalL;
871
872   /* take care of the special   case  */
873   /* array of characters can be init  */
874   /* by a string                      */
875   if (IS_CHAR (type->next))
876     if ((rast = createIvalCharPtr (sym,
877                                    type,
878                         decorateType (resolveSymbols (list2expr (ilist))))))
879
880       return decorateType (resolveSymbols (rast));
881
882     /* not the special case             */
883     if (ilist->type != INIT_DEEP)
884     {
885         werror (E_INIT_STRUCT, "");
886         return NULL;
887     }
888
889     iloop = ilist->init.deep;
890     lcnt = DCL_ELEM (type);
891
892     if (port->arrayInitializerSuppported && convertIListToConstList(ilist, &literalL))
893     {
894         ast *aSym;
895
896         aSym = decorateType (resolveSymbols(sym));
897         
898         rast = newNode(ARRAYINIT, aSym, NULL);
899         rast->values.constlist = literalL;
900         
901         // Make sure size is set to length of initializer list.
902         while (iloop)
903         {
904             size++;
905             iloop = iloop->next;
906         }
907         
908         if (lcnt && size > lcnt)
909         {
910             // Array size was specified, and we have more initializers than needed.
911             char *name=sym->opval.val->sym->name;
912             int lineno=sym->opval.val->sym->lineDef;
913             
914             werror (W_EXESS_ARRAY_INITIALIZERS, name, lineno);
915         }
916     }
917     else
918     {
919         for (;;)
920         {
921             ast *aSym;
922             
923             aSym = newNode ('[', sym, newAst_VALUE (valueFromLit ((float) (size++))));
924             aSym = decorateType (resolveSymbols (aSym));
925             rast = createIval (aSym, type->next, iloop, rast);
926             iloop = (iloop ? iloop->next : NULL);
927             if (!iloop)
928             {
929                 break;
930             }
931             
932             /* no of elements given and we    */
933             /* have generated for all of them */
934             if (!--lcnt) 
935             {
936                 // there has to be a better way
937                 char *name=sym->opval.val->sym->name;
938                 int lineno=sym->opval.val->sym->lineDef;
939                 werror (W_EXESS_ARRAY_INITIALIZERS, name, lineno);
940                 
941                 break;
942             }
943         }
944     }
945
946     /* if we have not been given a size  */
947     if (!DCL_ELEM (type))
948     {
949         DCL_ELEM (type) = size;
950     }
951
952     return decorateType (resolveSymbols (rast));
953 }
954
955
956 /*-----------------------------------------------------------------*/
957 /* createIvalCharPtr - generates initial values for char pointers  */
958 /*-----------------------------------------------------------------*/
959 ast *
960 createIvalCharPtr (ast * sym, sym_link * type, ast * iexpr)
961 {
962   ast *rast = NULL;
963
964   /* if this is a pointer & right is a literal array then */
965   /* just assignment will do                              */
966   if (IS_PTR (type) && ((IS_LITERAL (iexpr->etype) ||
967                          SPEC_SCLS (iexpr->etype) == S_CODE)
968                         && IS_ARRAY (iexpr->ftype)))
969     return newNode ('=', sym, iexpr);
970
971   /* left side is an array so we have to assign each */
972   /* element                                         */
973   if ((IS_LITERAL (iexpr->etype) ||
974        SPEC_SCLS (iexpr->etype) == S_CODE)
975       && IS_ARRAY (iexpr->ftype))
976     {
977       /* for each character generate an assignment */
978       /* to the array element */
979       char *s = SPEC_CVAL (iexpr->etype).v_char;
980       int i = 0;
981
982       while (*s)
983         {
984           rast = newNode (NULLOP,
985                           rast,
986                           newNode ('=',
987                                    newNode ('[', sym,
988                                    newAst_VALUE (valueFromLit ((float) i))),
989                                    newAst_VALUE (valueFromLit (*s))));
990           i++;
991           s++;
992         }
993       rast = newNode (NULLOP,
994                       rast,
995                       newNode ('=',
996                                newNode ('[', sym,
997                                    newAst_VALUE (valueFromLit ((float) i))),
998                                newAst_VALUE (valueFromLit (*s))));
999       return decorateType (resolveSymbols (rast));
1000     }
1001
1002   return NULL;
1003 }
1004
1005 /*-----------------------------------------------------------------*/
1006 /* createIvalPtr - generates initial value for pointers            */
1007 /*-----------------------------------------------------------------*/
1008 ast *
1009 createIvalPtr (ast * sym, sym_link * type, initList * ilist)
1010 {
1011   ast *rast;
1012   ast *iexpr;
1013
1014   /* if deep then   */
1015   if (ilist->type == INIT_DEEP)
1016     ilist = ilist->init.deep;
1017
1018   iexpr = decorateType (resolveSymbols (list2expr (ilist)));
1019
1020   /* if character pointer */
1021   if (IS_CHAR (type->next))
1022     if ((rast = createIvalCharPtr (sym, type, iexpr)))
1023       return rast;
1024
1025   return newNode ('=', sym, iexpr);
1026 }
1027
1028 /*-----------------------------------------------------------------*/
1029 /* createIval - generates code for initial value                   */
1030 /*-----------------------------------------------------------------*/
1031 ast *
1032 createIval (ast * sym, sym_link * type, initList * ilist, ast * wid)
1033 {
1034   ast *rast = NULL;
1035
1036   if (!ilist)
1037     return NULL;
1038
1039   /* if structure then    */
1040   if (IS_STRUCT (type))
1041     rast = createIvalStruct (sym, type, ilist);
1042   else
1043     /* if this is a pointer */
1044   if (IS_PTR (type))
1045     rast = createIvalPtr (sym, type, ilist);
1046   else
1047     /* if this is an array   */
1048   if (IS_ARRAY (type))
1049     rast = createIvalArray (sym, type, ilist);
1050   else
1051     /* if type is SPECIFIER */
1052   if (IS_SPEC (type))
1053     rast = createIvalType (sym, type, ilist);
1054   
1055   if (wid)
1056     return decorateType (resolveSymbols (newNode (NULLOP, wid, rast)));
1057   else
1058     return decorateType (resolveSymbols (rast));
1059 }
1060
1061 /*-----------------------------------------------------------------*/
1062 /* initAggregates - initialises aggregate variables with initv     */
1063 /*-----------------------------------------------------------------*/
1064
1065 /* this has to go */ void printIval (symbol *, sym_link *, initList *, FILE *);
1066
1067 ast * initAggregates (symbol * sym, initList * ival, ast * wid) {
1068   ast *ast;
1069   symbol *newSym;
1070
1071   if (getenv("TRY_THE_NEW_INITIALIZER")) {
1072
1073     if (!TARGET_IS_MCS51 || !(options.model==MODEL_LARGE)) {
1074       fprintf (stderr, "Can't \"TRY_THE_NEW_INITIALIZER\" unless "
1075                "with -mmcs51 and --model-large");
1076       exit(404);
1077     }
1078
1079     if (SPEC_OCLS(sym->etype)==xdata &&
1080         getSize(sym->type) > 16) { // else it isn't worth it: do it the old way
1081
1082       // copy this symbol
1083       newSym=copySymbol (sym);
1084       SPEC_OCLS(newSym->etype)=code;
1085       sprintf (newSym->name, "%s_init__", sym->name);
1086       sprintf (newSym->rname,"%s_init__", sym->rname);
1087       addSym (SymbolTab, newSym, newSym->name, 0, 0, 1);
1088
1089       // emit it in the static segment
1090       addSet(&statsg->syms, newSym);
1091
1092       // now memcpy() the entire array from cseg
1093       ast=newNode (ARRAYINIT, // ASSIGN_AGGREGATE
1094                    newAst_VALUE (symbolVal (sym)), 
1095                    newAst_VALUE (symbolVal (newSym)));
1096       return decorateType(resolveSymbols(ast));
1097     }
1098   }
1099   
1100   return createIval (newAst_VALUE (symbolVal (sym)), sym->type, ival, wid);
1101 }
1102
1103 /*-----------------------------------------------------------------*/
1104 /* gatherAutoInit - creates assignment expressions for initial     */
1105 /*    values                 */
1106 /*-----------------------------------------------------------------*/
1107 ast *
1108 gatherAutoInit (symbol * autoChain)
1109 {
1110   ast *init = NULL;
1111   ast *work;
1112   symbol *sym;
1113
1114   inInitMode = 1;
1115   for (sym = autoChain; sym; sym = sym->next)
1116     {
1117
1118       /* resolve the symbols in the ival */
1119       if (sym->ival)
1120         resolveIvalSym (sym->ival);
1121
1122       /* if this is a static variable & has an */
1123       /* initial value the code needs to be lifted */
1124       /* here to the main portion since they can be */
1125       /* initialised only once at the start    */
1126       if (IS_STATIC (sym->etype) && sym->ival &&
1127           SPEC_SCLS (sym->etype) != S_CODE)
1128         {
1129           symbol *newSym;
1130           
1131           // this can only be a constant
1132           if (!inInitMode && !IS_LITERAL(sym->ival->init.node->etype)) {
1133             werror (E_CONST_EXPECTED);
1134           }
1135
1136           /* insert the symbol into the symbol table */
1137           /* with level = 0 & name = rname       */
1138           newSym = copySymbol (sym);
1139           addSym (SymbolTab, newSym, newSym->name, 0, 0, 1);
1140
1141           /* now lift the code to main */
1142           if (IS_AGGREGATE (sym->type))
1143             work = initAggregates (sym, sym->ival, NULL);
1144           else
1145             work = newNode ('=', newAst_VALUE (symbolVal (newSym)),
1146                             list2expr (sym->ival));
1147
1148           setAstLineno (work, sym->lineDef);
1149
1150           sym->ival = NULL;
1151           if (staticAutos)
1152             staticAutos = newNode (NULLOP, staticAutos, work);
1153           else
1154             staticAutos = work;
1155
1156           continue;
1157         }
1158
1159       /* if there is an initial value */
1160       if (sym->ival && SPEC_SCLS (sym->etype) != S_CODE)
1161         {
1162           if (IS_AGGREGATE (sym->type))
1163             work = initAggregates (sym, sym->ival, NULL);
1164           else
1165             work = newNode ('=', newAst_VALUE (symbolVal (sym)),
1166                             list2expr (sym->ival));
1167
1168           setAstLineno (work, sym->lineDef);
1169           sym->ival = NULL;
1170           if (init)
1171             init = newNode (NULLOP, init, work);
1172           else
1173             init = work;
1174         }
1175     }
1176   inInitMode = 0;
1177   return init;
1178 }
1179
1180 /*-----------------------------------------------------------------*/
1181 /* stringToSymbol - creates a symbol from a literal string         */
1182 /*-----------------------------------------------------------------*/
1183 static value *
1184 stringToSymbol (value * val)
1185 {
1186   char name[SDCC_NAME_MAX + 1];
1187   static int charLbl = 0;
1188   symbol *sym;
1189
1190   sprintf (name, "_str_%d", charLbl++);
1191   sym = newSymbol (name, 0);    /* make it @ level 0 */
1192   strcpy (sym->rname, name);
1193
1194   /* copy the type from the value passed */
1195   sym->type = copyLinkChain (val->type);
1196   sym->etype = getSpec (sym->type);
1197   /* change to storage class & output class */
1198   SPEC_SCLS (sym->etype) = S_CODE;
1199   SPEC_CVAL (sym->etype).v_char = SPEC_CVAL (val->etype).v_char;
1200   SPEC_STAT (sym->etype) = 1;
1201   /* make the level & block = 0 */
1202   sym->block = sym->level = 0;
1203   sym->isstrlit = 1;
1204   /* create an ival */
1205   sym->ival = newiList (INIT_NODE, newAst_VALUE (val));
1206   if (noAlloc == 0)
1207     {
1208       /* allocate it */
1209       addSymChain (sym);
1210       allocVariables (sym);
1211     }
1212   sym->ival = NULL;
1213   return symbolVal (sym);
1214
1215 }
1216
1217 /*-----------------------------------------------------------------*/
1218 /* processBlockVars - will go thru the ast looking for block if    */
1219 /*                    a block is found then will allocate the syms */
1220 /*                    will also gather the auto inits present      */
1221 /*-----------------------------------------------------------------*/
1222 ast *
1223 processBlockVars (ast * tree, int *stack, int action)
1224 {
1225   if (!tree)
1226     return NULL;
1227
1228   /* if this is a block */
1229   if (tree->type == EX_OP && tree->opval.op == BLOCK)
1230     {
1231       ast *autoInit;
1232
1233       if (action == ALLOCATE)
1234         {
1235           *stack += allocVariables (tree->values.sym);
1236           autoInit = gatherAutoInit (tree->values.sym);
1237
1238           /* if there are auto inits then do them */
1239           if (autoInit)
1240             tree->left = newNode (NULLOP, autoInit, tree->left);
1241         }
1242       else                      /* action is deallocate */
1243         deallocLocal (tree->values.sym);
1244     }
1245
1246   processBlockVars (tree->left, stack, action);
1247   processBlockVars (tree->right, stack, action);
1248   return tree;
1249 }
1250
1251 /*-----------------------------------------------------------------*/
1252 /* constExprValue - returns the value of a constant expression     */
1253 /*-----------------------------------------------------------------*/
1254 value *
1255 constExprValue (ast * cexpr, int check)
1256 {
1257   cexpr = decorateType (resolveSymbols (cexpr));
1258
1259   /* if this is not a constant then */
1260   if (!IS_LITERAL (cexpr->ftype))
1261     {
1262       /* then check if this is a literal array
1263          in code segment */
1264       if (SPEC_SCLS (cexpr->etype) == S_CODE &&
1265           SPEC_CVAL (cexpr->etype).v_char &&
1266           IS_ARRAY (cexpr->ftype))
1267         {
1268           value *val = valFromType (cexpr->ftype);
1269           SPEC_SCLS (val->etype) = S_LITERAL;
1270           val->sym = cexpr->opval.val->sym;
1271           val->sym->type = copyLinkChain (cexpr->ftype);
1272           val->sym->etype = getSpec (val->sym->type);
1273           strcpy (val->name, cexpr->opval.val->sym->rname);
1274           return val;
1275         }
1276
1277       /* if we are casting a literal value then */
1278       if (IS_AST_OP (cexpr) &&
1279           cexpr->opval.op == CAST &&
1280           IS_LITERAL (cexpr->left->ftype))
1281         return valCastLiteral (cexpr->ftype,
1282                                floatFromVal (cexpr->left->opval.val));
1283
1284       if (IS_AST_VALUE (cexpr))
1285         return cexpr->opval.val;
1286
1287       if (check)
1288         werror (E_CONST_EXPECTED, "found expression");
1289
1290       return NULL;
1291     }
1292
1293   /* return the value */
1294   return cexpr->opval.val;
1295
1296 }
1297
1298 /*-----------------------------------------------------------------*/
1299 /* isLabelInAst - will return true if a given label is found       */
1300 /*-----------------------------------------------------------------*/
1301 bool 
1302 isLabelInAst (symbol * label, ast * tree)
1303 {
1304   if (!tree || IS_AST_VALUE (tree) || IS_AST_LINK (tree))
1305     return FALSE;
1306
1307   if (IS_AST_OP (tree) &&
1308       tree->opval.op == LABEL &&
1309       isSymbolEqual (AST_SYMBOL (tree->left), label))
1310     return TRUE;
1311
1312   return isLabelInAst (label, tree->right) &&
1313     isLabelInAst (label, tree->left);
1314
1315 }
1316
1317 /*-----------------------------------------------------------------*/
1318 /* isLoopCountable - return true if the loop count can be determi- */
1319 /* -ned at compile time .                                          */
1320 /*-----------------------------------------------------------------*/
1321 bool 
1322 isLoopCountable (ast * initExpr, ast * condExpr, ast * loopExpr,
1323                  symbol ** sym, ast ** init, ast ** end)
1324 {
1325
1326   /* the loop is considered countable if the following
1327      conditions are true :-
1328
1329      a) initExpr :- <sym> = <const>
1330      b) condExpr :- <sym> < <const1>
1331      c) loopExpr :- <sym> ++
1332    */
1333
1334   /* first check the initExpr */
1335   if (IS_AST_OP (initExpr) &&
1336       initExpr->opval.op == '=' &&      /* is assignment */
1337       IS_AST_SYM_VALUE (initExpr->left))
1338     {                           /* left is a symbol */
1339
1340       *sym = AST_SYMBOL (initExpr->left);
1341       *init = initExpr->right;
1342     }
1343   else
1344     return FALSE;
1345
1346   /* for now the symbol has to be of
1347      integral type */
1348   if (!IS_INTEGRAL ((*sym)->type))
1349     return FALSE;
1350
1351   /* now check condExpr */
1352   if (IS_AST_OP (condExpr))
1353     {
1354
1355       switch (condExpr->opval.op)
1356         {
1357         case '<':
1358           if (IS_AST_SYM_VALUE (condExpr->left) &&
1359               isSymbolEqual (*sym, AST_SYMBOL (condExpr->left)) &&
1360               IS_AST_LIT_VALUE (condExpr->right))
1361             {
1362               *end = condExpr->right;
1363               break;
1364             }
1365           return FALSE;
1366
1367         case '!':
1368           if (IS_AST_OP (condExpr->left) &&
1369               condExpr->left->opval.op == '>' &&
1370               IS_AST_LIT_VALUE (condExpr->left->right) &&
1371               IS_AST_SYM_VALUE (condExpr->left->left) &&
1372               isSymbolEqual (*sym, AST_SYMBOL (condExpr->left->left)))
1373             {
1374
1375               *end = newNode ('+', condExpr->left->right,
1376                               newAst_VALUE (constVal ("1")));
1377               break;
1378             }
1379           return FALSE;
1380
1381         default:
1382           return FALSE;
1383         }
1384
1385     }
1386
1387   /* check loop expression is of the form <sym>++ */
1388   if (!IS_AST_OP (loopExpr))
1389     return FALSE;
1390
1391   /* check if <sym> ++ */
1392   if (loopExpr->opval.op == INC_OP)
1393     {
1394
1395       if (loopExpr->left)
1396         {
1397           /* pre */
1398           if (IS_AST_SYM_VALUE (loopExpr->left) &&
1399               isSymbolEqual (*sym, AST_SYMBOL (loopExpr->left)))
1400             return TRUE;
1401
1402         }
1403       else
1404         {
1405           /* post */
1406           if (IS_AST_SYM_VALUE (loopExpr->right) &&
1407               isSymbolEqual (*sym, AST_SYMBOL (loopExpr->right)))
1408             return TRUE;
1409         }
1410
1411     }
1412   else
1413     {
1414       /* check for += */
1415       if (loopExpr->opval.op == ADD_ASSIGN)
1416         {
1417
1418           if (IS_AST_SYM_VALUE (loopExpr->left) &&
1419               isSymbolEqual (*sym, AST_SYMBOL (loopExpr->left)) &&
1420               IS_AST_LIT_VALUE (loopExpr->right) &&
1421               (int) AST_LIT_VALUE (loopExpr->right) != 1)
1422             return TRUE;
1423         }
1424     }
1425
1426   return FALSE;
1427 }
1428
1429 /*-----------------------------------------------------------------*/
1430 /* astHasVolatile - returns true if ast contains any volatile      */
1431 /*-----------------------------------------------------------------*/
1432 bool 
1433 astHasVolatile (ast * tree)
1434 {
1435   if (!tree)
1436     return FALSE;
1437
1438   if (TETYPE (tree) && IS_VOLATILE (TETYPE (tree)))
1439     return TRUE;
1440
1441   if (IS_AST_OP (tree))
1442     return astHasVolatile (tree->left) ||
1443       astHasVolatile (tree->right);
1444   else
1445     return FALSE;
1446 }
1447
1448 /*-----------------------------------------------------------------*/
1449 /* astHasPointer - return true if the ast contains any ptr variable */
1450 /*-----------------------------------------------------------------*/
1451 bool 
1452 astHasPointer (ast * tree)
1453 {
1454   if (!tree)
1455     return FALSE;
1456
1457   if (IS_AST_LINK (tree))
1458     return TRUE;
1459
1460   /* if we hit an array expression then check
1461      only the left side */
1462   if (IS_AST_OP (tree) && tree->opval.op == '[')
1463     return astHasPointer (tree->left);
1464
1465   if (IS_AST_VALUE (tree))
1466     return IS_PTR (tree->ftype) || IS_ARRAY (tree->ftype);
1467
1468   return astHasPointer (tree->left) ||
1469     astHasPointer (tree->right);
1470
1471 }
1472
1473 /*-----------------------------------------------------------------*/
1474 /* astHasSymbol - return true if the ast has the given symbol      */
1475 /*-----------------------------------------------------------------*/
1476 bool 
1477 astHasSymbol (ast * tree, symbol * sym)
1478 {
1479   if (!tree || IS_AST_LINK (tree))
1480     return FALSE;
1481
1482   if (IS_AST_VALUE (tree))
1483     {
1484       if (IS_AST_SYM_VALUE (tree))
1485         return isSymbolEqual (AST_SYMBOL (tree), sym);
1486       else
1487         return FALSE;
1488     }
1489   
1490   return astHasSymbol (tree->left, sym) ||
1491     astHasSymbol (tree->right, sym);
1492 }
1493
1494 /*-----------------------------------------------------------------*/
1495 /* astHasDeref - return true if the ast has an indirect access     */
1496 /*-----------------------------------------------------------------*/
1497 static bool 
1498 astHasDeref (ast * tree)
1499 {
1500   if (!tree || IS_AST_LINK (tree) || IS_AST_VALUE(tree))
1501     return FALSE;
1502
1503   if (tree->opval.op == '*' && tree->right == NULL) return TRUE;
1504   
1505   return astHasDeref (tree->left) || astHasDeref (tree->right);
1506 }
1507
1508 /*-----------------------------------------------------------------*/
1509 /* isConformingBody - the loop body has to conform to a set of rules */
1510 /* for the loop to be considered reversible read on for rules      */
1511 /*-----------------------------------------------------------------*/
1512 bool 
1513 isConformingBody (ast * pbody, symbol * sym, ast * body)
1514 {
1515
1516   /* we are going to do a pre-order traversal of the
1517      tree && check for the following conditions. (essentially
1518      a set of very shallow tests )
1519      a) the sym passed does not participate in
1520      any arithmetic operation
1521      b) There are no function calls
1522      c) all jumps are within the body
1523      d) address of loop control variable not taken
1524      e) if an assignment has a pointer on the
1525      left hand side make sure right does not have
1526      loop control variable */
1527
1528   /* if we reach the end or a leaf then true */
1529   if (!pbody || IS_AST_LINK (pbody) || IS_AST_VALUE (pbody))
1530     return TRUE;
1531
1532
1533   /* if anything else is "volatile" */
1534   if (IS_VOLATILE (TETYPE (pbody)))
1535     return FALSE;
1536
1537   /* we will walk the body in a pre-order traversal for
1538      efficiency sake */
1539   switch (pbody->opval.op)
1540     {
1541 /*------------------------------------------------------------------*/
1542     case '[':
1543       return isConformingBody (pbody->right, sym, body);
1544
1545 /*------------------------------------------------------------------*/
1546     case PTR_OP:
1547     case '.':
1548       return TRUE;
1549
1550 /*------------------------------------------------------------------*/
1551     case INC_OP:                /* incerement operator unary so left only */
1552     case DEC_OP:
1553
1554       /* sure we are not sym is not modified */
1555       if (pbody->left &&
1556           IS_AST_SYM_VALUE (pbody->left) &&
1557           isSymbolEqual (AST_SYMBOL (pbody->left), sym))
1558         return FALSE;
1559
1560       if (pbody->right &&
1561           IS_AST_SYM_VALUE (pbody->right) &&
1562           isSymbolEqual (AST_SYMBOL (pbody->right), sym))
1563         return FALSE;
1564
1565       return TRUE;
1566
1567 /*------------------------------------------------------------------*/
1568
1569     case '*':                   /* can be unary  : if right is null then unary operation */
1570     case '+':
1571     case '-':
1572     case '&':
1573
1574       /* if right is NULL then unary operation  */
1575 /*------------------------------------------------------------------*/
1576 /*----------------------------*/
1577       /*  address of                */
1578 /*----------------------------*/
1579       if (!pbody->right)
1580         {
1581           if (IS_AST_SYM_VALUE (pbody->left) &&
1582               isSymbolEqual (AST_SYMBOL (pbody->left), sym))
1583             return FALSE;
1584           else
1585             return isConformingBody (pbody->left, sym, body);
1586         }
1587       else
1588         {
1589           if (astHasSymbol (pbody->left, sym) ||
1590               astHasSymbol (pbody->right, sym))
1591             return FALSE;
1592         }
1593
1594
1595 /*------------------------------------------------------------------*/
1596     case '|':
1597     case '^':
1598     case '/':
1599     case '%':
1600     case LEFT_OP:
1601     case RIGHT_OP:
1602
1603       if (IS_AST_SYM_VALUE (pbody->left) &&
1604           isSymbolEqual (AST_SYMBOL (pbody->left), sym))
1605         return FALSE;
1606
1607       if (IS_AST_SYM_VALUE (pbody->right) &&
1608           isSymbolEqual (AST_SYMBOL (pbody->right), sym))
1609         return FALSE;
1610
1611       return isConformingBody (pbody->left, sym, body) &&
1612         isConformingBody (pbody->right, sym, body);
1613
1614     case '~':
1615     case '!':
1616     case RRC:
1617     case RLC:
1618     case GETHBIT:
1619       if (IS_AST_SYM_VALUE (pbody->left) &&
1620           isSymbolEqual (AST_SYMBOL (pbody->left), sym))
1621         return FALSE;
1622       return isConformingBody (pbody->left, sym, body);
1623
1624 /*------------------------------------------------------------------*/
1625
1626     case AND_OP:
1627     case OR_OP:
1628     case '>':
1629     case '<':
1630     case LE_OP:
1631     case GE_OP:
1632     case EQ_OP:
1633     case NE_OP:
1634     case '?':
1635     case ':':
1636     case SIZEOF:                /* evaluate wihout code generation */
1637
1638       return isConformingBody (pbody->left, sym, body) &&
1639         isConformingBody (pbody->right, sym, body);
1640
1641 /*------------------------------------------------------------------*/
1642     case '=':
1643
1644       /* if left has a pointer & right has loop
1645          control variable then we cannot */
1646       if (astHasPointer (pbody->left) &&
1647           astHasSymbol (pbody->right, sym))
1648         return FALSE;
1649       if (astHasVolatile (pbody->left))
1650         return FALSE;
1651
1652       if (IS_AST_SYM_VALUE (pbody->left) &&
1653           isSymbolEqual (AST_SYMBOL (pbody->left), sym))
1654         return FALSE;
1655
1656       if (astHasVolatile (pbody->left))
1657         return FALSE;
1658       
1659       if (astHasDeref(pbody->right)) return FALSE;
1660
1661       return isConformingBody (pbody->left, sym, body) &&
1662         isConformingBody (pbody->right, sym, body);
1663
1664     case MUL_ASSIGN:
1665     case DIV_ASSIGN:
1666     case AND_ASSIGN:
1667     case OR_ASSIGN:
1668     case XOR_ASSIGN:
1669     case RIGHT_ASSIGN:
1670     case LEFT_ASSIGN:
1671     case SUB_ASSIGN:
1672     case ADD_ASSIGN:
1673       assert ("Parser should not have generated this\n");
1674
1675 /*------------------------------------------------------------------*/
1676 /*----------------------------*/
1677       /*      comma operator        */
1678 /*----------------------------*/
1679     case ',':
1680       return isConformingBody (pbody->left, sym, body) &&
1681         isConformingBody (pbody->right, sym, body);
1682
1683 /*------------------------------------------------------------------*/
1684 /*----------------------------*/
1685       /*       function call        */
1686 /*----------------------------*/
1687     case CALL:
1688       return FALSE;
1689
1690 /*------------------------------------------------------------------*/
1691 /*----------------------------*/
1692       /*     return statement       */
1693 /*----------------------------*/
1694     case RETURN:
1695       return FALSE;
1696
1697     case GOTO:
1698       if (isLabelInAst (AST_SYMBOL (pbody->left), body))
1699         return TRUE;
1700       else
1701         return FALSE;
1702     case SWITCH:
1703       if (astHasSymbol (pbody->left, sym))
1704         return FALSE;
1705
1706     default:
1707       break;
1708     }
1709
1710   return isConformingBody (pbody->left, sym, body) &&
1711     isConformingBody (pbody->right, sym, body);
1712
1713
1714
1715 }
1716
1717 /*-----------------------------------------------------------------*/
1718 /* isLoopReversible - takes a for loop as input && returns true    */
1719 /* if the for loop is reversible. If yes will set the value of     */
1720 /* the loop control var & init value & termination value           */
1721 /*-----------------------------------------------------------------*/
1722 bool 
1723 isLoopReversible (ast * loop, symbol ** loopCntrl,
1724                   ast ** init, ast ** end)
1725 {
1726   /* if option says don't do it then don't */
1727   if (optimize.noLoopReverse)
1728     return 0;
1729   /* there are several tests to determine this */
1730
1731   /* for loop has to be of the form
1732      for ( <sym> = <const1> ;
1733      [<sym> < <const2>]  ;
1734      [<sym>++] | [<sym> += 1] | [<sym> = <sym> + 1] )
1735      forBody */
1736   if (!isLoopCountable (AST_FOR (loop, initExpr),
1737                         AST_FOR (loop, condExpr),
1738                         AST_FOR (loop, loopExpr),
1739                         loopCntrl, init, end))
1740     return 0;
1741
1742   /* now do some serious checking on the body of the loop
1743    */
1744
1745   return isConformingBody (loop->left, *loopCntrl, loop->left);
1746
1747 }
1748
1749 /*-----------------------------------------------------------------*/
1750 /* replLoopSym - replace the loop sym by loop sym -1               */
1751 /*-----------------------------------------------------------------*/
1752 static void 
1753 replLoopSym (ast * body, symbol * sym)
1754 {
1755   /* reached end */
1756   if (!body || IS_AST_LINK (body))
1757     return;
1758
1759   if (IS_AST_SYM_VALUE (body))
1760     {
1761
1762       if (isSymbolEqual (AST_SYMBOL (body), sym))
1763         {
1764
1765           body->type = EX_OP;
1766           body->opval.op = '-';
1767           body->left = newAst_VALUE (symbolVal (sym));
1768           body->right = newAst_VALUE (constVal ("1"));
1769
1770         }
1771
1772       return;
1773
1774     }
1775
1776   replLoopSym (body->left, sym);
1777   replLoopSym (body->right, sym);
1778
1779 }
1780
1781 /*-----------------------------------------------------------------*/
1782 /* reverseLoop - do the actual loop reversal                       */
1783 /*-----------------------------------------------------------------*/
1784 ast *
1785 reverseLoop (ast * loop, symbol * sym, ast * init, ast * end)
1786 {
1787   ast *rloop;
1788
1789   /* create the following tree
1790      <sym> = loopCount ;
1791      for_continue:
1792      forbody
1793      <sym> -= 1;
1794      if (sym) goto for_continue ;
1795      <sym> = end */
1796
1797   /* put it together piece by piece */
1798   rloop = newNode (NULLOP,
1799                    createIf (newAst_VALUE (symbolVal (sym)),
1800                              newNode (GOTO,
1801                    newAst_VALUE (symbolVal (AST_FOR (loop, continueLabel))),
1802                                       NULL), NULL),
1803                    newNode ('=',
1804                             newAst_VALUE (symbolVal (sym)),
1805                             end));
1806
1807   replLoopSym (loop->left, sym);
1808
1809   rloop = newNode (NULLOP,
1810                    newNode ('=',
1811                             newAst_VALUE (symbolVal (sym)),
1812                             newNode ('-', end, init)),
1813                    createLabel (AST_FOR (loop, continueLabel),
1814                                 newNode (NULLOP,
1815                                          loop->left,
1816                                          newNode (NULLOP,
1817                                                   newNode (SUB_ASSIGN,
1818                                              newAst_VALUE (symbolVal (sym)),
1819                                              newAst_VALUE (constVal ("1"))),
1820                                                   rloop))));
1821
1822   return decorateType (rloop);
1823
1824 }
1825
1826 //#define DEMAND_INTEGER_PROMOTION
1827
1828 #ifdef DEMAND_INTEGER_PROMOTION
1829
1830 /*-----------------------------------------------------------------*/
1831 /* walk a tree looking for the leaves. Add a typecast to the given */
1832 /* type to each value leaf node.           */
1833 /*-----------------------------------------------------------------*/
1834 void 
1835 pushTypeCastToLeaves (sym_link * type, ast * node, ast ** parentPtr)
1836 {
1837   if (!node || IS_CALLOP(node))
1838     {
1839       /* WTF? We should never get here. */
1840       return;
1841     }
1842
1843   if (!node->left && !node->right)
1844     {
1845       /* We're at a leaf; if it's a value, apply the typecast */
1846       if (node->type == EX_VALUE && IS_INTEGRAL (TTYPE (node)))
1847         {
1848           *parentPtr = decorateType (newNode (CAST,
1849                                          newAst_LINK (copyLinkChain (type)),
1850                                               node));
1851         }
1852     }
1853   else
1854     {
1855       if (node->left)
1856         {
1857           pushTypeCastToLeaves (type, node->left, &(node->left));
1858         }
1859       if (node->right)
1860         {
1861           pushTypeCastToLeaves (type, node->right, &(node->right));
1862         }
1863     }
1864 }
1865
1866 #endif
1867
1868 /*-----------------------------------------------------------------*/
1869 /* Given an assignment operation in a tree, determine if the LHS   */
1870 /* (the result) has a different (integer) type than the RHS.     */
1871 /* If so, walk the RHS and add a typecast to the type of the LHS   */
1872 /* to all leaf nodes.              */
1873 /*-----------------------------------------------------------------*/
1874 void 
1875 propAsgType (ast * tree)
1876 {
1877 #ifdef DEMAND_INTEGER_PROMOTION
1878   if (!IS_INTEGRAL (LTYPE (tree)) || !IS_INTEGRAL (RTYPE (tree)))
1879     {
1880       /* Nothing to do here... */
1881       return;
1882     }
1883
1884   if (getSize (LTYPE (tree)) > getSize (RTYPE (tree)))
1885     {
1886       pushTypeCastToLeaves (LTYPE (tree), tree->right, &(tree->right));
1887     }
1888 #else
1889   (void) tree;
1890 #endif
1891 }
1892
1893 /*-----------------------------------------------------------------*/
1894 /* decorateType - compute type for this tree also does type cheking */
1895 /*          this is done bottom up, since type have to flow upwards */
1896 /*          it also does constant folding, and paramater checking  */
1897 /*-----------------------------------------------------------------*/
1898 ast *
1899 decorateType (ast * tree)
1900 {
1901   int parmNumber;
1902   sym_link *p;
1903
1904   if (!tree)
1905     return tree;
1906
1907   /* if already has type then do nothing */
1908   if (tree->decorated)
1909     return tree;
1910
1911   tree->decorated = 1;
1912
1913   /* print the line          */
1914   /* if not block & function */
1915   if (tree->type == EX_OP &&
1916       (tree->opval.op != FUNCTION &&
1917        tree->opval.op != BLOCK &&
1918        tree->opval.op != NULLOP))
1919     {
1920       filename = tree->filename;
1921       lineno = tree->lineno;
1922     }
1923
1924   /* if any child is an error | this one is an error do nothing */
1925   if (tree->isError ||
1926       (tree->left && tree->left->isError) ||
1927       (tree->right && tree->right->isError))
1928     return tree;
1929
1930 /*------------------------------------------------------------------*/
1931 /*----------------------------*/
1932   /*   leaf has been reached    */
1933 /*----------------------------*/
1934   /* if this is of type value */
1935   /* just get the type        */
1936   if (tree->type == EX_VALUE)
1937     {
1938
1939       if (IS_LITERAL (tree->opval.val->etype))
1940         {
1941
1942           /* if this is a character array then declare it */
1943           if (IS_ARRAY (tree->opval.val->type))
1944             tree->opval.val = stringToSymbol (tree->opval.val);
1945
1946           /* otherwise just copy the type information */
1947           COPYTYPE (TTYPE (tree), TETYPE (tree), tree->opval.val->type);
1948           if (funcInChain (tree->opval.val->type))
1949             {
1950               tree->hasVargs = tree->opval.val->sym->hasVargs;
1951               tree->args = copyValueChain (tree->opval.val->sym->args);
1952             }
1953           return tree;
1954         }
1955
1956       if (tree->opval.val->sym)
1957         {
1958           /* if the undefined flag is set then give error message */
1959           if (tree->opval.val->sym->undefined)
1960             {
1961               werror (E_ID_UNDEF, tree->opval.val->sym->name);
1962               /* assume int */
1963               TTYPE (tree) = TETYPE (tree) =
1964                 tree->opval.val->type = tree->opval.val->sym->type =
1965                 tree->opval.val->etype = tree->opval.val->sym->etype =
1966                 copyLinkChain (INTTYPE);
1967             }
1968           else
1969             {
1970
1971               /* if impilicit i.e. struct/union member then no type */
1972               if (tree->opval.val->sym->implicit)
1973                 TTYPE (tree) = TETYPE (tree) = NULL;
1974
1975               else
1976                 {
1977
1978                   /* else copy the type */
1979                   COPYTYPE (TTYPE (tree), TETYPE (tree), tree->opval.val->type);
1980
1981                   /* and mark it as referenced */
1982                   tree->opval.val->sym->isref = 1;
1983                   /* if this is of type function or function pointer */
1984                   if (funcInChain (tree->opval.val->type))
1985                     {
1986                       tree->hasVargs = tree->opval.val->sym->hasVargs;
1987                       tree->args = copyValueChain (tree->opval.val->sym->args);
1988
1989                     }
1990                 }
1991             }
1992         }
1993
1994       return tree;
1995     }
1996
1997   /* if type link for the case of cast */
1998   if (tree->type == EX_LINK)
1999     {
2000       COPYTYPE (TTYPE (tree), TETYPE (tree), tree->opval.lnk);
2001       return tree;
2002     }
2003
2004   {
2005     ast *dtl, *dtr;
2006
2007     dtl = decorateType (tree->left);
2008     dtr = decorateType (tree->right);
2009
2010     /* this is to take care of situations
2011        when the tree gets rewritten */
2012     if (dtl != tree->left)
2013       tree->left = dtl;
2014     if (dtr != tree->right)
2015       tree->right = dtr;
2016   }
2017
2018   /* depending on type of operator do */
2019
2020   switch (tree->opval.op)
2021     {
2022             /*------------------------------------------------------------------*/
2023             /*----------------------------*/
2024             /*        array node          */
2025             /*----------------------------*/
2026     case '[':
2027
2028       /* determine which is the array & which the index */
2029       if ((IS_ARRAY (RTYPE (tree)) || IS_PTR (RTYPE (tree))) && IS_INTEGRAL (LTYPE (tree)))
2030         {
2031
2032           ast *tempTree = tree->left;
2033           tree->left = tree->right;
2034           tree->right = tempTree;
2035         }
2036
2037       /* first check if this is a array or a pointer */
2038       if ((!IS_ARRAY (LTYPE (tree))) && (!IS_PTR (LTYPE (tree))))
2039         {
2040           werror (E_NEED_ARRAY_PTR, "[]");
2041           goto errorTreeReturn;
2042         }
2043
2044       /* check if the type of the idx */
2045       if (!IS_INTEGRAL (RTYPE (tree)))
2046         {
2047           werror (E_IDX_NOT_INT);
2048           goto errorTreeReturn;
2049         }
2050
2051       /* if the left is an rvalue then error */
2052       if (LRVAL (tree))
2053         {
2054           werror (E_LVALUE_REQUIRED, "array access");
2055           goto errorTreeReturn;
2056         }
2057       RRVAL (tree) = 1;
2058       COPYTYPE (TTYPE (tree), TETYPE (tree), LTYPE (tree)->next);
2059       if (IS_PTR(LTYPE(tree))) {
2060               SPEC_CONST (TETYPE (tree)) = DCL_PTR_CONST (LTYPE(tree));
2061       }
2062       return tree;
2063
2064       /*------------------------------------------------------------------*/
2065       /*----------------------------*/
2066       /*      struct/union          */
2067       /*----------------------------*/
2068     case '.':
2069       /* if this is not a structure */
2070       if (!IS_STRUCT (LTYPE (tree)))
2071         {
2072           werror (E_STRUCT_UNION, ".");
2073           goto errorTreeReturn;
2074         }
2075       TTYPE (tree) = structElemType (LTYPE (tree),
2076                                      (tree->right->type == EX_VALUE ?
2077                                tree->right->opval.val : NULL), &tree->args);
2078       TETYPE (tree) = getSpec (TTYPE (tree));
2079       return tree;
2080
2081       /*------------------------------------------------------------------*/
2082       /*----------------------------*/
2083       /*    struct/union pointer    */
2084       /*----------------------------*/
2085     case PTR_OP:
2086       /* if not pointer to a structure */
2087       if (!IS_PTR (LTYPE (tree)))
2088         {
2089           werror (E_PTR_REQD);
2090           goto errorTreeReturn;
2091         }
2092
2093       if (!IS_STRUCT (LTYPE (tree)->next))
2094         {
2095           werror (E_STRUCT_UNION, "->");
2096           goto errorTreeReturn;
2097         }
2098
2099       TTYPE (tree) = structElemType (LTYPE (tree)->next,
2100                                      (tree->right->type == EX_VALUE ?
2101                                tree->right->opval.val : NULL), &tree->args);
2102       TETYPE (tree) = getSpec (TTYPE (tree));
2103       return tree;
2104
2105 /*------------------------------------------------------------------*/
2106 /*----------------------------*/
2107       /*  ++/-- operation           */
2108 /*----------------------------*/
2109     case INC_OP:                /* incerement operator unary so left only */
2110     case DEC_OP:
2111       {
2112         sym_link *ltc = (tree->right ? RTYPE (tree) : LTYPE (tree));
2113         COPYTYPE (TTYPE (tree), TETYPE (tree), ltc);
2114         if (!tree->initMode && IS_CONSTANT (TETYPE (tree)))
2115           werror (E_CODE_WRITE, "++/--");
2116
2117         if (tree->right)
2118           RLVAL (tree) = 1;
2119         else
2120           LLVAL (tree) = 1;
2121         return tree;
2122       }
2123
2124 /*------------------------------------------------------------------*/
2125 /*----------------------------*/
2126       /*  bitwise and               */
2127 /*----------------------------*/
2128     case '&':                   /* can be unary   */
2129       /* if right is NULL then unary operation  */
2130       if (tree->right)          /* not an unary operation */
2131         {
2132
2133           if (!IS_INTEGRAL (LTYPE (tree)) || !IS_INTEGRAL (RTYPE (tree)))
2134             {
2135               werror (E_BITWISE_OP);
2136               werror (W_CONTINUE, "left & right types are ");
2137               printTypeChain (LTYPE (tree), stderr);
2138               fprintf (stderr, ",");
2139               printTypeChain (RTYPE (tree), stderr);
2140               fprintf (stderr, "\n");
2141               goto errorTreeReturn;
2142             }
2143
2144           /* if they are both literal */
2145           if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2146             {
2147               tree->type = EX_VALUE;
2148               tree->opval.val = valBitwise (valFromType (LETYPE (tree)),
2149                                           valFromType (RETYPE (tree)), '&');
2150
2151               tree->right = tree->left = NULL;
2152               TETYPE (tree) = tree->opval.val->etype;
2153               TTYPE (tree) = tree->opval.val->type;
2154               return tree;
2155             }
2156
2157           /* see if this is a GETHBIT operation if yes
2158              then return that */
2159           {
2160             ast *otree = optimizeGetHbit (tree);
2161
2162             if (otree != tree)
2163               return decorateType (otree);
2164           }
2165
2166 #if 0 
2167           // we can't do this because of "(int & 0xff) << 3"
2168
2169           /* if right or left is literal then result of that type */
2170           if (IS_LITERAL (RTYPE (tree)))
2171             {
2172
2173               TTYPE (tree) = copyLinkChain (RTYPE (tree));
2174               TETYPE (tree) = getSpec (TTYPE (tree));
2175               SPEC_SCLS (TETYPE (tree)) = S_AUTO;
2176             }
2177           else
2178             {
2179               if (IS_LITERAL (LTYPE (tree)))
2180                 {
2181                   TTYPE (tree) = copyLinkChain (LTYPE (tree));
2182                   TETYPE (tree) = getSpec (TTYPE (tree));
2183                   SPEC_SCLS (TETYPE (tree)) = S_AUTO;
2184
2185                 }
2186               else
2187                 {
2188                   TTYPE (tree) =
2189                     computeType (LTYPE (tree), RTYPE (tree));
2190                   TETYPE (tree) = getSpec (TTYPE (tree));
2191                 }
2192             }
2193 #else
2194           TTYPE (tree) =
2195             computeType (LTYPE (tree), RTYPE (tree));
2196           TETYPE (tree) = getSpec (TTYPE (tree));
2197 #endif
2198           LRVAL (tree) = RRVAL (tree) = 1;
2199           return tree;
2200         }
2201
2202 /*------------------------------------------------------------------*/
2203 /*----------------------------*/
2204       /*  address of                */
2205 /*----------------------------*/
2206       p = newLink ();
2207       p->class = DECLARATOR;
2208       /* if bit field then error */
2209       if (IS_BITVAR (tree->left->etype))
2210         {
2211           werror (E_ILLEGAL_ADDR, "addrress of bit variable");
2212           goto errorTreeReturn;
2213         }
2214
2215       if (SPEC_SCLS (tree->left->etype) == S_REGISTER)
2216         {
2217           werror (E_ILLEGAL_ADDR, "address of register variable");
2218           goto errorTreeReturn;
2219         }
2220
2221       if (IS_FUNC (LTYPE (tree)))
2222         {
2223           werror (E_ILLEGAL_ADDR, "address of function");
2224           goto errorTreeReturn;
2225         }
2226
2227       if (LRVAL (tree))
2228         {
2229           werror (E_LVALUE_REQUIRED, "address of");
2230           goto errorTreeReturn;
2231         }
2232       if (SPEC_SCLS (tree->left->etype) == S_CODE)
2233         {
2234           DCL_TYPE (p) = CPOINTER;
2235           DCL_PTR_CONST (p) = port->mem.code_ro;
2236         }
2237       else if (SPEC_SCLS (tree->left->etype) == S_XDATA)
2238         DCL_TYPE (p) = FPOINTER;
2239       else if (SPEC_SCLS (tree->left->etype) == S_XSTACK)
2240         DCL_TYPE (p) = PPOINTER;
2241       else if (SPEC_SCLS (tree->left->etype) == S_IDATA)
2242         DCL_TYPE (p) = IPOINTER;
2243       else if (SPEC_SCLS (tree->left->etype) == S_EEPROM)
2244         DCL_TYPE (p) = EEPPOINTER;
2245       else
2246         DCL_TYPE (p) = POINTER;
2247
2248       if (IS_AST_SYM_VALUE (tree->left))
2249         {
2250           AST_SYMBOL (tree->left)->addrtaken = 1;
2251           AST_SYMBOL (tree->left)->allocreq = 1;
2252         }
2253
2254       p->next = LTYPE (tree);
2255       TTYPE (tree) = p;
2256       TETYPE (tree) = getSpec (TTYPE (tree));
2257       DCL_PTR_CONST (p) = SPEC_CONST (TETYPE (tree));
2258       DCL_PTR_VOLATILE (p) = SPEC_VOLATILE (TETYPE (tree));
2259       LLVAL (tree) = 1;
2260       TLVAL (tree) = 1;
2261       return tree;
2262
2263 /*------------------------------------------------------------------*/
2264 /*----------------------------*/
2265       /*  bitwise or                */
2266 /*----------------------------*/
2267     case '|':
2268       /* if the rewrite succeeds then don't go any furthur */
2269       {
2270         ast *wtree = optimizeRRCRLC (tree);
2271         if (wtree != tree)
2272           return decorateType (wtree);
2273       }
2274 /*------------------------------------------------------------------*/
2275 /*----------------------------*/
2276       /*  bitwise xor               */
2277 /*----------------------------*/
2278     case '^':
2279       if (!IS_INTEGRAL (LTYPE (tree)) || !IS_INTEGRAL (RTYPE (tree)))
2280         {
2281           werror (E_BITWISE_OP);
2282           werror (W_CONTINUE, "left & right types are ");
2283           printTypeChain (LTYPE (tree), stderr);
2284           fprintf (stderr, ",");
2285           printTypeChain (RTYPE (tree), stderr);
2286           fprintf (stderr, "\n");
2287           goto errorTreeReturn;
2288         }
2289
2290       /* if they are both literal then */
2291       /* rewrite the tree */
2292       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2293         {
2294           tree->type = EX_VALUE;
2295           tree->opval.val = valBitwise (valFromType (LETYPE (tree)),
2296                                         valFromType (RETYPE (tree)),
2297                                         tree->opval.op);
2298           tree->right = tree->left = NULL;
2299           TETYPE (tree) = tree->opval.val->etype;
2300           TTYPE (tree) = tree->opval.val->type;
2301           return tree;
2302         }
2303       LRVAL (tree) = RRVAL (tree) = 1;
2304       TETYPE (tree) = getSpec (TTYPE (tree) =
2305                                computeType (LTYPE (tree),
2306                                             RTYPE (tree)));
2307
2308 /*------------------------------------------------------------------*/
2309 /*----------------------------*/
2310       /*  division                  */
2311 /*----------------------------*/
2312     case '/':
2313       if (!IS_ARITHMETIC (LTYPE (tree)) || !IS_ARITHMETIC (RTYPE (tree)))
2314         {
2315           werror (E_INVALID_OP, "divide");
2316           goto errorTreeReturn;
2317         }
2318       /* if they are both literal then */
2319       /* rewrite the tree */
2320       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2321         {
2322           tree->type = EX_VALUE;
2323           tree->opval.val = valDiv (valFromType (LETYPE (tree)),
2324                                     valFromType (RETYPE (tree)));
2325           tree->right = tree->left = NULL;
2326           TETYPE (tree) = getSpec (TTYPE (tree) =
2327                                    tree->opval.val->type);
2328           return tree;
2329         }
2330       LRVAL (tree) = RRVAL (tree) = 1;
2331       TETYPE (tree) = getSpec (TTYPE (tree) =
2332                                computeType (LTYPE (tree),
2333                                             RTYPE (tree)));
2334       return tree;
2335
2336 /*------------------------------------------------------------------*/
2337 /*----------------------------*/
2338       /*            modulus         */
2339 /*----------------------------*/
2340     case '%':
2341       if (!IS_INTEGRAL (LTYPE (tree)) || !IS_INTEGRAL (RTYPE (tree)))
2342         {
2343           werror (E_BITWISE_OP);
2344           werror (W_CONTINUE, "left & right types are ");
2345           printTypeChain (LTYPE (tree), stderr);
2346           fprintf (stderr, ",");
2347           printTypeChain (RTYPE (tree), stderr);
2348           fprintf (stderr, "\n");
2349           goto errorTreeReturn;
2350         }
2351       /* if they are both literal then */
2352       /* rewrite the tree */
2353       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2354         {
2355           tree->type = EX_VALUE;
2356           tree->opval.val = valMod (valFromType (LETYPE (tree)),
2357                                     valFromType (RETYPE (tree)));
2358           tree->right = tree->left = NULL;
2359           TETYPE (tree) = getSpec (TTYPE (tree) =
2360                                    tree->opval.val->type);
2361           return tree;
2362         }
2363       LRVAL (tree) = RRVAL (tree) = 1;
2364       TETYPE (tree) = getSpec (TTYPE (tree) =
2365                                computeType (LTYPE (tree),
2366                                             RTYPE (tree)));
2367       return tree;
2368
2369 /*------------------------------------------------------------------*/
2370 /*----------------------------*/
2371 /*  address dereference       */
2372 /*----------------------------*/
2373     case '*':                   /* can be unary  : if right is null then unary operation */
2374       if (!tree->right)
2375         {
2376           if (!IS_PTR (LTYPE (tree)) && !IS_ARRAY (LTYPE (tree)))
2377             {
2378               werror (E_PTR_REQD);
2379               goto errorTreeReturn;
2380             }
2381
2382           if (LRVAL (tree))
2383             {
2384               werror (E_LVALUE_REQUIRED, "pointer deref");
2385               goto errorTreeReturn;
2386             }
2387           TTYPE (tree) = copyLinkChain ((IS_PTR (LTYPE (tree)) || IS_ARRAY (LTYPE (tree))) ?
2388                                         LTYPE (tree)->next : NULL);
2389           TETYPE (tree) = getSpec (TTYPE (tree));
2390           tree->args = tree->left->args;
2391           tree->hasVargs = tree->left->hasVargs;
2392           SPEC_CONST (TETYPE (tree)) = DCL_PTR_CONST (LTYPE(tree));
2393           return tree;
2394         }
2395
2396 /*------------------------------------------------------------------*/
2397 /*----------------------------*/
2398       /*      multiplication        */
2399 /*----------------------------*/
2400       if (!IS_ARITHMETIC (LTYPE (tree)) || !IS_ARITHMETIC (RTYPE (tree)))
2401         {
2402           werror (E_INVALID_OP, "multiplication");
2403           goto errorTreeReturn;
2404         }
2405
2406       /* if they are both literal then */
2407       /* rewrite the tree */
2408       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2409         {
2410           tree->type = EX_VALUE;
2411           tree->opval.val = valMult (valFromType (LETYPE (tree)),
2412                                      valFromType (RETYPE (tree)));
2413           tree->right = tree->left = NULL;
2414           TETYPE (tree) = getSpec (TTYPE (tree) =
2415                                    tree->opval.val->type);
2416           return tree;
2417         }
2418
2419       /* if left is a literal exchange left & right */
2420       if (IS_LITERAL (LTYPE (tree)))
2421         {
2422           ast *tTree = tree->left;
2423           tree->left = tree->right;
2424           tree->right = tTree;
2425         }
2426
2427       LRVAL (tree) = RRVAL (tree) = 1;
2428       /* promote result to int if left & right are char
2429          this will facilitate hardware multiplies 8bit x 8bit = 16bit */
2430       if (IS_CHAR(LETYPE(tree)) && IS_CHAR(RETYPE(tree))) {
2431         TETYPE (tree) = getSpec (TTYPE (tree) =
2432                                  computeType (LTYPE (tree),
2433                                               RTYPE (tree)));
2434         SPEC_NOUN(TETYPE(tree)) = V_INT;
2435       } else {
2436         TETYPE (tree) = getSpec (TTYPE (tree) =
2437                                  computeType (LTYPE (tree),
2438                                               RTYPE (tree)));
2439       }
2440       return tree;
2441
2442 /*------------------------------------------------------------------*/
2443 /*----------------------------*/
2444       /*    unary '+' operator      */
2445 /*----------------------------*/
2446     case '+':
2447       /* if unary plus */
2448       if (!tree->right)
2449         {
2450           if (!IS_INTEGRAL (LTYPE (tree)))
2451             {
2452               werror (E_UNARY_OP, '+');
2453               goto errorTreeReturn;
2454             }
2455
2456           /* if left is a literal then do it */
2457           if (IS_LITERAL (LTYPE (tree)))
2458             {
2459               tree->type = EX_VALUE;
2460               tree->opval.val = valFromType (LETYPE (tree));
2461               tree->left = NULL;
2462               TETYPE (tree) = TTYPE (tree) = tree->opval.val->type;
2463               return tree;
2464             }
2465           LRVAL (tree) = 1;
2466           COPYTYPE (TTYPE (tree), TETYPE (tree), LTYPE (tree));
2467           return tree;
2468         }
2469
2470 /*------------------------------------------------------------------*/
2471 /*----------------------------*/
2472       /*      addition              */
2473 /*----------------------------*/
2474
2475       /* this is not a unary operation */
2476       /* if both pointers then problem */
2477       if ((IS_PTR (LTYPE (tree)) || IS_ARRAY (LTYPE (tree))) &&
2478           (IS_PTR (RTYPE (tree)) || IS_ARRAY (RTYPE (tree))))
2479         {
2480           werror (E_PTR_PLUS_PTR);
2481           goto errorTreeReturn;
2482         }
2483
2484       if (!IS_ARITHMETIC (LTYPE (tree)) &&
2485           !IS_PTR (LTYPE (tree)) && !IS_ARRAY (LTYPE (tree)))
2486         {
2487           werror (E_PLUS_INVALID, "+");
2488           goto errorTreeReturn;
2489         }
2490
2491       if (!IS_ARITHMETIC (RTYPE (tree)) &&
2492           !IS_PTR (RTYPE (tree)) && !IS_ARRAY (RTYPE (tree)))
2493         {
2494           werror (E_PLUS_INVALID, "+");
2495           goto errorTreeReturn;
2496         }
2497       /* if they are both literal then */
2498       /* rewrite the tree */
2499       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2500         {
2501           tree->type = EX_VALUE;
2502           tree->opval.val = valPlus (valFromType (LETYPE (tree)),
2503                                      valFromType (RETYPE (tree)));
2504           tree->right = tree->left = NULL;
2505           TETYPE (tree) = getSpec (TTYPE (tree) =
2506                                    tree->opval.val->type);
2507           return tree;
2508         }
2509
2510       /* if the right is a pointer or left is a literal
2511          xchange left & right */
2512       if (IS_ARRAY (RTYPE (tree)) ||
2513           IS_PTR (RTYPE (tree)) ||
2514           IS_LITERAL (LTYPE (tree)))
2515         {
2516           ast *tTree = tree->left;
2517           tree->left = tree->right;
2518           tree->right = tTree;
2519         }
2520
2521       LRVAL (tree) = RRVAL (tree) = 1;
2522       /* if the left is a pointer */
2523       if (IS_PTR (LTYPE (tree)))
2524         TETYPE (tree) = getSpec (TTYPE (tree) =
2525                                  LTYPE (tree));
2526       else
2527         TETYPE (tree) = getSpec (TTYPE (tree) =
2528                                  computeType (LTYPE (tree),
2529                                               RTYPE (tree)));
2530       return tree;
2531
2532 /*------------------------------------------------------------------*/
2533 /*----------------------------*/
2534       /*      unary '-'             */
2535 /*----------------------------*/
2536     case '-':                   /* can be unary   */
2537       /* if right is null then unary */
2538       if (!tree->right)
2539         {
2540
2541           if (!IS_ARITHMETIC (LTYPE (tree)))
2542             {
2543               werror (E_UNARY_OP, tree->opval.op);
2544               goto errorTreeReturn;
2545             }
2546
2547           /* if left is a literal then do it */
2548           if (IS_LITERAL (LTYPE (tree)))
2549             {
2550               tree->type = EX_VALUE;
2551               tree->opval.val = valUnaryPM (valFromType (LETYPE (tree)));
2552               tree->left = NULL;
2553               TETYPE (tree) = TTYPE (tree) = tree->opval.val->type;
2554               SPEC_USIGN(TETYPE(tree)) = 0;
2555               return tree;
2556             }
2557           LRVAL (tree) = 1;
2558           TTYPE (tree) = LTYPE (tree);
2559           return tree;
2560         }
2561
2562 /*------------------------------------------------------------------*/
2563 /*----------------------------*/
2564       /*    subtraction             */
2565 /*----------------------------*/
2566
2567       if (!(IS_PTR (LTYPE (tree)) ||
2568             IS_ARRAY (LTYPE (tree)) ||
2569             IS_ARITHMETIC (LTYPE (tree))))
2570         {
2571           werror (E_PLUS_INVALID, "-");
2572           goto errorTreeReturn;
2573         }
2574
2575       if (!(IS_PTR (RTYPE (tree)) ||
2576             IS_ARRAY (RTYPE (tree)) ||
2577             IS_ARITHMETIC (RTYPE (tree))))
2578         {
2579           werror (E_PLUS_INVALID, "-");
2580           goto errorTreeReturn;
2581         }
2582
2583       if ((IS_PTR (LTYPE (tree)) || IS_ARRAY (LTYPE (tree))) &&
2584           !(IS_PTR (RTYPE (tree)) || IS_ARRAY (RTYPE (tree)) ||
2585             IS_INTEGRAL (RTYPE (tree))))
2586         {
2587           werror (E_PLUS_INVALID, "-");
2588           goto errorTreeReturn;
2589         }
2590
2591       /* if they are both literal then */
2592       /* rewrite the tree */
2593       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2594         {
2595           tree->type = EX_VALUE;
2596           tree->opval.val = valMinus (valFromType (LETYPE (tree)),
2597                                       valFromType (RETYPE (tree)));
2598           tree->right = tree->left = NULL;
2599           TETYPE (tree) = getSpec (TTYPE (tree) =
2600                                    tree->opval.val->type);
2601           return tree;
2602         }
2603
2604       /* if the left & right are equal then zero */
2605       if (isAstEqual (tree->left, tree->right))
2606         {
2607           tree->type = EX_VALUE;
2608           tree->left = tree->right = NULL;
2609           tree->opval.val = constVal ("0");
2610           TETYPE (tree) = TTYPE (tree) = tree->opval.val->type;
2611           return tree;
2612         }
2613
2614       /* if both of them are pointers or arrays then */
2615       /* the result is going to be an integer        */
2616       if ((IS_ARRAY (LTYPE (tree)) || IS_PTR (LTYPE (tree))) &&
2617           (IS_ARRAY (RTYPE (tree)) || IS_PTR (RTYPE (tree))))
2618         TETYPE (tree) = TTYPE (tree) = newIntLink ();
2619       else
2620         /* if only the left is a pointer */
2621         /* then result is a pointer      */
2622       if (IS_PTR (LTYPE (tree)) || IS_ARRAY (LTYPE (tree)))
2623         TETYPE (tree) = getSpec (TTYPE (tree) =
2624                                  LTYPE (tree));
2625       else
2626         TETYPE (tree) = getSpec (TTYPE (tree) =
2627                                  computeType (LTYPE (tree),
2628                                               RTYPE (tree)));
2629       LRVAL (tree) = RRVAL (tree) = 1;
2630       return tree;
2631
2632 /*------------------------------------------------------------------*/
2633 /*----------------------------*/
2634       /*    compliment              */
2635 /*----------------------------*/
2636     case '~':
2637       /* can be only integral type */
2638       if (!IS_INTEGRAL (LTYPE (tree)))
2639         {
2640           werror (E_UNARY_OP, tree->opval.op);
2641           goto errorTreeReturn;
2642         }
2643
2644       /* if left is a literal then do it */
2645       if (IS_LITERAL (LTYPE (tree)))
2646         {
2647           tree->type = EX_VALUE;
2648           tree->opval.val = valComplement (valFromType (LETYPE (tree)));
2649           tree->left = NULL;
2650           TETYPE (tree) = TTYPE (tree) = tree->opval.val->type;
2651           return tree;
2652         }
2653       LRVAL (tree) = 1;
2654       COPYTYPE (TTYPE (tree), TETYPE (tree), LTYPE (tree));
2655       return tree;
2656
2657 /*------------------------------------------------------------------*/
2658 /*----------------------------*/
2659       /*           not              */
2660 /*----------------------------*/
2661     case '!':
2662       /* can be pointer */
2663       if (!IS_ARITHMETIC (LTYPE (tree)) &&
2664           !IS_PTR (LTYPE (tree)) &&
2665           !IS_ARRAY (LTYPE (tree)))
2666         {
2667           werror (E_UNARY_OP, tree->opval.op);
2668           goto errorTreeReturn;
2669         }
2670
2671       /* if left is a literal then do it */
2672       if (IS_LITERAL (LTYPE (tree)))
2673         {
2674           tree->type = EX_VALUE;
2675           tree->opval.val = valNot (valFromType (LETYPE (tree)));
2676           tree->left = NULL;
2677           TETYPE (tree) = TTYPE (tree) = tree->opval.val->type;
2678           return tree;
2679         }
2680       LRVAL (tree) = 1;
2681       TTYPE (tree) = TETYPE (tree) = newCharLink ();
2682       return tree;
2683
2684 /*------------------------------------------------------------------*/
2685 /*----------------------------*/
2686       /*           shift            */
2687 /*----------------------------*/
2688     case RRC:
2689     case RLC:
2690       TTYPE (tree) = LTYPE (tree);
2691       TETYPE (tree) = LETYPE (tree);
2692       return tree;
2693
2694     case GETHBIT:
2695       TTYPE (tree) = TETYPE (tree) = newCharLink ();
2696       return tree;
2697
2698     case LEFT_OP:
2699     case RIGHT_OP:
2700       if (!IS_INTEGRAL (LTYPE (tree)) || !IS_INTEGRAL (tree->left->etype))
2701         {
2702           werror (E_SHIFT_OP_INVALID);
2703           werror (W_CONTINUE, "left & right types are ");
2704           printTypeChain (LTYPE (tree), stderr);
2705           fprintf (stderr, ",");
2706           printTypeChain (RTYPE (tree), stderr);
2707           fprintf (stderr, "\n");
2708           goto errorTreeReturn;
2709         }
2710
2711       /* if they are both literal then */
2712       /* rewrite the tree */
2713       if (IS_LITERAL (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))
2714         {
2715           tree->type = EX_VALUE;
2716           tree->opval.val = valShift (valFromType (LETYPE (tree)),
2717                                       valFromType (RETYPE (tree)),
2718                                       (tree->opval.op == LEFT_OP ? 1 : 0));
2719           tree->right = tree->left = NULL;
2720           TETYPE (tree) = getSpec (TTYPE (tree) =
2721                                    tree->opval.val->type);
2722           return tree;
2723         }
2724       /* if only the right side is a literal & we are
2725          shifting more than size of the left operand then zero */
2726       if (IS_LITERAL (RTYPE (tree)) &&
2727           ((unsigned) floatFromVal (valFromType (RETYPE (tree)))) >=
2728           (getSize (LTYPE (tree)) * 8))
2729         {
2730           werror (W_SHIFT_CHANGED,
2731                   (tree->opval.op == LEFT_OP ? "left" : "right"));
2732           tree->type = EX_VALUE;
2733           tree->left = tree->right = NULL;
2734           tree->opval.val = constVal ("0");
2735           TETYPE (tree) = TTYPE (tree) = tree->opval.val->type;
2736           return tree;
2737         }
2738       LRVAL (tree) = RRVAL (tree) = 1;
2739       if (IS_LITERAL (LTYPE (tree)) && !IS_LITERAL (RTYPE (tree)))
2740         {
2741           COPYTYPE (TTYPE (tree), TETYPE (tree), RTYPE (tree));
2742         }
2743       else
2744         {
2745           COPYTYPE (TTYPE (tree), TETYPE (tree), LTYPE (tree));
2746         }
2747       return tree;
2748
2749       /*------------------------------------------------------------------*/
2750       /*----------------------------*/
2751       /*         casting            */
2752       /*----------------------------*/
2753     case CAST:                  /* change the type   */
2754       /* cannot cast to an aggregate type */
2755       if (IS_AGGREGATE (LTYPE (tree)))
2756         {
2757           werror (E_CAST_ILLEGAL);
2758           goto errorTreeReturn;
2759         }
2760       
2761       /* make sure the type is complete and sane */
2762       checkTypeSanity(LETYPE(tree), "(cast)");
2763
2764 #if 0
2765       /* if the right is a literal replace the tree */
2766       if (IS_LITERAL (RETYPE (tree))) {
2767               if (!IS_PTR (LTYPE (tree))) {
2768                       tree->type = EX_VALUE;
2769                       tree->opval.val =
2770                               valCastLiteral (LTYPE (tree),
2771                                               floatFromVal (valFromType (RETYPE (tree))));
2772                       tree->left = NULL;
2773                       tree->right = NULL;
2774                       TTYPE (tree) = tree->opval.val->type;
2775                       tree->values.literalFromCast = 1;
2776               } else if (IS_GENPTR(LTYPE(tree)) && !IS_PTR(RTYPE(tree))) {
2777                       sym_link *rest = LTYPE(tree)->next;
2778                       werror(W_LITERAL_GENERIC);                      
2779                       TTYPE(tree) = newLink();
2780                       DCL_TYPE(TTYPE(tree)) = FPOINTER;
2781                       TTYPE(tree)->next = rest;
2782                       tree->left->opval.lnk = TTYPE(tree);
2783                       LRVAL (tree) = 1;
2784               } else {
2785                       TTYPE (tree) = LTYPE (tree);
2786                       LRVAL (tree) = 1;
2787               }
2788       } else {
2789               TTYPE (tree) = LTYPE (tree);
2790               LRVAL (tree) = 1;
2791       }
2792 #else
2793       /* if the right is a literal replace the tree */
2794       if (IS_LITERAL (RETYPE (tree)) && !IS_PTR (LTYPE (tree))) {
2795         tree->type = EX_VALUE;
2796         tree->opval.val =
2797           valCastLiteral (LTYPE (tree),
2798                           floatFromVal (valFromType (RETYPE (tree))));
2799         tree->left = NULL;
2800         tree->right = NULL;
2801         TTYPE (tree) = tree->opval.val->type;
2802         tree->values.literalFromCast = 1;
2803       } else {
2804         TTYPE (tree) = LTYPE (tree);
2805         LRVAL (tree) = 1;
2806       }
2807 #endif
2808
2809       TETYPE (tree) = getSpec (TTYPE (tree));
2810
2811       return tree;
2812
2813 /*------------------------------------------------------------------*/
2814 /*----------------------------*/
2815       /*       logical &&, ||       */
2816 /*----------------------------*/
2817     case AND_OP:
2818     case OR_OP:
2819       /* each must me arithmetic type or be a pointer */
2820       if (!IS_PTR (LTYPE (tree)) &&
2821           !IS_ARRAY (LTYPE (tree)) &&
2822           !IS_INTEGRAL (LTYPE (tree)))
2823         {
2824           werror (E_COMPARE_OP);
2825           goto errorTreeReturn;
2826         }
2827
2828       if (!IS_PTR (RTYPE (tree)) &&
2829           !IS_ARRAY (RTYPE (tree)) &&
2830           !IS_INTEGRAL (RTYPE (tree)))
2831         {
2832           werror (E_COMPARE_OP);
2833           goto errorTreeReturn;
2834         }
2835       /* if they are both literal then */
2836       /* rewrite the tree */
2837       if (IS_LITERAL (RTYPE (tree)) &&
2838           IS_LITERAL (LTYPE (tree)))
2839         {
2840           tree->type = EX_VALUE;
2841           tree->opval.val = valLogicAndOr (valFromType (LETYPE (tree)),
2842                                            valFromType (RETYPE (tree)),
2843                                            tree->opval.op);
2844           tree->right = tree->left = NULL;
2845           TETYPE (tree) = getSpec (TTYPE (tree) =
2846                                    tree->opval.val->type);
2847           return tree;
2848         }
2849       LRVAL (tree) = RRVAL (tree) = 1;
2850       TTYPE (tree) = TETYPE (tree) = newCharLink ();
2851       return tree;
2852
2853 /*------------------------------------------------------------------*/
2854 /*----------------------------*/
2855       /*     comparison operators   */
2856 /*----------------------------*/
2857     case '>':
2858     case '<':
2859     case LE_OP:
2860     case GE_OP:
2861     case EQ_OP:
2862     case NE_OP:
2863       {
2864         ast *lt = optimizeCompare (tree);
2865
2866         if (tree != lt)
2867           return lt;
2868       }
2869
2870       /* if they are pointers they must be castable */
2871       if (IS_PTR (LTYPE (tree)) && IS_PTR (RTYPE (tree)))
2872         {
2873           if (compareType (LTYPE (tree), RTYPE (tree)) == 0)
2874             {
2875               werror (E_COMPARE_OP);
2876               fprintf (stderr, "comparing type ");
2877               printTypeChain (LTYPE (tree), stderr);
2878               fprintf (stderr, "to type ");
2879               printTypeChain (RTYPE (tree), stderr);
2880               fprintf (stderr, "\n");
2881               goto errorTreeReturn;
2882             }
2883         }
2884       /* else they should be promotable to one another */
2885       else
2886         {
2887           if (!((IS_PTR (LTYPE (tree)) && IS_LITERAL (RTYPE (tree))) ||
2888                 (IS_PTR (RTYPE (tree)) && IS_LITERAL (LTYPE (tree)))))
2889
2890             if (compareType (LTYPE (tree), RTYPE (tree)) == 0)
2891               {
2892                 werror (E_COMPARE_OP);
2893                 fprintf (stderr, "comparing type ");
2894                 printTypeChain (LTYPE (tree), stderr);
2895                 fprintf (stderr, "to type ");
2896                 printTypeChain (RTYPE (tree), stderr);
2897                 fprintf (stderr, "\n");
2898                 goto errorTreeReturn;
2899               }
2900         }
2901
2902       /* if they are both literal then */
2903       /* rewrite the tree */
2904       if (IS_LITERAL (RTYPE (tree)) &&
2905           IS_LITERAL (LTYPE (tree)))
2906         {
2907           tree->type = EX_VALUE;
2908           tree->opval.val = valCompare (valFromType (LETYPE (tree)),
2909                                         valFromType (RETYPE (tree)),
2910                                         tree->opval.op);
2911           tree->right = tree->left = NULL;
2912           TETYPE (tree) = getSpec (TTYPE (tree) =
2913                                    tree->opval.val->type);
2914           return tree;
2915         }
2916       LRVAL (tree) = RRVAL (tree) = 1;
2917       TTYPE (tree) = TETYPE (tree) = newCharLink ();
2918       return tree;
2919
2920 /*------------------------------------------------------------------*/
2921 /*----------------------------*/
2922       /*             sizeof         */
2923 /*----------------------------*/
2924     case SIZEOF:                /* evaluate wihout code generation */
2925       /* change the type to a integer */
2926       tree->type = EX_VALUE;
2927       sprintf (buffer, "%d", (getSize (tree->right->ftype)));
2928       tree->opval.val = constVal (buffer);
2929       tree->right = tree->left = NULL;
2930       TETYPE (tree) = getSpec (TTYPE (tree) =
2931                                tree->opval.val->type);
2932       return tree;
2933
2934 /*------------------------------------------------------------------*/
2935 /*----------------------------*/
2936       /* conditional operator  '?'  */
2937 /*----------------------------*/
2938     case '?':
2939       /* the type is value of the colon operator (on the right) */
2940       assert(IS_COLON_OP(tree->right));
2941       TTYPE (tree) = RTYPE(tree); // #HACK LTYPE(tree).
2942       TETYPE (tree) = getSpec (TTYPE (tree));
2943       return tree;
2944
2945     case ':':
2946       /* if they don't match we have a problem */
2947       if (compareType (LTYPE (tree), RTYPE (tree)) == 0)
2948         {
2949           werror (E_TYPE_MISMATCH, "conditional operator", " ");
2950           goto errorTreeReturn;
2951         }
2952
2953       TTYPE (tree) = computeType (LTYPE (tree), RTYPE (tree));
2954       TETYPE (tree) = getSpec (TTYPE (tree));
2955       return tree;
2956
2957
2958 /*------------------------------------------------------------------*/
2959 /*----------------------------*/
2960       /*    assignment operators    */
2961 /*----------------------------*/
2962     case MUL_ASSIGN:
2963     case DIV_ASSIGN:
2964       /* for these it must be both must be integral */
2965       if (!IS_ARITHMETIC (LTYPE (tree)) ||
2966           !IS_ARITHMETIC (RTYPE (tree)))
2967         {
2968           werror (E_OPS_INTEGRAL);
2969           goto errorTreeReturn;
2970         }
2971       RRVAL (tree) = 1;
2972       TETYPE (tree) = getSpec (TTYPE (tree) = LTYPE (tree));
2973
2974       if (!tree->initMode && IS_CONSTANT (LETYPE (tree)))
2975         werror (E_CODE_WRITE, " ");
2976
2977       if (LRVAL (tree))
2978         {
2979           werror (E_LVALUE_REQUIRED, "*= or /=");
2980           goto errorTreeReturn;
2981         }
2982       LLVAL (tree) = 1;
2983
2984       propAsgType (tree);
2985
2986       return tree;
2987
2988     case AND_ASSIGN:
2989     case OR_ASSIGN:
2990     case XOR_ASSIGN:
2991     case RIGHT_ASSIGN:
2992     case LEFT_ASSIGN:
2993       /* for these it must be both must be integral */
2994       if (!IS_INTEGRAL (LTYPE (tree)) ||
2995           !IS_INTEGRAL (RTYPE (tree)))
2996         {
2997           werror (E_OPS_INTEGRAL);
2998           goto errorTreeReturn;
2999         }
3000       RRVAL (tree) = 1;
3001       TETYPE (tree) = getSpec (TTYPE (tree) = LTYPE (tree));
3002
3003       if (!tree->initMode && IS_CONSTANT (LETYPE (tree)))
3004         werror (E_CODE_WRITE, " ");
3005
3006       if (LRVAL (tree))
3007         {
3008           werror (E_LVALUE_REQUIRED, "&= or |= or ^= or >>= or <<=");
3009           goto errorTreeReturn;
3010         }
3011       LLVAL (tree) = 1;
3012
3013       propAsgType (tree);
3014
3015       return tree;
3016
3017 /*------------------------------------------------------------------*/
3018 /*----------------------------*/
3019       /*    -= operator             */
3020 /*----------------------------*/
3021     case SUB_ASSIGN:
3022       if (!(IS_PTR (LTYPE (tree)) ||
3023             IS_ARITHMETIC (LTYPE (tree))))
3024         {
3025           werror (E_PLUS_INVALID, "-=");
3026           goto errorTreeReturn;
3027         }
3028
3029       if (!(IS_PTR (RTYPE (tree)) ||
3030             IS_ARITHMETIC (RTYPE (tree))))
3031         {
3032           werror (E_PLUS_INVALID, "-=");
3033           goto errorTreeReturn;
3034         }
3035       RRVAL (tree) = 1;
3036       TETYPE (tree) = getSpec (TTYPE (tree) =
3037                                computeType (LTYPE (tree),
3038                                             RTYPE (tree)));
3039
3040       if (!tree->initMode && IS_CONSTANT (LETYPE (tree)))
3041         werror (E_CODE_WRITE, " ");
3042
3043       if (LRVAL (tree))
3044         {
3045           werror (E_LVALUE_REQUIRED, "-=");
3046           goto errorTreeReturn;
3047         }
3048       LLVAL (tree) = 1;
3049
3050       propAsgType (tree);
3051
3052       return tree;
3053
3054 /*------------------------------------------------------------------*/
3055 /*----------------------------*/
3056       /*          += operator       */
3057 /*----------------------------*/
3058     case ADD_ASSIGN:
3059       /* this is not a unary operation */
3060       /* if both pointers then problem */
3061       if (IS_PTR (LTYPE (tree)) && IS_PTR (RTYPE (tree)))
3062         {
3063           werror (E_PTR_PLUS_PTR);
3064           goto errorTreeReturn;
3065         }
3066
3067       if (!IS_ARITHMETIC (LTYPE (tree)) && !IS_PTR (LTYPE (tree)))
3068         {
3069           werror (E_PLUS_INVALID, "+=");
3070           goto errorTreeReturn;
3071         }
3072
3073       if (!IS_ARITHMETIC (RTYPE (tree)) && !IS_PTR (RTYPE (tree)))
3074         {
3075           werror (E_PLUS_INVALID, "+=");
3076           goto errorTreeReturn;
3077         }
3078       RRVAL (tree) = 1;
3079       TETYPE (tree) = getSpec (TTYPE (tree) =
3080                                computeType (LTYPE (tree),
3081                                             RTYPE (tree)));
3082
3083       if (!tree->initMode && IS_CONSTANT (LETYPE (tree)))
3084         werror (E_CODE_WRITE, " ");
3085
3086       if (LRVAL (tree))
3087         {
3088           werror (E_LVALUE_REQUIRED, "+=");
3089           goto errorTreeReturn;
3090         }
3091
3092       tree->right = decorateType (newNode ('+', copyAst (tree->left), tree->right));
3093       tree->opval.op = '=';
3094
3095       propAsgType (tree);
3096
3097       return tree;
3098
3099 /*------------------------------------------------------------------*/
3100 /*----------------------------*/
3101       /*      straight assignemnt   */
3102 /*----------------------------*/
3103     case '=':
3104       /* cannot be an aggregate */
3105       if (IS_AGGREGATE (LTYPE (tree)))
3106         {
3107           werror (E_AGGR_ASSIGN);
3108           goto errorTreeReturn;
3109         }
3110
3111       /* they should either match or be castable */
3112       if (compareType (LTYPE (tree), RTYPE (tree)) == 0)
3113         {
3114           werror (E_TYPE_MISMATCH, "assignment", " ");
3115           fprintf (stderr, "type --> '");
3116           printTypeChain (RTYPE (tree), stderr);
3117           fprintf (stderr, "' ");
3118           fprintf (stderr, "assigned to type --> '");
3119           printTypeChain (LTYPE (tree), stderr);
3120           fprintf (stderr, "'\n");
3121           goto errorTreeReturn;
3122         }
3123
3124       /* if the left side of the tree is of type void
3125          then report error */
3126       if (IS_VOID (LTYPE (tree)))
3127         {
3128           werror (E_CAST_ZERO);
3129           fprintf (stderr, "type --> '");
3130           printTypeChain (RTYPE (tree), stderr);
3131           fprintf (stderr, "' ");
3132           fprintf (stderr, "assigned to type --> '");
3133           printTypeChain (LTYPE (tree), stderr);
3134           fprintf (stderr, "'\n");
3135         }
3136
3137       /* extra checks for pointer types */
3138       if (IS_PTR (LTYPE (tree)) && IS_PTR (RTYPE (tree)) &&
3139           !IS_GENPTR (LTYPE (tree)))
3140         {
3141           if (DCL_TYPE (LTYPE (tree)) != DCL_TYPE (RTYPE (tree)))
3142             werror (W_PTR_ASSIGN);
3143         }
3144
3145       TETYPE (tree) = getSpec (TTYPE (tree) =
3146                                LTYPE (tree));
3147       RRVAL (tree) = 1;
3148       LLVAL (tree) = 1;
3149       if (!tree->initMode ) {
3150               if (IS_CONSTANT (LETYPE (tree))) {
3151                       werror (E_CODE_WRITE, " ");
3152               } 
3153       }
3154       if (LRVAL (tree))
3155         {
3156           werror (E_LVALUE_REQUIRED, "=");
3157           goto errorTreeReturn;
3158         }
3159
3160       propAsgType (tree);
3161
3162       return tree;
3163
3164 /*------------------------------------------------------------------*/
3165 /*----------------------------*/
3166       /*      comma operator        */
3167 /*----------------------------*/
3168     case ',':
3169       TETYPE (tree) = getSpec (TTYPE (tree) = RTYPE (tree));
3170       return tree;
3171
3172 /*------------------------------------------------------------------*/
3173 /*----------------------------*/
3174       /*       function call        */
3175 /*----------------------------*/
3176     case CALL:
3177       parmNumber = 1;
3178
3179       if (processParms (tree->left,
3180                         tree->left->args,
3181                         tree->right, &parmNumber, TRUE))
3182         goto errorTreeReturn;
3183
3184       if (options.stackAuto || IS_RENT (LETYPE (tree)))
3185         {
3186           tree->left->args = reverseVal (tree->left->args);
3187           reverseParms (tree->right);
3188         }
3189
3190       tree->args = tree->left->args;
3191       TETYPE (tree) = getSpec (TTYPE (tree) = LTYPE (tree)->next);
3192       return tree;
3193
3194 /*------------------------------------------------------------------*/
3195 /*----------------------------*/
3196       /*     return statement       */
3197 /*----------------------------*/
3198     case RETURN:
3199       if (!tree->right)
3200         goto voidcheck;
3201
3202       if (compareType (currFunc->type->next, RTYPE (tree)) == 0)
3203         {
3204           werror (W_RETURN_MISMATCH);
3205           goto errorTreeReturn;
3206         }
3207
3208       if (IS_VOID (currFunc->type->next)
3209           && tree->right &&
3210           !IS_VOID (RTYPE (tree)))
3211         {
3212           werror (E_FUNC_VOID);
3213           goto errorTreeReturn;
3214         }
3215
3216       /* if there is going to be a casing required then add it */
3217       if (compareType (currFunc->type->next, RTYPE (tree)) < 0)
3218         {
3219 #if 0 && defined DEMAND_INTEGER_PROMOTION
3220           if (IS_INTEGRAL (currFunc->type->next))
3221             {
3222               pushTypeCastToLeaves (currFunc->type->next, tree->right, &(tree->right));
3223             }
3224           else
3225 #endif
3226             {
3227               tree->right =
3228                 decorateType (newNode (CAST,
3229                          newAst_LINK (copyLinkChain (currFunc->type->next)),
3230                                        tree->right));
3231             }
3232         }
3233
3234       RRVAL (tree) = 1;
3235       return tree;
3236
3237     voidcheck:
3238
3239       if (!IS_VOID (currFunc->type->next) && tree->right == NULL)
3240         {
3241           werror (E_VOID_FUNC, currFunc->name);
3242           goto errorTreeReturn;
3243         }
3244
3245       TTYPE (tree) = TETYPE (tree) = NULL;
3246       return tree;
3247
3248 /*------------------------------------------------------------------*/
3249 /*----------------------------*/
3250       /*     switch statement       */
3251 /*----------------------------*/
3252     case SWITCH:
3253       /* the switch value must be an integer */
3254       if (!IS_INTEGRAL (LTYPE (tree)))
3255         {
3256           werror (E_SWITCH_NON_INTEGER);
3257           goto errorTreeReturn;
3258         }
3259       LRVAL (tree) = 1;
3260       TTYPE (tree) = TETYPE (tree) = NULL;
3261       return tree;
3262
3263 /*------------------------------------------------------------------*/
3264 /*----------------------------*/
3265       /* ifx Statement              */
3266 /*----------------------------*/
3267     case IFX:
3268       tree->left = backPatchLabels (tree->left,
3269                                     tree->trueLabel,
3270                                     tree->falseLabel);
3271       TTYPE (tree) = TETYPE (tree) = NULL;
3272       return tree;
3273
3274 /*------------------------------------------------------------------*/
3275 /*----------------------------*/
3276       /* for Statement              */
3277 /*----------------------------*/
3278     case FOR:
3279
3280       decorateType (resolveSymbols (AST_FOR (tree, initExpr)));
3281       decorateType (resolveSymbols (AST_FOR (tree, condExpr)));
3282       decorateType (resolveSymbols (AST_FOR (tree, loopExpr)));
3283
3284       /* if the for loop is reversible then
3285          reverse it otherwise do what we normally
3286          do */
3287       {
3288         symbol *sym;
3289         ast *init, *end;
3290
3291         if (isLoopReversible (tree, &sym, &init, &end))
3292           return reverseLoop (tree, sym, init, end);
3293         else
3294           return decorateType (createFor (AST_FOR (tree, trueLabel),
3295                                           AST_FOR (tree, continueLabel),
3296                                           AST_FOR (tree, falseLabel),
3297                                           AST_FOR (tree, condLabel),
3298                                           AST_FOR (tree, initExpr),
3299                                           AST_FOR (tree, condExpr),
3300                                           AST_FOR (tree, loopExpr),
3301                                           tree->left));
3302       }
3303     default:
3304       TTYPE (tree) = TETYPE (tree) = NULL;
3305       return tree;
3306     }
3307
3308   /* some error found this tree will be killed */
3309 errorTreeReturn:
3310   TTYPE (tree) = TETYPE (tree) = newCharLink ();
3311   tree->opval.op = NULLOP;
3312   tree->isError = 1;
3313
3314   return tree;
3315 }
3316
3317 /*-----------------------------------------------------------------*/
3318 /* sizeofOp - processes size of operation                          */
3319 /*-----------------------------------------------------------------*/
3320 value *
3321 sizeofOp (sym_link * type)
3322 {
3323   char buff[10];
3324
3325   /* make sure the type is complete and sane */
3326   checkTypeSanity(type, "(sizeof)");
3327
3328   /* get the size and convert it to character  */
3329   sprintf (buff, "%d", getSize (type));
3330
3331   /* now convert into value  */
3332   return constVal (buff);
3333 }
3334
3335
3336 #define IS_AND(ex) (ex->type == EX_OP && ex->opval.op == AND_OP )
3337 #define IS_OR(ex)  (ex->type == EX_OP && ex->opval.op == OR_OP )
3338 #define IS_NOT(ex) (ex->type == EX_OP && ex->opval.op == '!' )
3339 #define IS_ANDORNOT(ex) (IS_AND(ex) || IS_OR(ex) || IS_NOT(ex))
3340 #define IS_IFX(ex) (ex->type == EX_OP && ex->opval.op == IFX )
3341 #define IS_LT(ex)  (ex->type == EX_OP && ex->opval.op == '<' )
3342 #define IS_GT(ex)  (ex->type == EX_OP && ex->opval.op == '>')
3343
3344 /*-----------------------------------------------------------------*/
3345 /* backPatchLabels - change and or not operators to flow control    */
3346 /*-----------------------------------------------------------------*/
3347 ast *
3348 backPatchLabels (ast * tree, symbol * trueLabel, symbol * falseLabel)
3349 {
3350
3351   if (!tree)
3352     return NULL;
3353
3354   if (!(IS_ANDORNOT (tree)))
3355     return tree;
3356
3357   /* if this an and */
3358   if (IS_AND (tree))
3359     {
3360       static int localLbl = 0;
3361       symbol *localLabel;
3362
3363       sprintf (buffer, "_and_%d", localLbl++);
3364       localLabel = newSymbol (buffer, NestLevel);
3365
3366       tree->left = backPatchLabels (tree->left, localLabel, falseLabel);
3367
3368       /* if left is already a IFX then just change the if true label in that */
3369       if (!IS_IFX (tree->left))
3370         tree->left = newIfxNode (tree->left, localLabel, falseLabel);
3371
3372       tree->right = backPatchLabels (tree->right, trueLabel, falseLabel);
3373       /* right is a IFX then just join */
3374       if (IS_IFX (tree->right))
3375         return newNode (NULLOP, tree->left, createLabel (localLabel, tree->right));
3376
3377       tree->right = createLabel (localLabel, tree->right);
3378       tree->right = newIfxNode (tree->right, trueLabel, falseLabel);
3379
3380       return newNode (NULLOP, tree->left, tree->right);
3381     }
3382
3383   /* if this is an or operation */
3384   if (IS_OR (tree))
3385     {
3386       static int localLbl = 0;
3387       symbol *localLabel;
3388
3389       sprintf (buffer, "_or_%d", localLbl++);
3390       localLabel = newSymbol (buffer, NestLevel);
3391
3392       tree->left = backPatchLabels (tree->left, trueLabel, localLabel);
3393
3394       /* if left is already a IFX then just change the if true label in that */
3395       if (!IS_IFX (tree->left))
3396         tree->left = newIfxNode (tree->left, trueLabel, localLabel);
3397
3398       tree->right = backPatchLabels (tree->right, trueLabel, falseLabel);
3399       /* right is a IFX then just join */
3400       if (IS_IFX (tree->right))
3401         return newNode (NULLOP, tree->left, createLabel (localLabel, tree->right));
3402
3403       tree->right = createLabel (localLabel, tree->right);
3404       tree->right = newIfxNode (tree->right, trueLabel, falseLabel);
3405
3406       return newNode (NULLOP, tree->left, tree->right);
3407     }
3408
3409   /* change not */
3410   if (IS_NOT (tree))
3411     {
3412       int wasnot = IS_NOT (tree->left);
3413       tree->left = backPatchLabels (tree->left, falseLabel, trueLabel);
3414
3415       /* if the left is already a IFX */
3416       if (!IS_IFX (tree->left))
3417         tree->left = newNode (IFX, tree->left, NULL);
3418
3419       if (wasnot)
3420         {
3421           tree->left->trueLabel = trueLabel;
3422           tree->left->falseLabel = falseLabel;
3423         }
3424       else
3425         {
3426           tree->left->trueLabel = falseLabel;
3427           tree->left->falseLabel = trueLabel;
3428         }
3429       return tree->left;
3430     }
3431
3432   if (IS_IFX (tree))
3433     {
3434       tree->trueLabel = trueLabel;
3435       tree->falseLabel = falseLabel;
3436     }
3437
3438   return tree;
3439 }
3440
3441
3442 /*-----------------------------------------------------------------*/
3443 /* createBlock - create expression tree for block                  */
3444 /*-----------------------------------------------------------------*/
3445 ast *
3446 createBlock (symbol * decl, ast * body)
3447 {
3448   ast *ex;
3449
3450   /* if the block has nothing */
3451   if (!body)
3452     return NULL;
3453
3454   ex = newNode (BLOCK, NULL, body);
3455   ex->values.sym = decl;
3456
3457   ex->right = ex->right;
3458   ex->level++;
3459   ex->lineno = 0;
3460   return ex;
3461 }
3462
3463 /*-----------------------------------------------------------------*/
3464 /* createLabel - creates the expression tree for labels            */
3465 /*-----------------------------------------------------------------*/
3466 ast *
3467 createLabel (symbol * label, ast * stmnt)
3468 {
3469   symbol *csym;
3470   char name[SDCC_NAME_MAX + 1];
3471   ast *rValue;
3472
3473   /* must create fresh symbol if the symbol name  */
3474   /* exists in the symbol table, since there can  */
3475   /* be a variable with the same name as the labl */
3476   if ((csym = findSym (SymbolTab, NULL, label->name)) &&
3477       (csym->level == label->level))
3478     label = newSymbol (label->name, label->level);
3479
3480   /* change the name before putting it in add _ */
3481   sprintf (name, "%s", label->name);
3482
3483   /* put the label in the LabelSymbol table    */
3484   /* but first check if a label of the same    */
3485   /* name exists                               */
3486   if ((csym = findSym (LabelTab, NULL, name)))
3487     werror (E_DUPLICATE_LABEL, label->name);
3488   else
3489     addSym (LabelTab, label, name, label->level, 0, 0);
3490
3491   label->islbl = 1;
3492   label->key = labelKey++;
3493   rValue = newNode (LABEL, newAst_VALUE (symbolVal (label)), stmnt);
3494   rValue->lineno = 0;
3495
3496   return rValue;
3497 }
3498
3499 /*-----------------------------------------------------------------*/
3500 /* createCase - generates the parsetree for a case statement       */
3501 /*-----------------------------------------------------------------*/
3502 ast *
3503 createCase (ast * swStat, ast * caseVal, ast * stmnt)
3504 {
3505   char caseLbl[SDCC_NAME_MAX + 1];
3506   ast *rexpr;
3507   value *val;
3508
3509   /* if the switch statement does not exist */
3510   /* then case is out of context            */
3511   if (!swStat)
3512     {
3513       werror (E_CASE_CONTEXT);
3514       return NULL;
3515     }
3516
3517   caseVal = decorateType (resolveSymbols (caseVal));
3518   /* if not a constant then error  */
3519   if (!IS_LITERAL (caseVal->ftype))
3520     {
3521       werror (E_CASE_CONSTANT);
3522       return NULL;
3523     }
3524
3525   /* if not a integer than error */
3526   if (!IS_INTEGRAL (caseVal->ftype))
3527     {
3528       werror (E_CASE_NON_INTEGER);
3529       return NULL;
3530     }
3531
3532   /* find the end of the switch values chain   */
3533   if (!(val = swStat->values.switchVals.swVals))
3534     swStat->values.switchVals.swVals = caseVal->opval.val;
3535   else
3536     {
3537       /* also order the cases according to value */
3538       value *pval = NULL;
3539       int cVal = (int) floatFromVal (caseVal->opval.val);
3540       while (val && (int) floatFromVal (val) < cVal)
3541         {
3542           pval = val;
3543           val = val->next;
3544         }
3545
3546       /* if we reached the end then */
3547       if (!val)
3548         {
3549           pval->next = caseVal->opval.val;
3550         }
3551       else
3552         {
3553           /* we found a value greater than */
3554           /* the current value we must add this */
3555           /* before the value */
3556           caseVal->opval.val->next = val;
3557
3558           /* if this was the first in chain */
3559           if (swStat->values.switchVals.swVals == val)
3560             swStat->values.switchVals.swVals =
3561               caseVal->opval.val;
3562           else
3563             pval->next = caseVal->opval.val;
3564         }
3565
3566     }
3567
3568   /* create the case label   */
3569   sprintf (caseLbl, "_case_%d_%d",
3570            swStat->values.switchVals.swNum,
3571            (int) floatFromVal (caseVal->opval.val));
3572
3573   rexpr = createLabel (newSymbol (caseLbl, 0), stmnt);
3574   rexpr->lineno = 0;
3575   return rexpr;
3576 }
3577
3578 /*-----------------------------------------------------------------*/
3579 /* createDefault - creates the parse tree for the default statement */
3580 /*-----------------------------------------------------------------*/
3581 ast *
3582 createDefault (ast * swStat, ast * stmnt)
3583 {
3584   char defLbl[SDCC_NAME_MAX + 1];
3585
3586   /* if the switch statement does not exist */
3587   /* then case is out of context            */
3588   if (!swStat)
3589     {
3590       werror (E_CASE_CONTEXT);
3591       return NULL;
3592     }
3593
3594   /* turn on the default flag   */
3595   swStat->values.switchVals.swDefault = 1;
3596
3597   /* create the label  */
3598   sprintf (defLbl, "_default_%d", swStat->values.switchVals.swNum);
3599   return createLabel (newSymbol (defLbl, 0), stmnt);
3600 }
3601
3602 /*-----------------------------------------------------------------*/
3603 /* createIf - creates the parsetree for the if statement           */
3604 /*-----------------------------------------------------------------*/
3605 ast *
3606 createIf (ast * condAst, ast * ifBody, ast * elseBody)
3607 {
3608   static int Lblnum = 0;
3609   ast *ifTree;
3610   symbol *ifTrue, *ifFalse, *ifEnd;
3611
3612   /* if neither exists */
3613   if (!elseBody && !ifBody)
3614     return condAst;
3615
3616   /* create the labels */
3617   sprintf (buffer, "_iffalse_%d", Lblnum);
3618   ifFalse = newSymbol (buffer, NestLevel);
3619   /* if no else body then end == false */
3620   if (!elseBody)
3621     ifEnd = ifFalse;
3622   else
3623     {
3624       sprintf (buffer, "_ifend_%d", Lblnum);
3625       ifEnd = newSymbol (buffer, NestLevel);
3626     }
3627
3628   sprintf (buffer, "_iftrue_%d", Lblnum);
3629   ifTrue = newSymbol (buffer, NestLevel);
3630
3631   Lblnum++;
3632
3633   /* attach the ifTrue label to the top of it body */
3634   ifBody = createLabel (ifTrue, ifBody);
3635   /* attach a goto end to the ifBody if else is present */
3636   if (elseBody)
3637     {
3638       ifBody = newNode (NULLOP, ifBody,
3639                         newNode (GOTO,
3640                                  newAst_VALUE (symbolVal (ifEnd)),
3641                                  NULL));
3642       /* put the elseLabel on the else body */
3643       elseBody = createLabel (ifFalse, elseBody);
3644       /* out the end at the end of the body */
3645       elseBody = newNode (NULLOP,
3646                           elseBody,
3647                           createLabel (ifEnd, NULL));
3648     }
3649   else
3650     {
3651       ifBody = newNode (NULLOP, ifBody,
3652                         createLabel (ifFalse, NULL));
3653     }
3654   condAst = backPatchLabels (condAst, ifTrue, ifFalse);
3655   if (IS_IFX (condAst))
3656     ifTree = condAst;
3657   else
3658     ifTree = newIfxNode (condAst, ifTrue, ifFalse);
3659
3660   return newNode (NULLOP, ifTree,
3661                   newNode (NULLOP, ifBody, elseBody));
3662
3663 }
3664
3665 /*-----------------------------------------------------------------*/
3666 /* createDo - creates parse tree for do                            */
3667 /*        _dobody_n:                                               */
3668 /*            statements                                           */
3669 /*        _docontinue_n:                                           */
3670 /*            condition_expression +-> trueLabel -> _dobody_n      */
3671 /*                                 |                               */
3672 /*                                 +-> falseLabel-> _dobreak_n     */
3673 /*        _dobreak_n:                                              */
3674 /*-----------------------------------------------------------------*/
3675 ast *
3676 createDo (symbol * trueLabel, symbol * continueLabel,
3677           symbol * falseLabel, ast * condAst, ast * doBody)
3678 {
3679   ast *doTree;
3680
3681
3682   /* if the body does not exist then it is simple */
3683   if (!doBody)
3684     {
3685       condAst = backPatchLabels (condAst, continueLabel, NULL);
3686       doTree = (IS_IFX (condAst) ? createLabel (continueLabel, condAst)
3687                 : newNode (IFX, createLabel (continueLabel, condAst), NULL));
3688       doTree->trueLabel = continueLabel;
3689       doTree->falseLabel = NULL;
3690       return doTree;
3691     }
3692
3693   /* otherwise we have a body */
3694   condAst = backPatchLabels (condAst, trueLabel, falseLabel);
3695
3696   /* attach the body label to the top */
3697   doBody = createLabel (trueLabel, doBody);
3698   /* attach the continue label to end of body */
3699   doBody = newNode (NULLOP, doBody,
3700                     createLabel (continueLabel, NULL));
3701
3702   /* now put the break label at the end */
3703   if (IS_IFX (condAst))
3704     doTree = condAst;
3705   else
3706     doTree = newIfxNode (condAst, trueLabel, falseLabel);
3707
3708   doTree = newNode (NULLOP, doTree, createLabel (falseLabel, NULL));
3709
3710   /* putting it together */
3711   return newNode (NULLOP, doBody, doTree);
3712 }
3713
3714 /*-----------------------------------------------------------------*/
3715 /* createFor - creates parse tree for 'for' statement              */
3716 /*        initExpr                                                 */
3717 /*   _forcond_n:                                                   */
3718 /*        condExpr  +-> trueLabel -> _forbody_n                    */
3719 /*                  |                                              */
3720 /*                  +-> falseLabel-> _forbreak_n                   */
3721 /*   _forbody_n:                                                   */
3722 /*        statements                                               */
3723 /*   _forcontinue_n:                                               */
3724 /*        loopExpr                                                 */
3725 /*        goto _forcond_n ;                                        */
3726 /*   _forbreak_n:                                                  */
3727 /*-----------------------------------------------------------------*/
3728 ast *
3729 createFor (symbol * trueLabel, symbol * continueLabel,
3730            symbol * falseLabel, symbol * condLabel,
3731            ast * initExpr, ast * condExpr, ast * loopExpr,
3732            ast * forBody)
3733 {
3734   ast *forTree;
3735
3736   /* if loopexpression not present then we can generate it */
3737   /* the same way as a while */
3738   if (!loopExpr)
3739     return newNode (NULLOP, initExpr,
3740                     createWhile (trueLabel, continueLabel,
3741                                  falseLabel, condExpr, forBody));
3742   /* vanilla for statement */
3743   condExpr = backPatchLabels (condExpr, trueLabel, falseLabel);
3744
3745   if (condExpr && !IS_IFX (condExpr))
3746     condExpr = newIfxNode (condExpr, trueLabel, falseLabel);
3747
3748
3749   /* attach condition label to condition */
3750   condExpr = createLabel (condLabel, condExpr);
3751
3752   /* attach body label to body */
3753   forBody = createLabel (trueLabel, forBody);
3754
3755   /* attach continue to forLoop expression & attach */
3756   /* goto the forcond @ and of loopExpression       */
3757   loopExpr = createLabel (continueLabel,
3758                           newNode (NULLOP,
3759                                    loopExpr,
3760                                    newNode (GOTO,
3761                                        newAst_VALUE (symbolVal (condLabel)),
3762                                             NULL)));
3763   /* now start putting them together */
3764   forTree = newNode (NULLOP, initExpr, condExpr);
3765   forTree = newNode (NULLOP, forTree, forBody);
3766   forTree = newNode (NULLOP, forTree, loopExpr);
3767   /* finally add the break label */
3768   forTree = newNode (NULLOP, forTree,
3769                      createLabel (falseLabel, NULL));
3770   return forTree;
3771 }
3772
3773 /*-----------------------------------------------------------------*/
3774 /* createWhile - creates parse tree for while statement            */
3775 /*               the while statement will be created as follows    */
3776 /*                                                                 */
3777 /*      _while_continue_n:                                         */
3778 /*            condition_expression +-> trueLabel -> _while_boby_n  */
3779 /*                                 |                               */
3780 /*                                 +-> falseLabel -> _while_break_n */
3781 /*      _while_body_n:                                             */
3782 /*            statements                                           */
3783 /*            goto _while_continue_n                               */
3784 /*      _while_break_n:                                            */
3785 /*-----------------------------------------------------------------*/
3786 ast *
3787 createWhile (symbol * trueLabel, symbol * continueLabel,
3788              symbol * falseLabel, ast * condExpr, ast * whileBody)
3789 {
3790   ast *whileTree;
3791
3792   /* put the continue label */
3793   condExpr = backPatchLabels (condExpr, trueLabel, falseLabel);
3794   condExpr = createLabel (continueLabel, condExpr);
3795   condExpr->lineno = 0;
3796
3797   /* put the body label in front of the body */
3798   whileBody = createLabel (trueLabel, whileBody);
3799   whileBody->lineno = 0;
3800   /* put a jump to continue at the end of the body */
3801   /* and put break label at the end of the body */
3802   whileBody = newNode (NULLOP,
3803                        whileBody,
3804                        newNode (GOTO,
3805                                 newAst_VALUE (symbolVal (continueLabel)),
3806                                 createLabel (falseLabel, NULL)));
3807
3808   /* put it all together */
3809   if (IS_IFX (condExpr))
3810     whileTree = condExpr;
3811   else
3812     {
3813       whileTree = newNode (IFX, condExpr, NULL);
3814       /* put the true & false labels in place */
3815       whileTree->trueLabel = trueLabel;
3816       whileTree->falseLabel = falseLabel;
3817     }
3818
3819   return newNode (NULLOP, whileTree, whileBody);
3820 }
3821
3822 /*-----------------------------------------------------------------*/
3823 /* optimizeGetHbit - get highest order bit of the expression       */
3824 /*-----------------------------------------------------------------*/
3825 ast *
3826 optimizeGetHbit (ast * tree)
3827 {
3828   int i, j;
3829   /* if this is not a bit and */
3830   if (!IS_BITAND (tree))
3831     return tree;
3832
3833   /* will look for tree of the form
3834      ( expr >> ((sizeof expr) -1) ) & 1 */
3835   if (!IS_AST_LIT_VALUE (tree->right))
3836     return tree;
3837
3838   if (AST_LIT_VALUE (tree->right) != 1)
3839     return tree;
3840
3841   if (!IS_RIGHT_OP (tree->left))
3842     return tree;
3843
3844   if (!IS_AST_LIT_VALUE (tree->left->right))
3845     return tree;
3846
3847   if ((i = (int) AST_LIT_VALUE (tree->left->right)) !=
3848       (j = (getSize (TTYPE (tree->left->left)) * 8 - 1)))
3849     return tree;
3850
3851   return decorateType (newNode (GETHBIT, tree->left->left, NULL));
3852
3853 }
3854
3855 /*-----------------------------------------------------------------*/
3856 /* optimizeRRCRLC :- optimize for Rotate Left/Right with carry     */
3857 /*-----------------------------------------------------------------*/
3858 ast *
3859 optimizeRRCRLC (ast * root)
3860 {
3861   /* will look for trees of the form
3862      (?expr << 1) | (?expr >> 7) or
3863      (?expr >> 7) | (?expr << 1) will make that
3864      into a RLC : operation ..
3865      Will also look for
3866      (?expr >> 1) | (?expr << 7) or
3867      (?expr << 7) | (?expr >> 1) will make that
3868      into a RRC operation
3869      note : by 7 I mean (number of bits required to hold the
3870      variable -1 ) */
3871   /* if the root operations is not a | operation the not */
3872   if (!IS_BITOR (root))
3873     return root;
3874
3875   /* I have to think of a better way to match patterns this sucks */
3876   /* that aside let start looking for the first case : I use a the
3877      negative check a lot to improve the efficiency */
3878   /* (?expr << 1) | (?expr >> 7) */
3879   if (IS_LEFT_OP (root->left) &&
3880       IS_RIGHT_OP (root->right))
3881     {
3882
3883       if (!SPEC_USIGN (TETYPE (root->left->left)))
3884         return root;
3885
3886       if (!IS_AST_LIT_VALUE (root->left->right) ||
3887           !IS_AST_LIT_VALUE (root->right->right))
3888         goto tryNext0;
3889
3890       /* make sure it is the same expression */
3891       if (!isAstEqual (root->left->left,
3892                        root->right->left))
3893         goto tryNext0;
3894
3895       if (AST_LIT_VALUE (root->left->right) != 1)
3896         goto tryNext0;
3897
3898       if (AST_LIT_VALUE (root->right->right) !=
3899           (getSize (TTYPE (root->left->left)) * 8 - 1))
3900         goto tryNext0;
3901
3902       /* whew got the first case : create the AST */
3903       return newNode (RLC, root->left->left, NULL);
3904     }
3905
3906 tryNext0:
3907   /* check for second case */
3908   /* (?expr >> 7) | (?expr << 1) */
3909   if (IS_LEFT_OP (root->right) &&
3910       IS_RIGHT_OP (root->left))
3911     {
3912
3913       if (!SPEC_USIGN (TETYPE (root->left->left)))
3914         return root;
3915
3916       if (!IS_AST_LIT_VALUE (root->left->right) ||
3917           !IS_AST_LIT_VALUE (root->right->right))
3918         goto tryNext1;
3919
3920       /* make sure it is the same symbol */
3921       if (!isAstEqual (root->left->left,
3922                        root->right->left))
3923         goto tryNext1;
3924
3925       if (AST_LIT_VALUE (root->right->right) != 1)
3926         goto tryNext1;
3927
3928       if (AST_LIT_VALUE (root->left->right) !=
3929           (getSize (TTYPE (root->left->left)) * 8 - 1))
3930         goto tryNext1;
3931
3932       /* whew got the first case : create the AST */
3933       return newNode (RLC, root->left->left, NULL);
3934
3935     }
3936
3937 tryNext1:
3938   /* third case for RRC */
3939   /*  (?symbol >> 1) | (?symbol << 7) */
3940   if (IS_LEFT_OP (root->right) &&
3941       IS_RIGHT_OP (root->left))
3942     {
3943
3944       if (!SPEC_USIGN (TETYPE (root->left->left)))
3945         return root;
3946
3947       if (!IS_AST_LIT_VALUE (root->left->right) ||
3948           !IS_AST_LIT_VALUE (root->right->right))
3949         goto tryNext2;
3950
3951       /* make sure it is the same symbol */
3952       if (!isAstEqual (root->left->left,
3953                        root->right->left))
3954         goto tryNext2;
3955
3956       if (AST_LIT_VALUE (root->left->right) != 1)
3957         goto tryNext2;
3958
3959       if (AST_LIT_VALUE (root->right->right) !=
3960           (getSize (TTYPE (root->left->left)) * 8 - 1))
3961         goto tryNext2;
3962
3963       /* whew got the first case : create the AST */
3964       return newNode (RRC, root->left->left, NULL);
3965
3966     }
3967 tryNext2:
3968   /* fourth and last case for now */
3969   /* (?symbol << 7) | (?symbol >> 1) */
3970   if (IS_RIGHT_OP (root->right) &&
3971       IS_LEFT_OP (root->left))
3972     {
3973
3974       if (!SPEC_USIGN (TETYPE (root->left->left)))
3975         return root;
3976
3977       if (!IS_AST_LIT_VALUE (root->left->right) ||
3978           !IS_AST_LIT_VALUE (root->right->right))
3979         return root;
3980
3981       /* make sure it is the same symbol */
3982       if (!isAstEqual (root->left->left,
3983                        root->right->left))
3984         return root;
3985
3986       if (AST_LIT_VALUE (root->right->right) != 1)
3987         return root;
3988
3989       if (AST_LIT_VALUE (root->left->right) !=
3990           (getSize (TTYPE (root->left->left)) * 8 - 1))
3991         return root;
3992
3993       /* whew got the first case : create the AST */
3994       return newNode (RRC, root->left->left, NULL);
3995
3996     }
3997
3998   /* not found return root */
3999   return root;
4000 }
4001
4002 /*-----------------------------------------------------------------*/
4003 /* optimizeCompare - otimizes compares for bit variables     */
4004 /*-----------------------------------------------------------------*/
4005 ast *
4006 optimizeCompare (ast * root)
4007 {
4008   ast *optExpr = NULL;
4009   value *vleft;
4010   value *vright;
4011   unsigned int litValue;
4012
4013   /* if nothing then return nothing */
4014   if (!root)
4015     return NULL;
4016
4017   /* if not a compare op then do leaves */
4018   if (!IS_COMPARE_OP (root))
4019     {
4020       root->left = optimizeCompare (root->left);
4021       root->right = optimizeCompare (root->right);
4022       return root;
4023     }
4024
4025   /* if left & right are the same then depending
4026      of the operation do */
4027   if (isAstEqual (root->left, root->right))
4028     {
4029       switch (root->opval.op)
4030         {
4031         case '>':
4032         case '<':
4033         case NE_OP:
4034           optExpr = newAst_VALUE (constVal ("0"));
4035           break;
4036         case GE_OP:
4037         case LE_OP:
4038         case EQ_OP:
4039           optExpr = newAst_VALUE (constVal ("1"));
4040           break;
4041         }
4042
4043       return decorateType (optExpr);
4044     }
4045
4046   vleft = (root->left->type == EX_VALUE ?
4047            root->left->opval.val : NULL);
4048
4049   vright = (root->right->type == EX_VALUE ?
4050             root->right->opval.val : NULL);
4051
4052   /* if left is a BITVAR in BITSPACE */
4053   /* and right is a LITERAL then opt- */
4054   /* imize else do nothing       */
4055   if (vleft && vright &&
4056       IS_BITVAR (vleft->etype) &&
4057       IN_BITSPACE (SPEC_OCLS (vleft->etype)) &&
4058       IS_LITERAL (vright->etype))
4059     {
4060
4061       /* if right side > 1 then comparison may never succeed */
4062       if ((litValue = (int) floatFromVal (vright)) > 1)
4063         {
4064           werror (W_BAD_COMPARE);
4065           goto noOptimize;
4066         }
4067
4068       if (litValue)
4069         {
4070           switch (root->opval.op)
4071             {
4072             case '>':           /* bit value greater than 1 cannot be */
4073               werror (W_BAD_COMPARE);
4074               goto noOptimize;
4075               break;
4076
4077             case '<':           /* bit value < 1 means 0 */
4078             case NE_OP:
4079               optExpr = newNode ('!', newAst_VALUE (vleft), NULL);
4080               break;
4081
4082             case LE_OP: /* bit value <= 1 means no check */
4083               optExpr = newAst_VALUE (vright);
4084               break;
4085
4086             case GE_OP: /* bit value >= 1 means only check for = */
4087             case EQ_OP:
4088               optExpr = newAst_VALUE (vleft);
4089               break;
4090             }
4091         }
4092       else
4093         {                       /* literal is zero */
4094           switch (root->opval.op)
4095             {
4096             case '<':           /* bit value < 0 cannot be */
4097               werror (W_BAD_COMPARE);
4098               goto noOptimize;
4099               break;
4100
4101             case '>':           /* bit value > 0 means 1 */
4102             case NE_OP:
4103               optExpr = newAst_VALUE (vleft);
4104               break;
4105
4106             case LE_OP: /* bit value <= 0 means no check */
4107             case GE_OP: /* bit value >= 0 means no check */
4108               werror (W_BAD_COMPARE);
4109               goto noOptimize;
4110               break;
4111
4112             case EQ_OP: /* bit == 0 means ! of bit */
4113               optExpr = newNode ('!', newAst_VALUE (vleft), NULL);
4114               break;
4115             }
4116         }
4117       return decorateType (resolveSymbols (optExpr));
4118     }                           /* end-of-if of BITVAR */
4119
4120 noOptimize:
4121   return root;
4122 }
4123 /*-----------------------------------------------------------------*/
4124 /* addSymToBlock : adds the symbol to the first block we find      */
4125 /*-----------------------------------------------------------------*/
4126 void 
4127 addSymToBlock (symbol * sym, ast * tree)
4128 {
4129   /* reached end of tree or a leaf */
4130   if (!tree || IS_AST_LINK (tree) || IS_AST_VALUE (tree))
4131     return;
4132
4133   /* found a block */
4134   if (IS_AST_OP (tree) &&
4135       tree->opval.op == BLOCK)
4136     {
4137
4138       symbol *lsym = copySymbol (sym);
4139
4140       lsym->next = AST_VALUES (tree, sym);
4141       AST_VALUES (tree, sym) = lsym;
4142       return;
4143     }
4144
4145   addSymToBlock (sym, tree->left);
4146   addSymToBlock (sym, tree->right);
4147 }
4148
4149 /*-----------------------------------------------------------------*/
4150 /* processRegParms - do processing for register parameters         */
4151 /*-----------------------------------------------------------------*/
4152 static void 
4153 processRegParms (value * args, ast * body)
4154 {
4155   while (args)
4156     {
4157       if (IS_REGPARM (args->etype))
4158         addSymToBlock (args->sym, body);
4159       args = args->next;
4160     }
4161 }
4162
4163 /*-----------------------------------------------------------------*/
4164 /* resetParmKey - resets the operandkeys for the symbols           */
4165 /*-----------------------------------------------------------------*/
4166 DEFSETFUNC (resetParmKey)
4167 {
4168   symbol *sym = item;
4169
4170   sym->key = 0;
4171   sym->defs = NULL;
4172   sym->uses = NULL;
4173   sym->remat = 0;
4174   return 1;
4175 }
4176
4177 /*-----------------------------------------------------------------*/
4178 /* createFunction - This is the key node that calls the iCode for  */
4179 /*                  generating the code for a function. Note code  */
4180 /*                  is generated function by function, later when  */
4181 /*                  add inter-procedural analysis this will change */
4182 /*-----------------------------------------------------------------*/
4183 ast *
4184 createFunction (symbol * name, ast * body)
4185 {
4186   ast *ex;
4187   symbol *csym;
4188   int stack = 0;
4189   sym_link *fetype;
4190   iCode *piCode = NULL;
4191
4192   /* if check function return 0 then some problem */
4193   if (checkFunction (name) == 0)
4194     return NULL;
4195
4196   /* create a dummy block if none exists */
4197   if (!body)
4198     body = newNode (BLOCK, NULL, NULL);
4199
4200   noLineno++;
4201
4202   /* check if the function name already in the symbol table */
4203   if ((csym = findSym (SymbolTab, NULL, name->name)))
4204     {
4205       name = csym;
4206       /* special case for compiler defined functions
4207          we need to add the name to the publics list : this
4208          actually means we are now compiling the compiler
4209          support routine */
4210       if (name->cdef)
4211         {
4212           addSet (&publics, name);
4213         }
4214     }
4215   else
4216     {
4217       addSymChain (name);
4218       allocVariables (name);
4219     }
4220   name->lastLine = yylineno;
4221   currFunc = name;
4222   processFuncArgs (currFunc, 0);
4223
4224   /* set the stack pointer */
4225   /* PENDING: check this for the mcs51 */
4226   stackPtr = -port->stack.direction * port->stack.call_overhead;
4227   if (IS_ISR (name->etype))
4228     stackPtr -= port->stack.direction * port->stack.isr_overhead;
4229   if (IS_RENT (name->etype) || options.stackAuto)
4230     stackPtr -= port->stack.direction * port->stack.reent_overhead;
4231
4232   xstackPtr = -port->stack.direction * port->stack.call_overhead;
4233
4234   fetype = getSpec (name->type);        /* get the specifier for the function */
4235   /* if this is a reentrant function then */
4236   if (IS_RENT (fetype))
4237     reentrant++;
4238
4239   allocParms (name->args);      /* allocate the parameters */
4240
4241   /* do processing for parameters that are passed in registers */
4242   processRegParms (name->args, body);
4243
4244   /* set the stack pointer */
4245   stackPtr = 0;
4246   xstackPtr = -1;
4247
4248   /* allocate & autoinit the block variables */
4249   processBlockVars (body, &stack, ALLOCATE);
4250
4251   /* save the stack information */
4252   if (options.useXstack)
4253     name->xstack = SPEC_STAK (fetype) = stack;
4254   else
4255     name->stack = SPEC_STAK (fetype) = stack;
4256
4257   /* name needs to be mangled */
4258   sprintf (name->rname, "%s%s", port->fun_prefix, name->name);
4259
4260   body = resolveSymbols (body); /* resolve the symbols */
4261   body = decorateType (body);   /* propagateType & do semantic checks */
4262
4263   ex = newAst_VALUE (symbolVal (name));         /* create name       */
4264   ex = newNode (FUNCTION, ex, body);
4265   ex->values.args = name->args;
4266
4267   if (fatalError)
4268     {
4269       werror (E_FUNC_NO_CODE, name->name);
4270       goto skipall;
4271     }
4272
4273   /* create the node & generate intermediate code */
4274   GcurMemmap = code;
4275   codeOutFile = code->oFile;
4276   piCode = iCodeFromAst (ex);
4277
4278   if (fatalError)
4279     {
4280       werror (E_FUNC_NO_CODE, name->name);
4281       goto skipall;
4282     }
4283
4284   eBBlockFromiCode (piCode);
4285
4286   /* if there are any statics then do them */
4287   if (staticAutos)
4288     {
4289       GcurMemmap = statsg;
4290       codeOutFile = statsg->oFile;
4291       eBBlockFromiCode (iCodeFromAst (decorateType (resolveSymbols (staticAutos))));
4292       staticAutos = NULL;
4293     }
4294
4295 skipall:
4296
4297   /* dealloc the block variables */
4298   processBlockVars (body, &stack, DEALLOCATE);
4299   /* deallocate paramaters */
4300   deallocParms (name->args);
4301
4302   if (IS_RENT (fetype))
4303     reentrant--;
4304
4305   /* we are done freeup memory & cleanup */
4306   noLineno--;
4307   labelKey = 1;
4308   name->key = 0;
4309   name->fbody = 1;
4310   addSet (&operKeyReset, name);
4311   applyToSet (operKeyReset, resetParmKey);
4312
4313   if (options.debug)
4314     cdbStructBlock (1, cdbFile);
4315
4316   cleanUpLevel (LabelTab, 0);
4317   cleanUpBlock (StructTab, 1);
4318   cleanUpBlock (TypedefTab, 1);
4319
4320   xstack->syms = NULL;
4321   istack->syms = NULL;
4322   return NULL;
4323 }
4324
4325
4326 #define INDENT(x,f) { int i ; for (i=0;i < x; i++) fprintf(f," "); }
4327 /*-----------------------------------------------------------------*/
4328 /* ast_print : prints the ast (for debugging purposes)             */
4329 /*-----------------------------------------------------------------*/
4330
4331 void ast_print (ast * tree, FILE *outfile, int indent)
4332 {
4333         
4334         if (!tree) return ;
4335
4336         /* can print only decorated trees */
4337         if (!tree->decorated) return;
4338
4339         /* if any child is an error | this one is an error do nothing */
4340         if (tree->isError ||
4341             (tree->left && tree->left->isError) ||
4342             (tree->right && tree->right->isError)) {
4343                 fprintf(outfile,"ERROR_NODE(%p)\n",tree);
4344         }
4345
4346         
4347         /* print the line          */
4348         /* if not block & function */
4349         if (tree->type == EX_OP &&
4350             (tree->opval.op != FUNCTION &&
4351              tree->opval.op != BLOCK &&
4352              tree->opval.op != NULLOP)) {
4353         }
4354         
4355         if (tree->opval.op == FUNCTION) {
4356                 fprintf(outfile,"FUNCTION (%p) type (",tree);
4357                 printTypeChain (tree->ftype,outfile);
4358                 fprintf(outfile,")\n");
4359                 ast_print(tree->left,outfile,indent+4);
4360                 ast_print(tree->right,outfile,indent+4);
4361                 return ;
4362         }
4363         if (tree->opval.op == BLOCK) {
4364                 symbol *decls = tree->values.sym;
4365                 fprintf(outfile,"{\n");
4366                 while (decls) {
4367                         INDENT(indent+4,outfile);
4368                         fprintf(outfile,"DECLARE SYMBOL %s, type(",decls->name);
4369                         printTypeChain(decls->type,outfile);
4370                         fprintf(outfile,")\n");
4371                         
4372                         decls = decls->next;                    
4373                 }
4374                 ast_print(tree->right,outfile,indent+4);
4375                 fprintf(outfile,"}\n");
4376                 return;
4377         }
4378         if (tree->opval.op == NULLOP) {
4379                 fprintf(outfile,"\n");
4380                 ast_print(tree->left,outfile,indent);
4381                 fprintf(outfile,"\n");
4382                 ast_print(tree->right,outfile,indent);
4383                 return ;
4384         }
4385         INDENT(indent,outfile);
4386
4387         /*------------------------------------------------------------------*/
4388         /*----------------------------*/
4389         /*   leaf has been reached    */
4390         /*----------------------------*/
4391         /* if this is of type value */
4392         /* just get the type        */
4393         if (tree->type == EX_VALUE) {
4394
4395                 if (IS_LITERAL (tree->opval.val->etype)) {                      
4396                         fprintf(outfile,"CONSTANT (%p) value = %d, 0x%x, %g", tree,
4397                                 (int) floatFromVal(tree->opval.val),
4398                                 (int) floatFromVal(tree->opval.val),
4399                                 floatFromVal(tree->opval.val));
4400                 } else if (tree->opval.val->sym) {
4401                         /* if the undefined flag is set then give error message */
4402                         if (tree->opval.val->sym->undefined) {
4403                                 fprintf(outfile,"UNDEFINED SYMBOL ");
4404                         } else {
4405                                 fprintf(outfile,"SYMBOL ");
4406                         }
4407                         fprintf(outfile,"(%p) name= %s ",tree,tree->opval.val->sym->name);
4408                 }
4409                 if (tree->ftype) {
4410                         fprintf(outfile," type (");
4411                         printTypeChain(tree->ftype,outfile);
4412                         fprintf(outfile,")\n");
4413                 } else {
4414                         fprintf(outfile,"\n");
4415                 }
4416                 return ;
4417         }
4418
4419         /* if type link for the case of cast */
4420         if (tree->type == EX_LINK) {
4421                 fprintf(outfile,"TYPENODE (%p) type = (",tree);
4422                 printTypeChain(tree->opval.lnk,outfile);
4423                 fprintf(outfile,")\n");
4424                 return ;
4425         }
4426
4427
4428         /* depending on type of operator do */
4429         
4430         switch (tree->opval.op) {
4431                 /*------------------------------------------------------------------*/
4432                 /*----------------------------*/
4433                 /*        array node          */
4434                 /*----------------------------*/
4435         case '[':
4436                 fprintf(outfile,"ARRAY_OP (%p) type (",tree);
4437                 printTypeChain(tree->ftype,outfile);
4438                 fprintf(outfile,")\n");
4439                 ast_print(tree->left,outfile,indent+4);
4440                 ast_print(tree->right,outfile,indent+4);
4441                 return;
4442
4443                 /*------------------------------------------------------------------*/
4444                 /*----------------------------*/
4445                 /*      struct/union          */
4446                 /*----------------------------*/
4447         case '.':
4448                 fprintf(outfile,"STRUCT_ACCESS (%p) type (",tree);
4449                 printTypeChain(tree->ftype,outfile);
4450                 fprintf(outfile,")\n");
4451                 ast_print(tree->left,outfile,indent+4);
4452                 ast_print(tree->right,outfile,indent+4);
4453                 return ;
4454
4455                 /*------------------------------------------------------------------*/
4456                 /*----------------------------*/
4457                 /*    struct/union pointer    */
4458                 /*----------------------------*/
4459         case PTR_OP:
4460                 fprintf(outfile,"PTR_ACCESS (%p) type (",tree);
4461                 printTypeChain(tree->ftype,outfile);
4462                 fprintf(outfile,")\n");
4463                 ast_print(tree->left,outfile,indent+4);
4464                 ast_print(tree->right,outfile,indent+4);
4465                 return ;
4466
4467                 /*------------------------------------------------------------------*/
4468                 /*----------------------------*/
4469                 /*  ++/-- operation           */
4470                 /*----------------------------*/
4471         case INC_OP:            /* incerement operator unary so left only */
4472                 fprintf(outfile,"INC_OP (%p) type (",tree);
4473                 printTypeChain(tree->ftype,outfile);
4474                 fprintf(outfile,")\n");
4475                 ast_print(tree->left,outfile,indent+4);
4476                 return ;
4477
4478         case DEC_OP:
4479                 fprintf(outfile,"DEC_OP (%p) type (",tree);
4480                 printTypeChain(tree->ftype,outfile);
4481                 fprintf(outfile,")\n");
4482                 ast_print(tree->left,outfile,indent+4);
4483                 return ;
4484
4485                 /*------------------------------------------------------------------*/
4486                 /*----------------------------*/
4487                 /*  bitwise and               */
4488                 /*----------------------------*/
4489         case '&':                       
4490                 if (tree->right) {
4491                         fprintf(outfile,"& (%p) type (",tree);
4492                         printTypeChain(tree->ftype,outfile);
4493                         fprintf(outfile,")\n");
4494                         ast_print(tree->left,outfile,indent+4);
4495                         ast_print(tree->right,outfile,indent+4);
4496                 } else {
4497                         fprintf(outfile,"ADDRESS_OF (%p) type (",tree);
4498                         printTypeChain(tree->ftype,outfile);
4499                         fprintf(outfile,")\n");
4500                         ast_print(tree->left,outfile,indent+4);
4501                         ast_print(tree->right,outfile,indent+4);
4502                 }
4503                 return ;
4504                 /*----------------------------*/
4505                 /*  bitwise or                */
4506                 /*----------------------------*/
4507         case '|':
4508                 fprintf(outfile,"OR (%p) type (",tree);
4509                 printTypeChain(tree->ftype,outfile);
4510                 fprintf(outfile,")\n");
4511                 ast_print(tree->left,outfile,indent+4);
4512                 ast_print(tree->right,outfile,indent+4);
4513                 return ;
4514                 /*------------------------------------------------------------------*/
4515                 /*----------------------------*/
4516                 /*  bitwise xor               */
4517                 /*----------------------------*/
4518         case '^':
4519                 fprintf(outfile,"XOR (%p) type (",tree);
4520                 printTypeChain(tree->ftype,outfile);
4521                 fprintf(outfile,")\n");
4522                 ast_print(tree->left,outfile,indent+4);
4523                 ast_print(tree->right,outfile,indent+4);
4524                 return ;
4525                 
4526                 /*------------------------------------------------------------------*/
4527                 /*----------------------------*/
4528                 /*  division                  */
4529                 /*----------------------------*/
4530         case '/':
4531                 fprintf(outfile,"DIV (%p) type (",tree);
4532                 printTypeChain(tree->ftype,outfile);
4533                 fprintf(outfile,")\n");
4534                 ast_print(tree->left,outfile,indent+4);
4535                 ast_print(tree->right,outfile,indent+4);
4536                 return ;
4537                 /*------------------------------------------------------------------*/
4538                 /*----------------------------*/
4539                 /*            modulus         */
4540                 /*----------------------------*/
4541         case '%':
4542                 fprintf(outfile,"MOD (%p) type (",tree);
4543                 printTypeChain(tree->ftype,outfile);
4544                 fprintf(outfile,")\n");
4545                 ast_print(tree->left,outfile,indent+4);
4546                 ast_print(tree->right,outfile,indent+4);
4547                 return ;
4548
4549                 /*------------------------------------------------------------------*/
4550                 /*----------------------------*/
4551                 /*  address dereference       */
4552                 /*----------------------------*/
4553         case '*':                       /* can be unary  : if right is null then unary operation */
4554                 if (!tree->right) {
4555                         fprintf(outfile,"DEREF (%p) type (",tree);
4556                         printTypeChain(tree->ftype,outfile);
4557                         fprintf(outfile,")\n");
4558                         ast_print(tree->left,outfile,indent+4);
4559                         return ;
4560                 }                       
4561                 /*------------------------------------------------------------------*/
4562                 /*----------------------------*/
4563                 /*      multiplication        */
4564                 /*----------------------------*/                
4565                 fprintf(outfile,"MULT (%p) type (",tree);
4566                 printTypeChain(tree->ftype,outfile);
4567                 fprintf(outfile,")\n");
4568                 ast_print(tree->left,outfile,indent+4);
4569                 ast_print(tree->right,outfile,indent+4);
4570                 return ;
4571
4572
4573                 /*------------------------------------------------------------------*/
4574                 /*----------------------------*/
4575                 /*    unary '+' operator      */
4576                 /*----------------------------*/
4577         case '+':
4578                 /* if unary plus */
4579                 if (!tree->right) {
4580                         fprintf(outfile,"UPLUS (%p) type (",tree);
4581                         printTypeChain(tree->ftype,outfile);
4582                         fprintf(outfile,")\n");
4583                         ast_print(tree->left,outfile,indent+4);
4584                 } else {
4585                         /*------------------------------------------------------------------*/
4586                         /*----------------------------*/
4587                         /*      addition              */
4588                         /*----------------------------*/
4589                         fprintf(outfile,"ADD (%p) type (",tree);
4590                         printTypeChain(tree->ftype,outfile);
4591                         fprintf(outfile,")\n");
4592                         ast_print(tree->left,outfile,indent+4);
4593                         ast_print(tree->right,outfile,indent+4);
4594                 }
4595                 return;
4596                 /*------------------------------------------------------------------*/
4597                 /*----------------------------*/
4598                 /*      unary '-'             */
4599                 /*----------------------------*/
4600         case '-':                       /* can be unary   */
4601                 if (!tree->right) {
4602                         fprintf(outfile,"UMINUS (%p) type (",tree);
4603                         printTypeChain(tree->ftype,outfile);
4604                         fprintf(outfile,")\n");
4605                         ast_print(tree->left,outfile,indent+4);
4606                 } else {
4607                         /*------------------------------------------------------------------*/
4608                         /*----------------------------*/
4609                         /*      subtraction           */
4610                         /*----------------------------*/
4611                         fprintf(outfile,"SUB (%p) type (",tree);
4612                         printTypeChain(tree->ftype,outfile);
4613                         fprintf(outfile,")\n");
4614                         ast_print(tree->left,outfile,indent+4);
4615                         ast_print(tree->right,outfile,indent+4);
4616                 }
4617                 return;
4618                 /*------------------------------------------------------------------*/
4619                 /*----------------------------*/
4620                 /*    compliment              */
4621                 /*----------------------------*/
4622         case '~':
4623                 fprintf(outfile,"COMPL (%p) type (",tree);
4624                 printTypeChain(tree->ftype,outfile);
4625                 fprintf(outfile,")\n");
4626                 ast_print(tree->left,outfile,indent+4);
4627                 return ;
4628                 /*------------------------------------------------------------------*/
4629                 /*----------------------------*/
4630                 /*           not              */
4631                 /*----------------------------*/
4632         case '!':
4633                 fprintf(outfile,"NOT (%p) type (",tree);
4634                 printTypeChain(tree->ftype,outfile);
4635                 fprintf(outfile,")\n");
4636                 ast_print(tree->left,outfile,indent+4);
4637                 return ;
4638                 /*------------------------------------------------------------------*/
4639                 /*----------------------------*/
4640                 /*           shift            */
4641                 /*----------------------------*/
4642         case RRC:
4643                 fprintf(outfile,"RRC (%p) type (",tree);
4644                 printTypeChain(tree->ftype,outfile);
4645                 fprintf(outfile,")\n");
4646                 ast_print(tree->left,outfile,indent+4);
4647                 return ;
4648
4649         case RLC:
4650                 fprintf(outfile,"RLC (%p) type (",tree);
4651                 printTypeChain(tree->ftype,outfile);
4652                 fprintf(outfile,")\n");
4653                 ast_print(tree->left,outfile,indent+4);
4654                 return ;
4655         case GETHBIT:
4656                 fprintf(outfile,"GETHBIT (%p) type (",tree);
4657                 printTypeChain(tree->ftype,outfile);
4658                 fprintf(outfile,")\n");
4659                 ast_print(tree->left,outfile,indent+4);
4660                 return ;
4661         case LEFT_OP:
4662                 fprintf(outfile,"LEFT_SHIFT (%p) type (",tree);
4663                 printTypeChain(tree->ftype,outfile);
4664                 fprintf(outfile,")\n");
4665                 ast_print(tree->left,outfile,indent+4);
4666                 ast_print(tree->right,outfile,indent+4);
4667                 return ;
4668         case RIGHT_OP:
4669                 fprintf(outfile,"RIGHT_SHIFT (%p) type (",tree);
4670                 printTypeChain(tree->ftype,outfile);
4671                 fprintf(outfile,")\n");
4672                 ast_print(tree->left,outfile,indent+4);
4673                 ast_print(tree->right,outfile,indent+4);
4674                 return ;
4675                 /*------------------------------------------------------------------*/
4676                 /*----------------------------*/
4677                 /*         casting            */
4678                 /*----------------------------*/
4679         case CAST:                      /* change the type   */
4680                 fprintf(outfile,"CAST (%p) type (",tree);
4681                 printTypeChain(tree->ftype,outfile);
4682                 fprintf(outfile,")\n");
4683                 ast_print(tree->right,outfile,indent+4);
4684                 return ;
4685                 
4686         case AND_OP:
4687                 fprintf(outfile,"ANDAND (%p) type (",tree);
4688                 printTypeChain(tree->ftype,outfile);
4689                 fprintf(outfile,")\n");
4690                 ast_print(tree->left,outfile,indent+4);
4691                 ast_print(tree->right,outfile,indent+4);
4692                 return ;
4693         case OR_OP:
4694                 fprintf(outfile,"OROR (%p) type (",tree);
4695                 printTypeChain(tree->ftype,outfile);
4696                 fprintf(outfile,")\n");
4697                 ast_print(tree->left,outfile,indent+4);
4698                 ast_print(tree->right,outfile,indent+4);
4699                 return ;
4700                 
4701                 /*------------------------------------------------------------------*/
4702                 /*----------------------------*/
4703                 /*     comparison operators   */
4704                 /*----------------------------*/
4705         case '>':
4706                 fprintf(outfile,"GT(>) (%p) type (",tree);
4707                 printTypeChain(tree->ftype,outfile);
4708                 fprintf(outfile,")\n");
4709                 ast_print(tree->left,outfile,indent+4);
4710                 ast_print(tree->right,outfile,indent+4);
4711                 return ;
4712         case '<':
4713                 fprintf(outfile,"LT(<) (%p) type (",tree);
4714                 printTypeChain(tree->ftype,outfile);
4715                 fprintf(outfile,")\n");
4716                 ast_print(tree->left,outfile,indent+4);
4717                 ast_print(tree->right,outfile,indent+4);
4718                 return ;
4719         case LE_OP:
4720                 fprintf(outfile,"LE(<=) (%p) type (",tree);
4721                 printTypeChain(tree->ftype,outfile);
4722                 fprintf(outfile,")\n");
4723                 ast_print(tree->left,outfile,indent+4);
4724                 ast_print(tree->right,outfile,indent+4);
4725                 return ;
4726         case GE_OP:
4727                 fprintf(outfile,"GE(>=) (%p) type (",tree);
4728                 printTypeChain(tree->ftype,outfile);
4729                 fprintf(outfile,")\n");
4730                 ast_print(tree->left,outfile,indent+4);
4731                 ast_print(tree->right,outfile,indent+4);
4732                 return ;
4733         case EQ_OP:
4734                 fprintf(outfile,"EQ(==) (%p) type (",tree);
4735                 printTypeChain(tree->ftype,outfile);
4736                 fprintf(outfile,")\n");
4737                 ast_print(tree->left,outfile,indent+4);
4738                 ast_print(tree->right,outfile,indent+4);
4739                 return ;
4740         case NE_OP:
4741                 fprintf(outfile,"NE(!=) (%p) type (",tree);
4742                 printTypeChain(tree->ftype,outfile);
4743                 fprintf(outfile,")\n");
4744                 ast_print(tree->left,outfile,indent+4);
4745                 ast_print(tree->right,outfile,indent+4);
4746                 /*------------------------------------------------------------------*/
4747                 /*----------------------------*/
4748                 /*             sizeof         */
4749                 /*----------------------------*/
4750         case SIZEOF:            /* evaluate wihout code generation */
4751                 fprintf(outfile,"SIZEOF %d\n",(getSize (tree->right->ftype)));
4752                 return ;
4753
4754                 /*------------------------------------------------------------------*/
4755                 /*----------------------------*/
4756                 /* conditional operator  '?'  */
4757                 /*----------------------------*/
4758         case '?':
4759                 fprintf(outfile,"QUEST(?) (%p) type (",tree);
4760                 printTypeChain(tree->ftype,outfile);
4761                 fprintf(outfile,")\n");
4762                 ast_print(tree->left,outfile,indent+4);
4763                 ast_print(tree->right,outfile,indent+4);
4764
4765         case ':':
4766                 fprintf(outfile,"COLON(:) (%p) type (",tree);
4767                 printTypeChain(tree->ftype,outfile);
4768                 fprintf(outfile,")\n");
4769                 ast_print(tree->left,outfile,indent+4);
4770                 ast_print(tree->right,outfile,indent+4);
4771                 return ;
4772                 
4773                 /*------------------------------------------------------------------*/
4774                 /*----------------------------*/
4775                 /*    assignment operators    */
4776                 /*----------------------------*/
4777         case MUL_ASSIGN:
4778                 fprintf(outfile,"MULASS(*=) (%p) type (",tree);
4779                 printTypeChain(tree->ftype,outfile);
4780                 fprintf(outfile,")\n");
4781                 ast_print(tree->left,outfile,indent+4);
4782                 ast_print(tree->right,outfile,indent+4);
4783                 return;
4784         case DIV_ASSIGN:
4785                 fprintf(outfile,"DIVASS(/=) (%p) type (",tree);
4786                 printTypeChain(tree->ftype,outfile);
4787                 fprintf(outfile,")\n");
4788                 ast_print(tree->left,outfile,indent+4);
4789                 ast_print(tree->right,outfile,indent+4);
4790                 return;
4791         case AND_ASSIGN:
4792                 fprintf(outfile,"ANDASS(&=) (%p) type (",tree);
4793                 printTypeChain(tree->ftype,outfile);
4794                 fprintf(outfile,")\n");
4795                 ast_print(tree->left,outfile,indent+4);
4796                 ast_print(tree->right,outfile,indent+4);
4797                 return;
4798         case OR_ASSIGN:
4799                 fprintf(outfile,"ORASS(*=) (%p) type (",tree);
4800                 printTypeChain(tree->ftype,outfile);
4801                 fprintf(outfile,")\n");
4802                 ast_print(tree->left,outfile,indent+4);
4803                 ast_print(tree->right,outfile,indent+4);
4804                 return;
4805         case XOR_ASSIGN:
4806                 fprintf(outfile,"XORASS(*=) (%p) type (",tree);
4807                 printTypeChain(tree->ftype,outfile);
4808                 fprintf(outfile,")\n");
4809                 ast_print(tree->left,outfile,indent+4);
4810                 ast_print(tree->right,outfile,indent+4);
4811                 return;
4812         case RIGHT_ASSIGN:
4813                 fprintf(outfile,"RSHFTASS(>>=) (%p) type (",tree);
4814                 printTypeChain(tree->ftype,outfile);
4815                 fprintf(outfile,")\n");
4816                 ast_print(tree->left,outfile,indent+4);
4817                 ast_print(tree->right,outfile,indent+4);
4818                 return;
4819         case LEFT_ASSIGN:
4820                 fprintf(outfile,"LSHFTASS(*=) (%p) type (",tree);
4821                 printTypeChain(tree->ftype,outfile);
4822                 fprintf(outfile,")\n");
4823                 ast_print(tree->left,outfile,indent+4);
4824                 ast_print(tree->right,outfile,indent+4);
4825                 return;
4826                 /*------------------------------------------------------------------*/
4827                 /*----------------------------*/
4828                 /*    -= operator             */
4829                 /*----------------------------*/
4830         case SUB_ASSIGN:
4831                 fprintf(outfile,"SUBASS(-=) (%p) type (",tree);
4832                 printTypeChain(tree->ftype,outfile);
4833                 fprintf(outfile,")\n");
4834                 ast_print(tree->left,outfile,indent+4);
4835                 ast_print(tree->right,outfile,indent+4);
4836                 return;
4837                 /*------------------------------------------------------------------*/
4838                 /*----------------------------*/
4839                 /*          += operator       */
4840                 /*----------------------------*/
4841         case ADD_ASSIGN:
4842                 fprintf(outfile,"ADDASS(+=) (%p) type (",tree);
4843                 printTypeChain(tree->ftype,outfile);
4844                 fprintf(outfile,")\n");
4845                 ast_print(tree->left,outfile,indent+4);
4846                 ast_print(tree->right,outfile,indent+4);
4847                 return;
4848                 /*------------------------------------------------------------------*/
4849                 /*----------------------------*/
4850                 /*      straight assignemnt   */
4851                 /*----------------------------*/
4852         case '=':
4853                 fprintf(outfile,"ASSIGN(=) (%p) type (",tree);
4854                 printTypeChain(tree->ftype,outfile);
4855                 fprintf(outfile,")\n");
4856                 ast_print(tree->left,outfile,indent+4);
4857                 ast_print(tree->right,outfile,indent+4);
4858                 return;     
4859                 /*------------------------------------------------------------------*/
4860                 /*----------------------------*/
4861                 /*      comma operator        */
4862                 /*----------------------------*/
4863         case ',':
4864                 fprintf(outfile,"COMMA(,) (%p) type (",tree);
4865                 printTypeChain(tree->ftype,outfile);
4866                 fprintf(outfile,")\n");
4867                 ast_print(tree->left,outfile,indent+4);
4868                 ast_print(tree->right,outfile,indent+4);
4869                 return;
4870                 /*------------------------------------------------------------------*/
4871                 /*----------------------------*/
4872                 /*       function call        */
4873                 /*----------------------------*/
4874         case CALL:
4875         case PCALL:
4876                 fprintf(outfile,"CALL (%p) type (",tree);
4877                 printTypeChain(tree->ftype,outfile);
4878                 fprintf(outfile,")\n");
4879                 ast_print(tree->left,outfile,indent+4);
4880                 ast_print(tree->right,outfile,indent+4);
4881                 return;
4882         case PARAM:
4883                 fprintf(outfile,"PARM ");
4884                 ast_print(tree->left,outfile,indent+4);
4885                 if (tree->right && !IS_AST_PARAM(tree->right)) {
4886                         fprintf(outfile,"PARM ");
4887                         ast_print(tree->right,outfile,indent+4);
4888                 }
4889                 return ;
4890                 /*------------------------------------------------------------------*/
4891                 /*----------------------------*/
4892                 /*     return statement       */
4893                 /*----------------------------*/
4894         case RETURN:
4895                 fprintf(outfile,"RETURN (%p) type (",tree);
4896                 printTypeChain(tree->right->ftype,outfile);
4897                 fprintf(outfile,")\n");
4898                 ast_print(tree->right,outfile,indent+4);
4899                 return ;
4900                 /*------------------------------------------------------------------*/
4901                 /*----------------------------*/
4902                 /*     label statement        */
4903                 /*----------------------------*/
4904         case LABEL :
4905                 fprintf(outfile,"LABEL (%p)",tree);
4906                 ast_print(tree->left,outfile,indent+4);
4907                 ast_print(tree->right,outfile,indent);
4908                 return;
4909                 /*------------------------------------------------------------------*/
4910                 /*----------------------------*/
4911                 /*     switch statement       */
4912                 /*----------------------------*/
4913         case SWITCH:
4914                 {
4915                         value *val;
4916                         fprintf(outfile,"SWITCH (%p) ",tree);
4917                         ast_print(tree->left,outfile,0);
4918                         for (val = tree->values.switchVals.swVals; val ; val = val->next) {
4919                                 INDENT(indent+4,outfile);
4920                                 fprintf(outfile,"CASE 0x%x GOTO _case_%d_%d\n",
4921                                         (int) floatFromVal(val),
4922                                         tree->values.switchVals.swNum,
4923                                         (int) floatFromVal(val));
4924                         }
4925                         ast_print(tree->right,outfile,indent);
4926                 }
4927                 return ;
4928                 /*------------------------------------------------------------------*/
4929                 /*----------------------------*/
4930                 /* ifx Statement              */
4931                 /*----------------------------*/
4932         case IFX:
4933                 ast_print(tree->left,outfile,indent);
4934                 INDENT(indent,outfile);
4935                 fprintf(outfile,"IF (%p) \n",tree);
4936                 if (tree->trueLabel) {
4937                         INDENT(indent,outfile);
4938                         fprintf(outfile,"NE(==) 0 goto %s\n",tree->trueLabel->name);
4939                 }
4940                 if (tree->falseLabel) {
4941                         INDENT(indent,outfile);
4942                         fprintf(outfile,"EQ(==) 0 goto %s\n",tree->falseLabel->name);
4943                 }
4944                 ast_print(tree->right,outfile,indent);
4945                 return ;
4946                 /*------------------------------------------------------------------*/
4947                 /*----------------------------*/
4948                 /* for Statement              */
4949                 /*----------------------------*/
4950         case FOR:
4951                 fprintf(outfile,"FOR (%p) \n",tree);
4952                 if (AST_FOR( tree, initExpr)) {
4953                         INDENT(indent+4,outfile);
4954                         fprintf(outfile,"INIT EXPR ");
4955                         ast_print(AST_FOR(tree, initExpr),outfile,indent+4);
4956                 }
4957                 if (AST_FOR( tree, condExpr)) {
4958                         INDENT(indent+4,outfile);
4959                         fprintf(outfile,"COND EXPR ");
4960                         ast_print(AST_FOR(tree, condExpr),outfile,indent+4);
4961                 }
4962                 if (AST_FOR( tree, loopExpr)) {
4963                         INDENT(indent+4,outfile);
4964                         fprintf(outfile,"LOOP EXPR ");
4965                         ast_print(AST_FOR(tree, loopExpr),outfile,indent+4);
4966                 }
4967                 fprintf(outfile,"FOR LOOP BODY \n");
4968                 ast_print(tree->left,outfile,indent+4);
4969                 return ;
4970         default:
4971             return ;
4972         }
4973 }
4974
4975 void PA(ast *t)
4976 {
4977         ast_print(t,stdout,1);
4978 }