-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLexicalAnalyzer.l
209 lines (160 loc) · 6.4 KB
/
LexicalAnalyzer.l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*######################################################################
# Compiladors
# Cristòfol Daudén Esmel
# LexicalAnalyzer
######################################################################*/
%option yylineno
%option noyywrap
%{
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "./SyntacticAnalyzer.h"
#include "./symtab/symtab.h"
#include "./symtab/types.h"
extern FILE *yyin;
variable aux;
%}
INTEGER 0|"-"[1-9][0-9]*|[1-9][0-9]*
REAL {INTEGER}"."[0-9][0-9]*
DIGIT [0-9]
LETTER [a-zA-Z]
IDENTIFIER {LETTER}({LETTER}|{DIGIT})*
LINE "\n"
STRING "\""[^"\""{LINE}]*"\""
COMMENT "/*"(.|{LINE})*"*/"|"//".*{LINE}
OPEN_PARENTHESIS "("
CLOSE_PARENTHESIS ")"
TAB "\t"
SPACE " "
OPEN_BRACKET "{"
CLOSE_BRACKET "}"
COMMA ","
SEPARATOR ";"
TWO_POINTS ":"
%%
"calc on" { return CALC; }
"calc off" { return PROG; }
"<>" { yylval.rel_op = NE;
/*printf("<>");*/
return RELATIONAL_OPERATOR; }
">=" { /*printf(">=");*/
yylval.rel_op = GE;
return RELATIONAL_OPERATOR; }
">" { /*printf(">");*/
yylval.rel_op = GT;
return RELATIONAL_OPERATOR; }
"<=" { /*printf("<=");*/
yylval.rel_op = LE;
return RELATIONAL_OPERATOR; }
"<" { /*printf("<");*/
yylval.rel_op = LT;
return RELATIONAL_OPERATOR; }
"=" { /*printf("=");*/
yylval.rel_op = EQ;
return RELATIONAL_OPERATOR; }
"not" { /*printf(" not ");*/ return NOT; }
"and" { /*printf(" and ");*/ return AND; }
"or" { /*printf(" or ");*/ return OR; }
"true" { /*printf("true");*/ return TRUE_VALUE; }
"false" { /*printf("false");*/ return FALSE_VALUE; }
"if" { return IF; }
"else" { return ELSE; }
"fi" { return FI; }
"elsif" { return ELSIF; }
"then" { return THEN; }
"while" { return WHILE; }
"do" { return DO; }
"done" { return DONE; }
"for" { return FOR; }
"in" { return IN; }
"repeat" { return REPEAT; }
"until" { return UNTIL; }
"\.\." { return RANGE; }
"switch" { return SWITCH; }
"begin" { return BEGIN_; }
"case" { return CASE; }
"end" { return END; }
"default" { return DEFAULT;}
":=" { return ASSIGN; }
"**" { return POW; }
"+" { return ADD; }
"-" { return SUBSTRACT; }
"*" { return MULTIPLY; }
"/" { return DIVIDE; }
"mod" { return MOD; }
"sqrt" { return SQRT; }
{IDENTIFIER} { yylval.var.stringValue = (char *) malloc( sizeof( char ) * yyleng );
memcpy( yylval.var.stringValue, yytext, yyleng );
yylval.var.line = yylineno;
yylval.var.id = 1;
/*printf( "%s", yylval.var.stringValue );*/
if ( sym_lookup( yylval.var.stringValue, &aux ) != SYMTAB_NOT_FOUND ){
if( aux.type == BOOLEAN ) return BOOLEAN_IDENTIFIER;
}
return IDENTIFIER; }
{INTEGER} { yylval.var.intValue = atoi(yytext);
yylval.var.type = INTEGER;
yylval.var.id = 0;
/*printf( "%d", yylval.var.intValue );*/
return LITERAL; }
{REAL} { yylval.var.floatValue = atof(yytext);
yylval.var.type = REAL;
yylval.var.id = 0;
/*printf( "%f", yylval.var.floatValue );*/
return LITERAL; }
{STRING} { yylval.var.stringValue = (char *) malloc( sizeof( char ) * yyleng -2 );
memcpy( yylval.var.stringValue, &(yytext[1]), yyleng -2 );
yylval.var.type = STRING;
yylval.var.id = 0;
/*printf( "%s", yylval.var.stringValue );*/
return LITERAL; }
{COMMENT} { }
{OPEN_BRACKET} { return OPEN_BRACKET; }
{CLOSE_BRACKET} { return CLOSE_BRACKET;}
{COMMA} { }
{OPEN_PARENTHESIS} { /*printf("(");*/ return OPEN_PARENTHESIS; }
{CLOSE_PARENTHESIS} { /*printf(")");*/ return CLOSE_PARENTHESIS; }
{SEPARATOR} { return SEPARATOR; }
{TWO_POINTS} { return TWO_POINTS; }
{LINE} { return LINE; }
<<EOF>> { static int end = 0;
return end++ ? 0 : LINE;
}
{SPACE} {}
{TAB} {}
%%
int init_lexic_analysis ( char * file_name ){
int error;
yyin = fopen( file_name, "r" );
if ( yyin == NULL ) {
error = EXIT_FAILURE;
}
else {
error = EXIT_SUCCESS;
}
return error;
}
int end_lexic_analysis () {
int error;
error = fclose( yyin );
if (error == 0) {
error = EXIT_SUCCESS;
}
else {
error = EXIT_FAILURE;
}
return error;
}
/*yyleng emmagatzema el nombre de caracters de la cadena emmagatzemada a yytext
ymore(): impedeix l’accio per defecte de buidar el contingut de yytext, de manera que el lexema seguent identificat a partir
del flux d’entrada es col·loca a continuacio de la variable yytext
.
yyless(n): modifica el nombre de caracters que ens retorna yytext, es a dir, del lexema identificat nomes ens quedem amb els
n caracters primers. La resta de caracters perduren a la memoria intermedia per serprocessat posteriorment.
input(): retorna el seguent caracter de l’entrada estandard.
output(c): escriu el caracter c a la sortida
unput(c): posa el caracter c a la memoria intermedia d’entrada de manera que aquest sigui el seguent caracter que llegira
la funcio input().
*/
/*El problema d'aquesta definició de String ( "\"".*"\"" )és que "hola" + "adios" m'ho agafa com un únic string*/