LLVM 22.0.0git
MILexer.h
Go to the documentation of this file.
1//===- MILexer.h - Lexer for machine instructions ---------------*- C++ -*-===//
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// This file declares the function that lexes the machine instruction source
10// string.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H
15#define LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H
16
17#include "llvm/ADT/APSInt.h"
18#include "llvm/ADT/StringRef.h"
19#include <string>
20
21namespace llvm {
22
23class Twine;
24
25/// A token produced by the machine instruction lexer.
26struct MIToken {
27 enum TokenKind {
28 // Markers
32
33 // Tokens with no info.
49
50 // Keywords
148
149 // Metadata types.
151
152 // Named metadata keywords
160
161 // Identifier tokens
173
174 // Other tokens
186 QuotedIRValue, // `<constant value>`
189 };
190
191private:
192 TokenKind Kind = Error;
194 StringRef StringValue;
195 std::string StringValueStorage;
196 APSInt IntVal;
197
198public:
199 MIToken() = default;
200
201 MIToken &reset(TokenKind Kind, StringRef Range);
202
204 MIToken &setOwnedStringValue(std::string StrVal);
206
207 TokenKind kind() const { return Kind; }
208
209 bool isError() const { return Kind == Error; }
210
211 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; }
212
213 bool isErrorOrEOF() const { return Kind == Error || Kind == Eof; }
214
215 bool isRegister() const {
216 return Kind == NamedRegister || Kind == underscore ||
217 Kind == NamedVirtualRegister || Kind == VirtualRegister;
218 }
219
220 bool isRegisterFlag() const {
221 return Kind == kw_implicit || Kind == kw_implicit_define ||
222 Kind == kw_def || Kind == kw_dead || Kind == kw_killed ||
223 Kind == kw_undef || Kind == kw_internal ||
224 Kind == kw_early_clobber || Kind == kw_debug_use ||
225 Kind == kw_renamable;
226 }
227
228 bool isMemoryOperandFlag() const {
229 return Kind == kw_volatile || Kind == kw_non_temporal ||
230 Kind == kw_dereferenceable || Kind == kw_invariant ||
231 Kind == StringConstant;
232 }
233
234 bool is(TokenKind K) const { return Kind == K; }
235
236 bool isNot(TokenKind K) const { return Kind != K; }
237
238 StringRef::iterator location() const { return Range.begin(); }
239
240 StringRef range() const { return Range; }
241
242 /// Return the token's string value.
243 StringRef stringValue() const { return StringValue; }
244
245 const APSInt &integerValue() const { return IntVal; }
246
247 bool hasIntegerValue() const {
248 return Kind == IntegerLiteral || Kind == MachineBasicBlock ||
249 Kind == MachineBasicBlockLabel || Kind == StackObject ||
250 Kind == FixedStackObject || Kind == GlobalValue ||
251 Kind == VirtualRegister || Kind == ConstantPoolItem ||
252 Kind == JumpTableIndex || Kind == IRBlock || Kind == IRValue;
253 }
254};
255
256/// Consume a single machine instruction token in the given source and return
257/// the remaining source string.
259 StringRef Source, MIToken &Token,
260 function_ref<void(StringRef::iterator, const Twine &)> ErrorCallback);
261
262} // end namespace llvm
263
264#endif // LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H
This file implements the APSInt class, which is a simple class that represents an arbitrary sized int...
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
An arbitrary precision integer that knows its signedness.
Definition APSInt.h:24
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
const char * iterator
Definition StringRef.h:59
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
An efficient, type-erasing, non-owning reference to a callable.
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.
Definition MILexer.h:26
bool isRegisterFlag() const
Definition MILexer.h:220
MIToken & setStringValue(StringRef StrVal)
Definition MILexer.cpp:68
TokenKind kind() const
Definition MILexer.h:207
bool isNewlineOrEOF() const
Definition MILexer.h:211
bool hasIntegerValue() const
Definition MILexer.h:247
bool isNot(TokenKind K) const
Definition MILexer.h:236
bool is(TokenKind K) const
Definition MILexer.h:234
MIToken()=default
bool isMemoryOperandFlag() const
Definition MILexer.h:228
StringRef stringValue() const
Return the token's string value.
Definition MILexer.h:243
@ kw_pre_instr_symbol
Definition MILexer.h:134
@ kw_deactivation_symbol
Definition MILexer.h:139
@ kw_call_frame_size
Definition MILexer.h:146
@ kw_cfi_aarch64_negate_ra_sign_state
Definition MILexer.h:100
@ kw_cfi_llvm_def_aspace_cfa
Definition MILexer.h:93
@ MachineBasicBlock
Definition MILexer.h:166
@ kw_dbg_instr_ref
Definition MILexer.h:84
@ NamedVirtualRegister
Definition MILexer.h:164
@ kw_early_clobber
Definition MILexer.h:59
@ kw_unpredictable
Definition MILexer.h:77
@ FloatingPointLiteral
Definition MILexer.h:176
@ kw_cfi_window_save
Definition MILexer.h:99
@ kw_frame_destroy
Definition MILexer.h:64
@ kw_cfi_undefined
Definition MILexer.h:98
@ MachineBasicBlockLabel
Definition MILexer.h:165
@ kw_cfi_register
Definition MILexer.h:94
@ kw_inlineasm_br_indirect_target
Definition MILexer.h:127
@ kw_cfi_rel_offset
Definition MILexer.h:87
@ kw_ehfunclet_entry
Definition MILexer.h:128
@ kw_cfi_aarch64_negate_ra_sign_state_with_pc
Definition MILexer.h:101
@ kw_cfi_def_cfa_register
Definition MILexer.h:88
@ kw_cfi_same_value
Definition MILexer.h:85
@ kw_cfi_adjust_cfa_offset
Definition MILexer.h:90
@ kw_dereferenceable
Definition MILexer.h:55
@ kw_implicit_define
Definition MILexer.h:52
@ kw_cfi_def_cfa_offset
Definition MILexer.h:89
@ kw_machine_block_address_taken
Definition MILexer.h:145
@ kw_cfi_remember_state
Definition MILexer.h:95
@ kw_debug_instr_number
Definition MILexer.h:83
@ kw_post_instr_symbol
Definition MILexer.h:135
@ kw_cfi_restore_state
Definition MILexer.h:97
@ kw_ir_block_address_taken
Definition MILexer.h:144
@ kw_unknown_address
Definition MILexer.h:143
@ md_noalias_addrspace
Definition MILexer.h:156
@ kw_debug_location
Definition MILexer.h:82
@ kw_heap_alloc_marker
Definition MILexer.h:136
StringRef range() const
Definition MILexer.h:240
bool isRegister() const
Definition MILexer.h:215
MIToken & setIntegerValue(APSInt IntVal)
Definition MILexer.cpp:79
bool isErrorOrEOF() const
Definition MILexer.h:213
MIToken & reset(TokenKind Kind, StringRef Range)
Definition MILexer.cpp:62
bool isError() const
Definition MILexer.h:209
MIToken & setOwnedStringValue(std::string StrVal)
Definition MILexer.cpp:73
StringRef::iterator location() const
Definition MILexer.h:238
const APSInt & integerValue() const
Definition MILexer.h:245