LLVM 23.0.0git
LLLexer.cpp
Go to the documentation of this file.
1//===- LLLexer.cpp - Lexer for .ll Files ----------------------------------===//
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 .ll files.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/ADT/APInt.h"
15#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/Twine.h"
19#include "llvm/IR/Instruction.h"
22#include <cassert>
23#include <cctype>
24#include <cstdio>
25
26using namespace llvm;
27
28// Both the lexer and parser can issue error messages. If the lexer issues a
29// lexer error, since we do not terminate execution immediately, usually that
30// is followed by the parser issuing a parser error. However, the error issued
31// by the lexer is more relevant in that case as opposed to potentially more
32// generic parser error. So instead of always recording the last error message
33// use the `Priority` to establish a priority, with Lexer > Parser > None. We
34// record the issued message only if the message has same or higher priority
35// than the existing one. This prevents lexer errors from being overwritten by
36// parser errors.
37void LLLexer::Error(LocTy ErrorLoc, const Twine &Msg,
38 LLLexer::ErrorPriority Priority) {
39 if (Priority < ErrorInfo.Priority)
40 return;
41 ErrorInfo.Error = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
42 ErrorInfo.Priority = Priority;
43}
44
45void LLLexer::Warning(LocTy WarningLoc, const Twine &Msg) const {
46 SM.PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
47}
48
49//===----------------------------------------------------------------------===//
50// Helper functions.
51//===----------------------------------------------------------------------===//
52
53// atoull - Convert an ascii string of decimal digits into the unsigned long
54// long representation... this does not have to do input error checking,
55// because we know that the input will be matched by a suitable regex...
56//
57uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
58 uint64_t Result = 0;
59 for (; Buffer != End; Buffer++) {
60 uint64_t OldRes = Result;
61 Result *= 10;
62 Result += *Buffer-'0';
63 if (Result < OldRes) { // overflow detected.
64 LexError("constant bigger than 64 bits detected");
65 return 0;
66 }
67 }
68 return Result;
69}
70
71uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
72 uint64_t Result = 0;
73 for (; Buffer != End; ++Buffer) {
74 uint64_t OldRes = Result;
75 Result *= 16;
76 Result += hexDigitValue(*Buffer);
77
78 if (Result < OldRes) { // overflow detected.
79 LexError("constant bigger than 64 bits detected");
80 return 0;
81 }
82 }
83 return Result;
84}
85
86void LLLexer::HexToIntPair(const char *Buffer, const char *End,
87 uint64_t Pair[2]) {
88 Pair[0] = 0;
89 if (End - Buffer >= 16) {
90 for (int i = 0; i < 16; i++, Buffer++) {
91 assert(Buffer != End);
92 Pair[0] *= 16;
93 Pair[0] += hexDigitValue(*Buffer);
94 }
95 }
96 Pair[1] = 0;
97 for (int i = 0; i < 16 && Buffer != End; i++, Buffer++) {
98 Pair[1] *= 16;
99 Pair[1] += hexDigitValue(*Buffer);
100 }
101 if (Buffer != End)
102 LexError("constant bigger than 128 bits detected");
103}
104
105/// FP80HexToIntPair - translate an 80 bit FP80 number (20 hexits) into
106/// { low64, high16 } as usual for an APInt.
107void LLLexer::FP80HexToIntPair(const char *Buffer, const char *End,
108 uint64_t Pair[2]) {
109 Pair[1] = 0;
110 for (int i=0; i<4 && Buffer != End; i++, Buffer++) {
111 assert(Buffer != End);
112 Pair[1] *= 16;
113 Pair[1] += hexDigitValue(*Buffer);
114 }
115 Pair[0] = 0;
116 for (int i = 0; i < 16 && Buffer != End; i++, Buffer++) {
117 Pair[0] *= 16;
118 Pair[0] += hexDigitValue(*Buffer);
119 }
120 if (Buffer != End)
121 LexError("constant bigger than 128 bits detected");
122}
123
124// UnEscapeLexed - Run through the specified buffer and change \xx codes to the
125// appropriate character.
126static void UnEscapeLexed(std::string &Str) {
127 if (Str.empty()) return;
128
129 char *Buffer = &Str[0], *EndBuffer = Buffer+Str.size();
130 char *BOut = Buffer;
131 for (char *BIn = Buffer; BIn != EndBuffer; ) {
132 if (BIn[0] == '\\') {
133 if (BIn < EndBuffer-1 && BIn[1] == '\\') {
134 *BOut++ = '\\'; // Two \ becomes one
135 BIn += 2;
136 } else if (BIn < EndBuffer-2 &&
137 isxdigit(static_cast<unsigned char>(BIn[1])) &&
138 isxdigit(static_cast<unsigned char>(BIn[2]))) {
139 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]);
140 BIn += 3; // Skip over handled chars
141 ++BOut;
142 } else {
143 *BOut++ = *BIn++;
144 }
145 } else {
146 *BOut++ = *BIn++;
147 }
148 }
149 Str.resize(BOut-Buffer);
150}
151
152/// isLabelChar - Return true for [-a-zA-Z$._0-9].
153static bool isLabelChar(char C) {
154 return isalnum(static_cast<unsigned char>(C)) || C == '-' || C == '$' ||
155 C == '.' || C == '_';
156}
157
158/// isLabelTail - Return true if this pointer points to a valid end of a label.
159static const char *isLabelTail(const char *CurPtr) {
160 while (true) {
161 if (CurPtr[0] == ':') return CurPtr+1;
162 if (!isLabelChar(CurPtr[0])) return nullptr;
163 ++CurPtr;
164 }
165}
166
167//===----------------------------------------------------------------------===//
168// Lexer definition.
169//===----------------------------------------------------------------------===//
170
172 LLVMContext &C)
173 : CurBuf(StartBuf), ErrorInfo(Err), SM(SM), Context(C) {
174 CurPtr = CurBuf.begin();
175}
176
177int LLLexer::getNextChar() {
178 char CurChar = *CurPtr++;
179 switch (CurChar) {
180 default: return (unsigned char)CurChar;
181 case 0:
182 // A nul character in the stream is either the end of the current buffer or
183 // a random nul in the file. Disambiguate that here.
184 if (CurPtr-1 != CurBuf.end())
185 return 0; // Just whitespace.
186
187 // Otherwise, return end of file.
188 --CurPtr; // Another call to lex will return EOF again.
189 return EOF;
190 }
191}
192
193lltok::Kind LLLexer::LexToken() {
194 // Set token end to next location, since the end is exclusive.
195 PrevTokEnd = CurPtr;
196 while (true) {
197 TokStart = CurPtr;
198
199 int CurChar = getNextChar();
200 switch (CurChar) {
201 default:
202 // Handle letters: [a-zA-Z_]
203 if (isalpha(static_cast<unsigned char>(CurChar)) || CurChar == '_')
204 return LexIdentifier();
205 return lltok::Error;
206 case EOF: return lltok::Eof;
207 case 0:
208 case ' ':
209 case '\t':
210 case '\n':
211 case '\r':
212 // Ignore whitespace.
213 continue;
214 case '+': return LexPositive();
215 case '@': return LexAt();
216 case '$': return LexDollar();
217 case '%': return LexPercent();
218 case '"': return LexQuote();
219 case '.':
220 if (const char *Ptr = isLabelTail(CurPtr)) {
221 CurPtr = Ptr;
222 StrVal.assign(TokStart, CurPtr-1);
223 return lltok::LabelStr;
224 }
225 if (CurPtr[0] == '.' && CurPtr[1] == '.') {
226 CurPtr += 2;
227 return lltok::dotdotdot;
228 }
229 return lltok::Error;
230 case ';':
231 SkipLineComment();
232 continue;
233 case '!': return LexExclaim();
234 case '^':
235 return LexCaret();
236 case ':':
237 return lltok::colon;
238 case '#': return LexHash();
239 case '0': case '1': case '2': case '3': case '4':
240 case '5': case '6': case '7': case '8': case '9':
241 case '-':
242 return LexDigitOrNegative();
243 case '=': return lltok::equal;
244 case '[': return lltok::lsquare;
245 case ']': return lltok::rsquare;
246 case '{': return lltok::lbrace;
247 case '}': return lltok::rbrace;
248 case '<': return lltok::less;
249 case '>': return lltok::greater;
250 case '(': return lltok::lparen;
251 case ')': return lltok::rparen;
252 case ',': return lltok::comma;
253 case '*': return lltok::star;
254 case '|': return lltok::bar;
255 case '/':
256 if (getNextChar() != '*')
257 return lltok::Error;
258 if (SkipCComment())
259 return lltok::Error;
260 continue;
261 }
262 }
263}
264
265void LLLexer::SkipLineComment() {
266 while (true) {
267 if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
268 return;
269 }
270}
271
272/// This skips C-style /**/ comments. Returns true if there
273/// was an error.
274bool LLLexer::SkipCComment() {
275 while (true) {
276 int CurChar = getNextChar();
277 switch (CurChar) {
278 case EOF:
279 LexError("unterminated comment");
280 return true;
281 case '*':
282 // End of the comment?
283 CurChar = getNextChar();
284 if (CurChar == '/')
285 return false;
286 if (CurChar == EOF) {
287 LexError("unterminated comment");
288 return true;
289 }
290 }
291 }
292}
293
294/// Lex all tokens that start with an @ character.
295/// GlobalVar @\"[^\"]*\"
296/// GlobalVar @[-a-zA-Z$._][-a-zA-Z$._0-9]*
297/// GlobalVarID @[0-9]+
298lltok::Kind LLLexer::LexAt() {
299 return LexVar(lltok::GlobalVar, lltok::GlobalID);
300}
301
302lltok::Kind LLLexer::LexDollar() {
303 if (const char *Ptr = isLabelTail(TokStart)) {
304 CurPtr = Ptr;
305 StrVal.assign(TokStart, CurPtr - 1);
306 return lltok::LabelStr;
307 }
308
309 // Handle DollarStringConstant: $\"[^\"]*\"
310 if (CurPtr[0] == '"') {
311 ++CurPtr;
312
313 while (true) {
314 int CurChar = getNextChar();
315
316 if (CurChar == EOF) {
317 LexError("end of file in COMDAT variable name");
318 return lltok::Error;
319 }
320 if (CurChar == '"') {
321 StrVal.assign(TokStart + 2, CurPtr - 1);
322 UnEscapeLexed(StrVal);
323 if (StringRef(StrVal).contains(0)) {
324 LexError("NUL character is not allowed in names");
325 return lltok::Error;
326 }
327 return lltok::ComdatVar;
328 }
329 }
330 }
331
332 // Handle ComdatVarName: $[-a-zA-Z$._][-a-zA-Z$._0-9]*
333 if (ReadVarName())
334 return lltok::ComdatVar;
335
336 return lltok::Error;
337}
338
339/// ReadString - Read a string until the closing quote.
340lltok::Kind LLLexer::ReadString(lltok::Kind kind) {
341 const char *Start = CurPtr;
342 while (true) {
343 int CurChar = getNextChar();
344
345 if (CurChar == EOF) {
346 LexError("end of file in string constant");
347 return lltok::Error;
348 }
349 if (CurChar == '"') {
350 StrVal.assign(Start, CurPtr-1);
351 UnEscapeLexed(StrVal);
352 return kind;
353 }
354 }
355}
356
357/// ReadVarName - Read the rest of a token containing a variable name.
358bool LLLexer::ReadVarName() {
359 const char *NameStart = CurPtr;
360 if (isalpha(static_cast<unsigned char>(CurPtr[0])) ||
361 CurPtr[0] == '-' || CurPtr[0] == '$' ||
362 CurPtr[0] == '.' || CurPtr[0] == '_') {
363 ++CurPtr;
364 while (isalnum(static_cast<unsigned char>(CurPtr[0])) ||
365 CurPtr[0] == '-' || CurPtr[0] == '$' ||
366 CurPtr[0] == '.' || CurPtr[0] == '_')
367 ++CurPtr;
368
369 StrVal.assign(NameStart, CurPtr);
370 return true;
371 }
372 return false;
373}
374
375// Lex an ID: [0-9]+. On success, the ID is stored in UIntVal and Token is
376// returned, otherwise the Error token is returned.
377lltok::Kind LLLexer::LexUIntID(lltok::Kind Token) {
378 if (!isdigit(static_cast<unsigned char>(CurPtr[0])))
379 return lltok::Error;
380
381 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
382 /*empty*/;
383
384 uint64_t Val = atoull(TokStart + 1, CurPtr);
385 if ((unsigned)Val != Val)
386 LexError("invalid value number (too large)");
387 UIntVal = unsigned(Val);
388 return Token;
389}
390
391lltok::Kind LLLexer::LexVar(lltok::Kind Var, lltok::Kind VarID) {
392 // Handle StringConstant: \"[^\"]*\"
393 if (CurPtr[0] == '"') {
394 ++CurPtr;
395
396 while (true) {
397 int CurChar = getNextChar();
398
399 if (CurChar == EOF) {
400 LexError("end of file in global variable name");
401 return lltok::Error;
402 }
403 if (CurChar == '"') {
404 StrVal.assign(TokStart+2, CurPtr-1);
405 UnEscapeLexed(StrVal);
406 if (StringRef(StrVal).contains(0)) {
407 LexError("NUL character is not allowed in names");
408 return lltok::Error;
409 }
410 return Var;
411 }
412 }
413 }
414
415 // Handle VarName: [-a-zA-Z$._][-a-zA-Z$._0-9]*
416 if (ReadVarName())
417 return Var;
418
419 // Handle VarID: [0-9]+
420 return LexUIntID(VarID);
421}
422
423/// Lex all tokens that start with a % character.
424/// LocalVar ::= %\"[^\"]*\"
425/// LocalVar ::= %[-a-zA-Z$._][-a-zA-Z$._0-9]*
426/// LocalVarID ::= %[0-9]+
427lltok::Kind LLLexer::LexPercent() {
428 return LexVar(lltok::LocalVar, lltok::LocalVarID);
429}
430
431/// Lex all tokens that start with a " character.
432/// QuoteLabel "[^"]+":
433/// StringConstant "[^"]*"
434lltok::Kind LLLexer::LexQuote() {
435 lltok::Kind kind = ReadString(lltok::StringConstant);
436 if (kind == lltok::Error || kind == lltok::Eof)
437 return kind;
438
439 if (CurPtr[0] == ':') {
440 ++CurPtr;
441 if (StringRef(StrVal).contains(0)) {
442 LexError("NUL character is not allowed in names");
443 kind = lltok::Error;
444 } else {
445 kind = lltok::LabelStr;
446 }
447 }
448
449 return kind;
450}
451
452/// Lex all tokens that start with a ! character.
453/// !foo
454/// !
455lltok::Kind LLLexer::LexExclaim() {
456 // Lex a metadata name as a MetadataVar.
457 if (isalpha(static_cast<unsigned char>(CurPtr[0])) ||
458 CurPtr[0] == '-' || CurPtr[0] == '$' ||
459 CurPtr[0] == '.' || CurPtr[0] == '_' || CurPtr[0] == '\\') {
460 ++CurPtr;
461 while (isalnum(static_cast<unsigned char>(CurPtr[0])) ||
462 CurPtr[0] == '-' || CurPtr[0] == '$' ||
463 CurPtr[0] == '.' || CurPtr[0] == '_' || CurPtr[0] == '\\')
464 ++CurPtr;
465
466 StrVal.assign(TokStart+1, CurPtr); // Skip !
467 UnEscapeLexed(StrVal);
468 return lltok::MetadataVar;
469 }
470 return lltok::exclaim;
471}
472
473/// Lex all tokens that start with a ^ character.
474/// SummaryID ::= ^[0-9]+
475lltok::Kind LLLexer::LexCaret() {
476 // Handle SummaryID: ^[0-9]+
477 return LexUIntID(lltok::SummaryID);
478}
479
480/// Lex all tokens that start with a # character.
481/// AttrGrpID ::= #[0-9]+
482/// Hash ::= #
483lltok::Kind LLLexer::LexHash() {
484 // Handle AttrGrpID: #[0-9]+
485 if (isdigit(static_cast<unsigned char>(CurPtr[0])))
486 return LexUIntID(lltok::AttrGrpID);
487 return lltok::hash;
488}
489
490/// Lex a label, integer type, keyword, or hexadecimal integer constant.
491/// Label [-a-zA-Z$._0-9]+:
492/// IntegerType i[0-9]+
493/// Keyword sdiv, float, ...
494/// HexIntConstant [us]0x[0-9A-Fa-f]+
495lltok::Kind LLLexer::LexIdentifier() {
496 const char *StartChar = CurPtr;
497 const char *IntEnd = CurPtr[-1] == 'i' ? nullptr : StartChar;
498 const char *KeywordEnd = nullptr;
499
500 for (; isLabelChar(*CurPtr); ++CurPtr) {
501 // If we decide this is an integer, remember the end of the sequence.
502 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr)))
503 IntEnd = CurPtr;
504 if (!KeywordEnd && !isalnum(static_cast<unsigned char>(*CurPtr)) &&
505 *CurPtr != '_')
506 KeywordEnd = CurPtr;
507 }
508
509 // If we stopped due to a colon, unless we were directed to ignore it,
510 // this really is a label.
511 if (!IgnoreColonInIdentifiers && *CurPtr == ':') {
512 StrVal.assign(StartChar-1, CurPtr++);
513 return lltok::LabelStr;
514 }
515
516 // Otherwise, this wasn't a label. If this was valid as an integer type,
517 // return it.
518 if (!IntEnd) IntEnd = CurPtr;
519 if (IntEnd != StartChar) {
520 CurPtr = IntEnd;
521 uint64_t NumBits = atoull(StartChar, CurPtr);
522 if (NumBits < IntegerType::MIN_INT_BITS ||
523 NumBits > IntegerType::MAX_INT_BITS) {
524 LexError("bitwidth for integer type out of range");
525 return lltok::Error;
526 }
527 TyVal = IntegerType::get(Context, NumBits);
528 return lltok::Type;
529 }
530
531 // Otherwise, this was a letter sequence. See which keyword this is.
532 if (!KeywordEnd) KeywordEnd = CurPtr;
533 CurPtr = KeywordEnd;
534 --StartChar;
535 StringRef Keyword(StartChar, CurPtr - StartChar);
536
537#define KEYWORD(STR) \
538 do { \
539 if (Keyword == #STR) \
540 return lltok::kw_##STR; \
541 } while (false)
542
543 KEYWORD(true); KEYWORD(false);
544 KEYWORD(declare); KEYWORD(define);
545 KEYWORD(global); KEYWORD(constant);
546
547 KEYWORD(dso_local);
548 KEYWORD(dso_preemptable);
549
550 KEYWORD(private);
551 KEYWORD(internal);
552 KEYWORD(available_externally);
553 KEYWORD(linkonce);
554 KEYWORD(linkonce_odr);
555 KEYWORD(weak); // Use as a linkage, and a modifier for "cmpxchg".
556 KEYWORD(weak_odr);
557 KEYWORD(appending);
558 KEYWORD(dllimport);
559 KEYWORD(dllexport);
560 KEYWORD(common);
561 KEYWORD(default);
562 KEYWORD(hidden);
563 KEYWORD(protected);
564 KEYWORD(unnamed_addr);
565 KEYWORD(local_unnamed_addr);
566 KEYWORD(externally_initialized);
567 KEYWORD(extern_weak);
568 KEYWORD(external);
569 KEYWORD(thread_local);
570 KEYWORD(localdynamic);
571 KEYWORD(initialexec);
572 KEYWORD(localexec);
573 KEYWORD(zeroinitializer);
574 KEYWORD(undef);
575 KEYWORD(null);
576 KEYWORD(none);
577 KEYWORD(poison);
578 KEYWORD(to);
579 KEYWORD(caller);
580 KEYWORD(within);
581 KEYWORD(from);
582 KEYWORD(tail);
583 KEYWORD(musttail);
584 KEYWORD(notail);
585 KEYWORD(target);
586 KEYWORD(triple);
587 KEYWORD(source_filename);
588 KEYWORD(unwind);
589 KEYWORD(datalayout);
590 KEYWORD(volatile);
591 KEYWORD(atomic);
592 KEYWORD(unordered);
593 KEYWORD(monotonic);
598 KEYWORD(syncscope);
599
600 KEYWORD(nnan);
601 KEYWORD(ninf);
602 KEYWORD(nsz);
603 KEYWORD(arcp);
605 KEYWORD(reassoc);
606 KEYWORD(afn);
607 KEYWORD(fast);
608 KEYWORD(nuw);
609 KEYWORD(nsw);
610 KEYWORD(nusw);
611 KEYWORD(exact);
612 KEYWORD(disjoint);
613 KEYWORD(inbounds);
614 KEYWORD(nneg);
615 KEYWORD(samesign);
616 KEYWORD(inrange);
617 KEYWORD(addrspace);
618 KEYWORD(section);
620 KEYWORD(code_model);
621 KEYWORD(alias);
622 KEYWORD(ifunc);
623 KEYWORD(module);
624 KEYWORD(asm);
625 KEYWORD(sideeffect);
626 KEYWORD(inteldialect);
627 KEYWORD(gc);
628 KEYWORD(prefix);
629 KEYWORD(prologue);
630 KEYWORD(prefalign);
631
632 KEYWORD(no_sanitize_address);
633 KEYWORD(no_sanitize_hwaddress);
634 KEYWORD(sanitize_address_dyninit);
635
636 KEYWORD(ccc);
637 KEYWORD(fastcc);
638 KEYWORD(coldcc);
639 KEYWORD(cfguard_checkcc);
640 KEYWORD(x86_stdcallcc);
641 KEYWORD(x86_fastcallcc);
642 KEYWORD(x86_thiscallcc);
643 KEYWORD(x86_vectorcallcc);
644 KEYWORD(arm_apcscc);
645 KEYWORD(arm_aapcscc);
646 KEYWORD(arm_aapcs_vfpcc);
647 KEYWORD(aarch64_vector_pcs);
648 KEYWORD(aarch64_sve_vector_pcs);
649 KEYWORD(aarch64_sme_preservemost_from_x0);
650 KEYWORD(aarch64_sme_preservemost_from_x1);
651 KEYWORD(aarch64_sme_preservemost_from_x2);
652 KEYWORD(msp430_intrcc);
653 KEYWORD(avr_intrcc);
654 KEYWORD(avr_signalcc);
655 KEYWORD(ptx_kernel);
656 KEYWORD(ptx_device);
657 KEYWORD(spir_kernel);
658 KEYWORD(spir_func);
659 KEYWORD(intel_ocl_bicc);
660 KEYWORD(x86_64_sysvcc);
661 KEYWORD(win64cc);
662 KEYWORD(x86_regcallcc);
663 KEYWORD(swiftcc);
664 KEYWORD(swifttailcc);
665 KEYWORD(anyregcc);
666 KEYWORD(preserve_mostcc);
667 KEYWORD(preserve_allcc);
668 KEYWORD(preserve_nonecc);
669 KEYWORD(ghccc);
670 KEYWORD(x86_intrcc);
671 KEYWORD(hhvmcc);
672 KEYWORD(hhvm_ccc);
673 KEYWORD(cxx_fast_tlscc);
674 KEYWORD(amdgpu_vs);
675 KEYWORD(amdgpu_ls);
676 KEYWORD(amdgpu_hs);
677 KEYWORD(amdgpu_es);
678 KEYWORD(amdgpu_gs);
679 KEYWORD(amdgpu_ps);
680 KEYWORD(amdgpu_cs);
681 KEYWORD(amdgpu_cs_chain);
682 KEYWORD(amdgpu_cs_chain_preserve);
683 KEYWORD(amdgpu_kernel);
684 KEYWORD(amdgpu_gfx);
685 KEYWORD(amdgpu_gfx_whole_wave);
686 KEYWORD(tailcc);
687 KEYWORD(m68k_rtdcc);
688 KEYWORD(graalcc);
689 KEYWORD(riscv_vector_cc);
690 KEYWORD(riscv_vls_cc);
691 KEYWORD(cheriot_compartmentcallcc);
692 KEYWORD(cheriot_compartmentcalleecc);
693 KEYWORD(cheriot_librarycallcc);
694
695 KEYWORD(cc);
696 KEYWORD(c);
697
698 KEYWORD(attributes);
699 KEYWORD(sync);
700 KEYWORD(async);
701
702#define GET_ATTR_NAMES
703#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
704 KEYWORD(DISPLAY_NAME);
705#include "llvm/IR/Attributes.inc"
706
707 KEYWORD(read);
708 KEYWORD(write);
709 KEYWORD(readwrite);
710 KEYWORD(argmem);
711 KEYWORD(target_mem0);
712 KEYWORD(target_mem1);
713 KEYWORD(inaccessiblemem);
714 KEYWORD(errnomem);
715 KEYWORD(argmemonly);
716 KEYWORD(inaccessiblememonly);
717 KEYWORD(inaccessiblemem_or_argmemonly);
718 KEYWORD(nocapture);
719 KEYWORD(address_is_null);
720 KEYWORD(address);
721 KEYWORD(provenance);
722 KEYWORD(read_provenance);
723
724 // denormal_fpenv attribute
725 KEYWORD(ieee);
726 KEYWORD(preservesign);
727 KEYWORD(positivezero);
728 KEYWORD(dynamic);
729
730 // nofpclass attribute
731 KEYWORD(all);
732 KEYWORD(nan);
733 KEYWORD(snan);
734 KEYWORD(qnan);
735 KEYWORD(inf);
736 // ninf already a keyword
737 KEYWORD(pinf);
738 KEYWORD(norm);
739 KEYWORD(nnorm);
740 KEYWORD(pnorm);
741 // sub already a keyword
742 KEYWORD(nsub);
743 KEYWORD(psub);
744 KEYWORD(zero);
745 KEYWORD(nzero);
746 KEYWORD(pzero);
747
748 KEYWORD(type);
749 KEYWORD(opaque);
750
751 KEYWORD(comdat);
752
753 // Comdat types
754 KEYWORD(any);
755 KEYWORD(exactmatch);
756 KEYWORD(largest);
757 KEYWORD(nodeduplicate);
758 KEYWORD(samesize);
759
760 KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle);
761 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge);
762 KEYWORD(oeq); KEYWORD(one); KEYWORD(olt); KEYWORD(ogt); KEYWORD(ole);
763 KEYWORD(oge); KEYWORD(ord); KEYWORD(uno); KEYWORD(ueq); KEYWORD(une);
764
765 KEYWORD(xchg); KEYWORD(nand); KEYWORD(max); KEYWORD(min); KEYWORD(umax);
766 KEYWORD(umin); KEYWORD(fmax); KEYWORD(fmin);
767 KEYWORD(fmaximum);
768 KEYWORD(fminimum);
769 KEYWORD(uinc_wrap);
770 KEYWORD(udec_wrap);
771 KEYWORD(usub_cond);
772 KEYWORD(usub_sat);
773
774 KEYWORD(splat);
775 KEYWORD(vscale);
776 KEYWORD(x);
777 KEYWORD(blockaddress);
778 KEYWORD(dso_local_equivalent);
779 KEYWORD(no_cfi);
780 KEYWORD(ptrauth);
781
782 // Metadata types.
783 KEYWORD(distinct);
784
785 // Use-list order directives.
786 KEYWORD(uselistorder);
787 KEYWORD(uselistorder_bb);
788
789 KEYWORD(personality);
791 KEYWORD(catch);
792 KEYWORD(filter);
793
794 // Summary index keywords.
795 KEYWORD(path);
796 KEYWORD(hash);
797 KEYWORD(gv);
798 KEYWORD(guid);
799 KEYWORD(name);
800 KEYWORD(summaries);
801 KEYWORD(flags);
802 KEYWORD(blockcount);
803 KEYWORD(linkage);
804 KEYWORD(visibility);
805 KEYWORD(notEligibleToImport);
806 KEYWORD(live);
807 KEYWORD(dsoLocal);
808 KEYWORD(canAutoHide);
809 KEYWORD(importType);
810 KEYWORD(definition);
811 KEYWORD(declaration);
812 KEYWORD(noRenameOnPromotion);
814 KEYWORD(insts);
815 KEYWORD(funcFlags);
816 KEYWORD(readNone);
817 KEYWORD(readOnly);
818 KEYWORD(noRecurse);
819 KEYWORD(returnDoesNotAlias);
820 KEYWORD(noInline);
821 KEYWORD(alwaysInline);
822 KEYWORD(noUnwind);
823 KEYWORD(mayThrow);
824 KEYWORD(hasUnknownCall);
825 KEYWORD(mustBeUnreachable);
826 KEYWORD(calls);
827 KEYWORD(callee);
828 KEYWORD(params);
829 KEYWORD(param);
830 KEYWORD(hotness);
831 KEYWORD(unknown);
832 KEYWORD(critical);
833 // Deprecated, keep in order to support old files.
834 KEYWORD(relbf);
835 KEYWORD(variable);
836 KEYWORD(vTableFuncs);
837 KEYWORD(virtFunc);
838 KEYWORD(aliasee);
839 KEYWORD(refs);
840 KEYWORD(typeIdInfo);
841 KEYWORD(typeTests);
842 KEYWORD(typeTestAssumeVCalls);
843 KEYWORD(typeCheckedLoadVCalls);
844 KEYWORD(typeTestAssumeConstVCalls);
845 KEYWORD(typeCheckedLoadConstVCalls);
846 KEYWORD(vFuncId);
847 KEYWORD(offset);
848 KEYWORD(args);
849 KEYWORD(typeid);
850 KEYWORD(typeidCompatibleVTable);
851 KEYWORD(summary);
852 KEYWORD(typeTestRes);
853 KEYWORD(kind);
854 KEYWORD(unsat);
855 KEYWORD(byteArray);
856 KEYWORD(inline);
857 KEYWORD(single);
859 KEYWORD(sizeM1BitWidth);
860 KEYWORD(alignLog2);
861 KEYWORD(sizeM1);
862 KEYWORD(bitMask);
863 KEYWORD(inlineBits);
864 KEYWORD(vcall_visibility);
865 KEYWORD(wpdResolutions);
866 KEYWORD(wpdRes);
867 KEYWORD(indir);
868 KEYWORD(singleImpl);
869 KEYWORD(branchFunnel);
870 KEYWORD(singleImplName);
871 KEYWORD(resByArg);
872 KEYWORD(byArg);
873 KEYWORD(uniformRetVal);
874 KEYWORD(uniqueRetVal);
875 KEYWORD(virtualConstProp);
876 KEYWORD(info);
877 KEYWORD(byte);
878 KEYWORD(bit);
879 KEYWORD(varFlags);
880 KEYWORD(callsites);
881 KEYWORD(clones);
882 KEYWORD(stackIds);
883 KEYWORD(allocs);
884 KEYWORD(versions);
885 KEYWORD(memProf);
886 KEYWORD(notcold);
887
888#undef KEYWORD
889
890 // Keywords for types.
891#define TYPEKEYWORD(STR, LLVMTY) \
892 do { \
893 if (Keyword == STR) { \
894 TyVal = LLVMTY; \
895 return lltok::Type; \
896 } \
897 } while (false)
898
899 TYPEKEYWORD("void", Type::getVoidTy(Context));
900 TYPEKEYWORD("half", Type::getHalfTy(Context));
901 TYPEKEYWORD("bfloat", Type::getBFloatTy(Context));
902 TYPEKEYWORD("float", Type::getFloatTy(Context));
903 TYPEKEYWORD("double", Type::getDoubleTy(Context));
904 TYPEKEYWORD("x86_fp80", Type::getX86_FP80Ty(Context));
905 TYPEKEYWORD("fp128", Type::getFP128Ty(Context));
906 TYPEKEYWORD("ppc_fp128", Type::getPPC_FP128Ty(Context));
907 TYPEKEYWORD("label", Type::getLabelTy(Context));
908 TYPEKEYWORD("metadata", Type::getMetadataTy(Context));
909 TYPEKEYWORD("x86_amx", Type::getX86_AMXTy(Context));
910 TYPEKEYWORD("token", Type::getTokenTy(Context));
911 TYPEKEYWORD("ptr", PointerType::getUnqual(Context));
912
913#undef TYPEKEYWORD
914
915 // Keywords for instructions.
916#define INSTKEYWORD(STR, Enum) \
917 do { \
918 if (Keyword == #STR) { \
919 UIntVal = Instruction::Enum; \
920 return lltok::kw_##STR; \
921 } \
922 } while (false)
923
924 INSTKEYWORD(fneg, FNeg);
925
926 INSTKEYWORD(add, Add); INSTKEYWORD(fadd, FAdd);
927 INSTKEYWORD(sub, Sub); INSTKEYWORD(fsub, FSub);
928 INSTKEYWORD(mul, Mul); INSTKEYWORD(fmul, FMul);
929 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
930 INSTKEYWORD(urem, URem); INSTKEYWORD(srem, SRem); INSTKEYWORD(frem, FRem);
931 INSTKEYWORD(shl, Shl); INSTKEYWORD(lshr, LShr); INSTKEYWORD(ashr, AShr);
932 INSTKEYWORD(and, And); INSTKEYWORD(or, Or); INSTKEYWORD(xor, Xor);
933 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
934
935 INSTKEYWORD(phi, PHI);
936 INSTKEYWORD(call, Call);
937 INSTKEYWORD(trunc, Trunc);
938 INSTKEYWORD(zext, ZExt);
939 INSTKEYWORD(sext, SExt);
940 INSTKEYWORD(fptrunc, FPTrunc);
941 INSTKEYWORD(fpext, FPExt);
942 INSTKEYWORD(uitofp, UIToFP);
943 INSTKEYWORD(sitofp, SIToFP);
944 INSTKEYWORD(fptoui, FPToUI);
945 INSTKEYWORD(fptosi, FPToSI);
946 INSTKEYWORD(inttoptr, IntToPtr);
947 INSTKEYWORD(ptrtoaddr, PtrToAddr);
948 INSTKEYWORD(ptrtoint, PtrToInt);
949 INSTKEYWORD(bitcast, BitCast);
950 INSTKEYWORD(addrspacecast, AddrSpaceCast);
951 INSTKEYWORD(select, Select);
952 INSTKEYWORD(va_arg, VAArg);
953 INSTKEYWORD(ret, Ret);
954 INSTKEYWORD(br, Br);
955 INSTKEYWORD(switch, Switch);
956 INSTKEYWORD(indirectbr, IndirectBr);
957 INSTKEYWORD(invoke, Invoke);
958 INSTKEYWORD(resume, Resume);
959 INSTKEYWORD(unreachable, Unreachable);
960 INSTKEYWORD(callbr, CallBr);
961
962 INSTKEYWORD(alloca, Alloca);
963 INSTKEYWORD(load, Load);
964 INSTKEYWORD(store, Store);
965 INSTKEYWORD(cmpxchg, AtomicCmpXchg);
966 INSTKEYWORD(atomicrmw, AtomicRMW);
967 INSTKEYWORD(fence, Fence);
968 INSTKEYWORD(getelementptr, GetElementPtr);
969
970 INSTKEYWORD(extractelement, ExtractElement);
971 INSTKEYWORD(insertelement, InsertElement);
972 INSTKEYWORD(shufflevector, ShuffleVector);
973 INSTKEYWORD(extractvalue, ExtractValue);
974 INSTKEYWORD(insertvalue, InsertValue);
975 INSTKEYWORD(landingpad, LandingPad);
976 INSTKEYWORD(cleanupret, CleanupRet);
977 INSTKEYWORD(catchret, CatchRet);
978 INSTKEYWORD(catchswitch, CatchSwitch);
979 INSTKEYWORD(catchpad, CatchPad);
980 INSTKEYWORD(cleanuppad, CleanupPad);
981
982 INSTKEYWORD(freeze, Freeze);
983
984#undef INSTKEYWORD
985
986#define DWKEYWORD(TYPE, TOKEN) \
987 do { \
988 if (Keyword.starts_with("DW_" #TYPE "_")) { \
989 StrVal.assign(Keyword.begin(), Keyword.end()); \
990 return lltok::TOKEN; \
991 } \
992 } while (false)
993
994 DWKEYWORD(TAG, DwarfTag);
995 DWKEYWORD(ATE, DwarfAttEncoding);
996 DWKEYWORD(VIRTUALITY, DwarfVirtuality);
997 DWKEYWORD(LANG, DwarfLang);
998 DWKEYWORD(LNAME, DwarfSourceLangName);
999 DWKEYWORD(CC, DwarfCC);
1000 DWKEYWORD(OP, DwarfOp);
1001 DWKEYWORD(MACINFO, DwarfMacinfo);
1002 DWKEYWORD(APPLE_ENUM_KIND, DwarfEnumKind);
1003
1004#undef DWKEYWORD
1005
1006// Keywords for debug record types.
1007#define DBGRECORDTYPEKEYWORD(STR) \
1008 do { \
1009 if (Keyword == "dbg_" #STR) { \
1010 StrVal = #STR; \
1011 return lltok::DbgRecordType; \
1012 } \
1013 } while (false)
1014
1015 DBGRECORDTYPEKEYWORD(value);
1016 DBGRECORDTYPEKEYWORD(declare);
1017 DBGRECORDTYPEKEYWORD(assign);
1018 DBGRECORDTYPEKEYWORD(label);
1019 DBGRECORDTYPEKEYWORD(declare_value);
1020#undef DBGRECORDTYPEKEYWORD
1021
1022 if (Keyword.starts_with("DIFlag")) {
1023 StrVal.assign(Keyword.begin(), Keyword.end());
1024 return lltok::DIFlag;
1025 }
1026
1027 if (Keyword.starts_with("DISPFlag")) {
1028 StrVal.assign(Keyword.begin(), Keyword.end());
1029 return lltok::DISPFlag;
1030 }
1031
1032 if (Keyword.starts_with("CSK_")) {
1033 StrVal.assign(Keyword.begin(), Keyword.end());
1034 return lltok::ChecksumKind;
1035 }
1036
1037 if (Keyword == "NoDebug" || Keyword == "FullDebug" ||
1038 Keyword == "LineTablesOnly" || Keyword == "DebugDirectivesOnly") {
1039 StrVal.assign(Keyword.begin(), Keyword.end());
1040 return lltok::EmissionKind;
1041 }
1042
1043 if (Keyword == "GNU" || Keyword == "Apple" || Keyword == "None" ||
1044 Keyword == "Default") {
1045 StrVal.assign(Keyword.begin(), Keyword.end());
1046 return lltok::NameTableKind;
1047 }
1048
1049 if (Keyword == "Binary" || Keyword == "Decimal" || Keyword == "Rational") {
1050 StrVal.assign(Keyword.begin(), Keyword.end());
1051 return lltok::FixedPointKind;
1052 }
1053
1054 // Check for [us]0x[0-9A-Fa-f]+ which are Hexadecimal constant generated by
1055 // the CFE to avoid forcing it to deal with 64-bit numbers.
1056 if ((TokStart[0] == 'u' || TokStart[0] == 's') &&
1057 TokStart[1] == '0' && TokStart[2] == 'x' &&
1058 isxdigit(static_cast<unsigned char>(TokStart[3]))) {
1059 int len = CurPtr-TokStart-3;
1060 uint32_t bits = len * 4;
1061 StringRef HexStr(TokStart + 3, len);
1062 if (!all_of(HexStr, isxdigit)) {
1063 // Bad token, return it as an error.
1064 CurPtr = TokStart+3;
1065 return lltok::Error;
1066 }
1067 APInt Tmp(bits, HexStr, 16);
1068 uint32_t activeBits = Tmp.getActiveBits();
1069 if (activeBits > 0 && activeBits < bits)
1070 Tmp = Tmp.trunc(activeBits);
1071 APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
1072 return lltok::APSInt;
1073 }
1074
1075 // If this is "cc1234", return this as just "cc".
1076 if (TokStart[0] == 'c' && TokStart[1] == 'c') {
1077 CurPtr = TokStart+2;
1078 return lltok::kw_cc;
1079 }
1080
1081 // Finally, if this isn't known, return an error.
1082 CurPtr = TokStart+1;
1083 return lltok::Error;
1084}
1085
1086/// Lex all tokens that start with a 0x prefix, knowing they match and are not
1087/// labels.
1088/// HexFPConstant 0x[0-9A-Fa-f]+
1089/// HexFP80Constant 0xK[0-9A-Fa-f]+
1090/// HexFP128Constant 0xL[0-9A-Fa-f]+
1091/// HexPPC128Constant 0xM[0-9A-Fa-f]+
1092/// HexHalfConstant 0xH[0-9A-Fa-f]+
1093/// HexBFloatConstant 0xR[0-9A-Fa-f]+
1094lltok::Kind LLLexer::Lex0x() {
1095 CurPtr = TokStart + 2;
1096
1097 char Kind;
1098 if ((CurPtr[0] >= 'K' && CurPtr[0] <= 'M') || CurPtr[0] == 'H' ||
1099 CurPtr[0] == 'R') {
1100 Kind = *CurPtr++;
1101 } else {
1102 Kind = 'J';
1103 }
1104
1105 if (!isxdigit(static_cast<unsigned char>(CurPtr[0]))) {
1106 // Bad token, return it as an error.
1107 CurPtr = TokStart+1;
1108 return lltok::Error;
1109 }
1110
1111 while (isxdigit(static_cast<unsigned char>(CurPtr[0])))
1112 ++CurPtr;
1113
1114 if (Kind == 'J') {
1115 // HexFPConstant - Floating point constant represented in IEEE format as a
1116 // hexadecimal number for when exponential notation is not precise enough.
1117 // Half, BFloat, Float, and double only.
1118 APFloatVal = APFloat(APFloat::IEEEdouble(),
1119 APInt(64, HexIntToVal(TokStart + 2, CurPtr)));
1120 return lltok::APFloat;
1121 }
1122
1123 uint64_t Pair[2];
1124 switch (Kind) {
1125 default: llvm_unreachable("Unknown kind!");
1126 case 'K':
1127 // F80HexFPConstant - x87 long double in hexadecimal format (10 bytes)
1128 FP80HexToIntPair(TokStart+3, CurPtr, Pair);
1129 APFloatVal = APFloat(APFloat::x87DoubleExtended(), APInt(80, Pair));
1130 return lltok::APFloat;
1131 case 'L':
1132 // F128HexFPConstant - IEEE 128-bit in hexadecimal format (16 bytes)
1133 HexToIntPair(TokStart+3, CurPtr, Pair);
1134 APFloatVal = APFloat(APFloat::IEEEquad(), APInt(128, Pair));
1135 return lltok::APFloat;
1136 case 'M':
1137 // PPC128HexFPConstant - PowerPC 128-bit in hexadecimal format (16 bytes)
1138 HexToIntPair(TokStart+3, CurPtr, Pair);
1139 APFloatVal = APFloat(APFloat::PPCDoubleDouble(), APInt(128, Pair));
1140 return lltok::APFloat;
1141 case 'H': {
1142 uint64_t Val = HexIntToVal(TokStart + 3, CurPtr);
1143 if (!llvm::isUInt<16>(Val)) {
1144 LexError("hexadecimal constant too large for half (16-bit)");
1145 return lltok::Error;
1146 }
1147 APFloatVal = APFloat(APFloat::IEEEhalf(), APInt(16, Val));
1148 return lltok::APFloat;
1149 }
1150 case 'R': {
1151 // Brain floating point
1152 uint64_t Val = HexIntToVal(TokStart + 3, CurPtr);
1153 if (!llvm::isUInt<16>(Val)) {
1154 LexError("hexadecimal constant too large for bfloat (16-bit)");
1155 return lltok::Error;
1156 }
1157 APFloatVal = APFloat(APFloat::BFloat(), APInt(16, Val));
1158 return lltok::APFloat;
1159 }
1160 }
1161}
1162
1163/// Lex tokens for a label or a numeric constant, possibly starting with -.
1164/// Label [-a-zA-Z$._0-9]+:
1165/// NInteger -[0-9]+
1166/// FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
1167/// PInteger [0-9]+
1168/// HexFPConstant 0x[0-9A-Fa-f]+
1169/// HexFP80Constant 0xK[0-9A-Fa-f]+
1170/// HexFP128Constant 0xL[0-9A-Fa-f]+
1171/// HexPPC128Constant 0xM[0-9A-Fa-f]+
1172lltok::Kind LLLexer::LexDigitOrNegative() {
1173 // If the letter after the negative is not a number, this is probably a label.
1174 if (!isdigit(static_cast<unsigned char>(TokStart[0])) &&
1175 !isdigit(static_cast<unsigned char>(CurPtr[0]))) {
1176 // Okay, this is not a number after the -, it's probably a label.
1177 if (const char *End = isLabelTail(CurPtr)) {
1178 StrVal.assign(TokStart, End-1);
1179 CurPtr = End;
1180 return lltok::LabelStr;
1181 }
1182
1183 return lltok::Error;
1184 }
1185
1186 // At this point, it is either a label, int or fp constant.
1187
1188 // Skip digits, we have at least one.
1189 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
1190 /*empty*/;
1191
1192 // Check if this is a fully-numeric label:
1193 if (isdigit(TokStart[0]) && CurPtr[0] == ':') {
1194 uint64_t Val = atoull(TokStart, CurPtr);
1195 ++CurPtr; // Skip the colon.
1196 if ((unsigned)Val != Val)
1197 LexError("invalid value number (too large)");
1198 UIntVal = unsigned(Val);
1199 return lltok::LabelID;
1200 }
1201
1202 // Check to see if this really is a string label, e.g. "-1:".
1203 if (isLabelChar(CurPtr[0]) || CurPtr[0] == ':') {
1204 if (const char *End = isLabelTail(CurPtr)) {
1205 StrVal.assign(TokStart, End-1);
1206 CurPtr = End;
1207 return lltok::LabelStr;
1208 }
1209 }
1210
1211 // If the next character is a '.', then it is a fp value, otherwise its
1212 // integer.
1213 if (CurPtr[0] != '.') {
1214 if (TokStart[0] == '0' && TokStart[1] == 'x')
1215 return Lex0x();
1216 APSIntVal = APSInt(StringRef(TokStart, CurPtr - TokStart));
1217 return lltok::APSInt;
1218 }
1219
1220 ++CurPtr;
1221
1222 // Skip over [0-9]*([eE][-+]?[0-9]+)?
1223 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
1224
1225 if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
1226 if (isdigit(static_cast<unsigned char>(CurPtr[1])) ||
1227 ((CurPtr[1] == '-' || CurPtr[1] == '+') &&
1228 isdigit(static_cast<unsigned char>(CurPtr[2])))) {
1229 CurPtr += 2;
1230 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
1231 }
1232 }
1233
1234 APFloatVal = APFloat(APFloat::IEEEdouble(),
1235 StringRef(TokStart, CurPtr - TokStart));
1236 return lltok::APFloat;
1237}
1238
1239/// Lex a floating point constant starting with +.
1240/// FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
1241lltok::Kind LLLexer::LexPositive() {
1242 // If the letter after the negative is a number, this is probably not a
1243 // label.
1244 if (!isdigit(static_cast<unsigned char>(CurPtr[0])))
1245 return lltok::Error;
1246
1247 // Skip digits.
1248 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
1249 /*empty*/;
1250
1251 // At this point, we need a '.'.
1252 if (CurPtr[0] != '.') {
1253 CurPtr = TokStart+1;
1254 return lltok::Error;
1255 }
1256
1257 ++CurPtr;
1258
1259 // Skip over [0-9]*([eE][-+]?[0-9]+)?
1260 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
1261
1262 if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
1263 if (isdigit(static_cast<unsigned char>(CurPtr[1])) ||
1264 ((CurPtr[1] == '-' || CurPtr[1] == '+') &&
1265 isdigit(static_cast<unsigned char>(CurPtr[2])))) {
1266 CurPtr += 2;
1267 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
1268 }
1269 }
1270
1271 APFloatVal = APFloat(APFloat::IEEEdouble(),
1272 StringRef(TokStart, CurPtr - TokStart));
1273 return lltok::APFloat;
1274}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Mark last scratch load
AMDGPU Register Bank Select
Rewrite undef for PHI
This file implements a class to represent arbitrary precision integral constant values and operations...
static void cleanup(BlockFrequencyInfoImplBase &BFI)
Clear all memory not needed downstream.
static void zero(T &Obj)
expand ir insts
static void UnEscapeLexed(std::string &Str)
Definition LLLexer.cpp:126
static const char * isLabelTail(const char *CurPtr)
isLabelTail - Return true if this pointer points to a valid end of a label.
Definition LLLexer.cpp:159
#define DBGRECORDTYPEKEYWORD(STR)
static bool isLabelChar(char C)
isLabelChar - Return true for [-a-zA-Z$._0-9].
Definition LLLexer.cpp:153
#define TYPEKEYWORD(STR, LLVMTY)
#define DWKEYWORD(TYPE, TOKEN)
#define INSTKEYWORD(STR, Enum)
#define KEYWORD(STR)
lazy value info
nvptx lower args
objc arc contract
static constexpr auto TAG
dot regions Print regions of function to dot true view regions View regions of function(with no function bodies)"
static const char * name
This file contains some templates that are useful if you are working with the STL at all.
#define OP(OPC)
Definition Instruction.h:46
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:487
This file contains some functions that are useful when dealing with strings.
static uint64_t allOnes(unsigned int Count)
static const fltSemantics & BFloat()
Definition APFloat.h:295
static const fltSemantics & IEEEquad()
Definition APFloat.h:298
static const fltSemantics & IEEEdouble()
Definition APFloat.h:297
static const fltSemantics & x87DoubleExtended()
Definition APFloat.h:317
static const fltSemantics & IEEEhalf()
Definition APFloat.h:294
static const fltSemantics & PPCDoubleDouble()
Definition APFloat.h:299
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition Type.cpp:318
@ MIN_INT_BITS
Minimum number of bits that can be specified.
@ MAX_INT_BITS
Maximum number of bits that can be specified.
void Warning(LocTy WarningLoc, const Twine &Msg) const
Definition LLLexer.cpp:45
LLLexer(StringRef StartBuf, SourceMgr &SM, SMDiagnostic &, LLVMContext &C)
Definition LLLexer.cpp:171
SMLoc LocTy
Definition LLLexer.h:70
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition SourceMgr.h:297
This owns the files read by a parser, handles include stacks, and handles diagnostic wrangling.
Definition SourceMgr.h:37
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
iterator end() const
Definition StringRef.h:115
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
static LLVM_ABI Type * getX86_AMXTy(LLVMContext &C)
Definition Type.cpp:291
static LLVM_ABI Type * getMetadataTy(LLVMContext &C)
Definition Type.cpp:286
static LLVM_ABI Type * getTokenTy(LLVMContext &C)
Definition Type.cpp:287
static LLVM_ABI Type * getPPC_FP128Ty(LLVMContext &C)
Definition Type.cpp:290
static LLVM_ABI Type * getFP128Ty(LLVMContext &C)
Definition Type.cpp:289
static LLVM_ABI Type * getLabelTy(LLVMContext &C)
Definition Type.cpp:281
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Definition Type.cpp:280
static LLVM_ABI Type * getDoubleTy(LLVMContext &C)
Definition Type.cpp:285
static LLVM_ABI Type * getX86_FP80Ty(LLVMContext &C)
Definition Type.cpp:288
static LLVM_ABI Type * getFloatTy(LLVMContext &C)
Definition Type.cpp:284
static LLVM_ABI Type * getBFloatTy(LLVMContext &C)
Definition Type.cpp:283
static LLVM_ABI Type * getHalfTy(LLVMContext &C)
Definition Type.cpp:282
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
@ StringConstant
Definition LLToken.h:506
@ NameTableKind
Definition LLToken.h:514
@ FixedPointKind
Definition LLToken.h:515
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
GCNRegPressure max(const GCNRegPressure &P1, const GCNRegPressure &P2)
std::tuple< const DIScope *, const DIScope *, const DILocalVariable * > VarID
A unique key that represents a debug variable.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1739
unsigned hexDigitValue(char C)
Interpret the given character C as a hexadecimal digit and return its value.
constexpr std::invoke_result_t< FnT, ArgsT... > invoke(FnT &&Fn, ArgsT &&...Args)
C++20 constexpr invoke.
LLVM_ABI FPClassTest fneg(FPClassTest Mask)
Return the test mask which returns true if the value's sign bit is flipped.
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
Definition MathExtras.h:189
@ Or
Bitwise or logical OR of integers.
@ Mul
Product of integers.
@ Xor
Bitwise or logical XOR of integers.
@ FMul
Product of floats.
@ And
Bitwise or logical AND of integers.
@ Sub
Subtraction of integers.
@ Add
Sum of integers.
@ FAdd
Sum of floats.
auto partition(R &&Range, UnaryPredicate P)
Provide wrappers to std::partition which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:2033
LLVM_ABI Error write(MCStreamer &Out, ArrayRef< std::string > Inputs, OnCuIndexOverflow OverflowOptValue, Dwarf64StrOffsetsPromotion StrOffsetsOptValue)
Definition DWP.cpp:677