31 const char *
Ptr =
nullptr;
32 const char *
End =
nullptr;
35 Cursor(std::nullopt_t) {}
42 bool isEOF()
const {
return Ptr ==
End; }
46 void advance(
unsigned I = 1) {
Ptr +=
I; }
51 assert(
C.Ptr >= Ptr &&
C.Ptr <= End);
57 operator bool()
const {
return Ptr !=
nullptr; }
74 StringValueStorage = std::move(StrVal);
75 StringValue = StringValueStorage;
80 this->IntVal = std::move(IntVal);
86 while (isblank(
C.peek()))
105 if (
C.peek() !=
'/' ||
C.peek(1) !=
'*')
108 while (
C.peek() !=
'*' ||
C.peek(1) !=
'/')
119 return isalpha(
C) || isdigit(
C) ||
C ==
'_' ||
C ==
'-' ||
C ==
'.' ||
128 Cursor
C = Cursor(
Value.substr(1,
Value.size() - 2));
131 Str.reserve(
C.remaining().size());
133 char Char =
C.peek();
135 if (
C.peek(1) ==
'\\') {
141 if (isxdigit(
C.peek(1)) && isxdigit(
C.peek(2))) {
142 Str += hexDigitValue(
C.peek(1)) * 16 + hexDigitValue(
C.peek(2));
156 for (
C.advance();
C.peek() !=
'"';
C.advance()) {
160 "end of machine instruction reached before the closing '\"'");
171 C.advance(PrefixLength);
172 if (
C.peek() ==
'"') {
239 .
Case(
"negate_ra_sign_state",
267 .
Case(
"inlineasm-br-indirect-target",
286 .
Case(
"machine-block-address-taken",
294 if (!isalpha(
C.peek()) &&
C.peek() !=
'_')
299 auto Identifier =
Range.upto(
C);
307 bool IsReference =
C.remaining().starts_with(
"%bb.");
308 if (!IsReference && !
C.remaining().starts_with(
"bb."))
311 unsigned PrefixLength = IsReference ? 4 : 3;
312 C.advance(PrefixLength);
313 if (!isdigit(
C.peek())) {
315 ErrorCallback(
C.location(),
"expected a number after '%bb.'");
318 auto NumberRange =
C;
319 while (isdigit(
C.peek()))
322 unsigned StringOffset = PrefixLength +
Number.size();
326 if (
C.peek() ==
'.') {
342 if (!
C.remaining().starts_with(Rule) || !isdigit(
C.peek(Rule.
size())))
345 C.advance(Rule.
size());
346 auto NumberRange =
C;
347 while (isdigit(
C.peek()))
355 if (!
C.remaining().starts_with(Rule) || !isdigit(
C.peek(Rule.
size())))
358 C.advance(Rule.
size());
359 auto NumberRange =
C;
360 while (isdigit(
C.peek()))
363 unsigned StringOffset = Rule.
size() +
Number.size();
364 if (
C.peek() ==
'.') {
395 if (!
C.remaining().starts_with(Rule))
404 if (!
C.remaining().starts_with(Rule))
406 if (isdigit(
C.peek(Rule.
size())))
414 if (!
C.remaining().starts_with(Rule))
416 if (isdigit(
C.peek(Rule.
size())))
432 auto NumberRange =
C;
433 while (isdigit(
C.peek()))
457 if (
C.peek() !=
'%' &&
C.peek() !=
'$')
460 if (
C.peek() ==
'%') {
461 if (isdigit(
C.peek(1)))
484 if (!isdigit(
C.peek(1)))
489 auto NumberRange =
C;
490 while (isdigit(
C.peek()))
508 if (!
C.remaining().starts_with(Rule))
511 C.advance(Rule.
size());
514 if (
C.peek() !=
'"') {
518 if (
C.peek() !=
'>') {
519 ErrorCallback(
C.location(),
520 "expected the '<mcsymbol ...' to be closed by a '>'");
533 ErrorCallback(
C.location(),
534 "unable to parse quoted string from opening quote");
539 if (R.peek() !=
'>') {
540 ErrorCallback(R.location(),
541 "expected the '<mcsymbol ...' to be closed by a '>'");
553 return C ==
'H' ||
C ==
'K' ||
C ==
'L' ||
C ==
'M' ||
C ==
'R';
559 while (isdigit(
C.peek()))
561 if ((
C.peek() ==
'e' ||
C.peek() ==
'E') &&
562 (isdigit(
C.peek(1)) ||
563 ((
C.peek(1) ==
'-' ||
C.peek(1) ==
'+') && isdigit(
C.peek(2))))) {
565 while (isdigit(
C.peek()))
573 if (
C.peek() !=
'0' || (
C.peek(1) !=
'x' &&
C.peek(1) !=
'X'))
577 unsigned PrefLen = 2;
582 while (isxdigit(
C.peek()))
585 if (StrVal.size() <= PrefLen)
595 if (!isdigit(
C.peek()) && (
C.peek() !=
'-' || !isdigit(
C.peek(1))))
599 while (isdigit(
C.peek()))
635 "use of unknown metadata keyword '" + StrVal +
"'");
673 if (
C.peek() ==
':' &&
C.peek(1) ==
':') {
702 while (
C.peek() !=
'`') {
706 "end of machine instruction reached before the closing '`'");
723 return C.remaining();
729 return R.remaining();
731 return R.remaining();
733 return R.remaining();
735 return R.remaining();
737 return R.remaining();
739 return R.remaining();
741 return R.remaining();
743 return R.remaining();
745 return R.remaining();
747 return R.remaining();
749 return R.remaining();
751 return R.remaining();
753 return R.remaining();
755 return R.remaining();
757 return R.remaining();
759 return R.remaining();
761 return R.remaining();
763 return R.remaining();
765 return R.remaining();
767 return R.remaining();
770 ErrorCallback(
C.location(),
771 Twine(
"unexpected character '") +
Twine(
C.peek()) +
"'");
772 return C.remaining();
static Cursor maybeLexEscapedIRValue(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor skipComment(Cursor C)
Skip a line comment and return the updated cursor.
static bool isRegisterChar(char C)
Returns true for a character allowed in a register name.
static Cursor lexStringConstant(Cursor C, ErrorCallbackType ErrorCallback)
Lex a string constant using the following regular expression: "[^"]*".
static bool isNewlineChar(char C)
static MIToken::TokenKind symbolToken(char C)
static bool isValidHexFloatingPointPrefix(char C)
static MIToken::TokenKind getIdentifierKind(StringRef Identifier)
static Cursor maybeLexIRBlock(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor maybeLexSymbol(Cursor C, MIToken &Token)
static Cursor maybeLexJumpTableIndex(Cursor C, MIToken &Token)
static Cursor maybeLexRegister(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor maybeLexHexadecimalLiteral(Cursor C, MIToken &Token)
static Cursor lexVirtualRegister(Cursor C, MIToken &Token)
static Cursor maybeLexNumericalLiteral(Cursor C, MIToken &Token)
static Cursor maybeLexExclaim(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor lexNamedVirtualRegister(Cursor C, MIToken &Token)
static std::string unescapeQuotedString(StringRef Value)
Unescapes the given string value.
static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule, MIToken::TokenKind Kind)
static Cursor maybeLexNewline(Cursor C, MIToken &Token)
static Cursor maybeLexMCSymbol(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor skipMachineOperandComment(Cursor C)
Machine operands can have comments, enclosed between /* and /.
static MIToken::TokenKind getMetadataKeywordKind(StringRef Identifier)
static Cursor maybeLexIdentifier(Cursor C, MIToken &Token)
static Cursor maybeLexStackObject(Cursor C, MIToken &Token)
static Cursor skipWhitespace(Cursor C)
Skip the leading whitespace characters and return the updated cursor.
static Cursor maybeLexExternalSymbol(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static bool isIdentifierChar(char C)
Return true if the given character satisfies the following regular expression: [-a-zA-Z$....
static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, unsigned PrefixLength, ErrorCallbackType ErrorCallback)
static Cursor maybeLexGlobalValue(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor maybeLexIRValue(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor maybeLexFixedStackObject(Cursor C, MIToken &Token)
static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor maybeLexStringConstant(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor maybeLexSubRegisterIndex(Cursor C, MIToken &Token, ErrorCallbackType ErrorCallback)
static Cursor lexFloatingPointLiteral(Cursor Range, Cursor C, MIToken &Token)
static Cursor maybeLexConstantPoolItem(Cursor C, MIToken &Token)
static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, MIToken::TokenKind Kind)
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
static bool peek(struct InternalInstruction *insn, uint8_t &byte)
An arbitrary precision integer that knows its signedness.
StringRef - Represent a constant reference to a string, i.e.
constexpr size_t size() const
size - Get the string size.
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
An efficient, type-erasing, non-owning reference to a callable.
@ C
The default llvm calling convention, compatible with C.
LocationClass< Ty > location(Ty &L)
This is an optimization pass for GlobalISel generic memory operations.
StringRef lexMIToken(StringRef Source, MIToken &Token, function_ref< void(StringRef::iterator, const Twine &)> ErrorCallback)
Consume a single machine instruction token in the given source and return the remaining source string...
A token produced by the machine instruction lexer.
MIToken & setStringValue(StringRef StrVal)
@ kw_cfi_aarch64_negate_ra_sign_state
@ kw_cfi_llvm_def_aspace_cfa
@ kw_inlineasm_br_indirect_target
@ kw_cfi_def_cfa_register
@ kw_cfi_adjust_cfa_offset
@ kw_machine_block_address_taken
@ kw_ir_block_address_taken
MIToken & setIntegerValue(APSInt IntVal)
MIToken & reset(TokenKind Kind, StringRef Range)
MIToken & setOwnedStringValue(std::string StrVal)
StringRef::iterator location() const