Created
October 2, 2018 22:40
-
-
Save ruda/05caf1722901141062c40dcd787a2532 to your computer and use it in GitHub Desktop.
Simple arithmetic expressions (+, -, * / ) to x86 code for macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
#include <stdio.h> | |
#include <ctype.h> | |
#include <math.h> | |
int yylex(void); | |
void yyerror(char *); | |
int level; | |
%} | |
%token NUMBER | |
%left '+' '-' | |
%left '*' '/' | |
%% | |
list: /* empty */ | |
| list '\n' | |
| list expr '\n' | |
{ | |
printf( | |
"\tpushl\t%%edi\n" | |
"\tcalll\t_printf\n" | |
); | |
level += 4; | |
} | |
; | |
expr: NUMBER { | |
printf("\tpushl\t$%d\n", $1); | |
level += 4; | |
} | |
| expr '+' expr { | |
printf( | |
"\tmovl\t4(%%esp), %%eax\n" | |
"\taddl\t0(%%esp), %%eax\n" | |
"\taddl\t$8, %%esp\n" | |
"\tpushl\t%%eax\n" | |
); | |
level -= 4; | |
} | |
| expr '-' expr { | |
printf( | |
"\tmovl\t4(%%esp), %%eax\n" | |
"\tsubl\t0(%%esp), %%eax\n" | |
"\taddl\t$8, %%esp\n" | |
"\tpushl\t%%eax\n" | |
); | |
level -= 4; | |
} | |
| expr '*' expr { | |
printf( | |
"\tmovl\t4(%%esp), %%eax\n" | |
"\timull\t0(%%esp), %%eax\n" | |
"\taddl\t$8, %%esp\n" | |
"\tpushl\t%%eax\n" | |
); | |
level -= 4; | |
} | |
| expr '/' expr { | |
printf( | |
"\tmovl\t4(%%esp), %%eax\n" | |
"\tcltd\n" | |
"\tidivl\t0(%%esp)\n" | |
"\taddl\t$8, %%esp\n" | |
"\tpushl\t%%eax\n" | |
); | |
level -= 4; | |
} | |
| '(' expr ')' { $$ = $2; } | |
; | |
%% | |
int | |
yylex(void) | |
{ | |
int c; | |
while ((c = getchar()) == ' ' || c == '\t') /* skip white spaces */ | |
; | |
if (c == EOF) /* the $end */ | |
return 0; | |
if (isdigit(c)) { /* a number */ | |
ungetc(c, stdin); | |
scanf("%d", &yylval); | |
return NUMBER; | |
} | |
return c; | |
} | |
void | |
yyerror(char *s) | |
{ | |
fprintf(stderr, "%s\n", s); | |
} | |
int | |
main(void) | |
{ | |
printf( | |
"\t.section\t__TEXT,__text,regular,pure_instructions\n" | |
"\t.globl\t_main\n" | |
"_main:\n" | |
"\tsubl\t$12, %%esp\n" | |
"\tcalll\tL0$pb\n" | |
"L0$pb:\n" | |
"\tpopl\t%%eax\n" | |
"\tsubl\t$8, %%esp\n" | |
"\tleal\tL_.str-L0$pb(%%eax), %%edi\n" | |
); | |
level = 8; | |
yyparse(); | |
printf( | |
"\taddl\t$%d, %%esp\n" | |
"\txorl\t%%eax, %%eax\n" | |
"\taddl\t$12, %%esp\n" | |
"\tretl\n\n" | |
"\t.section\t__TEXT,__cstring,cstring_literals\n" | |
"L_.str:\n" | |
"\t.asciz\t\"%%d\\n\"\n\n" | |
".subsections_via_symbols\n", | |
level | |
); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment