-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmicroLexer.lex
243 lines (192 loc) · 4.66 KB
/
microLexer.lex
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/*Scanner for ECE 573 - Compilers course*/
%option noyywrap
%option nounput
/* %option c++ */
%{
/* need this for the call to atof() or atoi() */
#include <stdlib.h>
#include <math.h>
#include "entry.hh"
#include "microParser.hpp"
extern char* yytext;
extern FILE* yyin;
%}
/*Definitions*/
DIGIT [0-9]
ID [a-zA-Z][a-zA-Z0-9]*
SPACE [ \n\t\r]
/*Rules and Targets*/
%%
{DIGIT}+ {
//printf ("Token Type: INTLITERAL\nValue: %s\n", yytext);
yylval.str_val = strdup(yytext);
return INTLITERAL;
}
({DIGIT}+\.{DIGIT}*)|(\.{DIGIT}*) {
//printf ("Token Type: FLOATLITERAL\nValue: %s\n", yytext);
yylval.str_val = strdup(yytext);
return FLOATLITERAL;
}
\"[^\"]*+\" {
//printf ("Token Type: STRINGLITERAL\nValue: %s\n", yytext);
yylval.str_val = strdup(yytext);
return STRINGLITERAL;
}
--.*\n /* comment isn't //printed */
PROGRAM {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return PROGRAM;
}
BEGIN {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return _BEGIN;
}
END {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return END;
}
FUNCTION {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return FUNCTION;
}
READ {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return READ;
}
WRITE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return WRITE;
}
IF {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return IF;
}
ELSE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return ELSE;
}
ENDIF {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return ENDIF;
}
WHILE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return WHILE;
}
ENDWHILE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return ENDWHILE;
}
RETURN {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return RETURN;
}
INT {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
yylval.str_val = strdup(yytext);
return INT;
}
VOID {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return VOID;
}
STRING {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return STRING;
}
FLOAT {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
yylval.str_val = strdup(yytext);
return FLOAT;
}
TRUE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return TRUE;
}
FALSE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return FALSE;
}
FOR {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return FOR;
}
ENDFOR {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return ENDFOR;
}
CONTINUE {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return CONTINUE;
}
BREAK {
//printf ("Token Type: KEYWORD\nValue: %s\n", yytext);
return BREAK;
}
{ID} {
//printf ("Token Type: IDENTIFIER\nValue: %s\n", yytext);
yylval.str_val = strdup(yytext);
return IDENTIFIER;
}
":=" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return ASSIGN;
}
"+" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return ADD;
}
"-" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return SUB;
}
"*" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return MUL;
}
"/" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return DIV;
}
"=" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return EQL;
}
"!=" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return NEQL;
}
"<" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return LES;
}
">" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return GRT;
}
"(" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return ST_BRACE;
}
")" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return END_BRACE;
}
";" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return SEMICOLON;
}
"," {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return COMMA;
}
"<=" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return LEQ;
}
">=" {
//printf ("Token Type: OPERATOR\nValue: %s\n", yytext);
return GEQ;
}
{SPACE}+ /* eat whitespace space, end of line, carriage return*/
%%