+ artimetric blocks

This commit is contained in:
anon
2024-07-05 14:41:56 +02:00
parent fd3a86df7c
commit 7cae7f968f
4 changed files with 71 additions and 58 deletions

View File

@ -20,6 +20,7 @@
%{
#include <stdio.h>
#include <math.h>
#include "eaxhla.yy.h"
#include "assembler.h"
@ -31,8 +32,6 @@
yyfree_leftovers();
}
extern void set_state(int state);
long new_static(int size) {
(void)size;
return 0;
@ -63,6 +62,8 @@
%token<strval> IDENTIFIER
%type<intval> immediate
%type<intval> artimetric_block artimetric_expression artimetric_operand
%token<intval> LITERAL
%token<strval> STRING_LITERAL
@ -123,7 +124,7 @@ declaration_section: %empty
;
declaration: origin type IDENTIFIER { $2.name = $3; /* add_var($1); */ free($3); }
| origin type IDENTIFIER '=' LITERAL { $2.name = $3; /* add_var($1); */ free($3); }
| origin type IDENTIFIER '=' immediate { $2.name = $3; /* add_var($1); */ free($3); }
| origin type IDENTIFIER '=' STRING_LITERAL { $2.name = $3; /* add_var($1); */ free($3); free($5); }
;
@ -231,6 +232,24 @@ register: RAX { $$ = R0; }
;
immediate: LITERAL
| artimetric_block
;
artimetric_block: '[' artimetric_expression ']' { $$ = $2; }
;
artimetric_expression: %empty { yyerror(); }
| artimetric_operand
| artimetric_expression '+' artimetric_operand { $$ = $1 + $3; }
| artimetric_expression '-' artimetric_operand { $$ = $1 - $3; }
| artimetric_expression '*' artimetric_operand { $$ = $1 * $3; }
| artimetric_expression '/' artimetric_operand { $$ = $1 / $3; }
| artimetric_expression '%' artimetric_operand { $$ = $1 % $3; }
| artimetric_expression '^' artimetric_operand { $$ = pow($1, $3); }
;
artimetric_operand: immediate
| IDENTIFIER { $$ = 0; /*XXX*/ }
;
exit: EXIT immediate