]> git.sur5r.net Git - cc65/blobdiff - src/cc65/stmt.c
Working on the backend
[cc65] / src / cc65 / stmt.c
index d04dc3064e82f81fb6d661d6244fc41d1c05f295..0de58c6d2367ef951a54182c6488806f7b02174c 100644 (file)
 #include <stdio.h>
 #include <string.h>
 
+/* common */
+#include "xmalloc.h"
+
+/* cc65 */
 #include "asmcode.h"
 #include "asmlabel.h"
 #include "codegen.h"
@@ -23,7 +27,6 @@
 #include "litpool.h"
 #include "locals.h"
 #include "loop.h"
-#include "mem.h"
 #include "pragma.h"
 #include "scanner.h"
 #include "symtab.h"
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                            Helper functions                              */
 /*****************************************************************************/
 
 
 
-static int statement (void);
-/* Forward decl */
+static void CheckTok (token_t Tok, const char* Msg, int* PendingToken)
+/* Helper function for Statement. Will check for Tok and print Msg if not
+ * found. If PendingToken is NULL, it will the skip the token, otherwise
+ * it will store one to PendingToken.
+ */
+{
+    if (CurTok.Tok != Tok) {
+       Error (Msg);
+    } else if (PendingToken) {
+       *PendingToken = 1;
+    } else {
+       NextToken ();
+    }
+}
+
+
+
+static void CheckSemi (int* PendingToken)
+/* Helper function for Statement. Will call CheckTok with the parameters
+ * for a semicolon.
+ */
+{
+    CheckTok (TOK_SEMI, "`;' expected", PendingToken);
+}
+
+
+
+static void SkipPending (int PendingToken)
+/* Skip the pending token if we have one */
+{
+    if (PendingToken) {    
+       NextToken ();
+    }
+}
+
+
+
+/*****************************************************************************/
+/*                                  Code                                    */
+/*****************************************************************************/
 
 
 
-static int doif (void)
-/* Handle 'if' statement here */
+static int IfStatement (void)
+/* Handle an 'if' statement */
 {
-    int flab1;
-    int flab2;
-    int gotbreak;
+    unsigned Label1;
+    int GotBreak;
 
     /* Skip the if */
-    gettok ();
+    NextToken ();
 
     /* Generate a jump label and parse the condition */
-    flab1 = GetLabel ();
-    test (flab1, 0);
+    Label1 = GetLocalLabel ();
+    test (Label1, 0);
 
     /* Parse the if body */
-    gotbreak = statement ();
+    GotBreak = Statement (0);
 
     /* Else clause present? */
-    if (curtok != ELSE) {
+    if (CurTok.Tok != TOK_ELSE) {
+
+       g_defcodelabel (Label1);
 
-       g_defloclabel (flab1);
        /* Since there's no else clause, we're not sure, if the a break
         * statement is really executed.
         */
@@ -81,297 +122,343 @@ static int doif (void)
 
     } else {
 
-       /* Skip the else */
-       gettok ();
+       /* Generate a jump around the else branch */
+       unsigned Label2 = GetLocalLabel ();
+       g_jump (Label2);
 
-       /* If we had some sort of break statement at the end of the if clause,
-        * there's no need to generate an additional jump around the else
-        * clause, since the jump is never reached.
-        */
-       if (!gotbreak) {
-           flab2 = GetLabel ();
-           g_jump (flab2);
-       } else {
-           /* Mark the label as unused */
-           flab2 = 0;
-       }
-       g_defloclabel (flab1);
-       gotbreak &= statement ();
+       /* Skip the else */
+       NextToken ();
+
+       /* Define the target for the first test */
+       g_defcodelabel (Label1);
+
+       /* Total break only if both branches had a break. */
+       GotBreak &= Statement (0);
 
        /* Generate the label for the else clause */
-       if (flab2) {
-           g_defloclabel (flab2);
-       }
+       g_defcodelabel (Label2);
 
        /* Done */
-       return gotbreak;
+       return GotBreak;
     }
 }
 
 
 
-static void dowhile (char wtype)
-/* Handle 'while' statement here */
+static void DoStatement (void)
+/* Handle the 'do' statement */
 {
-    int loop;
-    int lab;
-
-    gettok ();
-    loop = GetLabel ();
-    lab = GetLabel ();
-    addloop (oursp, loop, lab, 0, 0);
-    g_defloclabel (loop);
-    if (wtype == 'w') {
-
-       /* While loop */
-               test (lab, 0);
-
-       /* If the statement following the while loop is empty, that is, we have
-        * something like "while (1) ;", the test function ommitted the jump as
-        * an optimization. Since we know, the condition codes are set, we can
-        * do another small optimization here, and use a conditional jump
-        * instead an absolute one.
-        */
-       if (curtok == SEMI) {
-           /* Shortcut */
-           gettok ();
-           /* Use a conditional jump */
-           g_truejump (CF_NONE, loop);
-       } else {
-           /* There is code inside the while loop */
-           statement ();
-           g_jump (loop);
-           g_defloclabel (lab);
-       }
+    /* Get the loop control labels */
+    unsigned loop = GetLocalLabel ();
+    unsigned lab = GetLocalLabel ();
 
-    } else {
+    /* Skip the while token */
+    NextToken ();
+
+    /* Add the loop to the loop stack */
+    AddLoop (oursp, loop, lab, 0, 0);
 
-       /* Do loop */
-               statement ();
-       Consume (WHILE, ERR_WHILE_EXPECTED);
-       test (loop, 1);
-       ConsumeSemi ();
-       g_defloclabel (lab);
+    /* Define the head label */
+    g_defcodelabel (loop);
 
+    /* Parse the loop body */
+    Statement (0);
+
+    /* Parse the end condition */
+    Consume (TOK_WHILE, "`while' expected");
+    test (loop, 1);
+    ConsumeSemi ();
+
+    /* Define the break label */
+    g_defcodelabel (lab);
+
+    /* Remove the loop from the loop stack */
+    DelLoop ();
+}
+
+
+
+static void WhileStatement (void)
+/* Handle the 'while' statement */
+{
+    int PendingToken;
+
+    /* Get the loop control labels */
+    unsigned loop = GetLocalLabel ();
+    unsigned lab = GetLocalLabel ();
+
+    /* Skip the while token */
+    NextToken ();
+
+    /* Add the loop to the loop stack */
+    AddLoop (oursp, loop, lab, 0, 0);
+
+    /* Define the head label */
+    g_defcodelabel (loop);
+
+    /* Test the loop condition */
+    test (lab, 0);
+
+    /* If the statement following the while loop is empty, that is, we have
+     * something like "while (1) ;", the test function ommitted the jump as
+     * an optimization. Since we know, the condition codes are set, we can
+     * do another small optimization here, and use a conditional jump
+     * instead an absolute one.
+     */
+    if (CurTok.Tok == TOK_SEMI) {
+       /* Use a conditional jump */
+       g_truejump (CF_NONE, loop);
+       /* Shortcut */
+       NextToken ();
+    } else {
+       /* There is code inside the while loop, parse the body */
+       Statement (&PendingToken);
+       g_jump (loop);
+       g_defcodelabel (lab);
+       SkipPending (PendingToken);
     }
-    delloop ();
+
+    /* Remove the loop from the loop stack */
+    DelLoop ();
 }
 
 
 
-static void doreturn (void)
-/* Handle 'return' statement here */
+static void ReturnStatement (void)
+/* Handle the 'return' statement */
 {
     struct expent lval;
-    unsigned etype = 0;                /* Type of return expression */
-    int HaveVal = 0;           /* Do we have a return value in ax? */
 
-
-    gettok ();
-    if (curtok != SEMI) {
+    NextToken ();
+    if (CurTok.Tok != TOK_SEMI) {
                if (HasVoidReturn (CurrentFunc)) {
-                   Error (ERR_CANNOT_RETURN_VALUE);
+                   Error ("Returning a value in function with return type void");
                }
-               if (evalexpr (CF_NONE, hie0, &lval) == 0) {
-                   /* Constant value */
-                   etype = CF_CONST;
-               } else {
-           /* Value in the primary register */
-           HaveVal = 1;
-       }
 
-       /* Convert the return value to the type of the function result */
-       if (!HasVoidReturn (CurrentFunc)) {
-                   etype |= assignadjust (GetReturnType (CurrentFunc), &lval) & ~CF_CONST;
-       }
+       /* Evaluate the return expression. Result will be in primary */
+       expression (&lval);
+
+       /* Convert the return value to the type of the function result */
+       if (!HasVoidReturn (CurrentFunc)) {
+                   assignadjust (GetReturnType (CurrentFunc), &lval);
+       }
     } else if (!HasVoidReturn (CurrentFunc)) {
-               Error (ERR_MUST_RETURN_VALUE);
+       Error ("Function `%s' must return a value", GetFuncName (CurrentFunc));
     }
-    RestoreRegVars (HaveVal);
-    g_leave (etype, lval.e_const);
+
+    /* Cleanup the stack in case we're inside a block with locals */
+    g_space (oursp - GetTopLevelSP (CurrentFunc));
+
+    /* Output a jump to the function exit code */
+    g_jump (GetRetLab (CurrentFunc));
 }
 
 
 
-static void dobreak (void)
-/* Handle 'break' statement here */
+static void BreakStatement (void)
+/* Handle the 'break' statement */
 {
-    struct loopdesc* l;
+    LoopDesc* L;
 
-    gettok ();
-    if ((l = currentloop ()) == 0) {
+    /* Skip the break */
+    NextToken ();
+
+    /* Get the current loop descriptor */
+    L = CurrentLoop ();
+
+    /* Check if we are inside a loop */
+    if (L == 0) {
        /* Error: No current loop */
-               return;
+       Error ("`break' statement not within loop or switch");
+       return;
     }
-    g_space (oursp - l->sp);
-    g_jump (l->label);
+
+    /* Correct the stack pointer if needed */
+    g_space (oursp - L->StackPtr);
+
+    /* Jump to the exit label of the loop */
+    g_jump (L->Label);
 }
 
 
 
-static void docontinue (void)
-/* Handle 'continue' statement here */
+static void ContinueStatement (void)
+/* Handle the 'continue' statement */
 {
-    struct loopdesc* l;
+    LoopDesc* L;
+
+    /* Skip the continue */
+    NextToken ();
 
-    gettok ();
-    if ((l = currentloop ()) == 0) {
-       /* Error: Not in loop */
-               return;
+    /* Get the current loop descriptor */
+    L = CurrentLoop ();
+    if (L) {
+       /* Search for the correct loop */
+       do {
+           if (L->Loop) {
+               break;
+           }
+           L = L->Next;
+       } while (L);
     }
-    do {
-       if (l->loop) {
-           break;
-       }
-       l = l->next;
-    } while (l);
-    if (l == 0) {
-               Error (ERR_UNEXPECTED_CONTINUE);
-               return;
+
+    /* Did we find it? */
+    if (L == 0) {
+       Error ("`continue' statement not within a loop");
+       return;
     }
-    g_space (oursp - l->sp);
-    if (l->linc) {
-               g_jump (l->linc);
+
+    /* Correct the stackpointer if needed */
+    g_space (oursp - L->StackPtr);
+
+    /* Output the loop code */
+    if (L->linc) {
+               g_jump (L->linc);
     } else {
-               g_jump (l->loop);
+               g_jump (L->Loop);
     }
 }
 
 
 
-static void cascadeswitch (struct expent* eval)
+static void CascadeSwitch (struct expent* eval)
 /* Handle a switch statement for chars with a cmp cascade for the selector */
 {
-    unsigned exitlab;                  /* Exit label */
-    unsigned nextlab;                  /* Next case label */
-    unsigned codelab;          /* Label that starts the actual selector code */
-    int havebreak;             /* Remember if we exited with break */
+    unsigned ExitLab;                  /* Exit label */
+    unsigned NextLab;                  /* Next case label */
+    unsigned CodeLab;          /* Label that starts the actual selector code */
+    int HaveBreak;             /* Remember if we exited with break */
+    int HaveDefault;           /* Remember if we had a default label */
     int lcount;                        /* Label count */
-    unsigned flags;                    /* Code generator flags */
+    unsigned Flags;                    /* Code generator flags */
     struct expent lval;                /* Case label expression */
-    long val;                  /* Case label value */
+    long Val;                  /* Case label value */
 
 
     /* Create a loop so we may break out, init labels */
-    exitlab = GetLabel ();
-    addloop (oursp, 0, exitlab, 0, 0);
+    ExitLab = GetLocalLabel ();
+    AddLoop (oursp, 0, ExitLab, 0, 0);
 
     /* Setup some variables needed in the loop  below */
-    flags = TypeOf (eval->e_tptr) | CF_CONST | CF_FORCECHAR;
-    codelab = nextlab = 0;
-    havebreak = 1;
+    Flags = TypeOf (eval->e_tptr) | CF_CONST | CF_FORCECHAR;
+    CodeLab = NextLab = 0;
+    HaveBreak = 1;
+    HaveDefault = 0;
 
     /* Parse the labels */
     lcount = 0;
-    while (curtok != RCURLY) {
+    while (CurTok.Tok != TOK_RCURLY) {
 
-       if (curtok == CASE || curtok == DEFAULT) {
+       if (CurTok.Tok == TOK_CASE || CurTok.Tok == TOK_DEFAULT) {
 
            /* If the code for the previous selector did not end with a
             * break statement, we must jump over the next selector test.
             */
-           if (!havebreak) {
+           if (!HaveBreak) {
                /* Define a label for the code */
-               if (codelab == 0) {
-                   codelab = GetLabel ();
+               if (CodeLab == 0) {
+                   CodeLab = GetLocalLabel ();
                }
-               g_jump (codelab);
+               g_jump (CodeLab);
            }
 
            /* If we have a cascade label, emit it */
-           if (nextlab) {
-               g_defloclabel (nextlab);
-               nextlab = 0;
+           if (NextLab) {
+               g_defcodelabel (NextLab);
+               NextLab = 0;
            }
 
-           while (curtok == CASE || curtok == DEFAULT) {
+           while (CurTok.Tok == TOK_CASE || CurTok.Tok == TOK_DEFAULT) {
 
                /* Parse the selector */
-               if (curtok == CASE) {
+               if (CurTok.Tok == TOK_CASE) {
 
                    /* Count labels */
                    ++lcount;
 
                    /* Skip the "case" token */
-                   gettok ();
+                   NextToken ();
 
                    /* Read the selector expression */
                    constexpr (&lval);
-                   if (!IsInt (lval.e_tptr)) {
-                       Error (ERR_ILLEGAL_TYPE);
+                   if (!IsClassInt (lval.e_tptr)) {
+                       Error ("Switch quantity not an integer");
                    }
 
                    /* Check the range of the expression */
-                   val = lval.e_const;
+                   Val = lval.e_const;
                    switch (*eval->e_tptr) {
 
-                       case T_CHAR:
+                       case T_SCHAR:
                            /* Signed char */
-                           if (val < -128 || val > 127) {
-                               Error (ERR_RANGE);
-                           }
-                           break;
-
-                       case T_UCHAR:
-                           if (val < 0 || val > 255) {
-                               Error (ERR_RANGE);
-                           }
-                           break;
-
-                       case T_INT:
-                           if (val < -32768 || val > 32767) {
-                               Error (ERR_RANGE);
-                           }
-                           break;
-
-                       case T_UINT:
-                           if (val < 0 || val > 65535) {
-                               Error (ERR_RANGE);
-                           }
-                           break;
-
-                       default:
-                           Internal ("Invalid type: %02X", *eval->e_tptr & 0xFF);
+                           if (Val < -128 || Val > 127) {
+                               Error ("Range error");
+                           }
+                           break;
+
+                       case T_UCHAR:
+                           if (Val < 0 || Val > 255) {
+                               Error ("Range error");
+                           }
+                           break;
+
+                       case T_INT:
+                           if (Val < -32768 || Val > 32767) {
+                               Error ("Range error");
+                           }
+                           break;
+
+                       case T_UINT:
+                           if (Val < 0 || Val > 65535) {
+                               Error ("Range error");
+                           }
+                           break;
+
+                       default:
+                           Internal ("Invalid type: %02X", *eval->e_tptr & 0xFF);
                    }
 
-                   /* Skip the colon */
-                   ConsumeColon ();
-
                    /* Emit a compare */
-                   g_cmp (flags, val);
+                   g_cmp (Flags, Val);
 
                    /* If another case follows, we will jump to the code if
                     * the condition is true.
                     */
-                   if (curtok == CASE) {
-                       /* Create a code label if needed */
-                       if (codelab == 0) {
-                           codelab = GetLabel ();
-                       }
-                       g_falsejump (CF_NONE, codelab);
-                   } else if (curtok != DEFAULT) {
-                       /* No case follows, jump to next selector */
-                       if (nextlab == 0) {
-                           nextlab = GetLabel ();
-                       }
-                       g_truejump (CF_NONE, nextlab);
+                   if (CurTok.Tok == TOK_CASE) {
+                       /* Create a code label if needed */
+                       if (CodeLab == 0) {
+                           CodeLab = GetLocalLabel ();
+                       }
+                       g_falsejump (CF_NONE, CodeLab);
+                   } else if (CurTok.Tok != TOK_DEFAULT) {
+                       /* No case follows, jump to next selector */
+                       if (NextLab == 0) {
+                           NextLab = GetLocalLabel ();
+                       }
+                       g_truejump (CF_NONE, NextLab);
                    }
 
+                   /* Skip the colon */
+                   ConsumeColon ();
+
                } else {
 
                    /* Default case */
-                   gettok ();
+                   NextToken ();
+
+                   /* Handle the pathologic case: DEFAULT followed by CASE */
+                   if (CurTok.Tok == TOK_CASE) {
+                       if (CodeLab == 0) {
+                           CodeLab = GetLocalLabel ();
+                       }
+                       g_jump (CodeLab);
+                   }
 
                    /* Skip the colon */
                    ConsumeColon ();
 
-                   /* Handle the pathologic case: DEFAULT followed by CASE */
-                   if (curtok == CASE) {
-                       if (codelab == 0) {
-                           codelab = GetLabel ();
-                       }
-                       g_jump (codelab);
-                   }
+                   /* Remember that we had a default label */
+                   HaveDefault = 1;
                }
 
            }
@@ -379,40 +466,40 @@ static void cascadeswitch (struct expent* eval)
         }
 
        /* Emit a code label if we have one */
-       if (codelab) {
-           g_defloclabel (codelab);
-           codelab = 0;
+       if (CodeLab) {
+           g_defcodelabel (CodeLab);
+           CodeLab = 0;
        }
 
        /* Parse statements */
-       if (curtok != RCURLY) {
-                   havebreak = statement ();
+       if (CurTok.Tok != TOK_RCURLY) {
+                   HaveBreak = Statement (0);
        }
     }
 
     /* Check if we have any labels */
-    if (lcount == 0) {
-       Warning (WARN_NO_CASE_LABELS);
+    if (lcount == 0 && !HaveDefault) {
+       Warning ("No case labels");
     }
 
-    /* Eat the closing curly brace */
-    gettok ();
-
     /* Define the exit label and, if there's a next label left, create this
      * one, too.
      */
-    if (nextlab) {
-       g_defloclabel (nextlab);
+    if (NextLab) {
+       g_defcodelabel (NextLab);
     }
-    g_defloclabel (exitlab);
+    g_defcodelabel (ExitLab);
+
+    /* Eat the closing curly brace */
+    NextToken ();
 
     /* End the loop */
-    delloop ();
+    DelLoop ();
 }
 
 
 
-static void tableswitch (struct expent* eval)
+static void TableSwitch (struct expent* eval)
 /* Handle a switch statement via table based selector */
 {
     /* Entry for one case in a switch statement */
@@ -426,8 +513,9 @@ static void tableswitch (struct expent* eval)
     int label;                         /* label for case */
     int lcase;                         /* label for compares */
     int lcount;                        /* Label count */
-    int havebreak;             /* Last statement has a break */
-    unsigned flags;            /* Code generator flags */
+    int HaveBreak;             /* Last statement has a break */
+    int HaveDefault;           /* Remember if we had a default label */
+    unsigned Flags;            /* Code generator flags */
     struct expent lval;                /* Case label expression */
     struct swent *p;
     struct swent *swtab;
@@ -436,74 +524,75 @@ static void tableswitch (struct expent* eval)
     swtab = xmalloc (CASE_MAX * sizeof (struct swent));
 
     /* Create a look so we may break out, init labels */
-    havebreak = 0;             /* Keep gcc silent */
+    HaveBreak = 0;             /* Keep gcc silent */
+    HaveDefault = 0;           /* No default case until now */
     dlabel = 0;                        /* init */
-    lab = GetLabel ();         /* get exit */
+    lab = GetLocalLabel ();    /* get exit */
     p = swtab;
-    addloop (oursp, 0, lab, 0, 0);
+    AddLoop (oursp, 0, lab, 0, 0);
 
     /* Jump behind the code for the CASE labels */
-    g_jump (lcase = GetLabel ());
+    g_jump (lcase = GetLocalLabel ());
     lcount = 0;
-    while (curtok != RCURLY) {
-       if (curtok == CASE || curtok == DEFAULT) {
+    while (CurTok.Tok != TOK_RCURLY) {
+       if (CurTok.Tok == TOK_CASE || CurTok.Tok == TOK_DEFAULT) {
            if (lcount >= CASE_MAX) {
-                       Fatal (FAT_TOO_MANY_CASE_LABELS);
+                       Fatal ("Too many case labels");
            }
-           label = GetLabel ();
+           label = GetLocalLabel ();
            do {
-               if (curtok == CASE) {
-                           gettok ();
+               if (CurTok.Tok == TOK_CASE) {
+                           NextToken ();
                    constexpr (&lval);
-                   if (!IsInt (lval.e_tptr)) {
-                       Error (ERR_ILLEGAL_TYPE);
+                   if (!IsClassInt (lval.e_tptr)) {
+                       Error ("Switch quantity not an integer");
                    }
                    p->sw_const = lval.e_const;
                    p->sw_lab = label;
                    ++p;
                    ++lcount;
                } else {
-                   gettok ();
+                   NextToken ();
                    dlabel = label;
+                   HaveDefault = 1;
                }
                ConsumeColon ();
-           } while (curtok == CASE || curtok == DEFAULT);
-           g_defloclabel (label);
-           havebreak = 0;
+           } while (CurTok.Tok == TOK_CASE || CurTok.Tok == TOK_DEFAULT);
+           g_defcodelabel (label);
+           HaveBreak = 0;
        }
-       if (curtok != RCURLY) {
-           havebreak = statement ();
+       if (CurTok.Tok != TOK_RCURLY) {
+           HaveBreak = Statement (0);
        }
     }
 
     /* Check if we have any labels */
-    if (lcount == 0) {
-       Warning (WARN_NO_CASE_LABELS);
+    if (lcount == 0 && !HaveDefault) {
+       Warning ("No case labels");
     }
 
     /* Eat the closing curly brace */
-    gettok ();
+    NextToken ();
 
     /* If the last statement doesn't have a break or return, add one */
-    if (!havebreak) {
+    if (!HaveBreak) {
         g_jump (lab);
     }
 
     /* Actual selector code goes here */
-    g_defloclabel (lcase);
+    g_defcodelabel (lcase);
 
     /* Create the call to the switch subroutine */
-    flags = TypeOf (eval->e_tptr);
-    g_switch (flags);
+    Flags = TypeOf (eval->e_tptr);
+    g_switch (Flags);
 
     /* First entry is negative of label count */
-    g_defdata (CF_INT, -((int)lcount)-1, 0);
+    g_defdata (CF_INT | CF_CONST, -((int)lcount)-1, 0);
 
     /* Create the case selector table */
-    AddCodeHint ("casetable");
     p = swtab;
     while (lcount) {
-               g_case (flags, p->sw_lab, p->sw_const); /* Create one label */
+               g_case (Flags, p->sw_lab, p->sw_const); /* Create one label */
        --lcount;
        ++p;
     }
@@ -511,8 +600,8 @@ static void tableswitch (struct expent* eval)
     if (dlabel) {
                g_jump (dlabel);
     }
-    g_defloclabel (lab);
-    delloop ();
+    g_defcodelabel (lab);
+    DelLoop ();
 
     /* Free the allocated space for the labels */
     xfree (swtab);
@@ -520,13 +609,13 @@ static void tableswitch (struct expent* eval)
 
 
 
-static void doswitch (void)
-/* Handle 'switch' statement here */
+static void SwitchStatement (void)
+/* Handle a 'switch' statement */
 {
-    struct expent eval;                /* Switch statement expression */
+    struct expent eval;                /* Switch statement expression */
 
     /* Eat the "switch" */
-    gettok ();
+    NextToken ();
 
     /* Read the switch expression */
     ConsumeLParen ();
@@ -537,135 +626,219 @@ static void doswitch (void)
     ConsumeLCurly ();
 
     /* Now decide which sort of switch we will create: */
-    if (IsChar (eval.e_tptr) || (FavourSize == 0 && IsInt (eval.e_tptr))) {
-               cascadeswitch (&eval);
+    if (IsTypeChar (eval.e_tptr) || (CodeSizeFactor >= 200 && IsClassInt (eval.e_tptr))) {
+               CascadeSwitch (&eval);
     } else {
-       tableswitch (&eval);
+       TableSwitch (&eval);
     }
 }
 
 
 
-static void dofor (void)
-/* Handle 'for' statement here */
+static void ForStatement (void)
+/* Handle a 'for' statement */
 {
-    int loop;
-    int lab;
-    int linc;
-    int lstat;
     struct expent lval1;
     struct expent lval2;
     struct expent lval3;
+    int PendingToken;
+
+    /* Get several local labels needed later */
+    unsigned TestLabel = GetLocalLabel ();
+    unsigned lab       = GetLocalLabel ();
+    unsigned IncLabel  = GetLocalLabel ();
+    unsigned lstat     = GetLocalLabel ();
+
+    /* Skip the FOR token */
+    NextToken ();
+
+    /* Add the loop to the loop stack */
+    AddLoop (oursp, TestLabel, lab, IncLabel, lstat);
 
-    gettok ();
-    loop = GetLabel ();
-    lab = GetLabel ();
-    linc = GetLabel ();
-    lstat = GetLabel ();
-    addloop (oursp, loop, lab, linc, lstat);
+    /* Skip the opening paren */
     ConsumeLParen ();
-    if (curtok != SEMI) {      /* exp1 */
+
+    /* Parse the initializer expression */
+    if (CurTok.Tok != TOK_SEMI) {
        expression (&lval1);
     }
     ConsumeSemi ();
-    g_defloclabel (loop);
-    if (curtok != SEMI) {      /* exp2 */
-       boolexpr (&lval2);
-       g_truejump (CF_NONE, lstat);
-       g_jump (lab);
+
+    /* Label for the test expressions */
+    g_defcodelabel (TestLabel);
+
+    /* Parse the test expression */
+    if (CurTok.Tok != TOK_SEMI) {
+       boolexpr (&lval2);
+       g_truejump (CF_NONE, lstat);
+       g_jump (lab);
     } else {
-       g_jump (lstat);
+       g_jump (lstat);
     }
     ConsumeSemi ();
-    g_defloclabel (linc);
-    if (curtok != RPAREN) {    /* exp3 */
+
+    /* Label for the increment expression */
+    g_defcodelabel (IncLabel);
+
+    /* Parse the increment expression */
+    if (CurTok.Tok != TOK_RPAREN) {
        expression (&lval3);
     }
+
+    /* Jump to the test */
+    g_jump (TestLabel);
+
+    /* Skip the closing paren */
     ConsumeRParen ();
-    g_jump (loop);
-    g_defloclabel (lstat);
-    statement ();
-    g_jump (linc);
-    g_defloclabel (lab);
-    delloop ();
+
+    /* Loop body */
+    g_defcodelabel (lstat);
+    Statement (&PendingToken);
+
+    /* Jump back to the increment expression */
+    g_jump (IncLabel);
+                           
+    /* Skip a pending token if we have one */
+    SkipPending (PendingToken);
+
+    /* Declare the break label */
+    g_defcodelabel (lab);
+
+    /* Remove the loop from the loop stack */
+    DelLoop ();
 }
 
 
 
-static int statement (void)
-/* Statement parser. Called whenever syntax requires a statement.
- * This routine performs that statement and returns 1 if it is a branch,
- * 0 otherwise
+static int CompoundStatement (void)
+/* Compound statement. Allow any number of statements inside braces. The
+ * function returns true if the last statement was a break or return.
+ */
+{
+    int GotBreak;
+
+    /* Remember the stack at block entry */
+    int OldStack = oursp;
+
+    /* Enter a new lexical level */
+    EnterBlockLevel ();
+
+    /* Parse local variable declarations if any */
+    DeclareLocals ();
+
+    /* Now process statements in this block */
+    GotBreak = 0;
+    while (CurTok.Tok != TOK_RCURLY) {
+       if (CurTok.Tok != TOK_CEOF) {
+           GotBreak = Statement (0);
+       } else {
+           break;
+       }
+    }
+
+    /* Clean up the stack. */
+    if (!GotBreak) {
+       g_space (oursp - OldStack);
+    }
+    oursp = OldStack;
+
+    /* Emit references to imports/exports for this block */
+    EmitExternals ();
+
+    /* Leave the lexical level */
+    LeaveBlockLevel ();
+
+    return GotBreak;
+}
+
+
+
+int Statement (int* PendingToken)
+/* Statement parser. Returns 1 if the statement does a return/break, returns
+ * 0 otherwise. If the PendingToken pointer is not NULL, the function will
+ * not skip the terminating token of the statement (closing brace or
+ * semicolon), but store true if there is a pending token, and false if there
+ * is none. The token is always checked, so there is no need for the caller to
+ * check this token, it must be skipped, however. If the argument pointer is
+ * NULL, the function will skip the token.
  */
 {
     struct expent lval;
+    int GotBreak;
 
-    /* */
-    if (curtok == IDENT && nxttok == COLON) {
+    /* Assume no pending token */
+    if (PendingToken) {
+       *PendingToken = 0;
+    }
+
+    /* Check for a label */
+    if (CurTok.Tok == TOK_IDENT && NextTok.Tok == TOK_COLON) {
 
        /* Special handling for a label */
        DoLabel ();
 
     } else {
 
-       switch (curtok) {
+       switch (CurTok.Tok) {
 
-           case LCURLY:
-               return compound ();
+           case TOK_LCURLY:
+               NextToken ();
+               GotBreak = CompoundStatement ();
+               CheckTok (TOK_RCURLY, "`{' expected", PendingToken);
+               return GotBreak;
 
-           case IF:
-               return doif ();
+           case TOK_IF:
+               return IfStatement ();
 
-           case WHILE:
-               dowhile ('w');
-               break;
+           case TOK_WHILE:
+               WhileStatement ();
+               break;
 
-           case DO:
-               dowhile ('d');
-               break;
+           case TOK_DO:
+               DoStatement ();
+               break;
 
-           case SWITCH:
-               doswitch ();
-               break;
+           case TOK_SWITCH:
+               SwitchStatement ();
+               break;
 
-           case RETURN:
-               doreturn ();
-               ConsumeSemi ();
-               return 1;
+           case TOK_RETURN:
+               ReturnStatement ();
+               CheckSemi (PendingToken);
+               return 1;
 
-           case BREAK:
-               dobreak ();
-               ConsumeSemi ();
+           case TOK_BREAK:
+               BreakStatement ();
+               CheckSemi (PendingToken);
                return 1;
 
-           case CONTINUE:
-               docontinue ();
-               ConsumeSemi ();
+           case TOK_CONTINUE:
+               ContinueStatement ();
+               CheckSemi (PendingToken);
                return 1;
 
-           case FOR:
-               dofor ();
+           case TOK_FOR:
+               ForStatement ();
                break;
 
-           case GOTO:
-               DoGoto ();
-               ConsumeSemi ();
+           case TOK_GOTO:
+               GotoStatement ();
+               CheckSemi (PendingToken);
                return 1;
 
-           case SEMI:
-               /* ignore it. */
-               gettok ();
+           case TOK_SEMI:
+               /* Ignore it */
+               NextToken ();
                break;
 
-           case PRAGMA:
+           case TOK_PRAGMA:
                DoPragma ();
                break;
 
            default:
-               AddCodeHint ("stmt:start");
+               /* Actual statement */
                expression (&lval);
-               AddCodeHint ("stmt:end");
-               ConsumeSemi ();
+               CheckSemi (PendingToken);
        }
     }
     return 0;
@@ -673,61 +846,3 @@ static int statement (void)
 
 
 
-int compound (void)
-/* Compound statement.         Allow any number of statements, inside braces. */
-{
-    static unsigned CurrentLevel = 0;
-
-    int isbrk;
-    int oldsp;
-
-    /* eat LCURLY */
-    gettok ();
-
-    /* Remember the stack at block entry */
-    oldsp = oursp;
-
-    /* If we're not on function level, enter a new lexical level */
-    if (CurrentLevel++ > 0) {
-       /* A nested block */
-       EnterBlockLevel ();
-    }
-
-    /* Parse local variable declarations if any */
-    DeclareLocals ();
-
-    /* Now process statements in the function body */
-    isbrk = 0;
-    while (curtok != RCURLY) {
-       if (curtok == CEOF)
-           break;
-       else {
-           isbrk = statement ();
-       }
-    }
-
-    /* Emit references to imports/exports for this block */
-    EmitExternals ();
-
-    /* If this is not the top level compound statement, clean up the stack.
-     * For a top level statement this will be done by the function exit code.
-     */
-    if (--CurrentLevel != 0) {
-       /* Some sort of nested block */
-       LeaveBlockLevel ();
-       if (isbrk) {
-           oursp = oldsp;
-       } else {
-           g_space (oursp - oldsp);
-           oursp = oldsp;
-       }
-    }
-
-    /* Eat closing brace */
-    ConsumeRCurly ();
-
-    return isbrk;
-}
-
-
-