1 //===- TGLexer.cpp - Lexer for TableGen -----------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Implement the Lexer for TableGen.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "TGLexer.h"
14 #include "llvm/ADT/ArrayRef.h"
15 #include "llvm/ADT/StringSwitch.h"
16 #include "llvm/ADT/Twine.h"
17 #include "llvm/Config/config.h" // for strtoull()/strtoll() define
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/MemoryBuffer.h"
20 #include "llvm/Support/SourceMgr.h"
21 #include "llvm/TableGen/Error.h"
22 #include <algorithm>
23 #include <cctype>
24 #include <cerrno>
25 #include <cstdint>
26 #include <cstdio>
27 #include <cstdlib>
28 #include <cstring>
29 
30 using namespace llvm;
31 
32 namespace {
33 // A list of supported preprocessing directives with their
34 // internal token kinds and names.
35 struct {
36   tgtok::TokKind Kind;
37   const char *Word;
38 } PreprocessorDirs[] = {
39   { tgtok::Ifdef, "ifdef" },
40   { tgtok::Ifndef, "ifndef" },
41   { tgtok::Else, "else" },
42   { tgtok::Endif, "endif" },
43   { tgtok::Define, "define" }
44 };
45 } // end anonymous namespace
46 
47 TGLexer::TGLexer(SourceMgr &SM, ArrayRef<std::string> Macros) : SrcMgr(SM) {
48   CurBuffer = SrcMgr.getMainFileID();
49   CurBuf = SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer();
50   CurPtr = CurBuf.begin();
51   TokStart = nullptr;
52 
53   // Pretend that we enter the "top-level" include file.
54   PrepIncludeStack.push_back(
55       std::make_unique<std::vector<PreprocessorControlDesc>>());
56 
57   // Put all macros defined in the command line into the DefinedMacros set.
58   std::for_each(Macros.begin(), Macros.end(),
59                 [this](const std::string &MacroName) {
60                   DefinedMacros.insert(MacroName);
61                 });
62 }
63 
64 SMLoc TGLexer::getLoc() const {
65   return SMLoc::getFromPointer(TokStart);
66 }
67 
68 /// ReturnError - Set the error to the specified string at the specified
69 /// location.  This is defined to always return tgtok::Error.
70 tgtok::TokKind TGLexer::ReturnError(SMLoc Loc, const Twine &Msg) {
71   PrintError(Loc, Msg);
72   return tgtok::Error;
73 }
74 
75 tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) {
76   return ReturnError(SMLoc::getFromPointer(Loc), Msg);
77 }
78 
79 bool TGLexer::processEOF() {
80   SMLoc ParentIncludeLoc = SrcMgr.getParentIncludeLoc(CurBuffer);
81   if (ParentIncludeLoc != SMLoc()) {
82     // If prepExitInclude() detects a problem with the preprocessing
83     // control stack, it will return false.  Pretend that we reached
84     // the final EOF and stop lexing more tokens by returning false
85     // to LexToken().
86     if (!prepExitInclude(false))
87       return false;
88 
89     CurBuffer = SrcMgr.FindBufferContainingLoc(ParentIncludeLoc);
90     CurBuf = SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer();
91     CurPtr = ParentIncludeLoc.getPointer();
92     // Make sure TokStart points into the parent file's buffer.
93     // LexToken() assigns to it before calling getNextChar(),
94     // so it is pointing into the included file now.
95     TokStart = CurPtr;
96     return true;
97   }
98 
99   // Pretend that we exit the "top-level" include file.
100   // Note that in case of an error (e.g. control stack imbalance)
101   // the routine will issue a fatal error.
102   prepExitInclude(true);
103   return false;
104 }
105 
106 int TGLexer::getNextChar() {
107   char CurChar = *CurPtr++;
108   switch (CurChar) {
109   default:
110     return (unsigned char)CurChar;
111   case 0: {
112     // A nul character in the stream is either the end of the current buffer or
113     // a random nul in the file.  Disambiguate that here.
114     if (CurPtr-1 != CurBuf.end())
115       return 0;  // Just whitespace.
116 
117     // Otherwise, return end of file.
118     --CurPtr;  // Another call to lex will return EOF again.
119     return EOF;
120   }
121   case '\n':
122   case '\r':
123     // Handle the newline character by ignoring it and incrementing the line
124     // count.  However, be careful about 'dos style' files with \n\r in them.
125     // Only treat a \n\r or \r\n as a single line.
126     if ((*CurPtr == '\n' || (*CurPtr == '\r')) &&
127         *CurPtr != CurChar)
128       ++CurPtr;  // Eat the two char newline sequence.
129     return '\n';
130   }
131 }
132 
133 int TGLexer::peekNextChar(int Index) const {
134   return *(CurPtr + Index);
135 }
136 
137 tgtok::TokKind TGLexer::LexToken(bool FileOrLineStart) {
138   TokStart = CurPtr;
139   // This always consumes at least one character.
140   int CurChar = getNextChar();
141 
142   switch (CurChar) {
143   default:
144     // Handle letters: [a-zA-Z_]
145     if (isalpha(CurChar) || CurChar == '_')
146       return LexIdentifier();
147 
148     // Unknown character, emit an error.
149     return ReturnError(TokStart, "Unexpected character");
150   case EOF:
151     // Lex next token, if we just left an include file.
152     // Note that leaving an include file means that the next
153     // symbol is located at the end of the 'include "..."'
154     // construct, so LexToken() is called with default
155     // false parameter.
156     if (processEOF())
157       return LexToken();
158 
159     // Return EOF denoting the end of lexing.
160     return tgtok::Eof;
161 
162   case ':': return tgtok::colon;
163   case ';': return tgtok::semi;
164   case ',': return tgtok::comma;
165   case '<': return tgtok::less;
166   case '>': return tgtok::greater;
167   case ']': return tgtok::r_square;
168   case '{': return tgtok::l_brace;
169   case '}': return tgtok::r_brace;
170   case '(': return tgtok::l_paren;
171   case ')': return tgtok::r_paren;
172   case '=': return tgtok::equal;
173   case '?': return tgtok::question;
174   case '#':
175     if (FileOrLineStart) {
176       tgtok::TokKind Kind = prepIsDirective();
177       if (Kind != tgtok::Error)
178         return lexPreprocessor(Kind);
179     }
180 
181     return tgtok::paste;
182 
183   // The period is a separate case so we can recognize the "..."
184   // range punctuator.
185   case '.':
186     if (peekNextChar(0) == '.') {
187       ++CurPtr; // Eat second dot.
188       if (peekNextChar(0) == '.') {
189         ++CurPtr; // Eat third dot.
190         return tgtok::dotdotdot;
191       }
192       return ReturnError(TokStart, "Invalid '..' punctuation");
193     }
194     return tgtok::dot;
195 
196   case '\r':
197     PrintFatalError("getNextChar() must never return '\r'");
198     return tgtok::Error;
199 
200   case 0:
201   case ' ':
202   case '\t':
203     // Ignore whitespace.
204     return LexToken(FileOrLineStart);
205   case '\n':
206     // Ignore whitespace, and identify the new line.
207     return LexToken(true);
208   case '/':
209     // If this is the start of a // comment, skip until the end of the line or
210     // the end of the buffer.
211     if (*CurPtr == '/')
212       SkipBCPLComment();
213     else if (*CurPtr == '*') {
214       if (SkipCComment())
215         return tgtok::Error;
216     } else // Otherwise, this is an error.
217       return ReturnError(TokStart, "Unexpected character");
218     return LexToken(FileOrLineStart);
219   case '-': case '+':
220   case '0': case '1': case '2': case '3': case '4': case '5': case '6':
221   case '7': case '8': case '9': {
222     int NextChar = 0;
223     if (isdigit(CurChar)) {
224       // Allow identifiers to start with a number if it is followed by
225       // an identifier.  This can happen with paste operations like
226       // foo#8i.
227       int i = 0;
228       do {
229         NextChar = peekNextChar(i++);
230       } while (isdigit(NextChar));
231 
232       if (NextChar == 'x' || NextChar == 'b') {
233         // If this is [0-9]b[01] or [0-9]x[0-9A-fa-f] this is most
234         // likely a number.
235         int NextNextChar = peekNextChar(i);
236         switch (NextNextChar) {
237         default:
238           break;
239         case '0': case '1':
240           if (NextChar == 'b')
241             return LexNumber();
242           LLVM_FALLTHROUGH;
243         case '2': case '3': case '4': case '5':
244         case '6': case '7': case '8': case '9':
245         case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
246         case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
247           if (NextChar == 'x')
248             return LexNumber();
249           break;
250         }
251       }
252     }
253 
254     if (isalpha(NextChar) || NextChar == '_')
255       return LexIdentifier();
256 
257     return LexNumber();
258   }
259   case '"': return LexString();
260   case '$': return LexVarName();
261   case '[': return LexBracket();
262   case '!': return LexExclaim();
263   }
264 }
265 
266 /// LexString - Lex "[^"]*"
267 tgtok::TokKind TGLexer::LexString() {
268   const char *StrStart = CurPtr;
269 
270   CurStrVal = "";
271 
272   while (*CurPtr != '"') {
273     // If we hit the end of the buffer, report an error.
274     if (*CurPtr == 0 && CurPtr == CurBuf.end())
275       return ReturnError(StrStart, "End of file in string literal");
276 
277     if (*CurPtr == '\n' || *CurPtr == '\r')
278       return ReturnError(StrStart, "End of line in string literal");
279 
280     if (*CurPtr != '\\') {
281       CurStrVal += *CurPtr++;
282       continue;
283     }
284 
285     ++CurPtr;
286 
287     switch (*CurPtr) {
288     case '\\': case '\'': case '"':
289       // These turn into their literal character.
290       CurStrVal += *CurPtr++;
291       break;
292     case 't':
293       CurStrVal += '\t';
294       ++CurPtr;
295       break;
296     case 'n':
297       CurStrVal += '\n';
298       ++CurPtr;
299       break;
300 
301     case '\n':
302     case '\r':
303       return ReturnError(CurPtr, "escaped newlines not supported in tblgen");
304 
305     // If we hit the end of the buffer, report an error.
306     case '\0':
307       if (CurPtr == CurBuf.end())
308         return ReturnError(StrStart, "End of file in string literal");
309       LLVM_FALLTHROUGH;
310     default:
311       return ReturnError(CurPtr, "invalid escape in string literal");
312     }
313   }
314 
315   ++CurPtr;
316   return tgtok::StrVal;
317 }
318 
319 tgtok::TokKind TGLexer::LexVarName() {
320   if (!isalpha(CurPtr[0]) && CurPtr[0] != '_')
321     return ReturnError(TokStart, "Invalid variable name");
322 
323   // Otherwise, we're ok, consume the rest of the characters.
324   const char *VarNameStart = CurPtr++;
325 
326   while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
327     ++CurPtr;
328 
329   CurStrVal.assign(VarNameStart, CurPtr);
330   return tgtok::VarName;
331 }
332 
333 tgtok::TokKind TGLexer::LexIdentifier() {
334   // The first letter is [a-zA-Z_].
335   const char *IdentStart = TokStart;
336 
337   // Match the rest of the identifier regex: [0-9a-zA-Z_]*
338   while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
339     ++CurPtr;
340 
341   // Check to see if this identifier is a reserved keyword.
342   StringRef Str(IdentStart, CurPtr-IdentStart);
343 
344   tgtok::TokKind Kind = StringSwitch<tgtok::TokKind>(Str)
345     .Case("int", tgtok::Int)
346     .Case("bit", tgtok::Bit)
347     .Case("bits", tgtok::Bits)
348     .Case("string", tgtok::String)
349     .Case("list", tgtok::List)
350     .Case("code", tgtok::Code)
351     .Case("dag", tgtok::Dag)
352     .Case("class", tgtok::Class)
353     .Case("def", tgtok::Def)
354     .Case("true", tgtok::TrueVal)
355     .Case("false", tgtok::FalseVal)
356     .Case("foreach", tgtok::Foreach)
357     .Case("defm", tgtok::Defm)
358     .Case("defset", tgtok::Defset)
359     .Case("multiclass", tgtok::MultiClass)
360     .Case("field", tgtok::Field)
361     .Case("let", tgtok::Let)
362     .Case("in", tgtok::In)
363     .Case("defvar", tgtok::Defvar)
364     .Case("include", tgtok::Include)
365     .Case("if", tgtok::If)
366     .Case("then", tgtok::Then)
367     .Case("else", tgtok::ElseKW)
368     .Case("assert", tgtok::Assert)
369     .Default(tgtok::Id);
370 
371   // A couple of tokens require special processing.
372   switch (Kind) {
373     case tgtok::Include:
374       if (LexInclude()) return tgtok::Error;
375       return Lex();
376     case tgtok::Id:
377       CurStrVal.assign(Str.begin(), Str.end());
378       break;
379     default:
380       break;
381   }
382 
383   return Kind;
384 }
385 
386 /// LexInclude - We just read the "include" token.  Get the string token that
387 /// comes next and enter the include.
388 bool TGLexer::LexInclude() {
389   // The token after the include must be a string.
390   tgtok::TokKind Tok = LexToken();
391   if (Tok == tgtok::Error) return true;
392   if (Tok != tgtok::StrVal) {
393     PrintError(getLoc(), "Expected filename after include");
394     return true;
395   }
396 
397   // Get the string.
398   std::string Filename = CurStrVal;
399   std::string IncludedFile;
400 
401   CurBuffer = SrcMgr.AddIncludeFile(Filename, SMLoc::getFromPointer(CurPtr),
402                                     IncludedFile);
403   if (!CurBuffer) {
404     PrintError(getLoc(), "Could not find include file '" + Filename + "'");
405     return true;
406   }
407 
408   Dependencies.insert(IncludedFile);
409   // Save the line number and lex buffer of the includer.
410   CurBuf = SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer();
411   CurPtr = CurBuf.begin();
412 
413   PrepIncludeStack.push_back(
414       std::make_unique<std::vector<PreprocessorControlDesc>>());
415   return false;
416 }
417 
418 void TGLexer::SkipBCPLComment() {
419   ++CurPtr;  // skip the second slash.
420   while (true) {
421     switch (*CurPtr) {
422     case '\n':
423     case '\r':
424       return;  // Newline is end of comment.
425     case 0:
426       // If this is the end of the buffer, end the comment.
427       if (CurPtr == CurBuf.end())
428         return;
429       break;
430     }
431     // Otherwise, skip the character.
432     ++CurPtr;
433   }
434 }
435 
436 /// SkipCComment - This skips C-style /**/ comments.  The only difference from C
437 /// is that we allow nesting.
438 bool TGLexer::SkipCComment() {
439   ++CurPtr;  // skip the star.
440   unsigned CommentDepth = 1;
441 
442   while (true) {
443     int CurChar = getNextChar();
444     switch (CurChar) {
445     case EOF:
446       PrintError(TokStart, "Unterminated comment!");
447       return true;
448     case '*':
449       // End of the comment?
450       if (CurPtr[0] != '/') break;
451 
452       ++CurPtr;   // End the */.
453       if (--CommentDepth == 0)
454         return false;
455       break;
456     case '/':
457       // Start of a nested comment?
458       if (CurPtr[0] != '*') break;
459       ++CurPtr;
460       ++CommentDepth;
461       break;
462     }
463   }
464 }
465 
466 /// LexNumber - Lex:
467 ///    [-+]?[0-9]+
468 ///    0x[0-9a-fA-F]+
469 ///    0b[01]+
470 tgtok::TokKind TGLexer::LexNumber() {
471   if (CurPtr[-1] == '0') {
472     if (CurPtr[0] == 'x') {
473       ++CurPtr;
474       const char *NumStart = CurPtr;
475       while (isxdigit(CurPtr[0]))
476         ++CurPtr;
477 
478       // Requires at least one hex digit.
479       if (CurPtr == NumStart)
480         return ReturnError(TokStart, "Invalid hexadecimal number");
481 
482       errno = 0;
483       CurIntVal = strtoll(NumStart, nullptr, 16);
484       if (errno == EINVAL)
485         return ReturnError(TokStart, "Invalid hexadecimal number");
486       if (errno == ERANGE) {
487         errno = 0;
488         CurIntVal = (int64_t)strtoull(NumStart, nullptr, 16);
489         if (errno == EINVAL)
490           return ReturnError(TokStart, "Invalid hexadecimal number");
491         if (errno == ERANGE)
492           return ReturnError(TokStart, "Hexadecimal number out of range");
493       }
494       return tgtok::IntVal;
495     } else if (CurPtr[0] == 'b') {
496       ++CurPtr;
497       const char *NumStart = CurPtr;
498       while (CurPtr[0] == '0' || CurPtr[0] == '1')
499         ++CurPtr;
500 
501       // Requires at least one binary digit.
502       if (CurPtr == NumStart)
503         return ReturnError(CurPtr-2, "Invalid binary number");
504       CurIntVal = strtoll(NumStart, nullptr, 2);
505       return tgtok::BinaryIntVal;
506     }
507   }
508 
509   // Check for a sign without a digit.
510   if (!isdigit(CurPtr[0])) {
511     if (CurPtr[-1] == '-')
512       return tgtok::minus;
513     else if (CurPtr[-1] == '+')
514       return tgtok::plus;
515   }
516 
517   while (isdigit(CurPtr[0]))
518     ++CurPtr;
519   CurIntVal = strtoll(TokStart, nullptr, 10);
520   return tgtok::IntVal;
521 }
522 
523 /// LexBracket - We just read '['.  If this is a code block, return it,
524 /// otherwise return the bracket.  Match: '[' and '[{ ( [^}]+ | }[^]] )* }]'
525 tgtok::TokKind TGLexer::LexBracket() {
526   if (CurPtr[0] != '{')
527     return tgtok::l_square;
528   ++CurPtr;
529   const char *CodeStart = CurPtr;
530   while (true) {
531     int Char = getNextChar();
532     if (Char == EOF) break;
533 
534     if (Char != '}') continue;
535 
536     Char = getNextChar();
537     if (Char == EOF) break;
538     if (Char == ']') {
539       CurStrVal.assign(CodeStart, CurPtr-2);
540       return tgtok::CodeFragment;
541     }
542   }
543 
544   return ReturnError(CodeStart - 2, "Unterminated code block");
545 }
546 
547 /// LexExclaim - Lex '!' and '![a-zA-Z]+'.
548 tgtok::TokKind TGLexer::LexExclaim() {
549   if (!isalpha(*CurPtr))
550     return ReturnError(CurPtr - 1, "Invalid \"!operator\"");
551 
552   const char *Start = CurPtr++;
553   while (isalpha(*CurPtr))
554     ++CurPtr;
555 
556   // Check to see which operator this is.
557   tgtok::TokKind Kind =
558     StringSwitch<tgtok::TokKind>(StringRef(Start, CurPtr - Start))
559     .Case("eq", tgtok::XEq)
560     .Case("ne", tgtok::XNe)
561     .Case("le", tgtok::XLe)
562     .Case("lt", tgtok::XLt)
563     .Case("ge", tgtok::XGe)
564     .Case("gt", tgtok::XGt)
565     .Case("if", tgtok::XIf)
566     .Case("cond", tgtok::XCond)
567     .Case("isa", tgtok::XIsA)
568     .Case("head", tgtok::XHead)
569     .Case("tail", tgtok::XTail)
570     .Case("size", tgtok::XSize)
571     .Case("con", tgtok::XConcat)
572     .Case("dag", tgtok::XDag)
573     .Case("add", tgtok::XADD)
574     .Case("sub", tgtok::XSUB)
575     .Case("mul", tgtok::XMUL)
576     .Case("not", tgtok::XNOT)
577     .Case("and", tgtok::XAND)
578     .Case("or", tgtok::XOR)
579     .Case("xor", tgtok::XXOR)
580     .Case("shl", tgtok::XSHL)
581     .Case("sra", tgtok::XSRA)
582     .Case("srl", tgtok::XSRL)
583     .Case("cast", tgtok::XCast)
584     .Case("empty", tgtok::XEmpty)
585     .Case("subst", tgtok::XSubst)
586     .Case("foldl", tgtok::XFoldl)
587     .Case("foreach", tgtok::XForEach)
588     .Case("filter", tgtok::XFilter)
589     .Case("listconcat", tgtok::XListConcat)
590     .Case("listsplat", tgtok::XListSplat)
591     .Case("strconcat", tgtok::XStrConcat)
592     .Case("interleave", tgtok::XInterleave)
593     .Case("substr", tgtok::XSubstr)
594     .Case("find", tgtok::XFind)
595     .Cases("setdagop", "setop", tgtok::XSetDagOp) // !setop is deprecated.
596     .Cases("getdagop", "getop", tgtok::XGetDagOp) // !getop is deprecated.
597     .Default(tgtok::Error);
598 
599   return Kind != tgtok::Error ? Kind : ReturnError(Start-1, "Unknown operator");
600 }
601 
602 bool TGLexer::prepExitInclude(bool IncludeStackMustBeEmpty) {
603   // Report an error, if preprocessor control stack for the current
604   // file is not empty.
605   if (!PrepIncludeStack.back()->empty()) {
606     prepReportPreprocessorStackError();
607 
608     return false;
609   }
610 
611   // Pop the preprocessing controls from the include stack.
612   if (PrepIncludeStack.empty()) {
613     PrintFatalError("Preprocessor include stack is empty");
614   }
615 
616   PrepIncludeStack.pop_back();
617 
618   if (IncludeStackMustBeEmpty) {
619     if (!PrepIncludeStack.empty())
620       PrintFatalError("Preprocessor include stack is not empty");
621   } else {
622     if (PrepIncludeStack.empty())
623       PrintFatalError("Preprocessor include stack is empty");
624   }
625 
626   return true;
627 }
628 
629 tgtok::TokKind TGLexer::prepIsDirective() const {
630   for (const auto &PD : PreprocessorDirs) {
631     int NextChar = *CurPtr;
632     bool Match = true;
633     unsigned I = 0;
634     for (; I < strlen(PD.Word); ++I) {
635       if (NextChar != PD.Word[I]) {
636         Match = false;
637         break;
638       }
639 
640       NextChar = peekNextChar(I + 1);
641     }
642 
643     // Check for whitespace after the directive.  If there is no whitespace,
644     // then we do not recognize it as a preprocessing directive.
645     if (Match) {
646       tgtok::TokKind Kind = PD.Kind;
647 
648       // New line and EOF may follow only #else/#endif.  It will be reported
649       // as an error for #ifdef/#define after the call to prepLexMacroName().
650       if (NextChar == ' ' || NextChar == '\t' || NextChar == EOF ||
651           NextChar == '\n' ||
652           // It looks like TableGen does not support '\r' as the actual
653           // carriage return, e.g. getNextChar() treats a single '\r'
654           // as '\n'.  So we do the same here.
655           NextChar == '\r')
656         return Kind;
657 
658       // Allow comments after some directives, e.g.:
659       //     #else// OR #else/**/
660       //     #endif// OR #endif/**/
661       //
662       // Note that we do allow comments after #ifdef/#define here, e.g.
663       //     #ifdef/**/ AND #ifdef//
664       //     #define/**/ AND #define//
665       //
666       // These cases will be reported as incorrect after calling
667       // prepLexMacroName().  We could have supported C-style comments
668       // after #ifdef/#define, but this would complicate the code
669       // for little benefit.
670       if (NextChar == '/') {
671         NextChar = peekNextChar(I + 1);
672 
673         if (NextChar == '*' || NextChar == '/')
674           return Kind;
675 
676         // Pretend that we do not recognize the directive.
677       }
678     }
679   }
680 
681   return tgtok::Error;
682 }
683 
684 bool TGLexer::prepEatPreprocessorDirective(tgtok::TokKind Kind) {
685   TokStart = CurPtr;
686 
687   for (const auto &PD : PreprocessorDirs)
688     if (PD.Kind == Kind) {
689       // Advance CurPtr to the end of the preprocessing word.
690       CurPtr += strlen(PD.Word);
691       return true;
692     }
693 
694   PrintFatalError("Unsupported preprocessing token in "
695                   "prepEatPreprocessorDirective()");
696   return false;
697 }
698 
699 tgtok::TokKind TGLexer::lexPreprocessor(
700     tgtok::TokKind Kind, bool ReturnNextLiveToken) {
701 
702   // We must be looking at a preprocessing directive.  Eat it!
703   if (!prepEatPreprocessorDirective(Kind))
704     PrintFatalError("lexPreprocessor() called for unknown "
705                     "preprocessor directive");
706 
707   if (Kind == tgtok::Ifdef || Kind == tgtok::Ifndef) {
708     StringRef MacroName = prepLexMacroName();
709     StringRef IfTokName = Kind == tgtok::Ifdef ? "#ifdef" : "#ifndef";
710     if (MacroName.empty())
711       return ReturnError(TokStart, "Expected macro name after " + IfTokName);
712 
713     bool MacroIsDefined = DefinedMacros.count(MacroName) != 0;
714 
715     // Canonicalize ifndef to ifdef equivalent
716     if (Kind == tgtok::Ifndef) {
717       MacroIsDefined = !MacroIsDefined;
718       Kind = tgtok::Ifdef;
719     }
720 
721     // Regardless of whether we are processing tokens or not,
722     // we put the #ifdef control on stack.
723     PrepIncludeStack.back()->push_back(
724         {Kind, MacroIsDefined, SMLoc::getFromPointer(TokStart)});
725 
726     if (!prepSkipDirectiveEnd())
727       return ReturnError(CurPtr, "Only comments are supported after " +
728                                      IfTokName + " NAME");
729 
730     // If we were not processing tokens before this #ifdef,
731     // then just return back to the lines skipping code.
732     if (!ReturnNextLiveToken)
733       return Kind;
734 
735     // If we were processing tokens before this #ifdef,
736     // and the macro is defined, then just return the next token.
737     if (MacroIsDefined)
738       return LexToken();
739 
740     // We were processing tokens before this #ifdef, and the macro
741     // is not defined, so we have to start skipping the lines.
742     // If the skipping is successful, it will return the token following
743     // either #else or #endif corresponding to this #ifdef.
744     if (prepSkipRegion(ReturnNextLiveToken))
745       return LexToken();
746 
747     return tgtok::Error;
748   } else if (Kind == tgtok::Else) {
749     // Check if this #else is correct before calling prepSkipDirectiveEnd(),
750     // which will move CurPtr away from the beginning of #else.
751     if (PrepIncludeStack.back()->empty())
752       return ReturnError(TokStart, "#else without #ifdef or #ifndef");
753 
754     PreprocessorControlDesc IfdefEntry = PrepIncludeStack.back()->back();
755 
756     if (IfdefEntry.Kind != tgtok::Ifdef) {
757       PrintError(TokStart, "double #else");
758       return ReturnError(IfdefEntry.SrcPos, "Previous #else is here");
759     }
760 
761     // Replace the corresponding #ifdef's control with its negation
762     // on the control stack.
763     PrepIncludeStack.back()->pop_back();
764     PrepIncludeStack.back()->push_back(
765         {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)});
766 
767     if (!prepSkipDirectiveEnd())
768       return ReturnError(CurPtr, "Only comments are supported after #else");
769 
770     // If we were processing tokens before this #else,
771     // we have to start skipping lines until the matching #endif.
772     if (ReturnNextLiveToken) {
773       if (prepSkipRegion(ReturnNextLiveToken))
774         return LexToken();
775 
776       return tgtok::Error;
777     }
778 
779     // Return to the lines skipping code.
780     return Kind;
781   } else if (Kind == tgtok::Endif) {
782     // Check if this #endif is correct before calling prepSkipDirectiveEnd(),
783     // which will move CurPtr away from the beginning of #endif.
784     if (PrepIncludeStack.back()->empty())
785       return ReturnError(TokStart, "#endif without #ifdef");
786 
787     auto &IfdefOrElseEntry = PrepIncludeStack.back()->back();
788 
789     if (IfdefOrElseEntry.Kind != tgtok::Ifdef &&
790         IfdefOrElseEntry.Kind != tgtok::Else) {
791       PrintFatalError("Invalid preprocessor control on the stack");
792       return tgtok::Error;
793     }
794 
795     if (!prepSkipDirectiveEnd())
796       return ReturnError(CurPtr, "Only comments are supported after #endif");
797 
798     PrepIncludeStack.back()->pop_back();
799 
800     // If we were processing tokens before this #endif, then
801     // we should continue it.
802     if (ReturnNextLiveToken) {
803       return LexToken();
804     }
805 
806     // Return to the lines skipping code.
807     return Kind;
808   } else if (Kind == tgtok::Define) {
809     StringRef MacroName = prepLexMacroName();
810     if (MacroName.empty())
811       return ReturnError(TokStart, "Expected macro name after #define");
812 
813     if (!DefinedMacros.insert(MacroName).second)
814       PrintWarning(getLoc(),
815                    "Duplicate definition of macro: " + Twine(MacroName));
816 
817     if (!prepSkipDirectiveEnd())
818       return ReturnError(CurPtr,
819                          "Only comments are supported after #define NAME");
820 
821     if (!ReturnNextLiveToken) {
822       PrintFatalError("#define must be ignored during the lines skipping");
823       return tgtok::Error;
824     }
825 
826     return LexToken();
827   }
828 
829   PrintFatalError("Preprocessing directive is not supported");
830   return tgtok::Error;
831 }
832 
833 bool TGLexer::prepSkipRegion(bool MustNeverBeFalse) {
834   if (!MustNeverBeFalse)
835     PrintFatalError("Invalid recursion.");
836 
837   do {
838     // Skip all symbols to the line end.
839     prepSkipToLineEnd();
840 
841     // Find the first non-whitespace symbol in the next line(s).
842     if (!prepSkipLineBegin())
843       return false;
844 
845     // If the first non-blank/comment symbol on the line is '#',
846     // it may be a start of preprocessing directive.
847     //
848     // If it is not '#' just go to the next line.
849     if (*CurPtr == '#')
850       ++CurPtr;
851     else
852       continue;
853 
854     tgtok::TokKind Kind = prepIsDirective();
855 
856     // If we did not find a preprocessing directive or it is #define,
857     // then just skip to the next line.  We do not have to do anything
858     // for #define in the line-skipping mode.
859     if (Kind == tgtok::Error || Kind == tgtok::Define)
860       continue;
861 
862     tgtok::TokKind ProcessedKind = lexPreprocessor(Kind, false);
863 
864     // If lexPreprocessor() encountered an error during lexing this
865     // preprocessor idiom, then return false to the calling lexPreprocessor().
866     // This will force tgtok::Error to be returned to the tokens processing.
867     if (ProcessedKind == tgtok::Error)
868       return false;
869 
870     if (Kind != ProcessedKind)
871       PrintFatalError("prepIsDirective() and lexPreprocessor() "
872                       "returned different token kinds");
873 
874     // If this preprocessing directive enables tokens processing,
875     // then return to the lexPreprocessor() and get to the next token.
876     // We can move from line-skipping mode to processing tokens only
877     // due to #else or #endif.
878     if (prepIsProcessingEnabled()) {
879       if (Kind != tgtok::Else && Kind != tgtok::Endif) {
880         PrintFatalError("Tokens processing was enabled by an unexpected "
881                         "preprocessing directive");
882         return false;
883       }
884 
885       return true;
886     }
887   } while (CurPtr != CurBuf.end());
888 
889   // We have reached the end of the file, but never left the lines-skipping
890   // mode.  This means there is no matching #endif.
891   prepReportPreprocessorStackError();
892   return false;
893 }
894 
895 StringRef TGLexer::prepLexMacroName() {
896   // Skip whitespaces between the preprocessing directive and the macro name.
897   while (*CurPtr == ' ' || *CurPtr == '\t')
898     ++CurPtr;
899 
900   TokStart = CurPtr;
901   // Macro names start with [a-zA-Z_].
902   if (*CurPtr != '_' && !isalpha(*CurPtr))
903     return "";
904 
905   // Match the rest of the identifier regex: [0-9a-zA-Z_]*
906   while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
907     ++CurPtr;
908 
909   return StringRef(TokStart, CurPtr - TokStart);
910 }
911 
912 bool TGLexer::prepSkipLineBegin() {
913   while (CurPtr != CurBuf.end()) {
914     switch (*CurPtr) {
915     case ' ':
916     case '\t':
917     case '\n':
918     case '\r':
919       break;
920 
921     case '/': {
922       int NextChar = peekNextChar(1);
923       if (NextChar == '*') {
924         // Skip C-style comment.
925         // Note that we do not care about skipping the C++-style comments.
926         // If the line contains "//", it may not contain any processable
927         // preprocessing directive.  Just return CurPtr pointing to
928         // the first '/' in this case.  We also do not care about
929         // incorrect symbols after the first '/' - we are in lines-skipping
930         // mode, so incorrect code is allowed to some extent.
931 
932         // Set TokStart to the beginning of the comment to enable proper
933         // diagnostic printing in case of error in SkipCComment().
934         TokStart = CurPtr;
935 
936         // CurPtr must point to '*' before call to SkipCComment().
937         ++CurPtr;
938         if (SkipCComment())
939           return false;
940       } else {
941         // CurPtr points to the non-whitespace '/'.
942         return true;
943       }
944 
945       // We must not increment CurPtr after the comment was lexed.
946       continue;
947     }
948 
949     default:
950       return true;
951     }
952 
953     ++CurPtr;
954   }
955 
956   // We have reached the end of the file.  Return to the lines skipping
957   // code, and allow it to handle the EOF as needed.
958   return true;
959 }
960 
961 bool TGLexer::prepSkipDirectiveEnd() {
962   while (CurPtr != CurBuf.end()) {
963     switch (*CurPtr) {
964     case ' ':
965     case '\t':
966       break;
967 
968     case '\n':
969     case '\r':
970       return true;
971 
972     case '/': {
973       int NextChar = peekNextChar(1);
974       if (NextChar == '/') {
975         // Skip C++-style comment.
976         // We may just return true now, but let's skip to the line/buffer end
977         // to simplify the method specification.
978         ++CurPtr;
979         SkipBCPLComment();
980       } else if (NextChar == '*') {
981         // When we are skipping C-style comment at the end of a preprocessing
982         // directive, we can skip several lines.  If any meaningful TD token
983         // follows the end of the C-style comment on the same line, it will
984         // be considered as an invalid usage of TD token.
985         // For example, we want to forbid usages like this one:
986         //     #define MACRO class Class {}
987         // But with C-style comments we also disallow the following:
988         //     #define MACRO /* This macro is used
989         //                      to ... */ class Class {}
990         // One can argue that this should be allowed, but it does not seem
991         // to be worth of the complication.  Moreover, this matches
992         // the C preprocessor behavior.
993 
994         // Set TokStart to the beginning of the comment to enable proper
995         // diagnostic printer in case of error in SkipCComment().
996         TokStart = CurPtr;
997         ++CurPtr;
998         if (SkipCComment())
999           return false;
1000       } else {
1001         TokStart = CurPtr;
1002         PrintError(CurPtr, "Unexpected character");
1003         return false;
1004       }
1005 
1006       // We must not increment CurPtr after the comment was lexed.
1007       continue;
1008     }
1009 
1010     default:
1011       // Do not allow any non-whitespaces after the directive.
1012       TokStart = CurPtr;
1013       return false;
1014     }
1015 
1016     ++CurPtr;
1017   }
1018 
1019   return true;
1020 }
1021 
1022 void TGLexer::prepSkipToLineEnd() {
1023   while (*CurPtr != '\n' && *CurPtr != '\r' && CurPtr != CurBuf.end())
1024     ++CurPtr;
1025 }
1026 
1027 bool TGLexer::prepIsProcessingEnabled() {
1028   for (auto I = PrepIncludeStack.back()->rbegin(),
1029             E = PrepIncludeStack.back()->rend();
1030        I != E; ++I) {
1031     if (!I->IsDefined)
1032       return false;
1033   }
1034 
1035   return true;
1036 }
1037 
1038 void TGLexer::prepReportPreprocessorStackError() {
1039   if (PrepIncludeStack.back()->empty())
1040     PrintFatalError("prepReportPreprocessorStackError() called with "
1041                     "empty control stack");
1042 
1043   auto &PrepControl = PrepIncludeStack.back()->back();
1044   PrintError(CurBuf.end(), "Reached EOF without matching #endif");
1045   PrintError(PrepControl.SrcPos, "The latest preprocessor control is here");
1046 
1047   TokStart = CurPtr;
1048 }
1049