]> git.sur5r.net Git - cc65/blobdiff - src/cc65/stmt.c
Working on the backend
[cc65] / src / cc65 / stmt.c
index 7260dd1f7b80c962e138bf3377d2971df45ce8ef..0de58c6d2367ef951a54182c6488806f7b02174c 100644 (file)
 
 
 
+/*****************************************************************************/
+/*                            Helper functions                              */
+/*****************************************************************************/
+
+
+
+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 */
     NextToken ();
 
     /* Generate a jump label and parse the condition */
-    flab1 = GetLocalLabel ();
-    test (flab1, 0);
+    Label1 = GetLocalLabel ();
+    test (Label1, 0);
 
     /* Parse the if body */
-    gotbreak = Statement ();
+    GotBreak = Statement (0);
 
     /* Else clause present? */
     if (CurTok.Tok != TOK_ELSE) {
 
-       g_defcodelabel (flab1);
+       g_defcodelabel (Label1);
+
        /* Since there's no else clause, we're not sure, if the a break
         * statement is really executed.
         */
@@ -79,86 +122,110 @@ static int doif (void)
 
     } else {
 
-       /* Skip the else */
+       /* Generate a jump around the else branch */
+       unsigned Label2 = GetLocalLabel ();
+       g_jump (Label2);
+
+       /* Skip the else */
        NextToken ();
 
-       /* 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 = GetLocalLabel ();
-           g_jump (flab2);
-       } else {
-           /* Mark the label as unused */
-           flab2 = 0;
-       }
-       g_defcodelabel (flab1);
-       gotbreak &= Statement ();
+       /* 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_defcodelabel (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;
+    /* Get the loop control labels */
+    unsigned loop = GetLocalLabel ();
+    unsigned lab = GetLocalLabel ();
 
+    /* Skip the while token */
     NextToken ();
-    loop = GetLocalLabel ();
-    lab = GetLocalLabel ();
+
+    /* Add the loop to the loop stack */
     AddLoop (oursp, loop, lab, 0, 0);
+
+    /* Define the head label */
     g_defcodelabel (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.Tok == TOK_SEMI) {
-           /* Shortcut */
-           NextToken ();
-           /* Use a conditional jump */
-           g_truejump (CF_NONE, loop);
-       } else {
-           /* There is code inside the while loop */
-           Statement ();
-           g_jump (loop);
-           g_defcodelabel (lab);
-       }
 
-    } else {
+    /* Parse the loop body */
+    Statement (0);
+
+    /* Parse the end condition */
+    Consume (TOK_WHILE, "`while' expected");
+    test (loop, 1);
+    ConsumeSemi ();
 
-       /* Do loop */
-               Statement ();
-       Consume (TOK_WHILE, "`while' expected");
-       test (loop, 1);
-       ConsumeSemi ();
-       g_defcodelabel (lab);
+    /* 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);
     }
+
+    /* 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;
 
@@ -188,8 +255,8 @@ static void DoReturn (void)
 
 
 
-static void dobreak (void)
-/* Handle 'break' statement here */
+static void BreakStatement (void)
+/* Handle the 'break' statement */
 {
     LoopDesc* L;
 
@@ -215,8 +282,8 @@ static void dobreak (void)
 
 
 
-static void docontinue (void)
-/* Handle 'continue' statement here */
+static void ContinueStatement (void)
+/* Handle the 'continue' statement */
 {
     LoopDesc* L;
 
@@ -254,11 +321,11 @@ static void docontinue (void)
 
 
 
-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 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 */
@@ -325,29 +392,29 @@ static void cascadeswitch (struct expent* eval)
                        case T_SCHAR:
                            /* Signed char */
                            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:
+                               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);
                    }
 
@@ -358,17 +425,17 @@ static void cascadeswitch (struct expent* eval)
                     * the condition is true.
                     */
                    if (CurTok.Tok == TOK_CASE) {
-                       /* Create a code label if needed */
-                       if (CodeLab == 0) {
-                           CodeLab = GetLocalLabel ();
-                       }
-                       g_falsejump (CF_NONE, CodeLab);
+                       /* 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);
+                       g_truejump (CF_NONE, NextLab);
                    }
 
                    /* Skip the colon */
@@ -382,9 +449,9 @@ static void cascadeswitch (struct expent* eval)
                    /* Handle the pathologic case: DEFAULT followed by CASE */
                    if (CurTok.Tok == TOK_CASE) {
                        if (CodeLab == 0) {
-                           CodeLab = GetLocalLabel ();
+                           CodeLab = GetLocalLabel ();
                        }
-                       g_jump (CodeLab);
+                       g_jump (CodeLab);
                    }
 
                    /* Skip the colon */
@@ -406,7 +473,7 @@ static void cascadeswitch (struct expent* eval)
 
        /* Parse statements */
        if (CurTok.Tok != TOK_RCURLY) {
-                   HaveBreak = Statement ();
+                   HaveBreak = Statement (0);
        }
     }
 
@@ -432,7 +499,7 @@ static void cascadeswitch (struct expent* eval)
 
 
 
-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 */
@@ -448,7 +515,7 @@ static void tableswitch (struct expent* eval)
     int lcount;                        /* Label count */
     int HaveBreak;             /* Last statement has a break */
     int HaveDefault;           /* Remember if we had a default label */
-    unsigned Flags;            /* Code generator flags */
+    unsigned Flags;            /* Code generator flags */
     struct expent lval;                /* Case label expression */
     struct swent *p;
     struct swent *swtab;
@@ -495,7 +562,7 @@ static void tableswitch (struct expent* eval)
            HaveBreak = 0;
        }
        if (CurTok.Tok != TOK_RCURLY) {
-           HaveBreak = Statement ();
+           HaveBreak = Statement (0);
        }
     }
 
@@ -542,10 +609,10 @@ 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" */
     NextToken ();
@@ -560,71 +627,98 @@ static void doswitch (void)
 
     /* Now decide which sort of switch we will create: */
     if (IsTypeChar (eval.e_tptr) || (CodeSizeFactor >= 200 && IsClassInt (eval.e_tptr))) {
-               cascadeswitch (&eval);
+               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 ();
-    loop = GetLocalLabel ();
-    lab = GetLocalLabel ();
-    linc = GetLocalLabel ();
-    lstat = GetLocalLabel ();
-    AddLoop (oursp, loop, lab, linc, lstat);
+
+    /* Add the loop to the loop stack */
+    AddLoop (oursp, TestLabel, lab, IncLabel, lstat);
+
+    /* Skip the opening paren */
     ConsumeLParen ();
-    if (CurTok.Tok != TOK_SEMI) {      /* exp1 */
+
+    /* Parse the initializer expression */
+    if (CurTok.Tok != TOK_SEMI) {
        expression (&lval1);
     }
     ConsumeSemi ();
-    g_defcodelabel (loop);
-    if (CurTok.Tok != TOK_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_defcodelabel (linc);
-    if (CurTok.Tok != TOK_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);
+
+    /* Loop body */
     g_defcodelabel (lstat);
-    Statement ();
-    g_jump (linc);
+    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 CompoundStatement (void)
-/* Compound statement. Allow any number of statements inside braces. */
+/* Compound statement. Allow any number of statements inside braces. The
+ * function returns true if the last statement was a break or return.
+ */
 {
-    int isbrk;
-    int oldsp;
-
-    /* eat LCURLY */
-    NextToken ();
+    int GotBreak;
 
     /* Remember the stack at block entry */
-    oldsp = oursp;
+    int OldStack = oursp;
 
     /* Enter a new lexical level */
     EnterBlockLevel ();
@@ -633,45 +727,51 @@ static int CompoundStatement (void)
     DeclareLocals ();
 
     /* Now process statements in this block */
-    isbrk = 0;
+    GotBreak = 0;
     while (CurTok.Tok != TOK_RCURLY) {
        if (CurTok.Tok != TOK_CEOF) {
-           isbrk = Statement ();
+           GotBreak = Statement (0);
        } else {
            break;
        }
     }
 
-    /* Emit references to imports/exports for this block */
-    EmitExternals ();
-
     /* Clean up the stack. */
-    if (isbrk) {
-       oursp = oldsp;
-    } else {
-       g_space (oursp - oldsp);
-       oursp = oldsp;
+    if (!GotBreak) {
+       g_space (oursp - OldStack);
     }
+    oursp = OldStack;
+
+    /* Emit references to imports/exports for this block */
+    EmitExternals ();
 
     /* Leave the lexical level */
     LeaveBlockLevel ();
 
-    /* Eat closing brace */
-    ConsumeRCurly ();
-
-    return isbrk;
+    return GotBreak;
 }
 
 
 
-int Statement (void)
+int Statement (int* PendingToken)
 /* Statement parser. Returns 1 if the statement does a return/break, returns
- * 0 otherwise
+ * 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;
 
-    /* */
+    /* 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 */
@@ -682,49 +782,52 @@ int Statement (void)
        switch (CurTok.Tok) {
 
            case TOK_LCURLY:
-               return CompoundStatement ();
+               NextToken ();
+               GotBreak = CompoundStatement ();
+               CheckTok (TOK_RCURLY, "`{' expected", PendingToken);
+               return GotBreak;
 
            case TOK_IF:
-               return doif ();
+               return IfStatement ();
 
            case TOK_WHILE:
-               dowhile ('w');
-               break;
+               WhileStatement ();
+               break;
 
            case TOK_DO:
-               dowhile ('d');
-               break;
+               DoStatement ();
+               break;
 
            case TOK_SWITCH:
-               doswitch ();
-               break;
+               SwitchStatement ();
+               break;
 
            case TOK_RETURN:
-               DoReturn ();
-               ConsumeSemi ();
-               return 1;
+               ReturnStatement ();
+               CheckSemi (PendingToken);
+               return 1;
 
            case TOK_BREAK:
-               dobreak ();
-               ConsumeSemi ();
+               BreakStatement ();
+               CheckSemi (PendingToken);
                return 1;
 
            case TOK_CONTINUE:
-               docontinue ();
-               ConsumeSemi ();
+               ContinueStatement ();
+               CheckSemi (PendingToken);
                return 1;
 
            case TOK_FOR:
-               dofor ();
+               ForStatement ();
                break;
 
            case TOK_GOTO:
-               DoGoto ();
-               ConsumeSemi ();
+               GotoStatement ();
+               CheckSemi (PendingToken);
                return 1;
 
            case TOK_SEMI:
-               /* ignore it. */
+               /* Ignore it */
                NextToken ();
                break;
 
@@ -733,8 +836,9 @@ int Statement (void)
                break;
 
            default:
+               /* Actual statement */
                expression (&lval);
-               ConsumeSemi ();
+               CheckSemi (PendingToken);
        }
     }
     return 0;