LLVM 23.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
151
152 // Metadata types.
154
155 // Named metadata keywords
163
164 // Identifier tokens
176
177 // Other tokens
189 QuotedIRValue, // `<constant value>`
192 };
193
194private:
195 TokenKind Kind = Error;
197 StringRef StringValue;
198 std::string StringValueStorage;
199 APSInt IntVal;
200
201public:
202 MIToken() = default;
203
204 MIToken &reset(TokenKind Kind, StringRef Range);
205
207 MIToken &setOwnedStringValue(std::string StrVal);
209
210 TokenKind kind() const { return Kind; }
211
212 bool isError() const { return Kind == Error; }
213
214 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; }
215
216 bool isErrorOrEOF() const { return Kind == Error || Kind == Eof; }
217
218 bool isRegister() const {
219 return Kind == NamedRegister || Kind == underscore ||
220 Kind == NamedVirtualRegister || Kind == VirtualRegister;
221 }
222
223 bool isRegisterFlag() const {
224 return Kind == kw_implicit || Kind == kw_implicit_define ||
225 Kind == kw_def || Kind == kw_dead || Kind == kw_killed ||
226 Kind == kw_undef || Kind == kw_internal ||
227 Kind == kw_early_clobber || Kind == kw_debug_use ||
228 Kind == kw_renamable;
229 }
230
231 bool isMemoryOperandFlag() const {
232 return Kind == kw_volatile || Kind == kw_non_temporal ||
233 Kind == kw_dereferenceable || Kind == kw_invariant ||
234 Kind == StringConstant;
235 }
236
237 bool is(TokenKind K) const { return Kind == K; }
238
239 bool isNot(TokenKind K) const { return Kind != K; }
240
241 StringRef::iterator location() const { return Range.begin(); }
242
243 StringRef range() const { return Range; }
244
245 /// Return the token's string value.
246 StringRef stringValue() const { return StringValue; }
247
248 const APSInt &integerValue() const { return IntVal; }
249
250 bool hasIntegerValue() const {
251 return Kind == IntegerLiteral || Kind == MachineBasicBlock ||
252 Kind == MachineBasicBlockLabel || Kind == StackObject ||
253 Kind == FixedStackObject || Kind == GlobalValue ||
254 Kind == VirtualRegister || Kind == ConstantPoolItem ||
255 Kind == JumpTableIndex || Kind == IRBlock || Kind == IRValue;
256 }
257};
258
259/// Consume a single machine instruction token in the given source and return
260/// the remaining source string.
262 StringRef Source, MIToken &Token,
263 function_ref<void(StringRef::iterator, const Twine &)> ErrorCallback);
264
265} // end namespace llvm
266
267#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.
Definition Types.h:26
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:223
MIToken & setStringValue(StringRef StrVal)
Definition MILexer.cpp:68
TokenKind kind() const
Definition MILexer.h:210
bool isNewlineOrEOF() const
Definition MILexer.h:214
bool hasIntegerValue() const
Definition MILexer.h:250
bool isNot(TokenKind K) const
Definition MILexer.h:239
bool is(TokenKind K) const
Definition MILexer.h:237
MIToken()=default
bool isMemoryOperandFlag() const
Definition MILexer.h:231
StringRef stringValue() const
Return the token's string value.
Definition MILexer.h:246
@ kw_pre_instr_symbol
Definition MILexer.h:136
@ kw_deactivation_symbol
Definition MILexer.h:141
@ kw_call_frame_size
Definition MILexer.h:148
@ 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:169
@ kw_dbg_instr_ref
Definition MILexer.h:84
@ NamedVirtualRegister
Definition MILexer.h:167
@ kw_early_clobber
Definition MILexer.h:59
@ kw_unpredictable
Definition MILexer.h:77
@ FloatingPointLiteral
Definition MILexer.h:179
@ 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:168
@ kw_cfi_register
Definition MILexer.h:94
@ kw_inlineasm_br_indirect_target
Definition MILexer.h:128
@ kw_cfi_rel_offset
Definition MILexer.h:87
@ kw_ehfunclet_entry
Definition MILexer.h:130
@ 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:147
@ kw_cfi_remember_state
Definition MILexer.h:95
@ kw_debug_instr_number
Definition MILexer.h:83
@ kw_post_instr_symbol
Definition MILexer.h:137
@ kw_cfi_restore_state
Definition MILexer.h:97
@ kw_ir_block_address_taken
Definition MILexer.h:146
@ kw_unknown_address
Definition MILexer.h:145
@ md_noalias_addrspace
Definition MILexer.h:159
@ kw_debug_location
Definition MILexer.h:82
@ kw_heap_alloc_marker
Definition MILexer.h:138
StringRef range() const
Definition MILexer.h:243
bool isRegister() const
Definition MILexer.h:218
MIToken & setIntegerValue(APSInt IntVal)
Definition MILexer.cpp:79
bool isErrorOrEOF() const
Definition MILexer.h:216
MIToken & reset(TokenKind Kind, StringRef Range)
Definition MILexer.cpp:62
bool isError() const
Definition MILexer.h:212
MIToken & setOwnedStringValue(std::string StrVal)
Definition MILexer.cpp:73
StringRef::iterator location() const
Definition MILexer.h:241
const APSInt & integerValue() const
Definition MILexer.h:248