-
Notifications
You must be signed in to change notification settings - Fork 0
/
mml_scanner.l
219 lines (172 loc) · 9.22 KB
/
mml_scanner.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
210
211
212
213
214
215
216
217
218
219
%option c++ prefix="mml_scanner_" outfile="mml_scanner.cpp"
%option stack noyywrap yylineno 8bit debug
%{
// make relevant includes before including the parser's tab file
#include <string>
#include <sstream>
#include <cdk/ast/sequence_node.h>
#include <cdk/ast/expression_node.h>
#include <cdk/ast/lvalue_node.h>
#include "mml_parser.tab.h"
static std::ostringstream strlit;
// don't change this
#define yyerror LexerError
%}
%x X_STRING X_COMMENT X_BACKSLASH X_STRING_SKIP
%%
yydebug=1; set_debug(1);
/* ====================================================================== */
/* ====[ 1 - Tipos de dados ]==== */
/* ====================================================================== */
"int" return tINT_TYPE;
"double" return tDOUBLE_TYPE;
"string" return tSTRING_TYPE;
"void" return tVOID_TYPE;
/* ====================================================================== */
/* ====[ 3.3 - Comentários ]==== */
/* ====================================================================== */
"//".* ;
"/*" yy_push_state(X_COMMENT);
<X_COMMENT>"/*" yy_push_state(X_COMMENT); /* nested comment */
<X_COMMENT>"*/" yy_pop_state();
<X_COMMENT>.|\n ;
/* ====================================================================== */
/* ====[ 3.8.2 - Reais em vírgula flutuante ]==== */
/* ====================================================================== */
([0-9]*\.[0-9]+|[0-9]+\.[0-9]*)([eE][-+]?[0-9]+)? |
[0-9]+([eE][-+]?[0-9]+) {
try {
yylval.d = std::stod(yytext);
return tDOUBLE;
} catch (const std::out_of_range &e) {
yyerror("out of range double");
}
}
/* ====================================================================== */
/* ====[ 3.8.1 - Inteiros ]==== */
/* ====================================================================== */
0[0-7]+ { /* octal */
try {
yylval.i = std::stoi(yytext, NULL, 8);
return tINTEGER;
} catch (const std::out_of_range &e) {
yyerror("out of range integer");
}
}
0[0-9]+ yyerror("invalid base for number"); /* leading zero is not allowed unless in octal form */
0|[1-9][0-9]* { /* decimal */
try {
yylval.i = std::stoi(yytext);
return tINTEGER;
} catch (const std::out_of_range &e) {
yyerror("out of range integer");
}
}
/* ====================================================================== */
/* ====[ 3.8.3 - Cadeias de caracteres ]==== */
/* ====================================================================== */
\" yy_push_state(X_STRING);
<X_STRING>\\ yy_push_state(X_BACKSLASH);
<X_STRING>\" {
yylval.s = new std::string(strlit.str());
strlit.str("");
yy_pop_state();
return tSTRING;
}
<X_STRING>\0 yyerror("NULL byte in string");
<X_STRING>\n yyerror("Newline in string");
<X_STRING>. strlit << *yytext;
<X_BACKSLASH>n strlit << '\n'; yy_pop_state();
<X_BACKSLASH>r strlit << '\r'; yy_pop_state();
<X_BACKSLASH>t strlit << '\t'; yy_pop_state();
<X_BACKSLASH>\" strlit << '\"'; yy_pop_state();
<X_BACKSLASH>\\ strlit << '\\'; yy_pop_state();
<X_BACKSLASH>0 yy_push_state(X_STRING_SKIP);
<X_BACKSLASH>[0-7]{1,3} {
try {
const int c = std::stoi(yytext, NULL, 8);
if (c > 255) {
yyerror("octal escape sequence out of range");
}
strlit << (char) c;
yy_pop_state();
} catch (const std::out_of_range &e) {
yyerror("octal escape sequence out of range");
}
}
<X_BACKSLASH>. strlit << *yytext; yy_pop_state();
<X_STRING_SKIP>\\\"|\\\\ ;
<X_STRING_SKIP>\0 yyerror("NULL byte in string");
<X_STRING_SKIP>\n yyerror("Newline in string");
<X_STRING_SKIP>\" {
yylval.s = new std::string(strlit.str());
strlit.str("");
yy_pop_state(); yy_pop_state(); yy_pop_state(); /* X_STRING_SKIP, X_BACKSLASH, X_STRING */
return tSTRING;
}
<X_STRING_SKIP>. ;
/* ====================================================================== */
/* ====[ 4.5 - Símbolos Globais ]==== */
/* ====================================================================== */
"foreign" return tFOREIGN;
"forward" return tFORWARD;
"public" return tPUBLIC;
"auto" return tAUTO;
/* ====================================================================== */
/* ====[ 5 - Funções ]==== */
/* ====================================================================== */
[@{}<>] return *yytext;
"->" return tARROW;
"begin" return tBEGIN;
"end" return tEND;
/* ====================================================================== */
/* ====[ 6.2 - Instrução condicional ]==== */
/* ====================================================================== */
"if" return tIF;
"elif" return tELIF;
"else" return tELSE;
/* ====================================================================== */
/* ====[ 6.3 - Instrução de iteração ]==== */
/* ====[ 6.4 - Instrução de terminação ]==== */
/* ====[ 6.5 - Instrução de continuação ]==== */
/* ====[ 6.6 - Instrução de retorno ]==== */
/* ====================================================================== */
"while" return tWHILE;
"stop" return tSTOP;
"next" return tNEXT;
"return" return tRETURN;
/* ====================================================================== */
/* ====[ 6.8 - Instruções de Impressão ]==== */
/* ====================================================================== */
"!" return tWRITE;
"!!" return tWRITELN;
/* ====================================================================== */
/* ====[ 7 - Operadores de expressões ]==== */
/* ====[ 7 - Expressões especiais ]==== */
/* ====================================================================== */
[-+*/%\[\]~?=();,] return *yytext;
">=" return tGE;
"<=" return tLE;
"==" return tEQ;
"!=" return tNE;
"&&" return tAND;
"||" return tOR;
"sizeof" return tSIZEOF;
"input" return tINPUT;
/* ====================================================================== */
/* ====[ SPECIAL ]==== */
/* ====================================================================== */
"null" return tNULLPTR;
/* ====================================================================== */
/* ====[ 3.7 - Identificadores (nomes) ]==== */
/* ====================================================================== */
[A-Za-z][A-Za-z0-9]* yylval.s = new std::string(yytext); return tIDENTIFIER;
/* ====================================================================== */
/* ====[ 3.1 - Caracteres brancos ]==== */
/* ====================================================================== */
[ \t\n\r]+ ; /* ignore whitespace */
/* ====================================================================== */
/* ====[ Everything else ]==== */
/* ====================================================================== */
. yyerror("Unknown character");
%%