]> git.sur5r.net Git - cc65/blob - src/cc65/expr.c
Fixed problems with R3977: While the solution was correct, the generated code
[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             /* Both operands are constant, remove the generated code */
1889             RemoveCode (&Mark1);
1890
1891             /* Determine if this is a signed or unsigned compare */
1892             if (IsClassInt (Expr->Type) && IsSignSigned (Expr->Type) &&
1893                 IsClassInt (Expr2.Type) && IsSignSigned (Expr2.Type)) {
1894
1895                 /* Evaluate the result for signed operands */
1896                 signed long Val1 = Expr->IVal;
1897                 signed long Val2 = Expr2.IVal;
1898                 switch (Tok) {
1899                     case TOK_EQ: Expr->IVal = (Val1 == Val2);   break;
1900                     case TOK_NE: Expr->IVal = (Val1 != Val2);   break;
1901                     case TOK_LT: Expr->IVal = (Val1 < Val2);    break;
1902                     case TOK_LE: Expr->IVal = (Val1 <= Val2);   break;
1903                     case TOK_GE: Expr->IVal = (Val1 >= Val2);   break;
1904                     case TOK_GT: Expr->IVal = (Val1 > Val2);    break;
1905                     default:     Internal ("hie_compare: got token 0x%X\n", Tok);
1906                 }
1907
1908             } else {
1909
1910                 /* Evaluate the result for unsigned operands */
1911                 unsigned long Val1 = Expr->IVal;
1912                 unsigned long Val2 = Expr2.IVal;
1913                 switch (Tok) {
1914                     case TOK_EQ: Expr->IVal = (Val1 == Val2);   break;
1915                     case TOK_NE: Expr->IVal = (Val1 != Val2);   break;
1916                     case TOK_LT: Expr->IVal = (Val1 < Val2);    break;
1917                     case TOK_LE: Expr->IVal = (Val1 <= Val2);   break;
1918                     case TOK_GE: Expr->IVal = (Val1 >= Val2);   break;
1919                     case TOK_GT: Expr->IVal = (Val1 > Val2);    break;
1920                     default:     Internal ("hie_compare: got token 0x%X\n", Tok);
1921                 }
1922             }
1923
1924         } else {
1925
1926             /* If the right hand side is constant, and the generator function
1927              * expects the lhs in the primary, remove the push of the primary
1928              * now.
1929              */
1930             unsigned flags = 0;
1931             if (rconst) {
1932                 flags |= CF_CONST;
1933                 if ((Gen->Flags & GEN_NOPUSH) != 0) {
1934                     RemoveCode (&Mark2);
1935                     ltype |= CF_REG;    /* Value is in register */
1936                 }
1937             }
1938
1939             /* Determine the type of the operation result. If the left
1940              * operand is of type char and the right is a constant, or
1941              * if both operands are of type char, we will encode the
1942              * operation as char operation. Otherwise the default
1943              * promotions are used.
1944              */
1945             if (IsTypeChar (Expr->Type) && (IsTypeChar (Expr2.Type) || rconst)) {
1946                 flags |= CF_CHAR;
1947                 if (IsSignUnsigned (Expr->Type) || IsSignUnsigned (Expr2.Type)) {
1948                     flags |= CF_UNSIGNED;
1949                 }
1950                 if (rconst) {
1951                     flags |= CF_FORCECHAR;
1952                 }
1953             } else {
1954                 unsigned rtype = TypeOf (Expr2.Type) | (flags & CF_CONST);
1955                 flags |= g_typeadjust (ltype, rtype);
1956             }
1957
1958             /* Generate code */
1959             Gen->Func (flags, Expr2.IVal);
1960
1961             /* The result is an rvalue in the primary */
1962             ED_MakeRValExpr (Expr);
1963         }
1964
1965         /* Result type is always int */
1966         Expr->Type = type_int;
1967
1968         /* Condition codes are set */
1969         ED_TestDone (Expr);
1970     }
1971 }
1972
1973
1974
1975 static void hie9 (ExprDesc *Expr)
1976 /* Process * and / operators. */
1977 {
1978     static const GenDesc hie9_ops[] = {
1979         { TOK_STAR,     GEN_NOPUSH,     g_mul   },
1980         { TOK_DIV,      GEN_NOPUSH,     g_div   },
1981         { TOK_MOD,      GEN_NOPUSH,     g_mod   },
1982         { TOK_INVALID,  0,              0       }
1983     };
1984     int UsedGen;
1985
1986     hie_internal (hie9_ops, Expr, hie10, &UsedGen);
1987 }
1988
1989
1990
1991 static void parseadd (ExprDesc* Expr)
1992 /* Parse an expression with the binary plus operator. Expr contains the
1993  * unprocessed left hand side of the expression and will contain the
1994  * result of the expression on return.
1995  */
1996 {
1997     ExprDesc Expr2;
1998     unsigned flags;             /* Operation flags */
1999     CodeMark Mark;              /* Remember code position */
2000     Type* lhst;                 /* Type of left hand side */
2001     Type* rhst;                 /* Type of right hand side */
2002
2003
2004     /* Skip the PLUS token */
2005     NextToken ();
2006
2007     /* Get the left hand side type, initialize operation flags */
2008     lhst = Expr->Type;
2009     flags = 0;
2010
2011     /* Check for constness on both sides */
2012     if (ED_IsConst (Expr)) {
2013
2014         /* The left hand side is a constant of some sort. Good. Get rhs */
2015         hie9 (&Expr2);
2016         if (ED_IsConstAbs (&Expr2)) {
2017
2018             /* Right hand side is a constant numeric value. Get the rhs type */
2019             rhst = Expr2.Type;
2020
2021             /* Both expressions are constants. Check for pointer arithmetic */
2022             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2023                 /* Left is pointer, right is int, must scale rhs */
2024                 Expr->IVal += Expr2.IVal * CheckedPSizeOf (lhst);
2025                 /* Result type is a pointer */
2026             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2027                 /* Left is int, right is pointer, must scale lhs */
2028                 Expr->IVal = Expr->IVal * CheckedPSizeOf (rhst) + Expr2.IVal;
2029                 /* Result type is a pointer */
2030                 Expr->Type = Expr2.Type;
2031             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2032                 /* Integer addition */
2033                 Expr->IVal += Expr2.IVal;
2034                 typeadjust (Expr, &Expr2, 1);
2035             } else {
2036                 /* OOPS */
2037                 Error ("Invalid operands for binary operator `+'");
2038             }
2039
2040         } else {
2041
2042             /* lhs is a constant and rhs is not constant. Load rhs into
2043              * the primary.
2044              */
2045             LoadExpr (CF_NONE, &Expr2);
2046
2047             /* Beware: The check above (for lhs) lets not only pass numeric
2048              * constants, but also constant addresses (labels), maybe even
2049              * with an offset. We have to check for that here.
2050              */
2051
2052             /* First, get the rhs type. */
2053             rhst = Expr2.Type;
2054
2055             /* Setup flags */
2056             if (ED_IsLocAbs (Expr)) {
2057                 /* A numerical constant */
2058                 flags |= CF_CONST;
2059             } else {
2060                 /* Constant address label */
2061                 flags |= GlobalModeFlags (Expr) | CF_CONSTADDR;
2062             }
2063
2064             /* Check for pointer arithmetic */
2065             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2066                 /* Left is pointer, right is int, must scale rhs */
2067                 g_scale (CF_INT, CheckedPSizeOf (lhst));
2068                 /* Operate on pointers, result type is a pointer */
2069                 flags |= CF_PTR;
2070                 /* Generate the code for the add */
2071                 if (ED_GetLoc (Expr) == E_LOC_ABS) {
2072                     /* Numeric constant */
2073                     g_inc (flags, Expr->IVal);
2074                 } else {
2075                     /* Constant address */
2076                     g_addaddr_static (flags, Expr->Name, Expr->IVal);
2077                 }
2078             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2079
2080                 /* Left is int, right is pointer, must scale lhs. */
2081                 unsigned ScaleFactor = CheckedPSizeOf (rhst);
2082
2083                 /* Operate on pointers, result type is a pointer */
2084                 flags |= CF_PTR;
2085                 Expr->Type = Expr2.Type;
2086
2087                 /* Since we do already have rhs in the primary, if lhs is
2088                  * not a numeric constant, and the scale factor is not one
2089                  * (no scaling), we must take the long way over the stack.
2090                  */
2091                 if (ED_IsLocAbs (Expr)) {
2092                     /* Numeric constant, scale lhs */
2093                     Expr->IVal *= ScaleFactor;
2094                     /* Generate the code for the add */
2095                     g_inc (flags, Expr->IVal);
2096                 } else if (ScaleFactor == 1) {
2097                     /* Constant address but no need to scale */
2098                     g_addaddr_static (flags, Expr->Name, Expr->IVal);
2099                 } else {
2100                     /* Constant address that must be scaled */
2101                     g_push (TypeOf (Expr2.Type), 0);    /* rhs --> stack */
2102                     g_getimmed (flags, Expr->Name, Expr->IVal);
2103                     g_scale (CF_PTR, ScaleFactor);
2104                     g_add (CF_PTR, 0);
2105                 }
2106             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2107                 /* Integer addition */
2108                 flags |= typeadjust (Expr, &Expr2, 1);
2109                 /* Generate the code for the add */
2110                 if (ED_IsLocAbs (Expr)) {
2111                     /* Numeric constant */
2112                     g_inc (flags, Expr->IVal);
2113                 } else {
2114                     /* Constant address */
2115                     g_addaddr_static (flags, Expr->Name, Expr->IVal);
2116                 }
2117             } else {
2118                 /* OOPS */
2119                 Error ("Invalid operands for binary operator `+'");
2120                 flags = CF_INT;
2121             }
2122
2123             /* Result is a rvalue in primary register */
2124             ED_MakeRValExpr (Expr);
2125         }
2126
2127     } else {
2128
2129         /* Left hand side is not constant. Get the value onto the stack. */
2130         LoadExpr (CF_NONE, Expr);              /* --> primary register */
2131         GetCodePos (&Mark);
2132         g_push (TypeOf (Expr->Type), 0);        /* --> stack */
2133
2134         /* Evaluate the rhs */
2135         if (evalexpr (CF_NONE, hie9, &Expr2) == 0) {
2136
2137             /* Right hand side is a constant. Get the rhs type */
2138             rhst = Expr2.Type;
2139
2140             /* Remove pushed value from stack */
2141             RemoveCode (&Mark);
2142
2143             /* Check for pointer arithmetic */
2144             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2145                 /* Left is pointer, right is int, must scale rhs */
2146                 Expr2.IVal *= CheckedPSizeOf (lhst);
2147                 /* Operate on pointers, result type is a pointer */
2148                 flags = CF_PTR;
2149             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2150                 /* Left is int, right is pointer, must scale lhs (ptr only) */
2151                 g_scale (CF_INT | CF_CONST, CheckedPSizeOf (rhst));
2152                 /* Operate on pointers, result type is a pointer */
2153                 flags = CF_PTR;
2154                 Expr->Type = Expr2.Type;
2155             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2156                 /* Integer addition */
2157                 flags = typeadjust (Expr, &Expr2, 1);
2158             } else {
2159                 /* OOPS */
2160                 Error ("Invalid operands for binary operator `+'");
2161                 flags = CF_INT;
2162             }
2163
2164             /* Generate code for the add */
2165             g_inc (flags | CF_CONST, Expr2.IVal);
2166
2167         } else {
2168
2169             /* lhs and rhs are not constant. Get the rhs type. */
2170             rhst = Expr2.Type;
2171
2172             /* Check for pointer arithmetic */
2173             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2174                 /* Left is pointer, right is int, must scale rhs */
2175                 g_scale (CF_INT, CheckedPSizeOf (lhst));
2176                 /* Operate on pointers, result type is a pointer */
2177                 flags = CF_PTR;
2178             } else if (IsClassInt (lhst) && IsClassPtr (rhst)) {
2179                 /* Left is int, right is pointer, must scale lhs */
2180                 g_tosint (TypeOf (rhst));       /* Make sure, TOS is int */
2181                 g_swap (CF_INT);                /* Swap TOS and primary */
2182                 g_scale (CF_INT, CheckedPSizeOf (rhst));
2183                 /* Operate on pointers, result type is a pointer */
2184                 flags = CF_PTR;
2185                 Expr->Type = Expr2.Type;
2186             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2187                 /* Integer addition. Note: Result is never constant.
2188                  * Problem here is that typeadjust does not know if the
2189                  * variable is an rvalue or lvalue, so if both operands
2190                  * are dereferenced constant numeric addresses, typeadjust
2191                  * thinks the operation works on constants. Removing
2192                  * CF_CONST here means handling the symptoms, however, the
2193                  * whole parser is such a mess that I fear to break anything
2194                  * when trying to apply another solution.
2195                  */
2196                 flags = typeadjust (Expr, &Expr2, 0) & ~CF_CONST;
2197             } else {
2198                 /* OOPS */
2199                 Error ("Invalid operands for binary operator `+'");
2200                 flags = CF_INT;
2201             }
2202
2203             /* Generate code for the add */
2204             g_add (flags, 0);
2205
2206         }
2207
2208         /* Result is a rvalue in primary register */
2209         ED_MakeRValExpr (Expr);
2210     }
2211
2212     /* Condition codes not set */
2213     ED_MarkAsUntested (Expr);
2214
2215 }
2216
2217
2218
2219 static void parsesub (ExprDesc* Expr)
2220 /* Parse an expression with the binary minus operator. Expr contains the
2221  * unprocessed left hand side of the expression and will contain the
2222  * result of the expression on return.
2223  */
2224 {
2225     ExprDesc Expr2;
2226     unsigned flags;             /* Operation flags */
2227     Type* lhst;                 /* Type of left hand side */
2228     Type* rhst;                 /* Type of right hand side */
2229     CodeMark Mark1;             /* Save position of output queue */
2230     CodeMark Mark2;             /* Another position in the queue */
2231     int rscale;                 /* Scale factor for the result */
2232
2233
2234     /* Skip the MINUS token */
2235     NextToken ();
2236
2237     /* Get the left hand side type, initialize operation flags */
2238     lhst = Expr->Type;
2239     rscale = 1;                 /* Scale by 1, that is, don't scale */
2240
2241     /* Remember the output queue position, then bring the value onto the stack */
2242     GetCodePos (&Mark1);
2243     LoadExpr (CF_NONE, Expr);  /* --> primary register */
2244     GetCodePos (&Mark2);
2245     g_push (TypeOf (lhst), 0);  /* --> stack */
2246
2247     /* Parse the right hand side */
2248     if (evalexpr (CF_NONE, hie9, &Expr2) == 0) {
2249
2250         /* The right hand side is constant. Get the rhs type. */
2251         rhst = Expr2.Type;
2252
2253         /* Check left hand side */
2254         if (ED_IsConstAbs (Expr)) {
2255
2256             /* Both sides are constant, remove generated code */
2257             RemoveCode (&Mark1);
2258
2259             /* Check for pointer arithmetic */
2260             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2261                 /* Left is pointer, right is int, must scale rhs */
2262                 Expr->IVal -= Expr2.IVal * CheckedPSizeOf (lhst);
2263                 /* Operate on pointers, result type is a pointer */
2264             } else if (IsClassPtr (lhst) && IsClassPtr (rhst)) {
2265                 /* Left is pointer, right is pointer, must scale result */
2266                 if (TypeCmp (Indirect (lhst), Indirect (rhst)) < TC_QUAL_DIFF) {
2267                     Error ("Incompatible pointer types");
2268                 } else {
2269                     Expr->IVal = (Expr->IVal - Expr2.IVal) /
2270                                       CheckedPSizeOf (lhst);
2271                 }
2272                 /* Operate on pointers, result type is an integer */
2273                 Expr->Type = type_int;
2274             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2275                 /* Integer subtraction */
2276                 typeadjust (Expr, &Expr2, 1);
2277                 Expr->IVal -= Expr2.IVal;
2278             } else {
2279                 /* OOPS */
2280                 Error ("Invalid operands for binary operator `-'");
2281             }
2282
2283             /* Result is constant, condition codes not set */
2284             ED_MarkAsUntested (Expr);
2285
2286         } else {
2287
2288             /* Left hand side is not constant, right hand side is.
2289              * Remove pushed value from stack.
2290              */
2291             RemoveCode (&Mark2);
2292
2293             if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2294                 /* Left is pointer, right is int, must scale rhs */
2295                 Expr2.IVal *= CheckedPSizeOf (lhst);
2296                 /* Operate on pointers, result type is a pointer */
2297                 flags = CF_PTR;
2298             } else if (IsClassPtr (lhst) && IsClassPtr (rhst)) {
2299                 /* Left is pointer, right is pointer, must scale result */
2300                 if (TypeCmp (Indirect (lhst), Indirect (rhst)) < TC_QUAL_DIFF) {
2301                     Error ("Incompatible pointer types");
2302                 } else {
2303                     rscale = CheckedPSizeOf (lhst);
2304                 }
2305                 /* Operate on pointers, result type is an integer */
2306                 flags = CF_PTR;
2307                 Expr->Type = type_int;
2308             } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2309                 /* Integer subtraction */
2310                 flags = typeadjust (Expr, &Expr2, 1);
2311             } else {
2312                 /* OOPS */
2313                 Error ("Invalid operands for binary operator `-'");
2314                 flags = CF_INT;
2315             }
2316
2317             /* Do the subtraction */
2318             g_dec (flags | CF_CONST, Expr2.IVal);
2319
2320             /* If this was a pointer subtraction, we must scale the result */
2321             if (rscale != 1) {
2322                 g_scale (flags, -rscale);
2323             }
2324
2325             /* Result is a rvalue in the primary register */
2326             ED_MakeRValExpr (Expr);
2327             ED_MarkAsUntested (Expr);
2328
2329         }
2330
2331     } else {
2332
2333         /* Right hand side is not constant. Get the rhs type. */
2334         rhst = Expr2.Type;
2335
2336         /* Check for pointer arithmetic */
2337         if (IsClassPtr (lhst) && IsClassInt (rhst)) {
2338             /* Left is pointer, right is int, must scale rhs */
2339             g_scale (CF_INT, CheckedPSizeOf (lhst));
2340             /* Operate on pointers, result type is a pointer */
2341             flags = CF_PTR;
2342         } else if (IsClassPtr (lhst) && IsClassPtr (rhst)) {
2343             /* Left is pointer, right is pointer, must scale result */
2344             if (TypeCmp (Indirect (lhst), Indirect (rhst)) < TC_QUAL_DIFF) {
2345                 Error ("Incompatible pointer types");
2346             } else {
2347                 rscale = CheckedPSizeOf (lhst);
2348             }
2349             /* Operate on pointers, result type is an integer */
2350             flags = CF_PTR;
2351             Expr->Type = type_int;
2352         } else if (IsClassInt (lhst) && IsClassInt (rhst)) {
2353             /* Integer subtraction. If the left hand side descriptor says that
2354              * the lhs is const, we have to remove this mark, since this is no
2355              * longer true, lhs is on stack instead.
2356              */
2357             if (ED_IsLocAbs (Expr)) {
2358                 ED_MakeRValExpr (Expr);
2359             }
2360             /* Adjust operand types */
2361             flags = typeadjust (Expr, &Expr2, 0);
2362         } else {
2363             /* OOPS */
2364             Error ("Invalid operands for binary operator `-'");
2365             flags = CF_INT;
2366         }
2367
2368         /* Generate code for the sub (the & is a hack here) */
2369         g_sub (flags & ~CF_CONST, 0);
2370
2371         /* If this was a pointer subtraction, we must scale the result */
2372         if (rscale != 1) {
2373             g_scale (flags, -rscale);
2374         }
2375
2376         /* Result is a rvalue in the primary register */
2377         ED_MakeRValExpr (Expr);
2378         ED_MarkAsUntested (Expr);
2379     }
2380 }
2381
2382
2383
2384 void hie8 (ExprDesc* Expr)
2385 /* Process + and - binary operators. */
2386 {
2387     hie9 (Expr);
2388     while (CurTok.Tok == TOK_PLUS || CurTok.Tok == TOK_MINUS) {
2389         if (CurTok.Tok == TOK_PLUS) {
2390             parseadd (Expr);
2391         } else {
2392             parsesub (Expr);
2393         }
2394     }
2395 }
2396
2397
2398
2399 static void hie6 (ExprDesc* Expr)
2400 /* Handle greater-than type comparators */
2401 {
2402     static const GenDesc hie6_ops [] = {
2403         { TOK_LT,       GEN_NOPUSH,     g_lt    },
2404         { TOK_LE,       GEN_NOPUSH,     g_le    },
2405         { TOK_GE,       GEN_NOPUSH,     g_ge    },
2406         { TOK_GT,       GEN_NOPUSH,     g_gt    },
2407         { TOK_INVALID,  0,              0       }
2408     };
2409     hie_compare (hie6_ops, Expr, ShiftExpr);
2410 }
2411
2412
2413
2414 static void hie5 (ExprDesc* Expr)
2415 /* Handle == and != */
2416 {
2417     static const GenDesc hie5_ops[] = {
2418         { TOK_EQ,       GEN_NOPUSH,     g_eq    },
2419         { TOK_NE,       GEN_NOPUSH,     g_ne    },
2420         { TOK_INVALID,  0,              0       }
2421     };
2422     hie_compare (hie5_ops, Expr, hie6);
2423 }
2424
2425
2426
2427 static void hie4 (ExprDesc* Expr)
2428 /* Handle & (bitwise and) */
2429 {
2430     static const GenDesc hie4_ops[] = {
2431         { TOK_AND,      GEN_NOPUSH,     g_and   },
2432         { TOK_INVALID,  0,              0       }
2433     };
2434     int UsedGen;
2435
2436     hie_internal (hie4_ops, Expr, hie5, &UsedGen);
2437 }
2438
2439
2440
2441 static void hie3 (ExprDesc* Expr)
2442 /* Handle ^ (bitwise exclusive or) */
2443 {
2444     static const GenDesc hie3_ops[] = {
2445         { TOK_XOR,      GEN_NOPUSH,     g_xor   },
2446         { TOK_INVALID,  0,              0       }
2447     };
2448     int UsedGen;
2449
2450     hie_internal (hie3_ops, Expr, hie4, &UsedGen);
2451 }
2452
2453
2454
2455 static void hie2 (ExprDesc* Expr)
2456 /* Handle | (bitwise or) */
2457 {
2458     static const GenDesc hie2_ops[] = {
2459         { TOK_OR,       GEN_NOPUSH,     g_or    },
2460         { TOK_INVALID,  0,              0       }
2461     };
2462     int UsedGen;
2463
2464     hie_internal (hie2_ops, Expr, hie3, &UsedGen);
2465 }
2466
2467
2468
2469 static void hieAndPP (ExprDesc* Expr)
2470 /* Process "exp && exp" in preprocessor mode (that is, when the parser is
2471  * called recursively from the preprocessor.
2472  */
2473 {
2474     ExprDesc Expr2;
2475
2476     ConstAbsIntExpr (hie2, Expr);
2477     while (CurTok.Tok == TOK_BOOL_AND) {
2478
2479         /* Skip the && */
2480         NextToken ();
2481
2482         /* Get rhs */
2483         ConstAbsIntExpr (hie2, &Expr2);
2484
2485         /* Combine the two */
2486         Expr->IVal = (Expr->IVal && Expr2.IVal);
2487     }
2488 }
2489
2490
2491
2492 static void hieOrPP (ExprDesc *Expr)
2493 /* Process "exp || exp" in preprocessor mode (that is, when the parser is
2494  * called recursively from the preprocessor.
2495  */
2496 {
2497     ExprDesc Expr2;
2498
2499     ConstAbsIntExpr (hieAndPP, Expr);
2500     while (CurTok.Tok == TOK_BOOL_OR) {
2501
2502         /* Skip the && */
2503         NextToken ();
2504
2505         /* Get rhs */
2506         ConstAbsIntExpr (hieAndPP, &Expr2);
2507
2508         /* Combine the two */
2509         Expr->IVal = (Expr->IVal || Expr2.IVal);
2510     }
2511 }
2512
2513
2514
2515 static void hieAnd (ExprDesc* Expr, unsigned TrueLab, int* BoolOp)
2516 /* Process "exp && exp" */
2517 {
2518     int lab;
2519     ExprDesc Expr2;
2520
2521     hie2 (Expr);
2522     if (CurTok.Tok == TOK_BOOL_AND) {
2523
2524         /* Tell our caller that we're evaluating a boolean */
2525         *BoolOp = 1;
2526
2527         /* Get a label that we will use for false expressions */
2528         lab = GetLocalLabel ();
2529
2530         /* If the expr hasn't set condition codes, set the force-test flag */
2531         if (!ED_IsTested (Expr)) {
2532             ED_MarkForTest (Expr);
2533         }
2534
2535         /* Load the value */
2536         LoadExpr (CF_FORCECHAR, Expr);
2537
2538         /* Generate the jump */
2539         g_falsejump (CF_NONE, lab);
2540
2541         /* Parse more boolean and's */
2542         while (CurTok.Tok == TOK_BOOL_AND) {
2543
2544             /* Skip the && */
2545             NextToken ();
2546
2547             /* Get rhs */
2548             hie2 (&Expr2);
2549             if (!ED_IsTested (&Expr2)) {
2550                 ED_MarkForTest (&Expr2);
2551             }
2552             LoadExpr (CF_FORCECHAR, &Expr2);
2553
2554             /* Do short circuit evaluation */
2555             if (CurTok.Tok == TOK_BOOL_AND) {
2556                 g_falsejump (CF_NONE, lab);
2557             } else {
2558                 /* Last expression - will evaluate to true */
2559                 g_truejump (CF_NONE, TrueLab);
2560             }
2561         }
2562
2563         /* Define the false jump label here */
2564         g_defcodelabel (lab);
2565
2566         /* The result is an rvalue in primary */
2567         ED_MakeRValExpr (Expr);
2568         ED_TestDone (Expr);     /* Condition codes are set */
2569     }
2570 }
2571
2572
2573
2574 static void hieOr (ExprDesc *Expr)
2575 /* Process "exp || exp". */
2576 {
2577     ExprDesc Expr2;
2578     int BoolOp = 0;             /* Did we have a boolean op? */
2579     int AndOp;                  /* Did we have a && operation? */
2580     unsigned TrueLab;           /* Jump to this label if true */
2581     unsigned DoneLab;
2582
2583     /* Get a label */
2584     TrueLab = GetLocalLabel ();
2585
2586     /* Call the next level parser */
2587     hieAnd (Expr, TrueLab, &BoolOp);
2588
2589     /* Any boolean or's? */
2590     if (CurTok.Tok == TOK_BOOL_OR) {
2591
2592         /* If the expr hasn't set condition codes, set the force-test flag */
2593         if (!ED_IsTested (Expr)) {
2594             ED_MarkForTest (Expr);
2595         }
2596
2597         /* Get first expr */
2598         LoadExpr (CF_FORCECHAR, Expr);
2599
2600         /* For each expression jump to TrueLab if true. Beware: If we
2601          * had && operators, the jump is already in place!
2602          */
2603         if (!BoolOp) {
2604             g_truejump (CF_NONE, TrueLab);
2605         }
2606
2607         /* Remember that we had a boolean op */
2608         BoolOp = 1;
2609
2610         /* while there's more expr */
2611         while (CurTok.Tok == TOK_BOOL_OR) {
2612
2613             /* skip the || */
2614             NextToken ();
2615
2616             /* Get a subexpr */
2617             AndOp = 0;
2618             hieAnd (&Expr2, TrueLab, &AndOp);
2619             if (!ED_IsTested (&Expr2)) {
2620                 ED_MarkForTest (&Expr2);
2621             }
2622             LoadExpr (CF_FORCECHAR, &Expr2);
2623
2624             /* If there is more to come, add shortcut boolean eval. */
2625             g_truejump (CF_NONE, TrueLab);
2626
2627         }
2628
2629         /* The result is an rvalue in primary */
2630         ED_MakeRValExpr (Expr);
2631         ED_TestDone (Expr);                     /* Condition codes are set */
2632     }
2633
2634     /* If we really had boolean ops, generate the end sequence */
2635     if (BoolOp) {
2636         DoneLab = GetLocalLabel ();
2637         g_getimmed (CF_INT | CF_CONST, 0, 0);   /* Load FALSE */
2638         g_falsejump (CF_NONE, DoneLab);
2639         g_defcodelabel (TrueLab);
2640         g_getimmed (CF_INT | CF_CONST, 1, 0);   /* Load TRUE */
2641         g_defcodelabel (DoneLab);
2642     }
2643 }
2644
2645
2646
2647 static void hieQuest (ExprDesc* Expr)
2648 /* Parse the ternary operator */
2649 {
2650     int         labf;
2651     int         labt;
2652     ExprDesc    Expr2;          /* Expression 2 */
2653     ExprDesc    Expr3;          /* Expression 3 */
2654     int         Expr2IsNULL;    /* Expression 2 is a NULL pointer */
2655     int         Expr3IsNULL;    /* Expression 3 is a NULL pointer */
2656     Type*       ResultType;     /* Type of result */
2657
2658
2659     /* Call the lower level eval routine */
2660     if (Preprocessing) {
2661         hieOrPP (Expr);
2662     } else {
2663         hieOr (Expr);
2664     }
2665
2666     /* Check if it's a ternary expression */
2667     if (CurTok.Tok == TOK_QUEST) {
2668         NextToken ();
2669         if (!ED_IsTested (Expr)) {
2670             /* Condition codes not set, request a test */
2671             ED_MarkForTest (Expr);
2672         }
2673         LoadExpr (CF_NONE, Expr);
2674         labf = GetLocalLabel ();
2675         g_falsejump (CF_NONE, labf);
2676
2677         /* Parse second expression. Remember for later if it is a NULL pointer
2678          * expression, then load it into the primary.
2679          */
2680         ExprWithCheck (hie1, &Expr2);
2681         Expr2IsNULL = ED_IsNullPtr (&Expr2);
2682         if (!IsTypeVoid (Expr2.Type)) {
2683             /* Load it into the primary */
2684             LoadExpr (CF_NONE, &Expr2);
2685             ED_MakeRValExpr (&Expr2);
2686             Expr2.Type = PtrConversion (Expr2.Type);
2687         }
2688         labt = GetLocalLabel ();
2689         ConsumeColon ();
2690         g_jump (labt);
2691
2692         /* Jump here if the first expression was false */
2693         g_defcodelabel (labf);
2694
2695         /* Parse second expression. Remember for later if it is a NULL pointer
2696          * expression, then load it into the primary.
2697          */
2698         ExprWithCheck (hie1, &Expr3);
2699         Expr3IsNULL = ED_IsNullPtr (&Expr3);
2700         if (!IsTypeVoid (Expr3.Type)) {
2701             /* Load it into the primary */
2702             LoadExpr (CF_NONE, &Expr3);
2703             ED_MakeRValExpr (&Expr3);
2704             Expr3.Type = PtrConversion (Expr3.Type);
2705         }
2706
2707         /* Check if any conversions are needed, if so, do them.
2708          * Conversion rules for ?: expression are:
2709          *   - if both expressions are int expressions, default promotion
2710          *     rules for ints apply.
2711          *   - if both expressions are pointers of the same type, the
2712          *     result of the expression is of this type.
2713          *   - if one of the expressions is a pointer and the other is
2714          *     a zero constant, the resulting type is that of the pointer
2715          *     type.
2716          *   - if both expressions are void expressions, the result is of
2717          *     type void.
2718          *   - all other cases are flagged by an error.
2719          */
2720         if (IsClassInt (Expr2.Type) && IsClassInt (Expr3.Type)) {
2721
2722             /* Get common type */
2723             ResultType = promoteint (Expr2.Type, Expr3.Type);
2724
2725             /* Convert the third expression to this type if needed */
2726             TypeConversion (&Expr3, ResultType);
2727
2728             /* Setup a new label so that the expr3 code will jump around
2729              * the type cast code for expr2.
2730              */
2731             labf = GetLocalLabel ();    /* Get new label */
2732             g_jump (labf);              /* Jump around code */
2733
2734             /* The jump for expr2 goes here */
2735             g_defcodelabel (labt);
2736
2737             /* Create the typecast code for expr2 */
2738             TypeConversion (&Expr2, ResultType);
2739
2740             /* Jump here around the typecase code. */
2741             g_defcodelabel (labf);
2742             labt = 0;           /* Mark other label as invalid */
2743
2744         } else if (IsClassPtr (Expr2.Type) && IsClassPtr (Expr3.Type)) {
2745             /* Must point to same type */
2746             if (TypeCmp (Indirect (Expr2.Type), Indirect (Expr3.Type)) < TC_EQUAL) {
2747                 Error ("Incompatible pointer types");
2748             }
2749             /* Result has the common type */
2750             ResultType = Expr2.Type;
2751         } else if (IsClassPtr (Expr2.Type) && Expr3IsNULL) {
2752             /* Result type is pointer, no cast needed */
2753             ResultType = Expr2.Type;
2754         } else if (Expr2IsNULL && IsClassPtr (Expr3.Type)) {
2755             /* Result type is pointer, no cast needed */
2756             ResultType = Expr3.Type;
2757         } else if (IsTypeVoid (Expr2.Type) && IsTypeVoid (Expr3.Type)) {
2758             /* Result type is void */
2759             ResultType = Expr3.Type;
2760         } else {
2761             Error ("Incompatible types");
2762             ResultType = Expr2.Type;            /* Doesn't matter here */
2763         }
2764
2765         /* If we don't have the label defined until now, do it */
2766         if (labt) {
2767             g_defcodelabel (labt);
2768         }
2769
2770         /* Setup the target expression */
2771         ED_MakeRValExpr (Expr);
2772         Expr->Type  = ResultType;
2773     }
2774 }
2775
2776
2777
2778 static void opeq (const GenDesc* Gen, ExprDesc* Expr)
2779 /* Process "op=" operators. */
2780 {
2781     ExprDesc Expr2;
2782     unsigned flags;
2783     CodeMark Mark;
2784     int MustScale;
2785
2786     /* op= can only be used with lvalues */
2787     if (!ED_IsLVal (Expr)) {
2788         Error ("Invalid lvalue in assignment");
2789         return;
2790     }
2791
2792     /* The left side must not be const qualified */
2793     if (IsQualConst (Expr->Type)) {
2794         Error ("Assignment to const");
2795     }
2796
2797     /* There must be an integer or pointer on the left side */
2798     if (!IsClassInt (Expr->Type) && !IsTypePtr (Expr->Type)) {
2799         Error ("Invalid left operand type");
2800         /* Continue. Wrong code will be generated, but the compiler won't
2801          * break, so this is the best error recovery.
2802          */
2803     }
2804
2805     /* Skip the operator token */
2806     NextToken ();
2807
2808     /* Determine the type of the lhs */
2809     flags = TypeOf (Expr->Type);
2810     MustScale = (Gen->Func == g_add || Gen->Func == g_sub) && IsTypePtr (Expr->Type);
2811
2812     /* Get the lhs address on stack (if needed) */
2813     PushAddr (Expr);
2814
2815     /* Fetch the lhs into the primary register if needed */
2816     LoadExpr (CF_NONE, Expr);
2817
2818     /* Bring the lhs on stack */
2819     GetCodePos (&Mark);
2820     g_push (flags, 0);
2821
2822     /* Evaluate the rhs */
2823     if (evalexpr (CF_NONE, hie1, &Expr2) == 0) {
2824         /* The resulting value is a constant. If the generator has the NOPUSH
2825          * flag set, don't push the lhs.
2826          */
2827         if (Gen->Flags & GEN_NOPUSH) {
2828             RemoveCode (&Mark);
2829         }
2830         if (MustScale) {
2831             /* lhs is a pointer, scale rhs */
2832             Expr2.IVal *= CheckedSizeOf (Expr->Type+1);
2833         }
2834
2835         /* If the lhs is character sized, the operation may be later done
2836          * with characters.
2837          */
2838         if (CheckedSizeOf (Expr->Type) == SIZEOF_CHAR) {
2839             flags |= CF_FORCECHAR;
2840         }
2841
2842         /* Special handling for add and sub - some sort of a hack, but short code */
2843         if (Gen->Func == g_add) {
2844             g_inc (flags | CF_CONST, Expr2.IVal);
2845         } else if (Gen->Func == g_sub) {
2846             g_dec (flags | CF_CONST, Expr2.IVal);
2847         } else {
2848             if (Expr2.IVal == 0) {
2849                 /* Check for div by zero/mod by zero */
2850                 if (Gen->Func == g_div) {
2851                     Error ("Division by zero");
2852                 } else if (Gen->Func == g_mod) {
2853                     Error ("Modulo operation with zero");
2854                 }
2855             }
2856             Gen->Func (flags | CF_CONST, Expr2.IVal);
2857         }
2858     } else {
2859         /* rhs is not constant and already in the primary register */
2860         if (MustScale) {
2861             /* lhs is a pointer, scale rhs */
2862             g_scale (TypeOf (Expr2.Type), CheckedSizeOf (Expr->Type+1));
2863         }
2864
2865         /* If the lhs is character sized, the operation may be later done
2866          * with characters.
2867          */
2868         if (CheckedSizeOf (Expr->Type) == SIZEOF_CHAR) {
2869             flags |= CF_FORCECHAR;
2870         }
2871
2872         /* Adjust the types of the operands if needed */
2873         Gen->Func (g_typeadjust (flags, TypeOf (Expr2.Type)), 0);
2874     }
2875     Store (Expr, 0);
2876     ED_MakeRValExpr (Expr);
2877 }
2878
2879
2880
2881 static void addsubeq (const GenDesc* Gen, ExprDesc *Expr)
2882 /* Process the += and -= operators */
2883 {
2884     ExprDesc Expr2;
2885     unsigned lflags;
2886     unsigned rflags;
2887     int      MustScale;
2888
2889
2890     /* We're currently only able to handle some adressing modes */
2891     if (ED_GetLoc (Expr) == E_LOC_EXPR || ED_GetLoc (Expr) == E_LOC_PRIMARY) {
2892         /* Use generic routine */
2893         opeq (Gen, Expr);
2894         return;
2895     }
2896
2897     /* We must have an lvalue */
2898     if (ED_IsRVal (Expr)) {
2899         Error ("Invalid lvalue in assignment");
2900         return;
2901     }
2902
2903     /* The left side must not be const qualified */
2904     if (IsQualConst (Expr->Type)) {
2905         Error ("Assignment to const");
2906     }
2907
2908     /* There must be an integer or pointer on the left side */
2909     if (!IsClassInt (Expr->Type) && !IsTypePtr (Expr->Type)) {
2910         Error ("Invalid left operand type");
2911         /* Continue. Wrong code will be generated, but the compiler won't
2912          * break, so this is the best error recovery.
2913          */
2914     }
2915
2916     /* Skip the operator */
2917     NextToken ();
2918
2919     /* Check if we have a pointer expression and must scale rhs */
2920     MustScale = IsTypePtr (Expr->Type);
2921
2922     /* Initialize the code generator flags */
2923     lflags = 0;
2924     rflags = 0;
2925
2926     /* Evaluate the rhs */
2927     hie1 (&Expr2);
2928     if (ED_IsConstAbs (&Expr2)) {
2929         /* The resulting value is a constant. Scale it. */
2930         if (MustScale) {
2931             Expr2.IVal *= CheckedSizeOf (Indirect (Expr->Type));
2932         }
2933         rflags |= CF_CONST;
2934         lflags |= CF_CONST;
2935     } else {
2936         /* Not constant, load into the primary */
2937         LoadExpr (CF_NONE, &Expr2);
2938         if (MustScale) {
2939             /* lhs is a pointer, scale rhs */
2940             g_scale (TypeOf (Expr2.Type), CheckedSizeOf (Indirect (Expr->Type)));
2941         }
2942     }
2943
2944     /* Setup the code generator flags */
2945     lflags |= TypeOf (Expr->Type) | GlobalModeFlags (Expr);
2946     rflags |= TypeOf (Expr2.Type) | CF_FORCECHAR;
2947
2948     /* Convert the type of the lhs to that of the rhs */
2949     g_typecast (lflags, rflags);
2950
2951     /* Output apropriate code depending on the location */
2952     switch (ED_GetLoc (Expr)) {
2953
2954         case E_LOC_ABS:
2955             /* Absolute: numeric address or const */
2956             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2957                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2958             } else {
2959                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2960             }
2961             break;
2962
2963         case E_LOC_GLOBAL:
2964             /* Global variable */
2965             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2966                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2967             } else {
2968                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2969             }
2970             break;
2971
2972         case E_LOC_STATIC:
2973         case E_LOC_LITERAL:
2974             /* Static variable or literal in the literal pool */
2975             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2976                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2977             } else {
2978                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2979             }
2980             break;
2981
2982         case E_LOC_REGISTER:
2983             /* Register variable */
2984             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2985                 g_addeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2986             } else {
2987                 g_subeqstatic (lflags, Expr->Name, Expr->IVal, Expr2.IVal);
2988             }
2989             break;
2990
2991         case E_LOC_STACK:
2992             /* Value on the stack */
2993             if (Gen->Tok == TOK_PLUS_ASSIGN) {
2994                 g_addeqlocal (lflags, Expr->IVal, Expr2.IVal);
2995             } else {
2996                 g_subeqlocal (lflags, Expr->IVal, Expr2.IVal);
2997             }
2998             break;
2999
3000         default:
3001             Internal ("Invalid location in Store(): 0x%04X", ED_GetLoc (Expr));
3002     }
3003
3004     /* Expression is a rvalue in the primary now */
3005     ED_MakeRValExpr (Expr);
3006 }
3007
3008
3009
3010 void hie1 (ExprDesc* Expr)
3011 /* Parse first level of expression hierarchy. */
3012 {
3013     hieQuest (Expr);
3014     switch (CurTok.Tok) {
3015
3016         case TOK_ASSIGN:
3017             Assignment (Expr);
3018             break;
3019
3020         case TOK_PLUS_ASSIGN:
3021             addsubeq (&GenPASGN, Expr);
3022             break;
3023
3024         case TOK_MINUS_ASSIGN:
3025             addsubeq (&GenSASGN, Expr);
3026             break;
3027
3028         case TOK_MUL_ASSIGN:
3029             opeq (&GenMASGN, Expr);
3030             break;
3031
3032         case TOK_DIV_ASSIGN:
3033             opeq (&GenDASGN, Expr);
3034             break;
3035
3036         case TOK_MOD_ASSIGN:
3037             opeq (&GenMOASGN, Expr);
3038             break;
3039
3040         case TOK_SHL_ASSIGN:
3041             opeq (&GenSLASGN, Expr);
3042             break;
3043
3044         case TOK_SHR_ASSIGN:
3045             opeq (&GenSRASGN, Expr);
3046             break;
3047
3048         case TOK_AND_ASSIGN:
3049             opeq (&GenAASGN, Expr);
3050             break;
3051
3052         case TOK_XOR_ASSIGN:
3053             opeq (&GenXOASGN, Expr);
3054             break;
3055
3056         case TOK_OR_ASSIGN:
3057             opeq (&GenOASGN, Expr);
3058             break;
3059
3060         default:
3061             break;
3062     }
3063 }
3064
3065
3066
3067 void hie0 (ExprDesc *Expr)
3068 /* Parse comma operator. */
3069 {
3070     hie1 (Expr);
3071     while (CurTok.Tok == TOK_COMMA) {
3072         NextToken ();
3073         hie1 (Expr);
3074     }
3075 }
3076
3077
3078
3079 int evalexpr (unsigned Flags, void (*Func) (ExprDesc*), ExprDesc* Expr)
3080 /* Will evaluate an expression via the given function. If the result is a
3081  * constant, 0 is returned and the value is put in the Expr struct. If the
3082  * result is not constant, LoadExpr is called to bring the value into the
3083  * primary register and 1 is returned.
3084  */
3085 {
3086     /* Evaluate */
3087     ExprWithCheck (Func, Expr);
3088
3089     /* Check for a constant expression */
3090     if (ED_IsConstAbs (Expr)) {
3091         /* Constant expression */
3092         return 0;
3093     } else {
3094         /* Not constant, load into the primary */
3095         LoadExpr (Flags, Expr);
3096         return 1;
3097     }
3098 }
3099
3100
3101
3102 void Expression0 (ExprDesc* Expr)
3103 /* Evaluate an expression via hie0 and put the result into the primary register */
3104 {
3105     ExprWithCheck (hie0, Expr);
3106     LoadExpr (CF_NONE, Expr);
3107 }
3108
3109
3110
3111 void ConstExpr (void (*Func) (ExprDesc*), ExprDesc* Expr)
3112 /* Will evaluate an expression via the given function. If the result is not
3113  * a constant of some sort, a diagnostic will be printed, and the value is
3114  * replaced by a constant one to make sure there are no internal errors that
3115  * result from this input error.
3116  */
3117 {
3118     ExprWithCheck (Func, Expr);
3119     if (!ED_IsConst (Expr)) {
3120         Error ("Constant expression expected");
3121         /* To avoid any compiler errors, make the expression a valid const */
3122         ED_MakeConstAbsInt (Expr, 1);
3123     }
3124 }
3125
3126
3127
3128 void BoolExpr (void (*Func) (ExprDesc*), ExprDesc* Expr)
3129 /* Will evaluate an expression via the given function. If the result is not
3130  * something that may be evaluated in a boolean context, a diagnostic will be
3131  * printed, and the value is replaced by a constant one to make sure there
3132  * are no internal errors that result from this input error.
3133  */
3134 {
3135     ExprWithCheck (Func, Expr);
3136     if (!ED_IsBool (Expr)) {
3137         Error ("Boolean expression expected");
3138         /* To avoid any compiler errors, make the expression a valid int */
3139         ED_MakeConstAbsInt (Expr, 1);
3140     }
3141 }
3142
3143
3144
3145 void ConstAbsIntExpr (void (*Func) (ExprDesc*), ExprDesc* Expr)
3146 /* Will evaluate an expression via the given function. If the result is not
3147  * a constant numeric integer value, a diagnostic will be printed, and the
3148  * value is replaced by a constant one to make sure there are no internal
3149  * errors that result from this input error.
3150  */
3151 {
3152     ExprWithCheck (Func, Expr);
3153     if (!ED_IsConstAbsInt (Expr)) {
3154         Error ("Constant integer expression expected");
3155         /* To avoid any compiler errors, make the expression a valid const */
3156         ED_MakeConstAbsInt (Expr, 1);
3157     }
3158 }
3159
3160
3161