-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcool.flex
221 lines (163 loc) · 5.81 KB
/
cool.flex
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
/*
* The scanner definition for COOL.
*/
/*
* Stuff enclosed in %{ %} in the first section is copied verbatim to the
* output, so headers and global definitions are placed here to be visible
* to the code in the file. Don't remove anything that was here initially
*/
%{
#include <cool-parse.h>
#include <stringtab.h>
#include <utilities.h>
/* The compiler assumes these identifiers. */
#define yylval cool_yylval
#define yylex cool_yylex
/* Max size of string constants */
#define MAX_STR_CONST 1025
#define YY_NO_UNPUT /* keep g++ happy */
extern FILE *fin; /* we read from this file */
/* define YY_INPUT so we read from the FILE fin:
* This change makes it possible to use this scanner in
* the Cool compiler.
*/
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( (result = fread( (char*)buf, sizeof(char), max_size, fin)) < 0) \
YY_FATAL_ERROR( "read() in flex scanner failed");
char string_buf[MAX_STR_CONST]; /* to assemble string constants */
char *string_buf_ptr;
extern int curr_lineno;
extern int verbose_flag;
extern YYSTYPE cool_yylval;
/*
* Add Your own definitions here
*/
int string_offset = 0;
bool discard_string = false;
int comment_nestness = 0;
%}
%x COMMENT
%x STRING_CONSTANT
/*
* Define names for regular expressions here.
*/
DARROW =>
ASSIGN <-
LE <=
INT_CONST [0-9]+
%%
/*
* Nested comments
*/
"(*" { BEGIN (COMMENT); comment_nestness = 1; }
<COMMENT>"(*" { ++comment_nestness; }
<COMMENT>"*)" { if(--comment_nestness <= 0) { BEGIN (INITIAL); } }
<COMMENT><<EOF>> { BEGIN (INITIAL); cool_yylval.error_msg = "EOF in comment"; return ERROR; }
<COMMENT>\n { ++curr_lineno; }
<COMMENT>. { }
"*)" { cool_yylval.error_msg = "Unmatched *)"; return ERROR; }
"--".* { }
/*
* The multiple-character operators.
*/
{DARROW} { return (DARROW); }
{ASSIGN} { return (ASSIGN); }
{LE} { return (LE); }
/*
* The single-character operators.
*/
";" |
"(" |
")" |
"{" |
"}" |
":" |
"+" |
"-" |
"*" |
"/" |
"@" |
"=" |
"<" |
"'" |
"," |
"~" |
"." { return yytext[0]; }
/*
* Keywords are case-insensitive except for the values true and false,
* which must begin with a lower-case letter.
*/
(?i:"class") { return (CLASS); }
(?i:"else") { return (ELSE); }
"f"(?i:"alse") { cool_yylval.boolean = false; return (BOOL_CONST); }
"t"(?i:"rue") { cool_yylval.boolean = true; return (BOOL_CONST); }
(?i:"fi") { return (FI); }
(?i:"if") { return (IF); }
(?i:"in") { return (IN); }
(?i:"inherits") { return (INHERITS); }
(?i:"isvoid") { return (ISVOID); }
(?i:"let") { return (LET); }
(?i:"loop") { return (LOOP); }
(?i:"pool") { return (POOL); }
(?i:"then") { return (THEN); }
(?i:"while") { return (WHILE); }
(?i:"case") { return (CASE); }
(?i:"esac") { return (ESAC); }
(?i:"of") { return (OF); }
(?i:"new") { return (NEW); }
(?i:"not") { return (NOT); }
/*
* Integer constants
*/
{INT_CONST} { cool_yylval.symbol = inttable.add_string(yytext); return (INT_CONST); }
/*
* String constants (C syntax)
* Escape sequence \c is accepted for all characters c. Except for
* \n \t \b \f, the result is c.
*
*/
\" { string_buf_ptr = string_buf; string_offset = 0; discard_string = false; BEGIN (STRING_CONSTANT); }
<STRING_CONSTANT>\" { BEGIN (INITIAL); if(!discard_string) {*(string_buf_ptr + string_offset) = '\0'; cool_yylval.symbol = stringtable.add_string(string_buf); return (STR_CONST);} }
<STRING_CONSTANT>\\n { *(string_buf_ptr + string_offset) = '\n';
if(++string_offset > MAX_STR_CONST - 1) { discard_string = true; cool_yylval.error_msg = "String constant too long"; return ERROR; }
}
<STRING_CONSTANT>\\t { *(string_buf_ptr + string_offset) = '\t';
if(++string_offset > MAX_STR_CONST - 1) { discard_string = true; cool_yylval.error_msg = "String constant too long"; return ERROR; }
}
<STRING_CONSTANT>\\b { *(string_buf_ptr + string_offset) = '\b';
if(++string_offset > MAX_STR_CONST - 1) { discard_string = true; cool_yylval.error_msg = "String constant too long"; return ERROR; }
}
<STRING_CONSTANT>\\f { *(string_buf_ptr + string_offset) = '\f';
if(++string_offset > MAX_STR_CONST - 1) { discard_string = true; cool_yylval.error_msg = "String constant too long"; return ERROR; }
}
<STRING_CONSTANT>\\\0 {
discard_string = true; cool_yylval.error_msg = "String contains escaped null character."; return ERROR;
}
<STRING_CONSTANT>\\(.|\n) { *(string_buf_ptr + string_offset) = yytext[1];
if(++string_offset > MAX_STR_CONST - 1) { discard_string = true; cool_yylval.error_msg = "String constant too long"; return ERROR; }
if(yytext[1] == '\n') ++curr_lineno;
}
<STRING_CONSTANT>[^\0\\\n\"]+ { char *yyptr = yytext;
while(*yyptr) {
*(string_buf_ptr + string_offset) = *yyptr++;
if(++string_offset > MAX_STR_CONST - 1) { discard_string = true; cool_yylval.error_msg = "String constant too long"; return ERROR; }
}
}
<STRING_CONSTANT>\n { BEGIN (INITIAL); ++curr_lineno; if(!discard_string) {cool_yylval.error_msg = "Unterminated string constant"; return ERROR; } }
<STRING_CONSTANT>\0 { discard_string = true; cool_yylval.error_msg = "String contains null character."; return ERROR; }
<STRING_CONSTANT><<EOF>> { BEGIN (INITIAL); cool_yylval.error_msg = "EOF in string constant"; return ERROR; }
\n { ++curr_lineno; }
/*
* Identifiers
*/
"self" { cool_yylval.symbol = idtable.add_string("self"); return OBJECTID; }
"SELF_TYPE" { cool_yylval.symbol = idtable.add_string("SELF_TYPE"); return TYPEID; }
[A-Z][a-zA-Z0-9_]* { cool_yylval.symbol = idtable.add_string(strdup(yytext)); return TYPEID; }
[a-z][a-zA-Z0-9_]* { cool_yylval.symbol = idtable.add_string(strdup(yytext)); return OBJECTID; }
/*
* Whitespace
*/
[ \r\f\t\v] { }
. { cool_yylval.error_msg = yytext; return ERROR; }
%%