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