aboutsummaryrefslogtreecommitdiff
path: root/src/tpc.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/tpc.y')
-rw-r--r--src/tpc.y22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/tpc.y b/src/tpc.y
index f1a51ff..3b902be 100644
--- a/src/tpc.y
+++ b/src/tpc.y
@@ -17,7 +17,7 @@ void yyerror(char *);
17 char caractere; 17 char caractere;
18 int num; 18 int num;
19 char ident[64]; 19 char ident[64];
20 char type[32]; 20 int type;
21 char comp[3]; 21 char comp[3];
22 char addsub; 22 char addsub;
23 char divstar; 23 char divstar;
@@ -39,7 +39,7 @@ void yyerror(char *);
39 39
40%% 40%%
41Prog: 41Prog:
42 DeclConsts DeclVars DeclFoncts 42 DeclConsts DeclVars DeclFoncts {display_table();}
43 ; 43 ;
44DeclConsts: 44DeclConsts:
45 DeclConsts CONST ListConst ';' 45 DeclConsts CONST ListConst ';'
@@ -62,8 +62,8 @@ DeclVars:
62 | 62 |
63 ; 63 ;
64Declarateurs: 64Declarateurs:
65 Declarateurs ',' Declarateur 65 Declarateurs ',' Declarateur {addVar($<ident>3, $<type>0);}
66 | Declarateur 66 | Declarateur {addVar($<ident>1, $<type>0);}
67 ; 67 ;
68Declarateur: 68Declarateur:
69 IDENT 69 IDENT
@@ -85,8 +85,8 @@ Parametres:
85 | ListTypVar 85 | ListTypVar
86 ; 86 ;
87ListTypVar: 87ListTypVar:
88 ListTypVar ',' TYPE IDENT 88 ListTypVar ',' TYPE IDENT {addVar($<ident>4, $<type>3);}
89 | TYPE IDENT 89 | TYPE IDENT {addVar($<ident>2, $<type>1);}
90 ; 90 ;
91Corps: 91Corps:
92 '{' DeclConsts DeclVars SuiteInstr '}' 92 '{' DeclConsts DeclVars SuiteInstr '}'
@@ -99,8 +99,8 @@ Instr:
99 | ';' 99 | ';'
100 | RETURN Exp ';' 100 | RETURN Exp ';'
101 | RETURN ';' 101 | RETURN ';'
102 | READE '(' IDENT ')' ';' 102 | READE '(' IDENT ')' ';' {lookup($<ident>3);}
103 | READC '(' IDENT ')' ';' 103 | READC '(' IDENT ')' ';' {lookup($<ident>3);}
104 | PRINT '(' Exp ')' ';' 104 | PRINT '(' Exp ')' ';'
105 | IF '(' Exp ')' Instr 105 | IF '(' Exp ')' Instr
106 | IF '(' Exp ')' Instr ELSE Instr 106 | IF '(' Exp ')' Instr ELSE Instr
@@ -139,14 +139,14 @@ F:
139 ADDSUB F {$$ = $2;} //on fait remonter le type 139 ADDSUB F {$$ = $2;} //on fait remonter le type
140 | '!' F {$$ = $2;} 140 | '!' F {$$ = $2;}
141 | '(' Exp ')' {$$ = $2;} 141 | '(' Exp ')' {$$ = $2;}
142 | LValue //Il faut trouver le type de LValue 142 | LValue {$$ = $1;}
143 | NUM {$$ = INT;} // on stocke les types pour l'analyse sémantique 143 | NUM {$$ = INT;} // on stocke les types pour l'analyse sémantique
144 | CARACTERE {$$ = CHAR;} 144 | CARACTERE {$$ = CHAR;}
145 | IDENT '(' Arguments ')' {$$ = INT;} //tableau d'entiers uniquement 145 | IDENT '(' Arguments ')' {$$ = INT;} //tableau d'entiers uniquement
146 ; 146 ;
147LValue: 147LValue:
148 IDENT {lookup($<ident>1);} 148 IDENT {lookup($<ident>1);get_type($<ident>1);}
149 | IDENT '[' Exp ']' {lookup($<ident>1);} 149 | IDENT '[' Exp ']' {lookup($<ident>1);get_type($<ident>1);}
150 ; 150 ;
151Arguments: 151Arguments:
152 ListExp 152 ListExp