31 const char *
Ptr =
nullptr;
32 const char *End =
nullptr;
35 Cursor(std::nullopt_t) {}
39 End =
Ptr + Str.size();
42 bool isEOF()
const {
return Ptr == End; }
44 char peek(
int I = 0)
const {
return End -
Ptr <=
I ? 0 :
Ptr[
I]; }
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() ==
'"') {
235 .
Case(
"negate_ra_sign_state",
262 .
Case(
"inlineasm-br-indirect-target",
281 .
Case(
"machine-block-address-taken",
287 if (!isalpha(
C.peek()) &&
C.peek() !=
'_')
292 auto Identifier = Range.upto(
C);
300 bool IsReference =
C.remaining().startswith(
"%bb.");
301 if (!IsReference && !
C.remaining().startswith(
"bb."))
304 unsigned PrefixLength = IsReference ? 4 : 3;
305 C.advance(PrefixLength);
306 if (!isdigit(
C.peek())) {
308 ErrorCallback(
C.location(),
"expected a number after '%bb.'");
311 auto NumberRange =
C;
312 while (isdigit(
C.peek()))
315 unsigned StringOffset = PrefixLength +
Number.size();
319 if (
C.peek() ==
'.') {
335 if (!
C.remaining().startswith(Rule) || !isdigit(
C.peek(Rule.
size())))
338 C.advance(Rule.
size());
339 auto NumberRange =
C;
340 while (isdigit(
C.peek()))
348 if (!
C.remaining().startswith(Rule) || !isdigit(
C.peek(Rule.
size())))
351 C.advance(Rule.
size());
352 auto NumberRange =
C;
353 while (isdigit(
C.peek()))
356 unsigned StringOffset = Rule.
size() +
Number.size();
357 if (
C.peek() ==
'.') {
363 Token.
reset(Kind, Range.upto(
C))
388 if (!
C.remaining().startswith(Rule))
397 if (!
C.remaining().startswith(Rule))
399 if (isdigit(
C.peek(Rule.
size())))
407 if (!
C.remaining().startswith(Rule))
409 if (isdigit(
C.peek(Rule.
size())))
425 auto NumberRange =
C;
426 while (isdigit(
C.peek()))
450 if (
C.peek() !=
'%' &&
C.peek() !=
'$')
453 if (
C.peek() ==
'%') {
454 if (isdigit(
C.peek(1)))
477 if (!isdigit(
C.peek(1)))
482 auto NumberRange =
C;
483 while (isdigit(
C.peek()))
501 if (!
C.remaining().startswith(Rule))
504 C.advance(Rule.
size());
507 if (
C.peek() !=
'"') {
511 if (
C.peek() !=
'>') {
512 ErrorCallback(
C.location(),
513 "expected the '<mcsymbol ...' to be closed by a '>'");
526 ErrorCallback(
C.location(),
527 "unable to parse quoted string from opening quote");
532 if (R.peek() !=
'>') {
533 ErrorCallback(R.location(),
534 "expected the '<mcsymbol ...' to be closed by a '>'");
546 return C ==
'H' ||
C ==
'K' ||
C ==
'L' ||
C ==
'M' ||
C ==
'R';
552 while (isdigit(
C.peek()))
554 if ((
C.peek() ==
'e' ||
C.peek() ==
'E') &&
555 (isdigit(
C.peek(1)) ||
556 ((
C.peek(1) ==
'-' ||
C.peek(1) ==
'+') && isdigit(
C.peek(2))))) {
558 while (isdigit(
C.peek()))
566 if (
C.peek() !=
'0' || (
C.peek(1) !=
'x' &&
C.peek(1) !=
'X'))
570 unsigned PrefLen = 2;
575 while (isxdigit(
C.peek()))
578 if (StrVal.size() <= PrefLen)
588 if (!isdigit(
C.peek()) && (
C.peek() !=
'-' || !isdigit(
C.peek(1))))
592 while (isdigit(
C.peek()))
628 "use of unknown metadata keyword '" + StrVal +
"'");
666 if (
C.peek() ==
':' &&
C.peek(1) ==
':') {
675 Token.
reset(Kind, Range.upto(
C));
695 while (
C.peek() !=
'`') {
699 "end of machine instruction reached before the closing '`'");
716 return C.remaining();
722 return R.remaining();
724 return R.remaining();
726 return R.remaining();
728 return R.remaining();
730 return R.remaining();
732 return R.remaining();
734 return R.remaining();
736 return R.remaining();
738 return R.remaining();
740 return R.remaining();
742 return R.remaining();
744 return R.remaining();
746 return R.remaining();
748 return R.remaining();
750 return R.remaining();
752 return R.remaining();
754 return R.remaining();
756 return R.remaining();
758 return R.remaining();
760 return R.remaining();
763 ErrorCallback(
C.location(),
764 Twine(
"unexpected character '") +
Twine(
C.peek()) +
"'");
765 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)
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