blob: 64ed4c625a97022e5fd5865a3d6db0929de37110 [file] [log] [blame]
Chris Lattnere62c1182002-12-02 01:23:04 +00001/*===-- FileLexer.l - Scanner for TableGen Files ----------------*- C++ -*-===//
2//
Chris Lattner13854f22003-08-04 20:08:28 +00003// This file defines a simple flex scanner for TableGen files. This is pretty
4// straight-forward, except for the magic to handle file inclusion.
Chris Lattnere62c1182002-12-02 01:23:04 +00005//
Chris Lattner13854f22003-08-04 20:08:28 +00006//===----------------------------------------------------------------------===*/
Chris Lattnere62c1182002-12-02 01:23:04 +00007
8%option prefix="File"
9%option yylineno
10%option nostdinit
11%option never-interactive
12%option batch
Chris Lattnere62c1182002-12-02 01:23:04 +000013%option nodefault
14%option 8bit
15%option outfile="Lexer.cpp"
16%option ecs
17%option noreject
18%option noyymore
19
Chris Lattnerd33b8db2003-07-30 19:39:36 +000020%x comment
Chris Lattnere62c1182002-12-02 01:23:04 +000021
22%{
23#include "Record.h"
24typedef std::pair<Record*, std::vector<Init*>*> SubClassRefTy;
25#include "FileParser.h"
26
John Criswell96b4bed2003-08-27 13:41:57 +000027// Global variable recording the location of the include directory
28std::string IncludeDirectory;
29
Chris Lattnere62c1182002-12-02 01:23:04 +000030// ParseInt - This has to handle the special case of binary numbers 0b0101
31static int ParseInt(const char *Str) {
32 if (Str[0] == '0' && Str[1] == 'b')
33 return strtol(Str+2, 0, 2);
34 return strtol(Str, 0, 0);
35}
36
Chris Lattnerd33b8db2003-07-30 19:39:36 +000037static int CommentDepth = 0;
38
Chris Lattner7dff0532003-07-30 20:56:47 +000039struct IncludeRec {
40 std::string Filename;
41 FILE *File;
42 unsigned LineNo;
43 YY_BUFFER_STATE Buffer;
44
45 IncludeRec(const std::string &FN, FILE *F)
46 : Filename(FN), File(F), LineNo(0){
47 }
48};
49
50static std::vector<IncludeRec> IncludeStack;
51
52
53std::ostream &err() {
54 if (IncludeStack.empty())
55 return std::cerr << "At end of input: ";
56
57 for (unsigned i = 0, e = IncludeStack.size()-1; i != e; ++i)
Chris Lattnerbc1f0dc2003-08-03 18:12:59 +000058 std::cerr << "Included from " << IncludeStack[i].Filename << ":"
Chris Lattner7dff0532003-07-30 20:56:47 +000059 << IncludeStack[i].LineNo << ":\n";
60 return std::cerr << "Parsing " << IncludeStack.back().Filename << ":"
61 << Filelineno << ": ";
62}
63
64
Chris Lattnere623fe32003-07-30 19:55:10 +000065int Fileparse();
66
John Criswell96b4bed2003-08-27 13:41:57 +000067//
68// Function: ParseFile()
69//
70// Description:
71// This function begins the parsing of the specified tablegen file.
72//
73// Inputs:
74// Filename - A string containing the name of the file to parse.
75// IncludeDir - A string containing the directory from which include
76// files can be found.
77//
78void ParseFile(const std::string &Filename, const std::string & IncludeDir) {
Chris Lattnere623fe32003-07-30 19:55:10 +000079 FILE *F = stdin;
80 if (Filename != "-") {
81 F = fopen(Filename.c_str(), "r");
82
83 if (F == 0) {
84 std::cerr << "Could not open input file '" + Filename + "'!\n";
John Criswell2d930032003-09-09 14:37:48 +000085 exit (1);
Chris Lattnere623fe32003-07-30 19:55:10 +000086 }
Chris Lattner7dff0532003-07-30 20:56:47 +000087 IncludeStack.push_back(IncludeRec(Filename, F));
88 } else {
89 IncludeStack.push_back(IncludeRec("<stdin>", stdin));
Chris Lattnere623fe32003-07-30 19:55:10 +000090 }
91
John Criswell96b4bed2003-08-27 13:41:57 +000092 //
93 // Record the location of the include directory so that the lexer can find
94 // it later.
95 //
96 IncludeDirectory = IncludeDir;
97
Chris Lattnere623fe32003-07-30 19:55:10 +000098 Filein = F;
99 Filelineno = 1;
100 Fileparse();
Chris Lattnere623fe32003-07-30 19:55:10 +0000101 Filein = stdin;
102}
103
Chris Lattner7dff0532003-07-30 20:56:47 +0000104// HandleInclude - This function is called when an include directive is
105// encountered in the input stream...
106static void HandleInclude(const char *Buffer) {
107 unsigned Length = yyleng;
108 assert(Buffer[Length-1] == '"');
109 Buffer += strlen("include ");
110 Length -= strlen("include ");
111 while (*Buffer != '"') {
112 ++Buffer;
113 --Length;
114 }
115 assert(Length >= 2 && "Double quotes not found?");
116 std::string Filename(Buffer+1, Buffer+Length-1);
117 //std::cerr << "Filename = '" << Filename << "'\n";
118
119 // Save the line number and lex buffer of the includer...
120 IncludeStack.back().LineNo = Filelineno;
121 IncludeStack.back().Buffer = YY_CURRENT_BUFFER;
122
123 // Open the new input file...
124 yyin = fopen(Filename.c_str(), "r");
125 if (yyin == 0) {
John Criswell96b4bed2003-08-27 13:41:57 +0000126 //
127 // If we couldn't find the file in the current directory, look for it in
128 // the include directories.
129 //
130 // NOTE:
131 // Right now, there is only one directory. We need to eventually add
132 // support for more.
133 //
134 Filename = IncludeDirectory + "/" + Filename;
135 yyin = fopen(Filename.c_str(), "r");
136 if (yyin == 0) {
137 err() << "Could not find include file '" << Filename << "'!\n";
138 abort();
139 }
Chris Lattner7dff0532003-07-30 20:56:47 +0000140 }
141
142 // Add the file to our include stack...
143 IncludeStack.push_back(IncludeRec(Filename, yyin));
144 Filelineno = 1; // Reset line numbering...
145 //yyrestart(yyin); // Start lexing the new file...
146
147 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
148}
149
150
151// yywrap - This is called when the lexer runs out of input in one of the files.
152// Switch back to an includer if an includee has run out of input.
153//
154extern "C"
155int yywrap() {
156 if (IncludeStack.back().File != stdin)
157 fclose(IncludeStack.back().File);
158 IncludeStack.pop_back();
159 if (IncludeStack.empty()) return 1; // Top-level file is done.
160
161 // Otherwise, we need to switch back to a file which included the current one.
162 Filelineno = IncludeStack.back().LineNo; // Restore current line number
163 yy_switch_to_buffer(IncludeStack.back().Buffer);
164 return 0;
165}
166
Chris Lattnere62c1182002-12-02 01:23:04 +0000167%}
168
Chris Lattnere3a1d052003-07-30 22:15:58 +0000169Comment \/\/.*
Chris Lattnere62c1182002-12-02 01:23:04 +0000170
Chris Lattnere3a1d052003-07-30 22:15:58 +0000171Identifier [a-zA-Z_][0-9a-zA-Z_]*
172Integer [-+]?[0-9]+|0x[0-9a-fA-F]+|0b[01]+
173CodeFragment \[\{([^}]+|\}[^\]])*\}\]
174StringVal \"[^"]*\"
175IncludeStr include[ \t\n]+\"[^"]*\"
Chris Lattnere62c1182002-12-02 01:23:04 +0000176
177%%
178
179{Comment} { /* Ignore comments */ }
180
Chris Lattner7dff0532003-07-30 20:56:47 +0000181{IncludeStr} { HandleInclude(yytext); }
Chris Lattnere3a1d052003-07-30 22:15:58 +0000182{CodeFragment} { Filelval.StrVal = new std::string(yytext+2, yytext+yyleng-2);
183 return CODEFRAGMENT; }
Chris Lattner7dff0532003-07-30 20:56:47 +0000184
Chris Lattnere62c1182002-12-02 01:23:04 +0000185int { return INT; }
186bit { return BIT; }
187bits { return BITS; }
188string { return STRING; }
189list { return LIST; }
Chris Lattnerf05760d2003-07-30 21:47:42 +0000190code { return CODE; }
Chris Lattner40f71132003-08-04 04:50:57 +0000191dag { return DAG; }
Chris Lattnere62c1182002-12-02 01:23:04 +0000192
193class { return CLASS; }
194def { return DEF; }
195field { return FIELD; }
Chris Lattner42aa89e2003-08-04 04:56:53 +0000196let { return LET; }
Chris Lattnere62c1182002-12-02 01:23:04 +0000197in { return IN; }
198
199{Identifier} { Filelval.StrVal = new std::string(yytext, yytext+yyleng);
200 return ID; }
Chris Lattnerfb9ea582003-08-10 22:04:25 +0000201${Identifier} { Filelval.StrVal = new std::string(yytext+1, yytext+yyleng);
202 return VARNAME; }
Chris Lattnere62c1182002-12-02 01:23:04 +0000203
204{StringVal} { Filelval.StrVal = new std::string(yytext+1, yytext+yyleng-1);
205 return STRVAL; }
206
207{Integer} { Filelval.IntVal = ParseInt(Filetext); return INTVAL; }
208
209[ \t\n]+ { /* Ignore whitespace */ }
Chris Lattnerd33b8db2003-07-30 19:39:36 +0000210
211
212"/*" { BEGIN(comment); CommentDepth++; }
213<comment>[^*/]* /* eat anything that's not a '*' or '/' */
214<comment>"*"+[^*/]* /* eat up '*'s not followed by '/'s */
215<comment>"/*" { ++CommentDepth; }
216<comment>"/"+[^*]* /* eat up /'s not followed by *'s */
217<comment>"*"+"/" { if (!--CommentDepth) { BEGIN(INITIAL); } }
Chris Lattner7dff0532003-07-30 20:56:47 +0000218<comment><<EOF>> { err() << "Unterminated comment!\n"; abort(); }
219
220. { return Filetext[0]; }
Chris Lattnerd33b8db2003-07-30 19:39:36 +0000221
Chris Lattnere62c1182002-12-02 01:23:04 +0000222%%