]> git.sur5r.net Git - cc65/blob - src/cc65/expr.c
e8c962967b0084c2122985ad8865db006fe2657e
[cc65] / src / cc65 / expr.c
1 /* expr.c
2  *
3  * Ullrich von Bassewitz, 21.06.1998
4  */
5
6
7
8 #include <stdio.h>
9 #include <stdlib.h>
10
11 /* common */
12 #include "check.h"
13 #include "debugflag.h"
14 #include "xmalloc.h"
15
16 /* cc65 */
17 #include "asmcode.h"
18 #include "asmlabel.h"
19 #include "asmstmt.h"
20 #include "assignment.h"
21 #include "codegen.h"
22 #include "declare.h"
23 #include "error.h"
24 #include "funcdesc.h"
25 #include "function.h"
26 #include "global.h"
27 #include "litpool.h"
28 #include "loadexpr.h"
29 #include "macrotab.h"
30 #include "preproc.h"
31 #include "scanner.h"
32 #include "shiftexpr.h"
33 #include "stackptr.h"
34 #include "standard.h"
35 #include "stdfunc.h"
36 #include "symtab.h"
37 #include "typecmp.h"
38 #include "typeconv.h"
39 #include "expr.h"
40
41
42
43 /*****************************************************************************/
44 /*                                   Data                                    */
45 /*****************************************************************************/
46
47
48
49 /* Generator attributes */
50 #define GEN_NOPUSH      0x01            /* Don't push lhs */
51
52 /* Map a generator function and its attributes to a token */
53 typedef struct {
54     token_t       Tok;                  /* Token to map to */
55     unsigned      Flags;                /* Flags for generator function */
56     void          (*Func) (unsigned, unsigned long);    /* Generator func */
57 } GenDesc;
58
59 /* Descriptors for the operations */
60 static GenDesc GenPASGN  = { TOK_PLUS_ASSIGN,   GEN_NOPUSH,     g_add };
61 static GenDesc GenSASGN  = { TOK_MINUS_ASSIGN,  GEN_NOPUSH,     g_sub };
62 static GenDesc GenMASGN  = { TOK_MUL_ASSIGN,    GEN_NOPUSH,     g_mul };
63 static GenDesc GenDASGN  = { TOK_DIV_ASSIGN,    GEN_NOPUSH,     g_div };
64 static GenDesc GenMOASGN = { TOK_MOD_ASSIGN,    GEN_NOPUSH,     g_mod };
65 static GenDesc GenSLASGN = { TOK_SHL_ASSIGN,    GEN_NOPUSH,     g_asl };
66 static GenDesc GenSRASGN = { TOK_SHR_ASSIGN,    GEN_NOPUSH,     g_asr };
67 static GenDesc GenAASGN  = { TOK_AND_ASSIGN,    GEN_NOPUSH,     g_and };
68 static GenDesc GenXOASGN = { TOK_XOR_ASSIGN,    GEN_NOPUSH,     g_xor };
69 static GenDesc GenOASGN  = { TOK_OR_ASSIGN,     GEN_NOPUSH,     g_or  };
70
71
72
73 /*****************************************************************************/
74 /*                             Helper functions                              */
75 /*****************************************************************************/
76
77
78
79 static unsigned GlobalModeFlags (const ExprDesc* Expr)
80 /* Return the addressing mode flags for the given expression */
81 {
82     switch (ED_GetLoc (Expr)) {
83         case E_LOC_ABS:         return CF_ABSOLUTE;
84         case E_LOC_GLOBAL:      return CF_EXTERNAL;
85         case E_LOC_STATIC:      return CF_STATIC;
86         case E_LOC_REGISTER:    return CF_REGVAR;
87         case E_LOC_STACK:       return CF_NONE;
88         case E_LOC_PRIMARY:     return CF_NONE;
89         case E_LOC_EXPR:        return CF_NONE;
90         case E_LOC_LITERAL:     return CF_STATIC;       /* Same as static */
91         default:
92             Internal ("GlobalModeFlags: Invalid location flags value: 0x%04X", Expr->Flags);
93             /* NOTREACHED */
94             return 0;
95     }
96 }
97
98
99
100 void ExprWithCheck (void (*Func) (ExprDesc*), ExprDesc *Expr)
101 /* Call an expression function with checks. */
102 {
103     /* Remember the stack pointer */
104     int OldSP = StackPtr;
105
106     /* Call the expression function */
107     (*Func) (Expr);
108
109     /* Do some checks if code generation is still constistent */
110     if (StackPtr != OldSP) {
111         if (Debug) {
112             fprintf (stderr,
113                      "Code generation messed up!\n"
114                      "StackPtr is %d, should be %d",
115                      StackPtr, OldSP);
116         } else {
117             Internal ("StackPtr is %d, should be %d\n", StackPtr, OldSP);
118         }
119     }
120 }
121
122
123
124 static Type* promoteint (Type* lhst, Type* rhst)
125 /* In an expression with two ints, return the type of the result */
126 {
127     /* Rules for integer types:
128      *   - If one of the values is a long, the result is long.
129      *   - If one of the values is unsigned, the result is also unsigned.
130      *   - Otherwise the result is an int.
131      */
132     if (IsTypeLong (lhst) || IsTypeLong (rhst)) {
133         if (IsSignUnsigned (lhst) || IsSignUnsigned (rhst)) {
134             return type_ulong;
135         } else {
136             return type_long;
137         }
138     } else {
139         if (IsSignUnsigned (lhst) || IsSignUnsigned (rhst)) {
140             return type_uint;
141         } else {
142             return type_int;
143         }
144     }
145 }
146
147
148
149 static unsigned typeadjust (ExprDesc* lhs, ExprDesc* rhs, int NoPush)
150 /* Adjust the two values for a binary operation. lhs is expected on stack or
151  * to be constant, rhs is expected to be in the primary register or constant.
152  * The function will put the type of the result into lhs and return the
153  * code generator flags for the operation.
154  * If NoPush is given, it is assumed that the operation does not expect the lhs
155  * to be on stack, and that lhs is in a register instead.
156  * Beware: The function does only accept int types.
157  */
158 {
159     unsigned ltype, rtype;
160     unsigned flags;
161
162     /* Get the type strings */
163     Type* lhst = lhs->Type;
164     Type* rhst = rhs->Type;
165
166     /* Generate type adjustment code if needed */
167     ltype = TypeOf (lhst);
168     if (ED_IsLocAbs (lhs)) {
169         ltype |= CF_CONST;
170     }
171     if (NoPush) {
172         /* Value is in primary register*/
173         ltype |= CF_REG;
174     }
175     rtype = TypeOf (rhst);
176     if (ED_IsLocAbs (rhs)) {
177         rtype |= CF_CONST;
178     }
179     flags = g_typeadjust (ltype, rtype);
180
181     /* Set the type of the result */
182     lhs->Type = promoteint (lhst, rhst);
183
184     /* Return the code generator flags */
185     return flags;
186 }
187
188
189
190 static const GenDesc* FindGen (token_t Tok, const GenDesc* Table)
191 /* Find a token in a generator table */
192 {
193     while (Table->Tok != TOK_INVALID) {
194         if (Table->Tok == Tok) {
195             return Table;
196         }
197         ++Table;
198     }
199     return 0;
200 }
201
202
203
204 static int TypeSpecAhead (void)
205 /* Return true if some sort of type is waiting (helper for cast and sizeof()
206  * in hie10).
207  */
208 {
209     SymEntry* Entry;
210
211     /* There's a type waiting if:
212      *
213      * We have an opening paren, and
214      *   a.  the next token is a type, or
215      *   b.  the next token is a type qualifier, or
216      *   c.  the next token is a typedef'd type
217      */
218     return CurTok.Tok == TOK_LPAREN && (
219            TokIsType (&NextTok)                         ||
220            TokIsTypeQual (&NextTok)                     ||
221            (NextTok.Tok  == TOK_IDENT                   &&
222            (Entry = FindSym (NextTok.Ident)) != 0       &&
223            SymIsTypeDef (Entry)));
224 }
225
226
227
228 void PushAddr (const ExprDesc* Expr)
229 /* If the expression contains an address that was somehow evaluated,
230  * push this address on the stack. This is a helper function for all
231  * sorts of implicit or explicit assignment functions where the lvalue
232  * must be saved if it's not constant, before evaluating the rhs.
233  */
234 {
235     /* Get the address on stack if needed */
236     if (ED_IsLocExpr (Expr)) {
237         /* Push the address (always a pointer) */
238         g_push (CF_PTR, 0);
239     }
240 }
241
242
243
244 /*****************************************************************************/
245 /*                                   code                                    */
246 /*****************************************************************************/
247
248
249
250 static unsigned FunctionParamList (FuncDesc* Func, int IsFastcall)
251 /* Parse a function parameter list and pass the parameters to the called
252  * function. Depending on several criteria this may be done by just pushing
253  * each parameter separately, or creating the parameter frame once and then
254  * storing into this frame.
255  * The function returns the size of the parameters pushed.
256  */
257 {
258     ExprDesc Expr;
259
260     /* Initialize variables */
261     SymEntry* Param       = 0;  /* Keep gcc silent */
262     unsigned  ParamSize   = 0;  /* Size of parameters pushed */
263     unsigned  ParamCount  = 0;  /* Number of parameters pushed */
264     unsigned  FrameSize   = 0;  /* Size of parameter frame */
265     unsigned  FrameParams = 0;  /* Number of params in frame */
266     int       FrameOffs   = 0;  /* Offset into parameter frame */
267     int       Ellipsis    = 0;  /* Function is variadic */
268
269     /* As an optimization, we may allocate the complete parameter frame at
270      * once instead of pushing each parameter as it comes. We may do that,
271      * if...
272      *
273      *  - optimizations that increase code size are enabled (allocating the
274      *    stack frame at once gives usually larger code).
275      *  - we have more than one parameter to push (don't count the last param
276      *    for __fastcall__ functions).
277      *
278      * The FrameSize variable will contain a value > 0 if storing into a frame
279      * (instead of pushing) is enabled.
280      *
281      */
282     if (IS_Get (&CodeSizeFactor) >= 200) {
283
284         /* Calculate the number and size of the parameters */
285         FrameParams = Func->ParamCount;
286         FrameSize   = Func->ParamSize;
287         if (FrameParams > 0 && IsFastcall) {
288             /* Last parameter is not pushed */
289             FrameSize -= CheckedSizeOf (Func->LastParam->Type);
290             --FrameParams;
291         }
292
293         /* Do we have more than one parameter in the frame? */
294         if (FrameParams > 1) {
295             /* Okeydokey, setup the frame */
296             FrameOffs = StackPtr;
297             g_space (FrameSize);
298             StackPtr -= FrameSize;
299         } else {
300             /* Don't use a preallocated frame */
301             FrameSize = 0;
302         }
303     }
304
305     /* Parse the actual parameter list */
306     while (CurTok.Tok != TOK_RPAREN) {
307
308         unsigned Flags;
309
310         /* Count arguments */
311         ++ParamCount;
312
313         /* Fetch the pointer to the next argument, check for too many args */
314         if (ParamCount <= Func->ParamCount) {
315             /* Beware: If there are parameters with identical names, they
316              * cannot go into the same symbol table, which means that in this
317              * case of errorneous input, the number of nodes in the symbol
318              * table and ParamCount are NOT equal. We have to handle this case
319              * below to avoid segmentation violations. Since we know that this
320              * problem can only occur if there is more than one parameter,
321              * we will just use the last one.
322              */
323             if (ParamCount == 1) {
324                 /* First argument */
325                 Param = Func->SymTab->SymHead;
326             } else if (Param->NextSym != 0) {
327                 /* Next argument */
328                 Param = Param->NextSym;
329                 CHECK ((Param->Flags & SC_PARAM) != 0);
330             }
331         } else if (!Ellipsis) {
332             /* Too many arguments. Do we have an open param list? */
333             if ((Func->Flags & FD_VARIADIC) == 0) {
334                 /* End of param list reached, no ellipsis */
335                 Error ("Too many arguments in function call");
336             }
337             /* Assume an ellipsis even in case of errors to avoid an error
338              * message for each other argument.
339              */
340             Ellipsis = 1;
341         }
342
343         /* Evaluate the parameter expression */
344         hie1 (&Expr);
345
346         /* If we don't have an argument spec, accept anything, otherwise
347          * convert the actual argument to the type needed.
348          */
349         Flags = CF_NONE;
350         if (!Ellipsis) {
351
352             /* Convert the argument to the parameter type if needed */
353             TypeConversion (&Expr, Param->Type);
354
355             /* If we have a prototype, chars may be pushed as chars */
356             Flags |= CF_FORCECHAR;
357
358         } else {
359
360             /* No prototype available. Convert array to "pointer to first
361              * element", and function to "pointer to function".
362              */
363             Expr.Type = PtrConversion (Expr.Type);
364
365         }
366
367         /* Load the value into the primary if it is not already there */
368         LoadExpr (Flags, &Expr);
369
370         /* Use the type of the argument for the push */
371         Flags |= TypeOf (Expr.Type);
372
373         /* If this is a fastcall function, don't push the last argument */
374         if (ParamCount != Func->ParamCount || !IsFastcall) {
375             unsigned ArgSize = sizeofarg (Flags);
376             if (FrameSize > 0) {
377                 /* We have the space already allocated, store in the frame.
378                  * Because of invalid type conversions (that have produced an
379                  * error before), we can end up here with a non aligned stack
380                  * frame. Since no output will be generated anyway, handle
381                  * these cases gracefully instead of doing a CHECK.
382                  */
383                 if (FrameSize >= ArgSize) {
384                     FrameSize -= ArgSize;
385                 } else {
386                     FrameSize = 0;
387                 }
388                 FrameOffs -= ArgSize;
389                 /* Store */
390                 g_putlocal (Flags | CF_NOKEEP, FrameOffs, Expr.IVal);
391             } else {
392                 /* Push the argument */
393                 g_push (Flags, Expr.IVal);
394             }
395
396             /* Calculate total parameter size */
397             ParamSize += ArgSize;
398         }
399
400         /* Check for end of argument list */
401         if (CurTok.Tok != TOK_COMMA) {
402             break;
403         }
404         NextToken ();
405     }
406
407     /* Check if we had enough parameters */
408     if (ParamCount < Func->ParamCount) {
409         Error ("Too few arguments in function call");
410     }
411
412     /* The function returns the size of all parameters pushed onto the stack.
413      * However, if there are parameters missing (which is an error and was
414      * flagged by the compiler) AND a stack frame was preallocated above,
415      * we would loose track of the stackpointer and generate an internal error
416      * later. So we correct the value by the parameters that should have been
417      * pushed to avoid an internal compiler error. Since an error was
418      * generated before, no code will be output anyway.
419      */
420     return ParamSize + FrameSize;
421 }
422
423
424
425 static void FunctionCall (ExprDesc* Expr)
426 /* Perform a function call. */
427 {
428     FuncDesc*     Func;           /* Function descriptor */
429     int           IsFuncPtr;      /* Flag */
430     unsigned      ParamSize;      /* Number of parameter bytes */
431     CodeMark      Mark;
432     int           PtrOffs = 0;    /* Offset of function pointer on stack */
433     int           IsFastcall = 0; /* True if it's a fast call function */
434     int           PtrOnStack = 0; /* True if a pointer copy is on stack */
435
436     /* Skip the left paren */
437     NextToken ();
438
439     /* Get a pointer to the function descriptor from the type string */
440     Func = GetFuncDesc (Expr->Type);
441
442     /* Handle function pointers transparently */
443     IsFuncPtr = IsTypeFuncPtr (Expr->Type);
444     if (IsFuncPtr) {
445
446         /* Check wether it's a fastcall function that has parameters */
447         IsFastcall = IsQualFastcall (Expr->Type + 1) && (Func->ParamCount > 0);
448
449         /* Things may be difficult, depending on where the function pointer
450          * resides. If the function pointer is an expression of some sort
451          * (not a local or global variable), we have to evaluate this
452          * expression now and save the result for later. Since calls to
453          * function pointers may be nested, we must save it onto the stack.
454          * For fastcall functions we do also need to place a copy of the
455          * pointer on stack, since we cannot use a/x.
456          */
457         PtrOnStack = IsFastcall || !ED_IsConst (Expr);
458         if (PtrOnStack) {
459
460             /* Not a global or local variable, or a fastcall function. Load
461              * the pointer into the primary and mark it as an expression.
462              */
463             LoadExpr (CF_NONE, Expr);
464             ED_MakeRValExpr (Expr);
465
466             /* Remember the code position */
467             GetCodePos (&Mark);
468
469             /* Push the pointer onto the stack and remember the offset */
470             g_push (CF_PTR, 0);
471             PtrOffs = StackPtr;
472         }
473
474     } else {
475         /* Check for known standard functions and inline them */
476         if (Expr->Name != 0) {
477             int StdFunc = FindStdFunc ((const char*) Expr->Name);
478             if (StdFunc >= 0) {
479                 /* Inline this function */
480                 HandleStdFunc (StdFunc, Func, Expr);
481                 return;
482             }
483         }
484
485         /* If we didn't inline the function, get fastcall info */
486         IsFastcall = IsQualFastcall (Expr->Type);
487     }
488
489     /* Parse the parameter list */
490     ParamSize = FunctionParamList (Func, IsFastcall);
491
492     /* We need the closing paren here */
493     ConsumeRParen ();
494
495     /* Special handling for function pointers */
496     if (IsFuncPtr) {
497
498         /* If the function is not a fastcall function, load the pointer to
499          * the function into the primary.
500          */
501         if (!IsFastcall) {
502
503             /* Not a fastcall function - we may use the primary */
504             if (PtrOnStack) {
505                 /* If we have no parameters, the pointer is still in the
506                  * primary. Remove the code to push it and correct the
507                  * stack pointer.
508                  */
509                 if (ParamSize == 0) {
510                     RemoveCode (&Mark);
511                     PtrOnStack = 0;
512                 } else {
513                     /* Load from the saved copy */
514                     g_getlocal (CF_PTR, PtrOffs);
515                 }
516             } else {
517                 /* Load from original location */
518                 LoadExpr (CF_NONE, Expr);
519             }
520
521             /* Call the function */
522             g_callind (TypeOf (Expr->Type+1), ParamSize, PtrOffs);
523
524         } else {
525
526             /* Fastcall function. We cannot use the primary for the function
527              * pointer and must therefore use an offset to the stack location.
528              * Since fastcall functions may never be variadic, we can use the
529              * index register for this purpose.
530              */
531             g_callind (CF_LOCAL, ParamSize, PtrOffs);
532         }
533
534         /* If we have a pointer on stack, remove it */
535         if (PtrOnStack) {
536             g_space (- (int) sizeofarg (CF_PTR));
537             pop (CF_PTR);
538         }
539
540         /* Skip T_PTR */
541         ++Expr->Type;
542
543     } else {
544
545         /* Normal function */
546         g_call (TypeOf (Expr->Type), (const char*) Expr->Name, ParamSize);
547
548     }
549
550     /* The function result is an rvalue in the primary register */
551     ED_MakeRValExpr (Expr);
552     Expr->Type = GetFuncReturn (Expr->Type);
553 }
554
555
556
557 static void Primary (ExprDesc* E)
558 /* This is the lowest level of the expression parser. */
559 {
560     SymEntry* Sym;
561
562     /* Initialize fields in the expression stucture */
563     ED_Init (E);
564
565     /* Character and integer constants. */
566     if (CurTok.Tok == TOK_ICONST || CurTok.Tok == TOK_CCONST) {
567         E->IVal  = CurTok.IVal;
568         E->Flags = E_LOC_ABS | E_RTYPE_RVAL;
569         E->Type  = CurTok.Type;
570         NextToken ();
571         return;
572     }
573
574     /* Floating point constant */
575     if (CurTok.Tok == TOK_FCONST) {
576         E->FVal  = CurTok.FVal;
577         E->Flags = E_LOC_ABS | E_RTYPE_RVAL;
578         E->Type  = CurTok.Type;
579         NextToken ();
580         return;
581     }
582
583     /* Process parenthesized subexpression by calling the whole parser
584      * recursively.
585      */
586     if (CurTok.Tok == TOK_LPAREN) {
587         NextToken ();
588         hie0 (E);
589         ConsumeRParen ();
590         return;
591     }
592
593     /* If we run into an identifier in preprocessing mode, we assume that this
594      * is an undefined macro and replace it by a constant value of zero.
595      */
596     if (Preprocessing && CurTok.Tok == TOK_IDENT) {
597         NextToken ();
598         ED_MakeConstAbsInt (E, 0);
599         return;
600     }
601
602     /* All others may only be used if the expression evaluation is not called
603      * recursively by the preprocessor.
604      */
605     if (Preprocessing) {
606         /* Illegal expression in PP mode */
607         Error ("Preprocessor expression expected");
608         ED_MakeConstAbsInt (E, 1);
609         return;
610     }
611
612     switch (CurTok.Tok) {
613
614         case TOK_IDENT:
615             /* Identifier. Get a pointer to the symbol table entry */
616             Sym = E->Sym = FindSym (CurTok.Ident);
617
618             /* Is the symbol known? */
619             if (Sym) {
620
621                 /* We found the symbol - skip the name token */
622                 NextToken ();
623
624                 /* Check for illegal symbol types */
625                 CHECK ((Sym->Flags & SC_LABEL) != SC_LABEL);
626                 if (Sym->Flags & SC_TYPE) {
627                     /* Cannot use type symbols */
628                     Error ("Variable identifier expected");
629                     /* Assume an int type to make E valid */
630                     E->Flags = E_LOC_STACK | E_RTYPE_LVAL;
631                     E->Type  = type_int;
632                     return;
633                 }
634
635                 /* Mark the symbol as referenced */
636                 Sym->Flags |= SC_REF;
637
638                 /* The expression type is the symbol type */
639                 E->Type = Sym->Type;
640
641                 /* Check for legal symbol types */
642                 if ((Sym->Flags & SC_CONST) == SC_CONST) {
643                     /* Enum or some other numeric constant */
644                     E->Flags = E_LOC_ABS | E_RTYPE_RVAL;
645                     E->IVal = Sym->V.ConstVal;
646                 } else if ((Sym->Flags & SC_FUNC) == SC_FUNC) {
647                     /* Function */
648                     E->Flags = E_LOC_GLOBAL | E_RTYPE_LVAL;
649                     E->Name = (unsigned long) Sym->Name;
650                 } else if ((Sym->Flags & SC_AUTO) == SC_AUTO) {
651                     /* Local variable. If this is a parameter for a variadic
652                      * function, we have to add some address calculations, and the
653                      * address is not const.
654                      */
655                     if ((Sym->Flags & SC_PARAM) == SC_PARAM && F_IsVariadic (CurrentFunc)) {
656                         /* Variadic parameter */
657                         g_leavariadic (Sym->V.Offs - F_GetParamSize (CurrentFunc));
658                         E->Flags = E_LOC_EXPR | E_RTYPE_LVAL;
659                     } else {
660                         /* Normal parameter */
661                         E->Flags = E_LOC_STACK | E_RTYPE_LVAL;
662                         E->IVal  = Sym->V.Offs;
663                     }
664                 } else if ((Sym->Flags & SC_REGISTER) == SC_REGISTER) {
665                     /* Register variable, zero page based */
666                     E->Flags = E_LOC_REGISTER | E_RTYPE_LVAL;
667                     E->Name  = Sym->V.R.RegOffs;
668                 } else if ((Sym->Flags & SC_STATIC) == SC_STATIC) {
669                     /* Static variable */
670                     if (Sym->Flags & (SC_EXTERN | SC_STORAGE)) {
671                         E->Flags = E_LOC_GLOBAL | E_RTYPE_LVAL;
672                         E->Name = (unsigned long) Sym->Name;
673                     } else {
674                         E->Flags = E_LOC_STATIC | E_RTYPE_LVAL;
675                         E->Name = Sym->V.Label;
676                     }
677                 } else {
678                     /* Local static variable */
679                     E->Flags = E_LOC_STATIC | E_RTYPE_LVAL;
680                     E->Name  = Sym->V.Offs;
681                 }
682
683                 /* We've made all variables lvalues above. However, this is
684                  * not always correct: An array is actually the address of its
685                  * first element, which is a rvalue, and a function is a
686                  * rvalue, too, because we cannot store anything in a function.
687                  * So fix the flags depending on the type.
688                  */
689                 if (IsTypeArray (E->Type) || IsTypeFunc (E->Type)) {
690                     ED_MakeRVal (E);
691                 }
692
693             } else {
694
695                 /* We did not find the symbol. Remember the name, then skip it */
696                 ident Ident;
697                 strcpy (Ident, CurTok.Ident);
698                 NextToken ();
699
700                 /* IDENT is either an auto-declared function or an undefined variable. */
701                 if (CurTok.Tok == TOK_LPAREN) {
702                     /* C99 doesn't allow calls to undefined functions, so
703                      * generate an error and otherwise a warning. Declare a
704                      * function returning int. For that purpose, prepare a
705                      * function signature for a function having an empty param
706                      * list and returning int.
707                      */
708                     if (IS_Get (&Standard) >= STD_C99) {
709                         Error ("Call to undefined function `%s'", Ident);
710                     } else {
711                         Warning ("Call to undefined function `%s'", Ident);
712                     }
713                     Sym = AddGlobalSym (Ident, GetImplicitFuncType(), SC_EXTERN | SC_REF | SC_FUNC);
714                     E->Type  = Sym->Type;
715                     E->Flags = E_LOC_GLOBAL | E_RTYPE_RVAL;
716                     E->Name  = (unsigned long) Sym->Name;
717                 } else {
718                     /* Undeclared Variable */
719                     Sym = AddLocalSym (Ident, type_int, SC_AUTO | SC_REF, 0);
720                     E->Flags = E_LOC_STACK | E_RTYPE_LVAL;
721                     E->Type = type_int;
722                     Error ("Undefined symbol: `%s'", Ident);
723                 }
724
725             }
726             break;
727
728         case TOK_SCONST:
729             /* String literal */
730             E->Type  = GetCharArrayType (GetLiteralPoolOffs () - CurTok.IVal);
731             E->Flags = E_LOC_LITERAL | E_RTYPE_RVAL;
732             E->IVal  = CurTok.IVal;
733             E->Name  = LiteralPoolLabel;
734             NextToken ();
735             break;
736
737         case TOK_ASM:
738             /* ASM statement */
739             AsmStatement ();
740             E->Flags = E_LOC_EXPR | E_RTYPE_RVAL;
741             E->Type  = type_void;
742             break;
743
744         case TOK_A:
745             /* Register pseudo variable */
746             E->Type  = type_uchar;
747             E->Flags = E_LOC_PRIMARY | E_RTYPE_LVAL;
748             NextToken ();
749             break;
750
751         case TOK_AX:
752             /* Register pseudo variable */
753             E->Type  = type_uint;
754             E->Flags = E_LOC_PRIMARY | E_RTYPE_LVAL;
755             NextToken ();
756             break;
757
758         case TOK_EAX:
759             /* Register pseudo variable */
760             E->Type  = type_ulong;
761             E->Flags = E_LOC_PRIMARY | E_RTYPE_LVAL;
762             NextToken ();
763             break;
764
765         default:
766             /* Illegal primary. Be sure to skip the token to avoid endless
767              * error loops.
768              */
769             Error ("Expression expected");
770             NextToken ();
771             ED_MakeConstAbsInt (E, 1);
772             break;
773     }
774 }
775
776
777
778 static void ArrayRef (ExprDesc* Expr)
779 /* Handle an array reference. This function needs a rewrite. */
780 {
781     int         ConstBaseAddr;
782     ExprDesc    SubScript;
783     CodeMark    Mark1;
784     CodeMark    Mark2;
785     Type*       ElementType;
786     Type*       tptr1;
787
788
789     /* Skip the bracket */
790     NextToken ();
791
792     /* Get the type of left side */
793     tptr1 = Expr->Type;
794
795     /* We can apply a special treatment for arrays that have a const base
796      * address. This is true for most arrays and will produce a lot better
797      * code. Check if this is a const base address.
798      */
799     ConstBaseAddr = ED_IsRVal (Expr) &&
800                     (ED_IsLocConst (Expr) || ED_IsLocStack (Expr));
801
802     /* If we have a constant base, we delay the address fetch */
803     GetCodePos (&Mark1);
804     if (!ConstBaseAddr) {
805         /* Get a pointer to the array into the primary */
806         LoadExpr (CF_NONE, Expr);
807
808         /* Get the array pointer on stack. Do not push more than 16
809          * bit, even if this value is greater, since we cannot handle
810          * other than 16bit stuff when doing indexing.
811          */
812         GetCodePos (&Mark2);
813         g_push (CF_PTR, 0);
814     }
815
816     /* TOS now contains ptr to array elements. Get the subscript. */
817     ExprWithCheck (hie0, &SubScript);
818
819     /* Check the types of array and subscript. We can either have a
820      * pointer/array to the left, in which case the subscript must be of an
821      * integer type, or we have an integer to the left, in which case the
822      * subscript must be a pointer/array.
823      * Since we do the necessary checking here, we can rely later on the
824      * correct types.
825      */
826     if (IsClassPtr (Expr->Type)) {
827         if (!IsClassInt (SubScript.Type))  {
828             Error ("Array subscript is not an integer");
829             /* To avoid any compiler errors, make the expression a valid int */
830             ED_MakeConstAbsInt (&SubScript, 0);
831         }
832         ElementType = Indirect (Expr->Type);
833     } else if (IsClassInt (Expr->Type)) {
834         if (!IsClassPtr (SubScript.Type)) {
835             Error ("Subscripted value is neither array nor pointer");
836             /* To avoid compiler errors, make the subscript a char[] at
837              * address 0.
838              */
839             ED_MakeConstAbs (&SubScript, 0, GetCharArrayType (1));
840         }
841         ElementType = Indirect (SubScript.Type);
842     } else {
843         Error ("Cannot subscript");
844         /* To avoid compiler errors, fake both the array and the subscript, so
845          * we can just proceed.
846          */
847         ED_MakeConstAbs (Expr, 0, GetCharArrayType (1));
848         ED_MakeConstAbsInt (&SubScript, 0);
849         ElementType = Indirect (Expr->Type);
850     }
851
852     /* Check if the subscript is constant absolute value */
853     if (ED_IsConstAbs (&SubScript)) {
854
855         /* The array subscript is a numeric constant. If we had pushed the
856          * array base address onto the stack before, we can remove this value,
857          * since we can generate expression+offset.
858          */
859         if (!ConstBaseAddr) {
860             RemoveCode (&Mark2);
861         } else {
862             /* Get an array pointer into the primary */
863             LoadExpr (CF_NONE, Expr);
864         }
865
866         if (IsClassPtr (Expr->Type)) {
867
868             /* Lhs is pointer/array. Scale the subscript value according to
869              * the element size.
870              */
871             SubScript.IVal *= CheckedSizeOf (ElementType);
872
873             /* Remove the address load code */
874             RemoveCode (&Mark1);
875
876             /* In case of an array, we can adjust the offset of the expression
877              * already in Expr. If the base address was a constant, we can even
878              * remove the code that loaded the address into the primary.
879              */
880             if (IsTypeArray (Expr->Type)) {
881
882                 /* Adjust the offset */
883                 Expr->IVal += SubScript.IVal;
884
885             } else {
886
887                 /* It's a pointer, so we do have to load it into the primary
888                  * first (if it's not already there).
889                  */
890                 if (ConstBaseAddr || ED_IsLVal (Expr)) {
891                     LoadExpr (CF_NONE, Expr);
892                     ED_MakeRValExpr (Expr);
893                 }
894
895                 /* Use the offset */
896                 Expr->IVal = SubScript.IVal;
897             }
898
899         } else {
900
901             /* Scale the rhs value according to the element type */
902             g_scale (TypeOf (tptr1), CheckedSizeOf (ElementType));
903
904             /* Add the subscript. Since arrays are indexed by integers,
905              * we will ignore the true type of the subscript here and
906              * use always an int. #### Use offset but beware of LoadExpr!
907              */
908             g_inc (CF_INT | CF_CONST, SubScript.IVal);
909
910         }
911
912     } else {
913
914         /* Array subscript is not constant. Load it into the primary */
915         GetCodePos (&Mark2);
916         LoadExpr (CF_NONE, &SubScript);
917
918         /* Do scaling */
919         if (IsClassPtr (Expr->Type)) {
920
921             /* Indexing is based on unsigneds, so we will just use the integer
922              * portion of the index (which is in (e)ax, so there's no further
923              * action required).
924              */
925             g_scale (CF_INT, CheckedSizeOf (ElementType));
926
927         } else {
928
929             /* Get the int value on top. If we come here, we're sure, both
930              * values are 16 bit (the first one was truncated if necessary
931              * and the second one is a pointer). Note: If ConstBaseAddr is
932              * true, we don't have a value on stack, so to "swap" both, just
933              * push the subscript.
934              */
935             if (ConstBaseAddr) {
936                 g_push (CF_INT, 0);
937                 LoadExpr (CF_NONE, Expr);
938                 ConstBaseAddr = 0;
939             } else {
940                 g_swap (CF_INT);
941             }
942
943             /* Scale it */
944             g_scale (TypeOf (tptr1), CheckedSizeOf (ElementType));
945
946         }
947
948         /* The offset is now in the primary register. It we didn't have a
949          * constant base address for the lhs, the lhs address is already
950          * on stack, and we must add the offset. If the base address was
951          * constant, we call special functions to add the address to the
952          * offset value.
953          */
954         if (!ConstBaseAddr) {
955
956             /* The array base address is on stack and the subscript is in the
957              * primary. Add both.
958              */
959             g_add (CF_INT, 0);
960
961         } else {
962
963             /* The subscript is in the primary, and the array base address is
964              * in Expr. If the subscript has itself a constant address, it is
965              * often a better idea to reverse again the order of the
966              * evaluation. This will generate better code if the subscript is
967              * a byte sized variable. But beware: This is only possible if the
968              * subscript was not scaled, that is, if this was a byte array
969              * or pointer.
970              */
971             if ((ED_IsLocConst (&SubScript) || ED_IsLocStack (&SubScript)) &&
972                 CheckedSizeOf (ElementType) == SIZEOF_CHAR) {
973
974                 unsigned Flags;
975
976                 /* Reverse the order of evaluation */
977                 if (CheckedSizeOf (SubScript.Type) == SIZEOF_CHAR) {
978                     Flags = CF_CHAR;
979                 } else {
980                     Flags = CF_INT;
981                 }
982                 RemoveCode (&Mark2);
983
984                 /* Get a pointer to the array into the primary. */
985                 LoadExpr (CF_NONE, Expr);
986
987                 /* Add the variable */
988                 if (ED_IsLocStack (&SubScript)) {
989                     g_addlocal (Flags, SubScript.IVal);
990                 } else {
991                     Flags |= GlobalModeFlags (&SubScript);
992                     g_addstatic (Flags, SubScript.Name, SubScript.IVal);
993                 }
994             } else {
995
996                 if (ED_IsLocAbs (Expr)) {
997                     /* Constant numeric address. Just add it */
998                     g_inc (CF_INT, Expr->IVal);
999                 } else if (ED_IsLocStack (Expr)) {
1000                     /* Base address is a local variable address */
1001                     if (IsTypeArray (Expr->Type)) {
1002                         g_addaddr_local (CF_INT, Expr->IVal);
1003                     } else {
1004                         g_addlocal (CF_PTR, Expr->IVal);
1005                     }
1006                 } else {
1007                     /* Base address is a static variable address */
1008                     unsigned Flags = CF_INT | GlobalModeFlags (Expr);
1009                     if (ED_IsRVal (Expr)) {
1010                         /* Add the address of the location */
1011                         g_addaddr_static (Flags, Expr->Name, Expr->IVal);
1012                     } else {
1013                         /* Add the contents of the location */
1014                         g_addstatic (Flags, Expr->Name, Expr->IVal);
1015                     }
1016                 }
1017             }
1018
1019
1020         }
1021
1022         /* The result is an expression in the primary */
1023         ED_MakeRValExpr (Expr);
1024
1025     }
1026
1027     /* Result is of element type */
1028     Expr->Type = ElementType;
1029
1030     /* An array element is actually a variable. So the rules for variables
1031      * with respect to the reference type apply: If it's an array, it is
1032      * a rvalue, otherwise it's an lvalue. (A function would also be a rvalue,
1033      * but an array cannot contain functions).
1034      */
1035     if (IsTypeArray (Expr->Type)) {
1036         ED_MakeRVal (Expr);
1037     } else {
1038         ED_MakeLVal (Expr);
1039     }
1040
1041     /* Consume the closing bracket */
1042     ConsumeRBrack ();
1043 }
1044
1045
1046
1047 static void StructRef (ExprDesc* Expr)
1048 /* Process struct field after . or ->. */
1049 {
1050     ident Ident;
1051     SymEntry* Field;
1052
1053     /* Skip the token and check for an identifier */
1054     NextToken ();
1055     if (CurTok.Tok != TOK_IDENT) {
1056         Error ("Identifier expected");
1057         Expr->Type = type_int;
1058         return;
1059     }
1060
1061     /* Get the symbol table entry and check for a struct field */
1062     strcpy (Ident, CurTok.Ident);
1063     NextToken ();
1064     Field = FindStructField (Expr->Type, Ident);
1065     if (Field == 0) {
1066         Error ("Struct/union has no field named `%s'", Ident);
1067         Expr->Type = type_int;
1068         return;
1069     }
1070
1071     /* If we have a struct pointer that is an lvalue and not already in the
1072      * primary, load it now.
1073      */
1074     if (ED_IsLVal (Expr) && IsTypePtr (Expr->Type)) {
1075
1076         /* Load into the primary */
1077         LoadExpr (CF_NONE, Expr);
1078
1079         /* Make it an lvalue expression */
1080         ED_MakeLValExpr (Expr);
1081     }
1082
1083     /* Set the struct field offset */
1084     Expr->IVal += Field->V.Offs;
1085
1086     /* The type is now the type of the field */
1087     Expr->Type = Field->Type;
1088
1089     /* An struct member is actually a variable. So the rules for variables
1090      * with respect to the reference type apply: If it's an array, it is
1091      * a rvalue, otherwise it's an lvalue. (A function would also be a rvalue,
1092      * but a struct field cannot be a function).
1093      */
1094     if (IsTypeArray (Expr->Type)) {
1095         ED_MakeRVal (Expr);
1096     } else {
1097         ED_MakeLVal (Expr);
1098     }
1099 }
1100
1101
1102
1103 static void hie11 (ExprDesc *Expr)
1104 /* Handle compound types (structs and arrays) */
1105 {
1106     /* Name value used in invalid function calls */
1107     static const char IllegalFunc[] = "illegal_function_call";
1108
1109     /* Evaluate the lhs */
1110     Primary (Expr);
1111
1112     /* Check for a rhs */
1113     while (CurTok.Tok == TOK_LBRACK || CurTok.Tok == TOK_LPAREN ||
1114            CurTok.Tok == TOK_DOT    || CurTok.Tok == TOK_PTR_REF) {
1115
1116         switch (CurTok.Tok) {
1117
1118             case TOK_LBRACK:
1119                 /* Array reference */
1120                 ArrayRef (Expr);
1121                 break;
1122
1123             case TOK_LPAREN:
1124                 /* Function call. */
1125                 if (!IsTypeFunc (Expr->Type) && !IsTypeFuncPtr (Expr->Type)) {
1126                     /* Not a function */
1127                     Error ("Illegal function call");
1128                     /* Force the type to be a implicitly defined function, one
1129                      * returning an int and taking any number of arguments.
1130                      * Since we don't have a name, invent one.
1131                      */
1132                     ED_MakeConstAbs (Expr, 0, GetImplicitFuncType ());
1133                     Expr->Name = (long) IllegalFunc;
1134                 }
1135                 /* Call the function */
1136                 FunctionCall (Expr);
1137                 break;
1138
1139             case TOK_DOT:
1140                 if (!IsClassStruct (Expr->Type)) {
1141                     Error ("Struct expected");
1142                 }
1143                 StructRef (Expr);
1144                 break;
1145
1146             case TOK_PTR_REF:
1147                 /* If we have an array, convert it to pointer to first element */
1148                 if (IsTypeArray (Expr->Type)) {
1149                     Expr->Type = ArrayToPtr (Expr->Type);
1150                 }
1151                 if (!IsClassPtr (Expr->Type) || !IsClassStruct (Indirect (Expr->Type))) {
1152                     Error ("Struct pointer expected");
1153                 }
1154                 StructRef (Expr);
1155                 break;
1156
1157             default:
1158                 Internal ("Invalid token in hie11: %d", CurTok.Tok);
1159
1160         }
1161     }
1162 }
1163
1164
1165
1166 void Store (ExprDesc* Expr, const Type* StoreType)
1167 /* Store the primary register into the location denoted by Expr. If StoreType
1168  * is given, use this type when storing instead of Expr->Type. If StoreType
1169  * is NULL, use Expr->Type instead.
1170  */
1171 {
1172     unsigned Flags;
1173
1174     /* If StoreType was not given, use Expr->Type instead */
1175     if (StoreType == 0) {
1176         StoreType = Expr->Type;
1177     }
1178
1179     /* Prepare the code generator flags */
1180     Flags = TypeOf (StoreType) | GlobalModeFlags (Expr);
1181
1182     /* Do the store depending on the location */
1183     switch (ED_GetLoc (Expr)) {
1184
1185         case E_LOC_ABS:
1186             /* Absolute: numeric address or const */
1187             g_putstatic (Flags, Expr->IVal, 0);
1188             break;
1189
1190         case E_LOC_GLOBAL:
1191             /* Global variable */
1192             g_putstatic (Flags, Expr->Name, Expr->IVal);
1193             break;
1194
1195         case E_LOC_STATIC:
1196         case E_LOC_LITERAL:
1197             /* Static variable or literal in the literal pool */
1198             g_putstatic (Flags, Expr->Name, Expr->IVal);
1199             break;
1200
1201         case E_LOC_REGISTER:
1202             /* Register variable */
1203             g_putstatic (Flags, Expr->Name, Expr->IVal);
1204             break;
1205
1206         case E_LOC_STACK:
1207             /* Value on the stack */
1208             g_putlocal (Flags, Expr->IVal, 0);
1209             break;
1210
1211         case E_LOC_PRIMARY:
1212             /* The primary register (value is already there) */
1213             break;
1214
1215         case E_LOC_EXPR:
1216             /* An expression in the primary register */
1217             g_putind (Flags, Expr->IVal);
1218             break;
1219
1220         default:
1221             Internal ("Invalid location in Store(): 0x%04X", ED_GetLoc (Expr));
1222     }
1223
1224     /* Assume that each one of the stores will invalidate CC */
1225     ED_MarkAsUntested (Expr);
1226 }
1227
1228
1229
1230 static void PreInc (ExprDesc* Expr)
1231 /* Handle the preincrement operators */
1232 {
1233     unsigned Flags;
1234     unsigned long Val;
1235
1236     /* Skip the operator token */
1237     NextToken ();
1238
1239     /* Evaluate the expression and check that it is an lvalue */
1240     hie10 (Expr);
1241     if (!ED_IsLVal (Expr)) {
1242         Error ("Invalid lvalue");
1243         return;
1244     }
1245
1246     /* We cannot modify const values */
1247     if (IsQualConst (Expr->Type)) {
1248         Error ("Increment of read-only variable");
1249     }
1250
1251     /* Get the data type */
1252     Flags = TypeOf (Expr->Type) | GlobalModeFlags (Expr) | CF_FORCECHAR | CF_CONST;
1253
1254     /* Get the increment value in bytes */
1255     Val = IsTypePtr (Expr->Type)? CheckedPSizeOf (Expr->Type) : 1;
1256
1257     /* Check the location of the data */
1258     switch (ED_GetLoc (Expr)) {
1259
1260         case E_LOC_ABS:
1261             /* Absolute: numeric address or const */
1262             g_addeqstatic (Flags, Expr->IVal, 0, Val);
1263             break;
1264
1265         case E_LOC_GLOBAL:
1266             /* Global variable */
1267             g_addeqstatic (Flags, Expr->Name, Expr->IVal, Val);
1268             break;
1269
1270         case E_LOC_STATIC:
1271         case E_LOC_LITERAL:
1272             /* Static variable or literal in the literal pool */
1273             g_addeqstatic (Flags, Expr->Name, Expr->IVal, Val);
1274             break;
1275
1276         case E_LOC_REGISTER:
1277             /* Register variable */
1278             g_addeqstatic (Flags, Expr->Name, Expr->IVal, Val);
1279             break;
1280
1281         case E_LOC_STACK:
1282             /* Value on the stack */
1283             g_addeqlocal (Flags, Expr->IVal, Val);
1284             break;
1285
1286         case E_LOC_PRIMARY:
1287             /* The primary register */
1288             g_inc (Flags, Val);
1289             break;
1290
1291         case E_LOC_EXPR:
1292             /* An expression in the primary register */
1293             g_addeqind (Flags, Expr->IVal, Val);
1294             break;
1295
1296         default:
1297             Internal ("Invalid location in PreInc(): 0x%04X", ED_GetLoc (Expr));
1298     }
1299
1300     /* Result is an expression, no reference */
1301     ED_MakeRValExpr (Expr);
1302 }
1303
1304
1305
1306 static void PreDec (ExprDesc* Expr)
1307 /* Handle the predecrement operators */
1308 {
1309     unsigned Flags;
1310     unsigned long Val;
1311
1312     /* Skip the operator token */
1313     NextToken ();
1314
1315     /* Evaluate the expression and check that it is an lvalue */
1316     hie10 (Expr);
1317     if (!ED_IsLVal (Expr)) {
1318         Error ("Invalid lvalue");
1319         return;
1320     }
1321
1322     /* We cannot modify const values */
1323     if (IsQualConst (Expr->Type)) {
1324         Error ("Decrement of read-only variable");
1325     }
1326
1327     /* Get the data type */
1328     Flags = TypeOf (Expr->Type) | GlobalModeFlags (Expr) | CF_FORCECHAR | CF_CONST;
1329
1330     /* Get the increment value in bytes */
1331     Val = IsTypePtr (Expr->Type)? CheckedPSizeOf (Expr->Type) : 1;
1332
1333     /* Check the location of the data */
1334     switch (ED_GetLoc (Expr)) {
1335
1336         case E_LOC_ABS:
1337             /* Absolute: numeric address or const */
1338             g_subeqstatic (Flags, Expr->IVal, 0, Val);
1339             break;
1340
1341         case E_LOC_GLOBAL:
1342             /* Global variable */
1343             g_subeqstatic (Flags, Expr->Name, Expr->IVal, Val);
1344             break;
1345
1346         case E_LOC_STATIC:
1347         case E_LOC_LITERAL:
1348             /* Static variable or literal in the literal pool */
1349             g_subeqstatic (Flags, Expr->Name, Expr->IVal, Val);
1350             break;
1351
1352         case E_LOC_REGISTER:
1353             /* Register variable */
1354             g_subeqstatic (Flags, Expr->Name, Expr->IVal, Val);
1355             break;
1356
1357         case E_LOC_STACK:
1358             /* Value on the stack */
1359             g_subeqlocal (Flags, Expr->IVal, Val);
1360             break;
1361
1362         case E_LOC_PRIMARY:
1363             /* The primary register */
1364             g_inc (Flags, Val);
1365             break;
1366
1367         case E_LOC_EXPR:
1368             /* An expression in the primary register */
1369             g_subeqind (Flags, Expr->IVal, Val);
1370             break;
1371
1372         default:
1373             Internal ("Invalid location in PreDec(): 0x%04X", ED_GetLoc (Expr));
1374     }
1375
1376     /* Result is an expression, no reference */
1377     ED_MakeRValExpr (Expr);
1378 }
1379
1380
1381
1382 static void PostInc (ExprDesc* Expr)
1383 /* Handle the postincrement operator */
1384 {
1385     unsigned Flags;
1386
1387     NextToken ();
1388
1389     /* The expression to increment must be an lvalue */
1390     if (!ED_IsLVal (Expr)) {
1391         Error ("Invalid lvalue");
1392         return;
1393     }
1394
1395     /* We cannot modify const values */
1396     if (IsQualConst (Expr->Type)) {
1397         Error ("Increment of read-only variable");
1398     }
1399
1400     /* Get the data type */
1401     Flags = TypeOf (Expr->Type);
1402
1403     /* Push the address if needed */
1404     PushAddr (Expr);
1405
1406     /* Fetch the value and save it (since it's the result of the expression) */
1407     LoadExpr (CF_NONE, Expr);
1408     g_save (Flags | CF_FORCECHAR);
1409
1410     /* If we have a pointer expression, increment by the size of the type */
1411     if (IsTypePtr (Expr->Type)) {
1412         g_inc (Flags | CF_CONST | CF_FORCECHAR, CheckedSizeOf (Expr->Type + 1));
1413     } else {
1414         g_inc (Flags | CF_CONST | CF_FORCECHAR, 1);
1415     }
1416
1417     /* Store the result back */
1418     Store (Expr, 0);
1419
1420     /* Restore the original value in the primary register */
1421     g_restore (Flags | CF_FORCECHAR);
1422
1423     /* The result is always an expression, no reference */
1424     ED_MakeRValExpr (Expr);
1425 }
1426
1427
1428
1429 static void PostDec (ExprDesc* Expr)
1430 /* Handle the postdecrement operator */
1431 {
1432     unsigned Flags;
1433
1434     NextToken ();
1435
1436     /* The expression to increment must be an lvalue */
1437     if (!ED_IsLVal (Expr)) {
1438         Error ("Invalid lvalue");
1439         return;
1440     }
1441
1442     /* We cannot modify const values */
1443     if (IsQualConst (Expr->Type)) {
1444         Error ("Decrement of read-only variable");
1445     }
1446
1447     /* Get the data type */
1448     Flags = TypeOf (Expr->Type);
1449
1450     /* Push the address if needed */
1451     PushAddr (Expr);
1452
1453     /* Fetch the value and save it (since it's the result of the expression) */
1454     LoadExpr (CF_NONE, Expr);
1455     g_save (Flags | CF_FORCECHAR);
1456
1457     /* If we have a pointer expression, increment by the size of the type */
1458     if (IsTypePtr (Expr->Type)) {
1459         g_dec (Flags | CF_CONST | CF_FORCECHAR, CheckedSizeOf (Expr->Type + 1));
1460     } else {
1461         g_dec (Flags | CF_CONST | CF_FORCECHAR, 1);
1462     }
1463
1464     /* Store the result back */
1465     Store (Expr, 0);
1466
1467     /* Restore the original value in the primary register */
1468     g_restore (Flags | CF_FORCECHAR);
1469
1470     /* The result is always an expression, no reference */
1471     ED_MakeRValExpr (Expr);
1472 }
1473
1474
1475
1476 static void UnaryOp (ExprDesc* Expr)
1477 /* Handle unary -/+ and ~ */
1478 {
1479     unsigned Flags;
1480
1481     /* Remember the operator token and skip it */
1482     token_t Tok = CurTok.Tok;
1483     NextToken ();
1484
1485     /* Get the expression */
1486     hie10 (Expr);
1487
1488     /* We can only handle integer types */
1489     if (!IsClassInt (Expr->Type)) {
1490         Error ("Argument must have integer type");
1491         ED_MakeConstAbsInt (Expr, 1);
1492     }
1493
1494     /* Check for a constant expression */
1495     if (ED_IsConstAbs (Expr)) {
1496         /* Value is constant */
1497         switch (Tok) {
1498             case TOK_MINUS: Expr->IVal = -Expr->IVal;   break;
1499             case TOK_PLUS:                              break;
1500             case TOK_COMP:  Expr->IVal = ~Expr->IVal;   break;
1501             default:        Internal ("Unexpected token: %d", Tok);
1502         }
1503     } else {
1504         /* Value is not constant */
1505         LoadExpr (CF_NONE, Expr);
1506
1507         /* Get the type of the expression */
1508         Flags = TypeOf (Expr->Type);
1509
1510         /* Handle the operation */
1511         switch (Tok) {
1512             case TOK_MINUS: g_neg (Flags);  break;
1513             case TOK_PLUS:                  break;
1514             case TOK_COMP:  g_com (Flags);  break;
1515             default:        Internal ("Unexpected token: %d", Tok);
1516         }
1517
1518         /* The result is a rvalue in the primary */
1519         ED_MakeRValExpr (Expr);
1520     }
1521 }
1522
1523
1524
1525 void hie10 (ExprDesc* Expr)
1526 /* Handle ++, --, !, unary - etc. */
1527 {
1528     unsigned long Size;
1529
1530     switch (CurTok.Tok) {
1531
1532         case TOK_INC:
1533             PreInc (Expr);
1534             break;
1535
1536         case TOK_DEC:
1537             PreDec (Expr);
1538             break;
1539
1540         case TOK_PLUS:
1541         case TOK_MINUS:
1542         case TOK_COMP:
1543             UnaryOp (Expr);
1544             break;
1545
1546         case TOK_BOOL_NOT:
1547             NextToken ();
1548             if (evalexpr (CF_NONE, hie10, Expr) == 0) {
1549                 /* Constant expression */
1550                 Expr->IVal = !Expr->IVal;
1551             } else {
1552                 g_bneg (TypeOf (Expr->Type));
1553                 ED_MakeRValExpr (Expr);
1554                 ED_TestDone (Expr);             /* bneg will set cc */
1555             }
1556             break;
1557
1558         case TOK_STAR:
1559             NextToken ();
1560             ExprWithCheck (hie10, Expr);
1561             if (ED_IsLVal (Expr) || !(ED_IsLocConst (Expr) || ED_IsLocStack (Expr))) {
1562                 /* Not a const, load it into the primary and make it a
1563                  * calculated value.
1564                  */
1565                 LoadExpr (CF_NONE, Expr);
1566                 ED_MakeRValExpr (Expr);
1567             }
1568             /* If the expression is already a pointer to function, the
1569              * additional dereferencing operator must be ignored.
1570              */
1571             if (IsTypeFuncPtr (Expr->Type)) {
1572                 /* Expression not storable */
1573                 ED_MakeRVal (Expr);
1574             } else {
1575                 if (IsClassPtr (Expr->Type)) {
1576                     Expr->Type = Indirect (Expr->Type);
1577                 } else {
1578                     Error ("Illegal indirection");
1579                 }
1580                 /* The * operator yields an lvalue */
1581                 ED_MakeLVal (Expr);
1582             }
1583             break;
1584
1585         case TOK_AND:
1586             NextToken ();
1587             ExprWithCheck (hie10, Expr);
1588             /* The & operator may be applied to any lvalue, and it may be
1589              * applied to functions, even if they're no lvalues.
1590              */
1591             if (ED_IsRVal (Expr) && !IsTypeFunc (Expr->Type) && !IsTypeArray (Expr->Type)) {
1592                 Error ("Illegal address");
1593             } else {
1594                 Expr->Type = PointerTo (Expr->Type);
1595                 /* The & operator yields an rvalue */
1596                 ED_MakeRVal (Expr);
1597             }
1598             break;
1599
1600         case TOK_SIZEOF:
1601             NextToken ();
1602             if (TypeSpecAhead ()) {
1603                 Type T[MAXTYPELEN];
1604                 NextToken ();
1605                 Size = CheckedSizeOf (ParseType (T));
1606                 ConsumeRParen ();
1607             } else {
1608                 /* Remember the output queue pointer */
1609                 CodeMark Mark;
1610                 GetCodePos (&Mark);
1611                 hie10 (Expr);
1612                 Size = CheckedSizeOf (Expr->Type);
1613                 /* Remove any generated code */
1614                 RemoveCode (&Mark);
1615             }
1616             ED_MakeConstAbs (Expr, Size, type_size_t);
1617             ED_MarkAsUntested (Expr);
1618             break;
1619
1620         default:
1621             if (TypeSpecAhead ()) {
1622
1623                 /* A typecast */
1624                 TypeCast (Expr);
1625
1626             } else {
1627
1628                 /* An expression */
1629                 hie11 (Expr);
1630
1631                 /* Handle post increment */
1632                 switch (CurTok.Tok) {
1633                     case TOK_INC:   PostInc (Expr); break;
1634                     case TOK_DEC:   PostDec (Expr); break;
1635                     default:                        break;
1636                 }
1637
1638             }
1639             break;
1640     }
1641 }
1642
1643
1644
1645 static void hie_internal (const GenDesc* Ops,   /* List of generators */
1646                           ExprDesc* Expr,
1647                           void (*hienext) (ExprDesc*),
1648                           int* UsedGen)
1649 /* Helper function */
1650 {
1651     ExprDesc Expr2;
1652     CodeMark Mark1;
1653     CodeMark Mark2;
1654     const GenDesc* Gen;
1655     token_t Tok;                        /* The operator token */
1656     unsigned ltype, type;
1657     int rconst;                         /* Operand is a constant */
1658
1659
1660     hienext (Expr);
1661
1662     *UsedGen = 0;
1663     while ((Gen = FindGen (CurTok.Tok, Ops)) != 0) {
1664
1665         /* Tell the caller that we handled it's ops */
1666         *UsedGen = 1;
1667
1668         /* All operators that call this function expect an int on the lhs */
1669         if (!IsClassInt (Expr->Type)) {
1670             Error ("Integer expression expected");
1671             /* To avoid further errors, make Expr a valid int expression */
1672             ED_MakeConstAbsInt (Expr, 1);
1673         }
1674
1675         /* Remember the operator token, then skip it */
1676         Tok = CurTok.Tok;
1677         NextToken ();
1678
1679         /* Get the lhs on stack */
1680         GetCodePos (&Mark1);
1681         ltype = TypeOf (Expr->Type);
1682         if (ED_IsConstAbs (Expr)) {
1683             /* Constant value */
1684             GetCodePos (&Mark2);
1685             g_push (ltype | CF_CONST, Expr->IVal);
1686         } else {
1687             /* Value not constant */
1688             LoadExpr (CF_NONE, Expr);
1689             GetCodePos (&Mark2);
1690             g_push (ltype, 0);
1691         }
1692
1693         /* Get the right hand side */
1694         rconst = (evalexpr (CF_NONE, hienext, &Expr2) == 0);
1695
1696         /* Check the type of the rhs */
1697         if (!IsClassInt (Expr2.Type)) {
1698             Error ("Integer expression expected");
1699         }
1700
1701         /* Check for const operands */
1702         if (ED_IsConstAbs (Expr) && rconst) {
1703
1704             /* Both operands are constant, remove the generated code */
1705             RemoveCode (&Mark1);
1706
1707             /* Get the type of the result */
1708             Expr->Type = promoteint (Expr->Type, Expr2.Type);
1709
1710             /* Handle the op differently for signed and unsigned types */
1711             if (IsSignSigned (Expr->Type)) {
1712
1713                 /* Evaluate the result for signed operands */
1714                 signed long Val1 = Expr->IVal;
1715                 signed long Val2 = Expr2.IVal;
1716                 switch (Tok) {
1717                     case TOK_OR:
1718                         Expr->IVal = (Val1 | Val2);
1719                         break;
1720                     case TOK_XOR:
1721                         Expr->IVal = (Val1 ^ Val2);
1722                         break;
1723                     case TOK_AND:
1724                         Expr->IVal = (Val1 & Val2);
1725                         break;
1726                     case TOK_STAR:
1727                         Expr->IVal = (Val1 * Val2);
1728                         break;
1729                     case TOK_DIV:
1730                         if (Val2 == 0) {
1731                             Error ("Division by zero");
1732                             Expr->IVal = 0x7FFFFFFF;
1733                         } else {
1734                             Expr->IVal = (Val1 / Val2);
1735                         }
1736                         break;
1737                     case TOK_MOD:
1738                         if (Val2 == 0) {
1739                             Error ("Modulo operation with zero");
1740                             Expr->IVal = 0;
1741                         } else {
1742                             Expr->IVal = (Val1 % Val2);
1743                         }
1744                         break;
1745                     default:
1746                         Internal ("hie_internal: got token 0x%X\n", Tok);
1747                 }
1748             } else {
1749
1750                 /* Evaluate the result for unsigned operands */
1751                 unsigned long Val1 = Expr->IVal;
1752                 unsigned long Val2 = Expr2.IVal;
1753                 switch (Tok) {
1754                     case TOK_OR:
1755                         Expr->IVal = (Val1 | Val2);
1756                         break;
1757                     case TOK_XOR:
1758                         Expr->IVal = (Val1 ^ Val2);
1759                         break;
1760                     case TOK_AND:
1761                         Expr->IVal = (Val1 & Val2);
1762                         break;
1763                     case TOK_STAR:
1764                         Expr->IVal = (Val1 * Val2);
1765                         break;
1766                     case TOK_DIV:
1767                         if (Val2 == 0) {
1768                             Error ("Division by zero");
1769                             Expr->IVal = 0xFFFFFFFF;
1770                         } else {
1771                             Expr->IVal = (Val1 / Val2);
1772                         }
1773                         break;
1774                     case TOK_MOD:
1775                         if (Val2 == 0) {
1776                             Error ("Modulo operation with zero");
1777                             Expr->IVal = 0;
1778                         } else {
1779                             Expr->IVal = (Val1 % Val2);
1780                         }
1781                         break;
1782                     default:
1783                         Internal ("hie_internal: got token 0x%X\n", Tok);
1784                 }
1785             }
1786
1787         } else {
1788
1789             /* If the right hand side is constant, and the generator function
1790              * expects the lhs in the primary, remove the push of the primary
1791              * now.
1792              */
1793             unsigned rtype = TypeOf (Expr2.Type);
1794             type = 0;
1795             if (rconst) {
1796                 /* Second value is constant - check for div */
1797                 type |= CF_CONST;
1798                 rtype |= CF_CONST;
1799                 if (Tok == TOK_DIV && Expr2.IVal == 0) {
1800                     Error ("Division by zero");
1801                 } else if (Tok == TOK_MOD && Expr2.IVal == 0) {
1802                     Error ("Modulo operation with zero");
1803                 }
1804                 if ((Gen->Flags & GEN_NOPUSH) != 0) {
1805                     RemoveCode (&Mark2);
1806                     ltype |= CF_REG;    /* Value is in register */
1807                 }
1808             }
1809
1810             /* Determine the type of the operation result. */
1811             type |= g_typeadjust (ltype, rtype);
1812             Expr->Type = promoteint (Expr->Type, Expr2.Type);
1813
1814             /* Generate code */
1815             Gen->Func (type, Expr2.IVal);
1816
1817             /* We have a rvalue in the primary now */
1818             ED_MakeRValExpr (Expr);
1819         }
1820     }
1821 }
1822
1823
1824
1825 static void hie_compare (const GenDesc* Ops,    /* List of generators */
1826                          ExprDesc* Expr,
1827                          void (*hienext) (ExprDesc*))
1828 /* Helper function for the compare operators */
1829 {
1830     ExprDesc Expr2;
1831     CodeMark Mark1;
1832     CodeMark Mark2;
1833     const GenDesc* Gen;
1834     token_t Tok;                        /* The operator token */
1835     unsigned ltype;
1836     int rconst;                         /* Operand is a constant */
1837
1838
1839     hienext (Expr);
1840
1841     while ((Gen = FindGen (CurTok.Tok, Ops)) != 0) {
1842
1843         /* Remember the operator token, then skip it */
1844         Tok = CurTok.Tok;
1845         NextToken ();
1846
1847         /* Get the lhs on stack */
1848         GetCodePos (&Mark1);
1849         ltype = TypeOf (Expr->Type);
1850         if (ED_IsConstAbs (Expr)) {
1851             /* Constant value */
1852             GetCodePos (&Mark2);
1853             g_push (ltype | CF_CONST, Expr->IVal);
1854         } else {
1855             /* Value not constant */
1856             LoadExpr (CF_NONE, Expr);
1857             GetCodePos (&Mark2);
1858             g_push (ltype, 0);
1859         }
1860
1861         /* Get the right hand side */
1862         rconst = (evalexpr (CF_NONE, hienext, &Expr2) == 0);
1863
1864         /* Make sure, the types are compatible */
1865         if (IsClassInt (Expr->Type)) {
1866             if (!IsClassInt (Expr2.Type) && !(IsClassPtr(Expr2.Type) && ED_IsNullPtr(Expr))) {
1867                 Error ("Incompatible types");
1868             }
1869         } else if (IsClassPtr (Expr->Type)) {
1870             if (IsClassPtr (Expr2.Type)) {
1871                 /* Both pointers are allowed in comparison if they point to
1872                  * the same type, or if one of them is a void pointer.
1873                  */
1874                 Type* left  = Indirect (Expr->Type);
1875                 Type* right = Indirect (Expr2.Type);
1876                 if (TypeCmp (left, right) < TC_EQUAL && left->C != T_VOID && right->C != T_VOID) {
1877                     /* Incomatible pointers */
1878                     Error ("Incompatible types");
1879                 }
1880             } else if (!ED_IsNullPtr (&Expr2)) {
1881                 Error ("Incompatible types");
1882             }
1883         }
1884
1885         /* Check for const operands */
1886         if (ED_IsConstAbs (Expr) && rconst) {
1887
1888             Warning ("Result of comparison is constant");
1889
1890             /* Both operands are constant, remove the generated code */
1891             RemoveCode (&Mark1);
1892
1893             /* Determine if this is a signed or unsigned compare */
1894             if (IsClassInt (Expr->Type) && IsSignSigned (Expr->Type) &&
1895                 IsClassInt (Expr2.Type) && IsSignSigned (Expr2.Type)) {
1896
1897                 /* Evaluate the result for signed operands */
1898                 signed long Val1 = Expr->IVal;
1899                 signed long Val2 = Expr2.IVal;
1900                 switch (Tok) {
1901                     case TOK_EQ: Expr->IVal = (Val1 == Val2);   break;
1902                     case TOK_NE: Expr->IVal = (Val1 != Val2);   break;
1903                     case TOK_LT: Expr->IVal = (Val1 < Val2);    break;
1904                     case TOK_LE: Expr->IVal = (Val1 <= Val2);   break;
1905                     case TOK_GE: Expr->IVal = (Val1 >= Val2);   break;
1906                     case TOK_GT: Expr->IVal = (Val1 > Val2);    break;
1907                     default:     Internal ("hie_compare: got token 0x%X\n", Tok);
1908                 }
1909
1910             } else {
1911
1912                 /* Evaluate the result for unsigned operands */
1913                 unsigned long Val1 = Expr->IVal;
1914                 unsigned long Val2 = Expr2.IVal;
1915                 switch (Tok) {
1916                     case TOK_EQ: Expr->IVal = (Val1 == Val2);   break;
1917                     case TOK_NE: Expr->IVal = (Val1 != Val2);   break;
1918                     case TOK_LT: Expr->IVal = (Val1 < Val2);    break;
1919                     case TOK_LE: Expr->IVal = (Val1 <= Val2);   break;
1920                     case TOK_GE: Expr->IVal = (Val1 >= Val2);   break;
1921                     case TOK_GT: Expr->IVal = (Val1 > Val2);    break;
1922                     default:     Internal ("hie_compare: got token 0x%X\n", Tok);
1923                 }
1924             }
1925
1926         } else {
1927
1928             /* If the right hand side is constant, and the generator function
1929              * expects the lhs in the primary, remove the push of the primary
1930              * now.
1931              */
1932             unsigned flags = 0;
1933             if (rconst) {
1934                 flags |= CF_CONST;
1935                 if ((Gen->Flags & GEN_NOPUSH) != 0) {
1936                     RemoveCode (&Mark2);
1937                     ltype |= CF_REG;    /* Value is in register */
1938                 }
1939             }
1940
1941             /* Determine the type of the operation result. If the left
1942              * operand is of type char and the right is a constant, or
1943              * if both operands are of type char, we will encode the
1944              * operation as char operation. Otherwise the default
1945              * promotions are used.
1946              */
1947             if (IsTypeChar (Expr->Type) && (IsTypeChar (Expr2.Type) || rconst)) {
1948                 flags |= CF_CHAR;
1949                 if (IsSignUnsigned (Expr->Type) || IsSignUnsigned (Expr2.Type)) {
1950                     flags |= CF_UNSIGNED;
1951                 }
1952                 if (rconst) {
1953                     flags |= CF_FORCECHAR;
1954                 }
1955             } else {
1956                 unsigned rtype = TypeOf (Expr2.Type) | (flags & CF_CONST);
1957                 flags |= g_typeadjust (ltype, rtype);
1958             }
1959
1960             /* Generate code */
1961             Gen->Func (flags, Expr2.IVal);
1962
1963             /* The result is an rvalue in the primary */
1964             ED_MakeRValExpr (Expr);
1965         }
1966
1967         /* Result type is always int */
1968         Expr->Type = type_int;
1969
1970         /* Condition codes are set */
1971         ED_TestDone (Expr);
1972     }
1973 }
1974
1975
1976
1977 static void hie9 (ExprDesc *Expr)
1978 /* Process * and / operators. */
1979 {
1980     static const GenDesc hie9_ops[] = {
1981         { TOK_STAR,     GEN_NOPUSH,     g_mul   },
1982         { TOK_DIV,      GEN_NOPUSH,     g_div   },
1983         { TOK_MOD,      GEN_NOPUSH,     g_mod   },
1984         { TOK_INVALID,  0,              0       }
1985     };
1986     int UsedGen;
1987
1988     hie_internal (hie9_ops, Expr, hie10, &UsedGen);
1989 }
1990
1991
1992
1993 static void parseadd (ExprDesc* Expr)
1994 /* Parse an expression with the binary plus operator. Expr contains the
1995  * unprocessed left hand side of the expression and will contain the
1996  * result of the expression on return.
1997  */
1998 {
1999     ExprDesc Expr2;
2000     unsigned flags;             /* Operation flags */
2001     CodeMark Mark;              /* Remember code position */
2002     Type* lhst;                 /* Type of left hand side */
2003     Type* rhst;                 /* Type of right hand side */
2004
2005
2006     /* Skip the PLUS token */
2007     NextToken ();
2008
2009     /* Get the left hand side type, initialize operation flags */
2010     lhst = Expr->Type;
2011     flags = 0;
2012
2013     /* Check for constness on both sides */
2014     if (ED_IsConst (Expr)) {
2015
2016         /* The left hand side is a constant of some sort. Good. Get rhs */
2017         hie9 (&Expr2);
2018         if (ED_IsConstAbs (&Expr2)) {
2019
2020             /* Right hand side is a constant numeric value. Get the rhs type */
2021             rhst = Expr2.Type;
2022
2023             /* Both expressions are constants. Check for pointer arithmetic */
2024             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2025                 /* Left is pointer, right is int, must scale rhs */
2026                 Expr->IVal += Expr2.IVal * CheckedPSizeOf (lhst);
2027                 /* Result type is a pointer */
2028             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2029                 /* Left is int, right is pointer, must scale lhs */
2030                 Expr->IVal = Expr->IVal * CheckedPSizeOf (rhst) + Expr2.IVal;
2031                 /* Result type is a pointer */
2032                 Expr->Type = Expr2.Type;
2033             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2034                 /* Integer addition */
2035                 Expr->IVal += Expr2.IVal;
2036                 typeadjust (Expr, &Expr2, 1);
2037             } else {
2038                 /* OOPS */
2039                 Error ("Invalid operands for binary operator `+'");
2040             }
2041
2042         } else {
2043
2044             /* lhs is a constant and rhs is not constant. Load rhs into
2045              * the primary.
2046              */
2047             LoadExpr (CF_NONE, &Expr2);
2048
2049             /* Beware: The check above (for lhs) lets not only pass numeric
2050              * constants, but also constant addresses (labels), maybe even
2051              * with an offset. We have to check for that here.
2052              */
2053
2054             /* First, get the rhs type. */
2055             rhst = Expr2.Type;
2056
2057             /* Setup flags */
2058             if (ED_IsLocAbs (Expr)) {
2059                 /* A numerical constant */
2060                 flags |= CF_CONST;
2061             } else {
2062                 /* Constant address label */
2063                 flags |= GlobalModeFlags (Expr) | CF_CONSTADDR;
2064             }
2065
2066             /* Check for pointer arithmetic */
2067             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2068                 /* Left is pointer, right is int, must scale rhs */
2069                 g_scale (CF_INT, CheckedPSizeOf (lhst));
2070                 /* Operate on pointers, result type is a pointer */
2071                 flags |= CF_PTR;
2072                 /* Generate the code for the add */
2073                 if (ED_GetLoc (Expr) == E_LOC_ABS) {
2074                     /* Numeric constant */
2075                     g_inc (flags, Expr->IVal);
2076                 } else {
2077                     /* Constant address */
2078                     g_addaddr_static (flags, Expr->Name, Expr->IVal);
2079                 }
2080             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2081
2082                 /* Left is int, right is pointer, must scale lhs. */
2083                 unsigned ScaleFactor = CheckedPSizeOf (rhst);
2084
2085                 /* Operate on pointers, result type is a pointer */
2086                 flags |= CF_PTR;
2087                 Expr->Type = Expr2.Type;
2088
2089                 /* Since we do already have rhs in the primary, if lhs is
2090                  * not a numeric constant, and the scale factor is not one
2091                  * (no scaling), we must take the long way over the stack.
2092                  */
2093                 if (ED_IsLocAbs (Expr)) {
2094                     /* Numeric constant, scale lhs */
2095                     Expr->IVal *= ScaleFactor;
2096                     /* Generate the code for the add */
2097                     g_inc (flags, Expr->IVal);
2098                 } else if (ScaleFactor == 1) {
2099                     /* Constant address but no need to scale */
2100                     g_addaddr_static (flags, Expr->Name, Expr->IVal);
2101                 } else {
2102                     /* Constant address that must be scaled */
2103                     g_push (TypeOf (Expr2.Type), 0);    /* rhs --> stack */
2104                     g_getimmed (flags, Expr->Name, Expr->IVal);
2105                     g_scale (CF_PTR, ScaleFactor);
2106                     g_add (CF_PTR, 0);
2107                 }
2108             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2109                 /* Integer addition */
2110                 flags |= typeadjust (Expr, &Expr2, 1);
2111                 /* Generate the code for the add */
2112                 if (ED_IsLocAbs (Expr)) {
2113                     /* Numeric constant */
2114                     g_inc (flags, Expr->IVal);
2115                 } else {
2116                     /* Constant address */
2117                     g_addaddr_static (flags, Expr->Name, Expr->IVal);
2118                 }
2119             } else {
2120                 /* OOPS */
2121                 Error ("Invalid operands for binary operator `+'");
2122                 flags = CF_INT;
2123             }
2124
2125             /* Result is a rvalue in primary register */
2126             ED_MakeRValExpr (Expr);
2127         }
2128
2129     } else {
2130
2131         /* Left hand side is not constant. Get the value onto the stack. */
2132         LoadExpr (CF_NONE, Expr);              /* --> primary register */
2133         GetCodePos (&Mark);
2134         g_push (TypeOf (Expr->Type), 0);        /* --> stack */
2135
2136         /* Evaluate the rhs */
2137         if (evalexpr (CF_NONE, hie9, &Expr2) == 0) {
2138
2139             /* Right hand side is a constant. Get the rhs type */
2140             rhst = Expr2.Type;
2141
2142             /* Remove pushed value from stack */
2143             RemoveCode (&Mark);
2144
2145             /* Check for pointer arithmetic */
2146             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2147                 /* Left is pointer, right is int, must scale rhs */
2148                 Expr2.IVal *= CheckedPSizeOf (lhst);
2149                 /* Operate on pointers, result type is a pointer */
2150                 flags = CF_PTR;
2151             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2152                 /* Left is int, right is pointer, must scale lhs (ptr only) */
2153                 g_scale (CF_INT | CF_CONST, CheckedPSizeOf (rhst));
2154                 /* Operate on pointers, result type is a pointer */
2155                 flags = CF_PTR;
2156                 Expr->Type = Expr2.Type;
2157             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2158                 /* Integer addition */
2159                 flags = typeadjust (Expr, &Expr2, 1);
2160             } else {
2161                 /* OOPS */
2162                 Error ("Invalid operands for binary operator `+'");
2163                 flags = CF_INT;
2164             }
2165
2166             /* Generate code for the add */
2167             g_inc (flags | CF_CONST, Expr2.IVal);
2168
2169         } else {
2170
2171             /* lhs and rhs are not constant. Get the rhs type. */
2172             rhst = Expr2.Type;
2173
2174             /* Check for pointer arithmetic */
2175             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2176                 /* Left is pointer, right is int, must scale rhs */
2177                 g_scale (CF_INT, CheckedPSizeOf (lhst));
2178                 /* Operate on pointers, result type is a pointer */
2179                 flags = CF_PTR;
2180             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2181                 /* Left is int, right is pointer, must scale lhs */
2182                 g_tosint (TypeOf (rhst));       /* Make sure, TOS is int */
2183                 g_swap (CF_INT);                /* Swap TOS and primary */
2184                 g_scale (CF_INT, CheckedPSizeOf (rhst));
2185                 /* Operate on pointers, result type is a pointer */
2186                 flags = CF_PTR;
2187                 Expr->Type = Expr2.Type;
2188             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2189                 /* Integer addition. Note: Result is never constant.
2190                  * Problem here is that typeadjust does not know if the
2191                  * variable is an rvalue or lvalue, so if both operands
2192                  * are dereferenced constant numeric addresses, typeadjust
2193                  * thinks the operation works on constants. Removing
2194                  * CF_CONST here means handling the symptoms, however, the
2195                  * whole parser is such a mess that I fear to break anything
2196                  * when trying to apply another solution.
2197                  */
2198                 flags = typeadjust (Expr, &Expr2, 0) & ~CF_CONST;
2199             } else {
2200                 /* OOPS */
2201                 Error ("Invalid operands for binary operator `+'");
2202                 flags = CF_INT;
2203             }
2204
2205             /* Generate code for the add */
2206             g_add (flags, 0);
2207
2208         }
2209
2210         /* Result is a rvalue in primary register */
2211         ED_MakeRValExpr (Expr);
2212     }
2213
2214     /* Condition codes not set */
2215     ED_MarkAsUntested (Expr);
2216
2217 }
2218
2219
2220
2221 static void parsesub (ExprDesc* Expr)
2222 /* Parse an expression with the binary minus operator. Expr contains the
2223  * unprocessed left hand side of the expression and will contain the
2224  * result of the expression on return.
2225  */
2226 {
2227     ExprDesc Expr2;
2228     unsigned flags;             /* Operation flags */
2229     Type* lhst;                 /* Type of left hand side */
2230     Type* rhst;                 /* Type of right hand side */
2231     CodeMark Mark1;             /* Save position of output queue */
2232     CodeMark Mark2;             /* Another position in the queue */
2233     int rscale;                 /* Scale factor for the result */
2234
2235
2236     /* Skip the MINUS token */
2237     NextToken ();
2238
2239     /* Get the left hand side type, initialize operation flags */
2240     lhst = Expr->Type;
2241     rscale = 1;                 /* Scale by 1, that is, don't scale */
2242
2243     /* Remember the output queue position, then bring the value onto the stack */
2244     GetCodePos (&Mark1);
2245     LoadExpr (CF_NONE, Expr);  /* --> primary register */
2246     GetCodePos (&Mark2);
2247     g_push (TypeOf (lhst), 0);  /* --> stack */
2248
2249     /* Parse the right hand side */
2250     if (evalexpr (CF_NONE, hie9, &Expr2) == 0) {
2251
2252         /* The right hand side is constant. Get the rhs type. */
2253         rhst = Expr2.Type;
2254
2255         /* Check left hand side */
2256         if (ED_IsConstAbs (Expr)) {
2257
2258             /* Both sides are constant, remove generated code */
2259             RemoveCode (&Mark1);
2260
2261             /* Check for pointer arithmetic */
2262             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2263                 /* Left is pointer, right is int, must scale rhs */
2264                 Expr->IVal -= Expr2.IVal * CheckedPSizeOf (lhst);
2265                 /* Operate on pointers, result type is a pointer */
2266             } else if (IsClassPtr (lhst) && IsClassPtr (rhst)) {
2267                 /* Left is pointer, right is pointer, must scale result */
2268                 if (TypeCmp (Indirect (lhst), Indirect (rhst)) < TC_QUAL_DIFF) {
2269                     Error ("Incompatible pointer types");
2270                 } else {
2271                     Expr->IVal = (Expr->IVal - Expr2.IVal) /
2272                                       CheckedPSizeOf (lhst);
2273                 }
2274                 /* Operate on pointers, result type is an integer */
2275                 Expr->Type = type_int;
2276             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2277                 /* Integer subtraction */
2278                 typeadjust (Expr, &Expr2, 1);
2279                 Expr->IVal -= Expr2.IVal;
2280             } else {
2281                 /* OOPS */
2282                 Error ("Invalid operands for binary operator `-'");
2283             }
2284
2285             /* Result is constant, condition codes not set */
2286             ED_MarkAsUntested (Expr);
2287
2288         } else {
2289
2290             /* Left hand side is not constant, right hand side is.
2291              * Remove pushed value from stack.
2292              */
2293             RemoveCode (&Mark2);
2294
2295             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2296                 /* Left is pointer, right is int, must scale rhs */
2297                 Expr2.IVal *= CheckedPSizeOf (lhst);
2298                 /* Operate on pointers, result type is a pointer */
2299                 flags = CF_PTR;
2300             } else if (IsClassPtr (lhst) && IsClassPtr (rhst)) {
2301                 /* Left is pointer, right is pointer, must scale result */
2302                 if (TypeCmp (Indirect (lhst), Indirect (rhst)) < TC_QUAL_DIFF) {
2303                     Error ("Incompatible pointer types");
2304                 } else {
2305                     rscale = CheckedPSizeOf (lhst);
2306                 }
2307                 /* Operate on pointers, result type is an integer */
2308                 flags = CF_PTR;
2309                 Expr->Type = type_int;
2310             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2311                 /* Integer subtraction */
2312                 flags = typeadjust (Expr, &Expr2, 1);
2313             } else {
2314                 /* OOPS */
2315                 Error ("Invalid operands for binary operator `-'");
2316                 flags = CF_INT;
2317             }
2318
2319             /* Do the subtraction */
2320             g_dec (flags | CF_CONST, Expr2.IVal);
2321
2322             /* If this was a pointer subtraction, we must scale the result */
2323             if (rscale != 1) {
2324                 g_scale (flags, -rscale);
2325             }
2326
2327             /* Result is a rvalue in the primary register */
2328             ED_MakeRValExpr (Expr);
2329             ED_MarkAsUntested (Expr);
2330
2331         }
2332
2333     } else {
2334
2335         /* Right hand side is not constant. Get the rhs type. */
2336         rhst = Expr2.Type;
2337
2338         /* Check for pointer arithmetic */
2339         if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2340             /* Left is pointer, right is int, must scale rhs */
2341             g_scale (CF_INT, CheckedPSizeOf (lhst));
2342             /* Operate on pointers, result type is a pointer */
2343             flags = CF_PTR;
2344         } else if (IsClassPtr (lhst) && IsClassPtr (rhst)) {
2345             /* Left is pointer, right is pointer, must scale result */
2346             if (TypeCmp (Indirect (lhst), Indirect (rhst)) < TC_QUAL_DIFF) {
2347                 Error ("Incompatible pointer types");
2348             } else {
2349                 rscale = CheckedPSizeOf (lhst);
2350             }
2351             /* Operate on pointers, result type is an integer */
2352             flags = CF_PTR;
2353             Expr->Type = type_int;
2354         } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2355             /* Integer subtraction. If the left hand side descriptor says that
2356              * the lhs is const, we have to remove this mark, since this is no
2357              * longer true, lhs is on stack instead.
2358              */
2359             if (ED_IsLocAbs (Expr)) {
2360                 ED_MakeRValExpr (Expr);
2361             }
2362             /* Adjust operand types */
2363             flags = typeadjust (Expr, &Expr2, 0);
2364         } else {
2365             /* OOPS */
2366             Error ("Invalid operands for binary operator `-'");
2367             flags = CF_INT;
2368         }
2369
2370         /* Generate code for the sub (the & is a hack here) */
2371         g_sub (flags & ~CF_CONST, 0);
2372
2373         /* If this was a pointer subtraction, we must scale the result */
2374         if (rscale != 1) {
2375             g_scale (flags, -rscale);
2376         }
2377
2378         /* Result is a rvalue in the primary register */
2379         ED_MakeRValExpr (Expr);
2380         ED_MarkAsUntested (Expr);
2381     }
2382 }
2383
2384
2385
2386 void hie8 (ExprDesc* Expr)
2387 /* Process + and - binary operators. */
2388 {
2389     hie9 (Expr);
2390     while (CurTok.Tok == TOK_PLUS || CurTok.Tok == TOK_MINUS) {
2391         if (CurTok.Tok == TOK_PLUS) {
2392             parseadd (Expr);
2393         } else {
2394             parsesub (Expr);
2395         }
2396     }
2397 }
2398
2399
2400
2401 static void hie6 (ExprDesc* Expr)
2402 /* Handle greater-than type comparators */
2403 {
2404     static const GenDesc hie6_ops [] = {
2405         { TOK_LT,       GEN_NOPUSH,     g_lt    },
2406         { TOK_LE,       GEN_NOPUSH,     g_le    },
2407         { TOK_GE,       GEN_NOPUSH,     g_ge    },
2408         { TOK_GT,       GEN_NOPUSH,     g_gt    },
2409         { TOK_INVALID,  0,              0       }
2410     };
2411     hie_compare (hie6_ops, Expr, ShiftExpr);
2412 }
2413
2414
2415
2416 static void hie5 (ExprDesc* Expr)
2417 /* Handle == and != */
2418 {
2419     static const GenDesc hie5_ops[] = {
2420         { TOK_EQ,       GEN_NOPUSH,     g_eq    },
2421         { TOK_NE,       GEN_NOPUSH,     g_ne    },
2422         { TOK_INVALID,  0,              0       }
2423     };
2424     hie_compare (hie5_ops, Expr, hie6);
2425 }
2426
2427
2428
2429 static void hie4 (ExprDesc* Expr)
2430 /* Handle & (bitwise and) */
2431 {
2432     static const GenDesc hie4_ops[] = {
2433         { TOK_AND,      GEN_NOPUSH,     g_and   },
2434         { TOK_INVALID,  0,              0       }
2435     };
2436     int UsedGen;
2437
2438     hie_internal (hie4_ops, Expr, hie5, &UsedGen);
2439 }
2440
2441
2442
2443 static void hie3 (ExprDesc* Expr)
2444 /* Handle ^ (bitwise exclusive or) */
2445 {
2446     static const GenDesc hie3_ops[] = {
2447         { TOK_XOR,      GEN_NOPUSH,     g_xor   },
2448         { TOK_INVALID,  0,              0       }
2449     };
2450     int UsedGen;
2451
2452     hie_internal (hie3_ops, Expr, hie4, &UsedGen);
2453 }
2454
2455
2456
2457 static void hie2 (ExprDesc* Expr)
2458 /* Handle | (bitwise or) */
2459 {
2460     static const GenDesc hie2_ops[] = {
2461         { TOK_OR,       GEN_NOPUSH,     g_or    },
2462         { TOK_INVALID,  0,              0       }
2463     };
2464     int UsedGen;
2465
2466     hie_internal (hie2_ops, Expr, hie3, &UsedGen);
2467 }
2468
2469
2470
2471 static void hieAndPP (ExprDesc* Expr)
2472 /* Process "exp && exp" in preprocessor mode (that is, when the parser is
2473  * called recursively from the preprocessor.
2474  */
2475 {
2476     ExprDesc Expr2;
2477
2478     ConstAbsIntExpr (hie2, Expr);
2479     while (CurTok.Tok == TOK_BOOL_AND) {
2480
2481         /* Skip the && */
2482         NextToken ();
2483
2484         /* Get rhs */
2485         ConstAbsIntExpr (hie2, &Expr2);
2486
2487         /* Combine the two */
2488         Expr->IVal = (Expr->IVal && Expr2.IVal);
2489     }
2490 }
2491
2492
2493
2494 static void hieOrPP (ExprDesc *Expr)
2495 /* Process "exp || exp" in preprocessor mode (that is, when the parser is
2496  * called recursively from the preprocessor.
2497  */
2498 {
2499     ExprDesc Expr2;
2500
2501     ConstAbsIntExpr (hieAndPP, Expr);
2502     while (CurTok.Tok == TOK_BOOL_OR) {
2503
2504         /* Skip the && */
2505         NextToken ();
2506
2507         /* Get rhs */
2508         ConstAbsIntExpr (hieAndPP, &Expr2);
2509
2510         /* Combine the two */
2511         Expr->IVal = (Expr->IVal || Expr2.IVal);
2512     }
2513 }
2514
2515
2516
2517 static void hieAnd (ExprDesc* Expr, unsigned TrueLab, int* BoolOp)
2518 /* Process "exp && exp" */
2519 {
2520     int lab;
2521     ExprDesc Expr2;
2522
2523     hie2 (Expr);
2524     if (CurTok.Tok == TOK_BOOL_AND) {
2525
2526         /* Tell our caller that we're evaluating a boolean */
2527         *BoolOp = 1;
2528
2529         /* Get a label that we will use for false expressions */
2530         lab = GetLocalLabel ();
2531
2532         /* If the expr hasn't set condition codes, set the force-test flag */
2533         if (!ED_IsTested (Expr)) {
2534             ED_MarkForTest (Expr);
2535         }
2536
2537         /* Load the value */
2538         LoadExpr (CF_FORCECHAR, Expr);
2539
2540         /* Generate the jump */
2541         g_falsejump (CF_NONE, lab);
2542
2543         /* Parse more boolean and's */
2544         while (CurTok.Tok == TOK_BOOL_AND) {
2545
2546             /* Skip the && */
2547             NextToken ();
2548
2549             /* Get rhs */
2550             hie2 (&Expr2);
2551             if (!ED_IsTested (&Expr2)) {
2552                 ED_MarkForTest (&Expr2);
2553             }
2554             LoadExpr (CF_FORCECHAR, &Expr2);
2555
2556             /* Do short circuit evaluation */
2557             if (CurTok.Tok == TOK_BOOL_AND) {
2558                 g_falsejump (CF_NONE, lab);
2559             } else {
2560                 /* Last expression - will evaluate to true */
2561                 g_truejump (CF_NONE, TrueLab);
2562             }
2563         }
2564
2565         /* Define the false jump label here */
2566         g_defcodelabel (lab);
2567
2568         /* The result is an rvalue in primary */
2569         ED_MakeRValExpr (Expr);
2570         ED_TestDone (Expr);     /* Condition codes are set */
2571     }
2572 }
2573
2574
2575
2576 static void hieOr (ExprDesc *Expr)
2577 /* Process "exp || exp". */
2578 {
2579     ExprDesc Expr2;
2580     int BoolOp = 0;             /* Did we have a boolean op? */
2581     int AndOp;                  /* Did we have a && operation? */
2582     unsigned TrueLab;           /* Jump to this label if true */
2583     unsigned DoneLab;
2584
2585     /* Get a label */
2586     TrueLab = GetLocalLabel ();
2587
2588     /* Call the next level parser */
2589     hieAnd (Expr, TrueLab, &BoolOp);
2590
2591     /* Any boolean or's? */
2592     if (CurTok.Tok == TOK_BOOL_OR) {
2593
2594         /* If the expr hasn't set condition codes, set the force-test flag */
2595         if (!ED_IsTested (Expr)) {
2596             ED_MarkForTest (Expr);
2597         }
2598
2599         /* Get first expr */
2600         LoadExpr (CF_FORCECHAR, Expr);
2601
2602         /* For each expression jump to TrueLab if true. Beware: If we
2603          * had && operators, the jump is already in place!
2604          */
2605         if (!BoolOp) {
2606             g_truejump (CF_NONE, TrueLab);
2607         }
2608
2609         /* Remember that we had a boolean op */
2610         BoolOp = 1;
2611
2612         /* while there's more expr */
2613         while (CurTok.Tok == TOK_BOOL_OR) {
2614
2615             /* skip the || */
2616             NextToken ();
2617
2618             /* Get a subexpr */
2619             AndOp = 0;
2620             hieAnd (&Expr2, TrueLab, &AndOp);
2621             if (!ED_IsTested (&Expr2)) {
2622                 ED_MarkForTest (&Expr2);
2623             }
2624             LoadExpr (CF_FORCECHAR, &Expr2);
2625
2626             /* If there is more to come, add shortcut boolean eval. */
2627             g_truejump (CF_NONE, TrueLab);
2628
2629         }
2630
2631         /* The result is an rvalue in primary */
2632         ED_MakeRValExpr (Expr);
2633         ED_TestDone (Expr);                     /* Condition codes are set */
2634     }
2635
2636     /* If we really had boolean ops, generate the end sequence */
2637     if (BoolOp) {
2638         DoneLab = GetLocalLabel ();
2639         g_getimmed (CF_INT | CF_CONST, 0, 0);   /* Load FALSE */
2640         g_falsejump (CF_NONE, DoneLab);
2641         g_defcodelabel (TrueLab);
2642         g_getimmed (CF_INT | CF_CONST, 1, 0);   /* Load TRUE */
2643         g_defcodelabel (DoneLab);
2644     }
2645 }
2646
2647
2648
2649 static void hieQuest (ExprDesc* Expr)
2650 /* Parse the ternary operator */
2651 {
2652     int         labf;
2653     int         labt;
2654     ExprDesc    Expr2;          /* Expression 2 */
2655     ExprDesc    Expr3;          /* Expression 3 */
2656     int         Expr2IsNULL;    /* Expression 2 is a NULL pointer */
2657     int         Expr3IsNULL;    /* Expression 3 is a NULL pointer */
2658     Type*       ResultType;     /* Type of result */
2659
2660
2661     /* Call the lower level eval routine */
2662     if (Preprocessing) {
2663         hieOrPP (Expr);
2664     } else {
2665         hieOr (Expr);
2666     }
2667
2668     /* Check if it's a ternary expression */
2669     if (CurTok.Tok == TOK_QUEST) {
2670         NextToken ();
2671         if (!ED_IsTested (Expr)) {
2672             /* Condition codes not set, request a test */
2673             ED_MarkForTest (Expr);
2674         }
2675         LoadExpr (CF_NONE, Expr);
2676         labf = GetLocalLabel ();
2677         g_falsejump (CF_NONE, labf);
2678
2679         /* Parse second expression. Remember for later if it is a NULL pointer
2680          * expression, then load it into the primary.
2681          */
2682         ExprWithCheck (hie1, &Expr2);
2683         Expr2IsNULL = ED_IsNullPtr (&Expr2);
2684         if (!IsTypeVoid (Expr2.Type)) {
2685             /* Load it into the primary */
2686             LoadExpr (CF_NONE, &Expr2);
2687             ED_MakeRValExpr (&Expr2);
2688             Expr2.Type = PtrConversion (Expr2.Type);
2689         }
2690         labt = GetLocalLabel ();
2691         ConsumeColon ();
2692         g_jump (labt);
2693
2694         /* Jump here if the first expression was false */
2695         g_defcodelabel (labf);
2696
2697         /* Parse second expression. Remember for later if it is a NULL pointer
2698          * expression, then load it into the primary.
2699          */
2700         ExprWithCheck (hie1, &Expr3);
2701         Expr3IsNULL = ED_IsNullPtr (&Expr3);
2702         if (!IsTypeVoid (Expr3.Type)) {
2703             /* Load it into the primary */
2704             LoadExpr (CF_NONE, &Expr3);
2705             ED_MakeRValExpr (&Expr3);
2706             Expr3.Type = PtrConversion (Expr3.Type);
2707         }
2708
2709         /* Check if any conversions are needed, if so, do them.
2710          * Conversion rules for ?: expression are:
2711          *   - if both expressions are int expressions, default promotion
2712          *     rules for ints apply.
2713          *   - if both expressions are pointers of the same type, the
2714          *     result of the expression is of this type.
2715          *   - if one of the expressions is a pointer and the other is
2716          *     a zero constant, the resulting type is that of the pointer
2717          *     type.
2718          *   - if both expressions are void expressions, the result is of
2719          *     type void.
2720          *   - all other cases are flagged by an error.
2721          */
2722         if (IsClassInt (Expr2.Type) && IsClassInt (Expr3.Type)) {
2723
2724             /* Get common type */
2725             ResultType = promoteint (Expr2.Type, Expr3.Type);
2726
2727             /* Convert the third expression to this type if needed */
2728             TypeConversion (&Expr3, ResultType);
2729
2730             /* Setup a new label so that the expr3 code will jump around
2731              * the type cast code for expr2.
2732              */
2733             labf = GetLocalLabel ();    /* Get new label */
2734             g_jump (labf);              /* Jump around code */
2735
2736             /* The jump for expr2 goes here */
2737             g_defcodelabel (labt);
2738
2739             /* Create the typecast code for expr2 */
2740             TypeConversion (&Expr2, ResultType);
2741
2742             /* Jump here around the typecase code. */
2743             g_defcodelabel (labf);
2744             labt = 0;           /* Mark other label as invalid */
2745
2746         } else if (IsClassPtr (Expr2.Type) && IsClassPtr (Expr3.Type)) {
2747             /* Must point to same type */
2748             if (TypeCmp (Indirect (Expr2.Type), Indirect (Expr3.Type)) < TC_EQUAL) {
2749                 Error ("Incompatible pointer types");
2750             }
2751             /* Result has the common type */
2752             ResultType = Expr2.Type;
2753         } else if (IsClassPtr (Expr2.Type) && Expr3IsNULL) {
2754             /* Result type is pointer, no cast needed */
2755             ResultType = Expr2.Type;
2756         } else if (Expr2IsNULL && IsClassPtr (Expr3.Type)) {
2757             /* Result type is pointer, no cast needed */
2758             ResultType = Expr3.Type;
2759         } else if (IsTypeVoid (Expr2.Type) && IsTypeVoid (Expr3.Type)) {
2760             /* Result type is void */
2761             ResultType = Expr3.Type;
2762         } else {
2763             Error ("Incompatible types");
2764             ResultType = Expr2.Type;            /* Doesn't matter here */
2765         }
2766
2767         /* If we don't have the label defined until now, do it */
2768         if (labt) {
2769             g_defcodelabel (labt);
2770         }
2771
2772         /* Setup the target expression */
2773         ED_MakeRValExpr (Expr);
2774         Expr->Type  = ResultType;
2775     }
2776 }
2777
2778
2779
2780 static void opeq (const GenDesc* Gen, ExprDesc* Expr)
2781 /* Process "op=" operators. */
2782 {
2783     ExprDesc Expr2;
2784     unsigned flags;
2785     CodeMark Mark;
2786     int MustScale;
2787
2788     /* op= can only be used with lvalues */
2789     if (!ED_IsLVal (Expr)) {
2790         Error ("Invalid lvalue in assignment");
2791         return;
2792     }
2793
2794     /* The left side must not be const qualified */
2795     if (IsQualConst (Expr->Type)) {
2796         Error ("Assignment to const");
2797     }
2798
2799     /* There must be an integer or pointer on the left side */
2800     if (!IsClassInt (Expr->Type) && !IsTypePtr (Expr->Type)) {
2801         Error ("Invalid left operand type");
2802         /* Continue. Wrong code will be generated, but the compiler won't
2803          * break, so this is the best error recovery.
2804          */
2805     }
2806
2807     /* Skip the operator token */
2808     NextToken ();
2809
2810     /* Determine the type of the lhs */
2811     flags = TypeOf (Expr->Type);
2812     MustScale = (Gen->Func == g_add || Gen->Func == g_sub) && IsTypePtr (Expr->Type);
2813
2814     /* Get the lhs address on stack (if needed) */
2815     PushAddr (Expr);
2816
2817     /* Fetch the lhs into the primary register if needed */
2818     LoadExpr (CF_NONE, Expr);
2819
2820     /* Bring the lhs on stack */
2821     GetCodePos (&Mark);
2822     g_push (flags, 0);
2823
2824     /* Evaluate the rhs */
2825     if (evalexpr (CF_NONE, hie1, &Expr2) == 0) {
2826         /* The resulting value is a constant. If the generator has the NOPUSH
2827          * flag set, don't push the lhs.
2828          */
2829         if (Gen->Flags & GEN_NOPUSH) {
2830             RemoveCode (&Mark);
2831         }
2832         if (MustScale) {
2833             /* lhs is a pointer, scale rhs */
2834             Expr2.IVal *= CheckedSizeOf (Expr->Type+1);
2835         }
2836
2837         /* If the lhs is character sized, the operation may be later done
2838          * with characters.
2839          */
2840         if (CheckedSizeOf (Expr->Type) == SIZEOF_CHAR) {
2841             flags |= CF_FORCECHAR;
2842         }
2843
2844         /* Special handling for add and sub - some sort of a hack, but short code */
2845         if (Gen->Func == g_add) {
2846             g_inc (flags | CF_CONST, Expr2.IVal);
2847         } else if (Gen->Func == g_sub) {
2848             g_dec (flags | CF_CONST, Expr2.IVal);
2849         } else {
2850             if (Expr2.IVal == 0) {
2851                 /* Check for div by zero/mod by zero */
2852                 if (Gen->Func == g_div) {
2853                     Error ("Division by zero");
2854                 } else if (Gen->Func == g_mod) {
2855                     Error ("Modulo operation with zero");
2856                 }
2857             }
2858             Gen->Func (flags | CF_CONST, Expr2.IVal);
2859         }
2860     } else {
2861         /* rhs is not constant and already in the primary register */
2862         if (MustScale) {
2863             /* lhs is a pointer, scale rhs */
2864             g_scale (TypeOf (Expr2.Type), CheckedSizeOf (Expr->Type+1));
2865         }
2866
2867         /* If the lhs is character sized, the operation may be later done
2868          * with characters.
2869          */
2870         if (CheckedSizeOf (Expr->Type) == SIZEOF_CHAR) {
2871             flags |= CF_FORCECHAR;
2872         }
2873
2874         /* Adjust the types of the operands if needed */
2875         Gen->Func (g_typeadjust (flags, TypeOf (Expr2.Type)), 0);
2876     }
2877     Store (Expr, 0);
2878     ED_MakeRValExpr (Expr);
2879 }
2880
2881
2882
2883 static void addsubeq (const GenDesc* Gen, ExprDesc *Expr)
2884 /* Process the += and -= operators */
2885 {
2886     ExprDesc Expr2;
2887     unsigned lflags;
2888     unsigned rflags;
2889     int      MustScale;
2890
2891
2892     /* We're currently only able to handle some adressing modes */
2893     if (ED_GetLoc (Expr) == E_LOC_EXPR || ED_GetLoc (Expr) == E_LOC_PRIMARY) {
2894         /* Use generic routine */
2895         opeq (Gen, Expr);
2896         return;
2897     }
2898
2899     /* We must have an lvalue */
2900     if (ED_IsRVal (Expr)) {
2901         Error ("Invalid lvalue in assignment");
2902         return;
2903     }
2904
2905     /* The left side must not be const qualified */
2906     if (IsQualConst (Expr->Type)) {
2907         Error ("Assignment to const");
2908     }
2909
2910     /* There must be an integer or pointer on the left side */
2911     if (!IsClassInt (Expr->Type) && !IsTypePtr (Expr->Type)) {
2912         Error ("Invalid left operand type");
2913         /* Continue. Wrong code will be generated, but the compiler won't
2914          * break, so this is the best error recovery.
2915          */
2916     }
2917
2918     /* Skip the operator */
2919     NextToken ();
2920
2921     /* Check if we have a pointer expression and must scale rhs */
2922     MustScale = IsTypePtr (Expr->Type);
2923
2924     /* Initialize the code generator flags */
2925     lflags = 0;
2926     rflags = 0;
2927
2928     /* Evaluate the rhs */
2929     hie1 (&Expr2);
2930     if (ED_IsConstAbs (&Expr2)) {
2931         /* The resulting value is a constant. Scale it. */
2932         if (MustScale) {
2933             Expr2.IVal *= CheckedSizeOf (Indirect (Expr->Type));
2934         }
2935         rflags |= CF_CONST;
2936         lflags |= CF_CONST;
2937     } else {
2938         /* Not constant, load into the primary */
2939         LoadExpr (CF_NONE, &Expr2);
2940         if (MustScale) {
2941             /* lhs is a pointer, scale rhs */
2942             g_scale (TypeOf (Expr2.Type), CheckedSizeOf (Indirect (Expr->Type)));
2943         }
2944     }
2945
2946     /* Setup the code generator flags */
2947     lflags |= TypeOf (Expr->Type) | GlobalModeFlags (Expr) | CF_FORCECHAR;
2948     rflags |= TypeOf (Expr2.Type) | CF_FORCECHAR;
2949
2950     /* Convert the type of the lhs to that of the rhs */
2951     g_typecast (lflags, rflags);
2952
2953     /* Output apropriate code depending on the location */
2954     switch (ED_GetLoc (Expr)) {
2955
2956         case E_LOC_ABS:
2957             /* Absolute: numeric address or const */
2958             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2959                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2960             } else {
2961                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2962             }
2963             break;
2964
2965         case E_LOC_GLOBAL:
2966             /* Global variable */
2967             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2968                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2969             } else {
2970                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2971             }
2972             break;
2973
2974         case E_LOC_STATIC:
2975         case E_LOC_LITERAL:
2976             /* Static variable or literal in the literal pool */
2977             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2978                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2979             } else {
2980                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2981             }
2982             break;
2983
2984         case E_LOC_REGISTER:
2985             /* Register variable */
2986             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2987                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2988             } else {
2989                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2990             }
2991             break;
2992
2993         case E_LOC_STACK:
2994             /* Value on the stack */
2995             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2996                 g_addeqlocal (lflags, Expr->IVal, Expr2.IVal);
2997             } else {
2998                 g_subeqlocal (lflags, Expr->IVal, Expr2.IVal);
2999             }
3000             break;
3001
3002         default:
3003             Internal ("Invalid location in Store(): 0x%04X", ED_GetLoc (Expr));
3004     }
3005
3006     /* Expression is a rvalue in the primary now */
3007     ED_MakeRValExpr (Expr);
3008 }
3009
3010
3011
3012 void hie1 (ExprDesc* Expr)
3013 /* Parse first level of expression hierarchy. */
3014 {
3015     hieQuest (Expr);
3016     switch (CurTok.Tok) {
3017
3018         case TOK_ASSIGN:
3019             Assignment (Expr);
3020             break;
3021
3022         case TOK_PLUS_ASSIGN:
3023             addsubeq (&GenPASGN, Expr);
3024             break;
3025
3026         case TOK_MINUS_ASSIGN:
3027             addsubeq (&GenSASGN, Expr);
3028             break;
3029
3030         case TOK_MUL_ASSIGN:
3031             opeq (&GenMASGN, Expr);
3032             break;
3033
3034         case TOK_DIV_ASSIGN:
3035             opeq (&GenDASGN, Expr);
3036             break;
3037
3038         case TOK_MOD_ASSIGN:
3039             opeq (&GenMOASGN, Expr);
3040             break;
3041
3042         case TOK_SHL_ASSIGN:
3043             opeq (&GenSLASGN, Expr);
3044             break;
3045
3046         case TOK_SHR_ASSIGN:
3047             opeq (&GenSRASGN, Expr);
3048             break;
3049
3050         case TOK_AND_ASSIGN:
3051             opeq (&GenAASGN, Expr);
3052             break;
3053
3054         case TOK_XOR_ASSIGN:
3055             opeq (&GenXOASGN, Expr);
3056             break;
3057
3058         case TOK_OR_ASSIGN:
3059             opeq (&GenOASGN, Expr);
3060             break;
3061
3062         default:
3063             break;
3064     }
3065 }
3066
3067
3068
3069 void hie0 (ExprDesc *Expr)
3070 /* Parse comma operator. */
3071 {
3072     hie1 (Expr);
3073     while (CurTok.Tok == TOK_COMMA) {
3074         NextToken ();
3075         hie1 (Expr);
3076     }
3077 }
3078
3079
3080
3081 int evalexpr (unsigned Flags, void (*Func) (ExprDesc*), ExprDesc* Expr)
3082 /* Will evaluate an expression via the given function. If the result is a
3083  * constant, 0 is returned and the value is put in the Expr struct. If the
3084  * result is not constant, LoadExpr is called to bring the value into the
3085  * primary register and 1 is returned.
3086  */
3087 {
3088     /* Evaluate */
3089     ExprWithCheck (Func, Expr);
3090
3091     /* Check for a constant expression */
3092     if (ED_IsConstAbs (Expr)) {
3093         /* Constant expression */
3094         return 0;
3095     } else {
3096         /* Not constant, load into the primary */
3097         LoadExpr (Flags, Expr);
3098         return 1;
3099     }
3100 }
3101
3102
3103
3104 void Expression0 (ExprDesc* Expr)
3105 /* Evaluate an expression via hie0 and put the result into the primary register */
3106 {
3107     ExprWithCheck (hie0, Expr);
3108     LoadExpr (CF_NONE, Expr);
3109 }
3110
3111
3112
3113 void ConstExpr (void (*Func) (ExprDesc*), ExprDesc* Expr)
3114 /* Will evaluate an expression via the given function. If the result is not
3115  * a constant of some sort, a diagnostic will be printed, and the value is
3116  * replaced by a constant one to make sure there are no internal errors that
3117  * result from this input error.
3118  */
3119 {
3120     ExprWithCheck (Func, Expr);
3121     if (!ED_IsConst (Expr)) {
3122         Error ("Constant expression expected");
3123         /* To avoid any compiler errors, make the expression a valid const */
3124         ED_MakeConstAbsInt (Expr, 1);
3125     }
3126 }
3127
3128
3129
3130 void BoolExpr (void (*Func) (ExprDesc*), ExprDesc* Expr)
3131 /* Will evaluate an expression via the given function. If the result is not
3132  * something that may be evaluated in a boolean context, a diagnostic will be
3133  * printed, and the value is replaced by a constant one to make sure there
3134  * are no internal errors that result from this input error.
3135  */
3136 {
3137     ExprWithCheck (Func, Expr);
3138     if (!ED_IsBool (Expr)) {
3139         Error ("Boolean expression expected");
3140         /* To avoid any compiler errors, make the expression a valid int */
3141         ED_MakeConstAbsInt (Expr, 1);
3142     }
3143 }
3144
3145
3146
3147 void ConstAbsIntExpr (void (*Func) (ExprDesc*), ExprDesc* Expr)
3148 /* Will evaluate an expression via the given function. If the result is not
3149  * a constant numeric integer value, a diagnostic will be printed, and the
3150  * value is replaced by a constant one to make sure there are no internal
3151  * errors that result from this input error.
3152  */
3153 {
3154     ExprWithCheck (Func, Expr);
3155     if (!ED_IsConstAbsInt (Expr)) {
3156         Error ("Constant integer expression expected");
3157         /* To avoid any compiler errors, make the expression a valid const */
3158         ED_MakeConstAbsInt (Expr, 1);
3159     }
3160 }
3161
3162
3163