]> git.sur5r.net Git - cc65/blob - src/cc65/stmt.c
ef150fad598b49286196a4e6eb0318d09ba53ab6
[cc65] / src / cc65 / stmt.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  stmt.c                                   */
4 /*                                                                           */
5 /*                             Parse a statement                             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2008 Ullrich von Bassewitz                                       */
10 /*               Roemerstrasse 52                                            */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <string.h>
38
39 /* common */
40 #include "coll.h"
41 #include "xmalloc.h"
42
43 /* cc65 */
44 #include "asmcode.h"
45 #include "asmlabel.h"
46 #include "codegen.h"
47 #include "datatype.h"
48 #include "error.h"
49 #include "expr.h"
50 #include "function.h"
51 #include "global.h"
52 #include "goto.h"
53 #include "litpool.h"
54 #include "loadexpr.h"
55 #include "locals.h"
56 #include "loop.h"
57 #include "pragma.h"
58 #include "scanner.h"
59 #include "stackptr.h"
60 #include "stmt.h"
61 #include "swstmt.h"
62 #include "symtab.h"
63 #include "testexpr.h"
64 #include "typeconv.h"
65
66
67
68 /*****************************************************************************/
69 /*                             Helper functions                              */
70 /*****************************************************************************/
71
72
73
74 static void CheckLabelWithoutStatement (void)
75 /* Called from Statement() after a label definition. Will check for a
76  * following closing curly brace. This means that a label is not followed
77  * by a statement which is required by the standard. Output an error if so.
78  */
79 {
80     if (CurTok.Tok == TOK_RCURLY) {
81         Error ("Label at end of compound statement");
82     }
83 }
84
85
86
87 static void CheckTok (token_t Tok, const char* Msg, int* PendingToken)
88 /* Helper function for Statement. Will check for Tok and print Msg if not
89  * found. If PendingToken is NULL, it will the skip the token, otherwise
90  * it will store one to PendingToken.
91  */
92 {
93     if (CurTok.Tok != Tok) {
94         Error (Msg);
95     } else if (PendingToken) {
96         *PendingToken = 1;
97     } else {
98         NextToken ();
99     }
100 }
101
102
103
104 static void CheckSemi (int* PendingToken)
105 /* Helper function for Statement. Will check for a semicolon and print an
106  * error message if not found (plus some error recovery). If PendingToken is
107  * NULL, it will the skip the token, otherwise it will store one to
108  * PendingToken.
109  * This function is a special version of CheckTok with the addition of the
110  * error recovery.
111  */
112 {
113     int HaveToken = (CurTok.Tok == TOK_SEMI);
114     if (!HaveToken) {
115         Error ("`;' expected");
116         /* Try to be smart about errors */
117         if (CurTok.Tok == TOK_COLON || CurTok.Tok == TOK_COMMA) {
118             HaveToken = 1;
119         }
120     }
121     if (HaveToken) {
122         if (PendingToken) {
123             *PendingToken = 1;
124         } else {
125             NextToken ();
126         }
127     }
128 }
129
130
131
132 static void SkipPending (int PendingToken)
133 /* Skip the pending token if we have one */
134 {
135     if (PendingToken) {
136         NextToken ();
137     }
138 }
139
140
141
142 /*****************************************************************************/
143 /*                                   Code                                    */
144 /*****************************************************************************/
145
146
147
148 static int IfStatement (void)
149 /* Handle an 'if' statement */
150 {
151     unsigned Label1;
152     unsigned TestResult;
153     int GotBreak;
154
155     /* Skip the if */
156     NextToken ();
157
158     /* Generate a jump label and parse the condition */
159     Label1 = GetLocalLabel ();
160     TestResult = TestInParens (Label1, 0);
161
162     /* Parse the if body */
163     GotBreak = Statement (0);
164
165     /* Else clause present? */
166     if (CurTok.Tok != TOK_ELSE) {
167
168         g_defcodelabel (Label1);
169
170         /* Since there's no else clause, we're not sure, if the a break
171          * statement is really executed.
172          */
173         return 0;
174
175     } else {
176
177         /* Generate a jump around the else branch */
178         unsigned Label2 = GetLocalLabel ();
179         g_jump (Label2);
180
181         /* Skip the else */
182         NextToken ();
183
184         /* If the if expression was always true, the code in the else branch
185          * is never executed. Output a warning if this is the case.
186          */
187         if (TestResult == TESTEXPR_TRUE) {
188             Warning ("Unreachable code");
189         }
190
191         /* Define the target for the first test */
192         g_defcodelabel (Label1);
193
194         /* Total break only if both branches had a break. */
195         GotBreak &= Statement (0);
196
197         /* Generate the label for the else clause */
198         g_defcodelabel (Label2);
199
200         /* Done */
201         return GotBreak;
202     }
203 }
204
205
206
207 static void DoStatement (void)
208 /* Handle the 'do' statement */
209 {
210     /* Get the loop control labels */
211     unsigned LoopLabel      = GetLocalLabel ();
212     unsigned BreakLabel     = GetLocalLabel ();
213     unsigned ContinueLabel  = GetLocalLabel ();
214
215     /* Skip the while token */
216     NextToken ();
217
218     /* Add the loop to the loop stack */
219     AddLoop (BreakLabel, ContinueLabel);
220
221     /* Define the loop label */
222     g_defcodelabel (LoopLabel);
223
224     /* Parse the loop body */
225     Statement (0);
226
227     /* Output the label for a continue */
228     g_defcodelabel (ContinueLabel);
229
230     /* Parse the end condition */
231     Consume (TOK_WHILE, "`while' expected");
232     TestInParens (LoopLabel, 1);
233     ConsumeSemi ();
234
235     /* Define the break label */
236     g_defcodelabel (BreakLabel);
237
238     /* Remove the loop from the loop stack */
239     DelLoop ();
240 }
241
242
243
244 static void WhileStatement (void)
245 /* Handle the 'while' statement */
246 {
247     int PendingToken;
248
249     /* Get the loop control labels */
250     unsigned LoopLabel  = GetLocalLabel ();
251     unsigned BreakLabel = GetLocalLabel ();
252
253     /* Skip the while token */
254     NextToken ();
255
256     /* Add the loop to the loop stack. In case of a while loop, the loop head
257      * label is used for continue statements.
258      */
259     AddLoop (BreakLabel, LoopLabel);
260
261     /* Define the head label */
262     g_defcodelabel (LoopLabel);
263
264     /* Test the loop condition */
265     TestInParens (BreakLabel, 0);
266
267     /* Loop body */
268     Statement (&PendingToken);
269
270     /* Jump back to loop top */
271     g_jump (LoopLabel);
272
273     /* Exit label */
274     g_defcodelabel (BreakLabel);
275
276     /* Eat remaining tokens that were delayed because of line info
277      * correctness
278      */
279     SkipPending (PendingToken);
280
281     /* Remove the loop from the loop stack */
282     DelLoop ();
283 }
284
285
286
287 static void ReturnStatement (void)
288 /* Handle the 'return' statement */
289 {
290     ExprDesc Expr;
291
292     NextToken ();
293     if (CurTok.Tok != TOK_SEMI) {
294
295         /* Check if the function has a return value declared */
296         if (F_HasVoidReturn (CurrentFunc)) {
297             Error ("Returning a value in function with return type void");
298         }
299
300         /* Evaluate the return expression */
301         hie0 (&Expr);
302
303         /* Ignore the return expression if the function returns void */
304         if (!F_HasVoidReturn (CurrentFunc)) {
305
306             /* Convert the return value to the type of the function result */
307             TypeConversion (&Expr, F_GetReturnType (CurrentFunc));
308
309             /* Load the value into the primary */
310             LoadExpr (CF_NONE, &Expr);
311         }
312
313     } else if (!F_HasVoidReturn (CurrentFunc) && !F_HasOldStyleIntRet (CurrentFunc)) {
314         Error ("Function `%s' must return a value", F_GetFuncName (CurrentFunc));
315     }
316
317     /* Cleanup the stack in case we're inside a block with locals */
318     g_space (StackPtr - F_GetTopLevelSP (CurrentFunc));
319
320     /* Output a jump to the function exit code */
321     g_jump (F_GetRetLab (CurrentFunc));
322 }
323
324
325
326 static void BreakStatement (void)
327 /* Handle the 'break' statement */
328 {
329     LoopDesc* L;
330
331     /* Skip the break */
332     NextToken ();
333
334     /* Get the current loop descriptor */
335     L = CurrentLoop ();
336
337     /* Check if we are inside a loop */
338     if (L == 0) {
339         /* Error: No current loop */
340         Error ("`break' statement not within loop or switch");
341         return;
342     }
343
344     /* Correct the stack pointer if needed */
345     g_space (StackPtr - L->StackPtr);
346
347     /* Jump to the exit label of the loop */
348     g_jump (L->BreakLabel);
349 }
350
351
352
353 static void ContinueStatement (void)
354 /* Handle the 'continue' statement */
355 {
356     LoopDesc* L;
357
358     /* Skip the continue */
359     NextToken ();
360
361     /* Get the current loop descriptor */
362     L = CurrentLoop ();
363     if (L) {
364         /* Search for a loop that has a continue label. */
365         do {
366             if (L->ContinueLabel) {
367                 break;
368             }
369             L = L->Next;
370         } while (L);
371     }
372
373     /* Did we find it? */
374     if (L == 0) {
375         Error ("`continue' statement not within a loop");
376         return;
377     }
378
379     /* Correct the stackpointer if needed */
380     g_space (StackPtr - L->StackPtr);
381
382     /* Jump to next loop iteration */
383     g_jump (L->ContinueLabel);
384 }
385
386
387
388 static void ForStatement (void)
389 /* Handle a 'for' statement */
390 {
391     ExprDesc lval1;
392     ExprDesc lval3;
393     int HaveIncExpr;
394     CodeMark IncExprStart;
395     CodeMark IncExprEnd;
396     int PendingToken;
397
398     /* Get several local labels needed later */
399     unsigned TestLabel    = GetLocalLabel ();
400     unsigned BreakLabel   = GetLocalLabel ();
401     unsigned IncLabel     = GetLocalLabel ();
402     unsigned BodyLabel    = GetLocalLabel ();
403
404     /* Skip the FOR token */
405     NextToken ();
406
407     /* Add the loop to the loop stack. A continue jumps to the start of the
408      * the increment condition.
409      */
410     AddLoop (BreakLabel, IncLabel);
411
412     /* Skip the opening paren */
413     ConsumeLParen ();
414
415     /* Parse the initializer expression */
416     if (CurTok.Tok != TOK_SEMI) {
417         Expression0 (&lval1);
418     }
419     ConsumeSemi ();
420
421     /* Label for the test expressions */
422     g_defcodelabel (TestLabel);
423
424     /* Parse the test expression */
425     if (CurTok.Tok != TOK_SEMI) {
426         Test (BodyLabel, 1);
427         g_jump (BreakLabel);
428     } else {
429         g_jump (BodyLabel);
430     }
431     ConsumeSemi ();
432
433     /* Remember the start of the increment expression */
434     GetCodePos (&IncExprStart);
435
436     /* Label for the increment expression */
437     g_defcodelabel (IncLabel);
438
439     /* Parse the increment expression */
440     HaveIncExpr = (CurTok.Tok != TOK_RPAREN);
441     if (HaveIncExpr) {
442         Expression0 (&lval3);
443     }
444
445     /* Jump to the test */
446     g_jump (TestLabel);
447
448     /* Remember the end of the increment expression */
449     GetCodePos (&IncExprEnd);
450
451     /* Skip the closing paren */
452     ConsumeRParen ();
453
454     /* Loop body */
455     g_defcodelabel (BodyLabel);
456     Statement (&PendingToken);
457
458     /* If we had an increment expression, move the code to the bottom of
459      * the loop. In this case we don't need to jump there at the end of
460      * the loop body.
461      */
462     if (HaveIncExpr) {
463         CodeMark Here;
464         GetCodePos (&Here);
465         MoveCode (&IncExprStart, &IncExprEnd, &Here);
466     } else {
467         /* Jump back to the increment expression */
468         g_jump (IncLabel);
469     }
470
471     /* Skip a pending token if we have one */
472     SkipPending (PendingToken);
473
474     /* Declare the break label */
475     g_defcodelabel (BreakLabel);
476
477     /* Remove the loop from the loop stack */
478     DelLoop ();
479 }
480
481
482
483 static int CompoundStatement (void)
484 /* Compound statement. Allow any number of statements inside braces. The
485  * function returns true if the last statement was a break or return.
486  */
487 {
488     int GotBreak;
489
490     /* Remember the stack at block entry */
491     int OldStack = StackPtr;
492
493     /* Enter a new lexical level */
494     EnterBlockLevel ();
495
496     /* Parse local variable declarations if any */
497     DeclareLocals ();
498
499     /* Now process statements in this block */
500     GotBreak = 0;
501     while (CurTok.Tok != TOK_RCURLY) {
502         if (CurTok.Tok != TOK_CEOF) {
503             GotBreak = Statement (0);
504         } else {
505             break;
506         }
507     }
508
509     /* Clean up the stack. */
510     if (!GotBreak) {
511         g_space (StackPtr - OldStack);
512     }
513     StackPtr = OldStack;
514
515     /* Emit references to imports/exports for this block */
516     EmitExternals ();
517
518     /* Leave the lexical level */
519     LeaveBlockLevel ();
520
521     return GotBreak;
522 }
523
524
525
526 int Statement (int* PendingToken)
527 /* Statement parser. Returns 1 if the statement does a return/break, returns
528  * 0 otherwise. If the PendingToken pointer is not NULL, the function will
529  * not skip the terminating token of the statement (closing brace or
530  * semicolon), but store true if there is a pending token, and false if there
531  * is none. The token is always checked, so there is no need for the caller to
532  * check this token, it must be skipped, however. If the argument pointer is
533  * NULL, the function will skip the token.
534  */
535 {
536     ExprDesc Expr;
537     int GotBreak;
538     CodeMark Start, End;
539
540     /* Assume no pending token */
541     if (PendingToken) {
542         *PendingToken = 0;
543     }
544
545     /* Check for a label */
546     if (CurTok.Tok == TOK_IDENT && NextTok.Tok == TOK_COLON) {
547
548         /* Special handling for a label */
549         DoLabel ();
550         CheckLabelWithoutStatement ();
551
552     } else {
553
554         switch (CurTok.Tok) {
555
556             case TOK_LCURLY:
557                 NextToken ();
558                 GotBreak = CompoundStatement ();
559                 CheckTok (TOK_RCURLY, "`{' expected", PendingToken);
560                 return GotBreak;
561
562             case TOK_IF:
563                 return IfStatement ();
564
565             case TOK_WHILE:
566                 WhileStatement ();
567                 break;
568
569             case TOK_DO:
570                 DoStatement ();
571                 break;
572
573             case TOK_SWITCH:
574                 SwitchStatement ();
575                 break;
576
577             case TOK_RETURN:
578                 ReturnStatement ();
579                 CheckSemi (PendingToken);
580                 return 1;
581
582             case TOK_BREAK:
583                 BreakStatement ();
584                 CheckSemi (PendingToken);
585                 return 1;
586
587             case TOK_CONTINUE:
588                 ContinueStatement ();
589                 CheckSemi (PendingToken);
590                 return 1;
591
592             case TOK_FOR:
593                 ForStatement ();
594                 break;
595
596             case TOK_GOTO:
597                 GotoStatement ();
598                 CheckSemi (PendingToken);
599                 return 1;
600
601             case TOK_SEMI:
602                 /* Ignore it */
603                 CheckSemi (PendingToken);
604                 break;
605
606             case TOK_PRAGMA:
607                 DoPragma ();
608                 break;
609
610             case TOK_CASE:
611                 CaseLabel ();
612                 CheckLabelWithoutStatement ();
613                 break;
614
615             case TOK_DEFAULT:
616                 DefaultLabel ();
617                 CheckLabelWithoutStatement ();
618                 break;
619
620             default:
621                 /* Remember the current code position */
622                 GetCodePos (&Start);
623                 /* Actual statement */
624                 ExprWithCheck (hie0, &Expr);
625                 /* Load the result only if it is an lvalue and the type is
626                  * marked as volatile. Otherwise the load is useless.
627                  */
628                 if (ED_IsLVal (&Expr) && IsQualVolatile (Expr.Type)) {
629                     LoadExpr (CF_NONE, &Expr);
630                 }
631                 /* If the statement didn't generate code, and is not of type
632                  * void, emit a warning.
633                  */
634                 GetCodePos (&End);
635                 if (CodeRangeIsEmpty (&Start, &End) && !IsTypeVoid (Expr.Type)) {
636                     Warning ("Statement has no effect");
637                 }
638                 CheckSemi (PendingToken);
639         }
640     }
641     return 0;
642 }
643
644
645
646