File grammar.y changed (mode: 100644) (index 3c0c7a1..8c657ae) |
... |
... |
codeblock: /* empty */ { $$.ty = gEmpty; } |
440 |
440 |
} |
} |
441 |
441 |
; |
; |
442 |
442 |
|
|
443 |
|
statement: newline { $$.ty = gEmpty; } |
|
444 |
|
| CALL funccall newline{ $$.ty = gAny;} |
|
445 |
|
/*1 2 3 4 5 6 7 8 9 */ |
|
446 |
|
| ifstart expr THEN newline codeblock elsifseq elseseq ifend newline { |
|
447 |
|
canconvert($2.ty, gBoolean, -1); |
|
448 |
|
$$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); |
|
449 |
|
} |
|
450 |
|
| SET rid EQUALS expr newline { |
|
451 |
|
const struct typeandname *tan = getVariable($2.str); |
|
452 |
|
checkwrongshadowing(tan, -1); |
|
453 |
|
if (tan->isarray) { |
|
454 |
|
char ebuf[1024]; |
|
455 |
|
snprintf(ebuf, 1024, "Index missing for array variable %s", $2.str); |
|
456 |
|
yyerrorline(semanticerror, lineno - 1, ebuf); |
|
457 |
|
} |
|
458 |
|
canconvert($4.ty, tan->ty, -1); |
|
459 |
|
$$.ty = gAny; |
|
460 |
|
if (tan->isconst) { |
|
461 |
|
char ebuf[1024]; |
|
462 |
|
snprintf(ebuf, 1024, "Cannot assign to constant %s", $2.str); |
|
463 |
|
yyerrorline(semanticerror, lineno - 1, ebuf); |
|
464 |
|
} |
|
465 |
|
if (inconstant) |
|
466 |
|
validateGlobalAssignment($2.str); |
|
467 |
|
if(infunction && !ht_lookup(&initialized, $2.str)){ |
|
468 |
|
ht_put(&initialized, $2.str, (void*)1); |
|
469 |
|
} |
|
470 |
|
|
|
471 |
|
} |
|
472 |
|
| SET rid rid EQUALS expr newline { |
|
|
443 |
|
statement: |
|
444 |
|
newline { $$.ty = gEmpty; } |
|
445 |
|
| CALL funccall newline { $$.ty = gAny; } |
|
446 |
|
/*1 2 3 4 5 6 7 8 9 */ |
|
447 |
|
| ifstart expr THEN newline codeblock elsifseq elseseq ifend newline { |
|
448 |
|
canconvert($2.ty, gBoolean, -1); |
|
449 |
|
$$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); |
|
450 |
|
} |
|
451 |
|
| SET rid EQUALS expr newline { |
|
452 |
|
const struct typeandname *tan = getVariable($2.str); |
|
453 |
|
checkwrongshadowing(tan, -1); |
|
454 |
|
if (tan->isarray) { |
473 |
455 |
char ebuf[1024]; |
char ebuf[1024]; |
474 |
|
if(ht_lookup(&types, $2.str)){ |
|
475 |
|
snprintf(ebuf, 1024, ">%s< %s is an error here. The type only needs to be stated at declartion time", $2.str, $3.str); |
|
476 |
|
}else if(ht_lookup(&types, $3.str)){ |
|
477 |
|
snprintf(ebuf, 1024, "%s >%s< is an error here. The type only needs to be stated at declartion time", $2.str, $3.str); |
|
478 |
|
}else{ |
|
479 |
|
snprintf(ebuf, 1024, "Unexpected '%s'", $3.str); |
|
480 |
|
} |
|
481 |
|
yyerrorline(syntaxerror, lineno -1, ebuf); |
|
482 |
|
} |
|
483 |
|
| SET rid LBRACKET expr RBRACKET EQUALS expr newline{ |
|
484 |
|
const struct typeandname *tan = getVariable($2.str); |
|
485 |
|
$$.ty = gAny; |
|
486 |
|
if (tan->ty != gAny) { |
|
487 |
|
checkarrayindex(tan->name, $4.ty, lineno -1); |
|
488 |
|
if (!tan->isarray) { |
|
489 |
|
char ebuf[1024]; |
|
490 |
|
snprintf(ebuf, 1024, "%s is not an array", $2.str); |
|
491 |
|
yyerrorline(semanticerror, lineno - 1, ebuf); |
|
492 |
|
} |
|
493 |
|
canconvert($7.ty, tan->ty, -1); |
|
494 |
|
if (inconstant) |
|
495 |
|
validateGlobalAssignment($2.str); |
|
496 |
|
} |
|
497 |
|
} |
|
498 |
|
| loopstart newline codeblock loopend newline {$$.ty = $3.ty;} |
|
499 |
|
| loopstart newline codeblock { |
|
500 |
|
$$.ty = $3.ty; |
|
501 |
|
|
|
502 |
|
char msg[1024]; |
|
503 |
|
block_missing_error(msg, 1024); |
|
504 |
|
yyerrorex(syntaxerror, msg); |
|
505 |
|
|
|
506 |
|
} |
|
507 |
|
| EXITWHEN expr newline { |
|
508 |
|
canconvert($2.ty, gBoolean, -1); |
|
509 |
|
if (!inloop) |
|
510 |
|
yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop"); |
|
511 |
|
$$.ty = gAny; |
|
|
456 |
|
snprintf(ebuf, 1024, "Index missing for array variable %s", $2.str); |
|
457 |
|
yyerrorline(semanticerror, lineno - 1, ebuf); |
512 |
458 |
} |
} |
513 |
|
| RETURN expr newline { |
|
514 |
|
$$.ty = mkretty($2.ty, 1); |
|
515 |
|
if(retval == gNothing) |
|
516 |
|
yyerrorline(semanticerror, lineno - 1, "Cannot return value from function that returns nothing"); |
|
517 |
|
else if (! flagenabled(flag_rb) ) |
|
518 |
|
canconvertreturn($2.ty, retval, 0); |
|
519 |
|
} |
|
520 |
|
| RETURN newline { |
|
521 |
|
if (retval != gNothing) |
|
522 |
|
yyerrorline(semanticerror, lineno - 1, "Return nothing in function that should return value"); |
|
523 |
|
$$.ty = mkretty(gAny, 1); |
|
524 |
|
} |
|
525 |
|
| DEBUG statement {$$.ty = gAny;} |
|
526 |
|
/*1 2 3 4 5 6 7 */ |
|
527 |
|
| ifstart expr THEN newline codeblock elsifseq elseseq { |
|
528 |
|
canconvert($2.ty, gBoolean, -1); |
|
529 |
|
$$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); |
|
530 |
|
|
|
531 |
|
char msg[1024]; |
|
532 |
|
block_missing_error(msg, 1024); |
|
533 |
|
yyerrorex(syntaxerror, msg); |
|
|
459 |
|
canconvert($4.ty, tan->ty, -1); |
|
460 |
|
$$.ty = gAny; |
|
461 |
|
if (tan->isconst) { |
|
462 |
|
char ebuf[1024]; |
|
463 |
|
snprintf(ebuf, 1024, "Cannot assign to constant %s", $2.str); |
|
464 |
|
yyerrorline(semanticerror, lineno - 1, ebuf); |
534 |
465 |
} |
} |
535 |
|
| ifstart expr newline { |
|
536 |
|
canconvert($2.ty, gBoolean, -1); |
|
537 |
|
$$.ty = gAny; |
|
538 |
|
yyerrorex(syntaxerror, "Missing then or non valid expression"); |
|
|
466 |
|
if (inconstant) |
|
467 |
|
validateGlobalAssignment($2.str); |
|
468 |
|
if(infunction && !ht_lookup(&initialized, $2.str)){ |
|
469 |
|
ht_put(&initialized, $2.str, (void*)1); |
539 |
470 |
} |
} |
540 |
|
| SET funccall newline{ $$.ty = gAny; yyerrorline(semanticerror, lineno - 1, "Call expected instead of set");} |
|
541 |
|
| lvardecl { |
|
542 |
|
$$.ty = gAny; |
|
543 |
|
yyerrorex(semanticerror, "Local declaration after first statement"); |
|
|
471 |
|
$$.ty = gAny; |
|
472 |
|
} |
|
473 |
|
| SET rid rid EQUALS expr newline { |
|
474 |
|
char ebuf[1024]; |
|
475 |
|
if(ht_lookup(&types, $2.str)){ |
|
476 |
|
snprintf(ebuf, 1024, ">%s< %s is an error here. The type only needs to be stated at declartion time", $2.str, $3.str); |
|
477 |
|
}else if(ht_lookup(&types, $3.str)){ |
|
478 |
|
snprintf(ebuf, 1024, "%s >%s< is an error here. The type only needs to be stated at declartion time", $2.str, $3.str); |
|
479 |
|
}else{ |
|
480 |
|
snprintf(ebuf, 1024, "Unexpected '%s'", $3.str); |
544 |
481 |
} |
} |
545 |
|
| error {$$.ty = gAny; } |
|
|
482 |
|
yyerrorline(syntaxerror, lineno -1, ebuf); |
|
483 |
|
$$.ty = gAny; |
|
484 |
|
} |
|
485 |
|
| SET rid LBRACKET expr RBRACKET EQUALS expr newline{ |
|
486 |
|
const struct typeandname *tan = getVariable($2.str); |
|
487 |
|
$$.ty = gAny; |
|
488 |
|
if (tan->ty != gAny) { |
|
489 |
|
checkarrayindex(tan->name, $4.ty, lineno -1); |
|
490 |
|
if (!tan->isarray) { |
|
491 |
|
char ebuf[1024]; |
|
492 |
|
snprintf(ebuf, 1024, "%s is not an array", $2.str); |
|
493 |
|
yyerrorline(semanticerror, lineno - 1, ebuf); |
|
494 |
|
} |
|
495 |
|
canconvert($7.ty, tan->ty, -1); |
|
496 |
|
if (inconstant) |
|
497 |
|
validateGlobalAssignment($2.str); |
|
498 |
|
} |
|
499 |
|
$$.ty = gAny; |
|
500 |
|
} |
|
501 |
|
| loopstart newline codeblock loopend newline { $$.ty = $3.ty; } |
|
502 |
|
| loopstart newline codeblock { |
|
503 |
|
char msg[1024]; |
|
504 |
|
block_missing_error(msg, 1024); |
|
505 |
|
yyerrorex(syntaxerror, msg); |
|
506 |
|
$$.ty = $3.ty; |
|
507 |
|
} |
|
508 |
|
| EXITWHEN expr newline { |
|
509 |
|
canconvert($2.ty, gBoolean, -1); |
|
510 |
|
if (!inloop) |
|
511 |
|
yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop"); |
|
512 |
|
$$.ty = gAny; |
|
513 |
|
} |
|
514 |
|
| RETURN expr newline { |
|
515 |
|
if(retval == gNothing) |
|
516 |
|
yyerrorline(semanticerror, lineno - 1, "Cannot return value from function that returns nothing"); |
|
517 |
|
else if (! flagenabled(flag_rb) ) |
|
518 |
|
canconvertreturn($2.ty, retval, 0); |
|
519 |
|
$$.ty = mkretty($2.ty, 1); |
|
520 |
|
} |
|
521 |
|
| RETURN newline { |
|
522 |
|
if (retval != gNothing) |
|
523 |
|
yyerrorline(semanticerror, lineno - 1, "Return nothing in function that should return value"); |
|
524 |
|
$$.ty = mkretty(gAny, 1); |
|
525 |
|
} |
|
526 |
|
| DEBUG statement { $$.ty = gAny; } |
|
527 |
|
/*1 2 3 4 5 6 7 */ |
|
528 |
|
| ifstart expr THEN newline codeblock elsifseq elseseq { |
|
529 |
|
canconvert($2.ty, gBoolean, -1); |
|
530 |
|
$$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); |
|
531 |
|
|
|
532 |
|
char msg[1024]; |
|
533 |
|
block_missing_error(msg, 1024); |
|
534 |
|
yyerrorex(syntaxerror, msg); |
|
535 |
|
} |
|
536 |
|
| ifstart expr newline { |
|
537 |
|
canconvert($2.ty, gBoolean, -1); |
|
538 |
|
$$.ty = gAny; |
|
539 |
|
yyerrorex(syntaxerror, "Missing then or non valid expression"); |
|
540 |
|
} |
|
541 |
|
| SET funccall newline { |
|
542 |
|
$$.ty = gAny; |
|
543 |
|
yyerrorline(semanticerror, lineno - 1, "Call expected instead of set"); |
|
544 |
|
} |
|
545 |
|
| lvardecl { |
|
546 |
|
$$.ty = gAny; |
|
547 |
|
yyerrorex(semanticerror, "Local declaration after first statement"); |
|
548 |
|
} |
|
549 |
|
| funccall newline { |
|
550 |
|
yyerrorline(syntaxerror, lineno-1, "Missing 'call'"); |
|
551 |
|
$$.ty = gAny; |
|
552 |
|
} |
|
553 |
|
| error { $$.ty = gAny; } |
546 |
554 |
; |
; |
547 |
555 |
|
|
548 |
556 |
loopstart: LOOP { |
loopstart: LOOP { |