LLVM 17.0.0git
MCInstPrinter.h
Go to the documentation of this file.
1//===- MCInstPrinter.h - MCInst to target assembly syntax -------*- 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#ifndef LLVM_MC_MCINSTPRINTER_H
10#define LLVM_MC_MCINSTPRINTER_H
11
12#include "llvm/Support/Format.h"
13#include <cstdint>
14
15namespace llvm {
16
17class MCAsmInfo;
18class MCInst;
19class MCInstrAnalysis;
20class MCInstrInfo;
21class MCOperand;
22class MCRegister;
23class MCRegisterInfo;
24class MCSubtargetInfo;
25class StringRef;
26class raw_ostream;
27
28/// Convert `Bytes' to a hex string and output to `OS'
29void dumpBytes(ArrayRef<uint8_t> Bytes, raw_ostream &OS);
30
31namespace HexStyle {
32
33enum Style {
34 C, ///< 0xff
35 Asm ///< 0ffh
36};
37
38} // end namespace HexStyle
39
40struct AliasMatchingData;
41
42/// This is an instance of a target assembly language printer that
43/// converts an MCInst to valid target assembly syntax.
45protected:
46 /// A stream that comments can be emitted to if desired. Each comment
47 /// must end with a newline. This will be null if verbose assembly emission
48 /// is disabled.
50 const MCAsmInfo &MAI;
53 const MCInstrAnalysis *MIA = nullptr;
54
55 /// True if we are printing marked up assembly.
56 bool UseMarkup = false;
57
58 /// True if we prefer aliases (e.g. nop) to raw mnemonics.
59 bool PrintAliases = true;
60
61 /// True if we are printing immediates as hex.
62 bool PrintImmHex = false;
63
64 /// Which style to use for printing hexadecimal values.
66
67 /// If true, a branch immediate (e.g. bl 4) will be printed as a hexadecimal
68 /// address (e.g. bl 0x20004). This is useful for a stream disassembler
69 /// (llvm-objdump -d).
71
72 /// If true, symbolize branch target and memory reference operands.
73 bool SymbolizeOperands = false;
74
75 /// Utility function for printing annotations.
77
78 /// Helper for matching MCInsts to alias patterns when printing instructions.
79 const char *matchAliasPatterns(const MCInst *MI, const MCSubtargetInfo *STI,
80 const AliasMatchingData &M);
81
82public:
83 MCInstPrinter(const MCAsmInfo &mai, const MCInstrInfo &mii,
84 const MCRegisterInfo &mri) : MAI(mai), MII(mii), MRI(mri) {}
85
86 virtual ~MCInstPrinter();
87
88 /// Customize the printer according to a command line option.
89 /// @return true if the option is recognized and applied.
90 virtual bool applyTargetSpecificCLOption(StringRef Opt) { return false; }
91
92 /// Specify a stream to emit comments to.
94
95 /// Returns a pair containing the mnemonic for \p MI and the number of bits
96 /// left for further processing by printInstruction (generated by tablegen).
97 virtual std::pair<const char *, uint64_t> getMnemonic(const MCInst *MI) = 0;
98
99 /// Print the specified MCInst to the specified raw_ostream.
100 ///
101 /// \p Address the address of current instruction on most targets, used to
102 /// print a PC relative immediate as the target address. On targets where a PC
103 /// relative immediate is relative to the next instruction and the length of a
104 /// MCInst is difficult to measure (e.g. x86), this is the address of the next
105 /// instruction. If Address is 0, the immediate will be printed.
106 virtual void printInst(const MCInst *MI, uint64_t Address, StringRef Annot,
107 const MCSubtargetInfo &STI, raw_ostream &OS) = 0;
108
109 /// Return the name of the specified opcode enum (e.g. "MOV32ri") or
110 /// empty if we can't resolve it.
111 StringRef getOpcodeName(unsigned Opcode) const;
112
113 /// Print the assembler register name.
114 virtual void printRegName(raw_ostream &OS, MCRegister Reg) const;
115
116 bool getUseMarkup() const { return UseMarkup; }
118
119 /// Utility functions to make adding mark ups simpler.
120 StringRef markup(StringRef s) const;
121
122 bool getPrintImmHex() const { return PrintImmHex; }
124
126
129 }
130
133
134 /// Utility function to print immediates in decimal or hex.
137 }
138
139 /// Utility functions to print decimal/hexadecimal values.
143};
144
145/// Map from opcode to pattern list by binary search.
150};
151
152/// Data for each alias pattern. Includes feature bits, string, number of
153/// operands, and a variadic list of conditions to check.
157 uint8_t NumOperands;
158 uint8_t NumConds;
159};
160
162 enum CondKind : uint8_t {
163 K_Feature, // Match only if a feature is enabled.
164 K_NegFeature, // Match only if a feature is disabled.
165 K_OrFeature, // Match only if one of a set of features is enabled.
166 K_OrNegFeature, // Match only if one of a set of features is disabled.
167 K_EndOrFeatures, // Note end of list of K_Or(Neg)?Features.
168 K_Ignore, // Match any operand.
169 K_Reg, // Match a specific register.
170 K_TiedReg, // Match another already matched register.
171 K_Imm, // Match a specific immediate.
172 K_RegClass, // Match registers in a class.
173 K_Custom, // Call custom matcher by index.
174 };
175
178};
179
180/// Tablegenerated data structures needed to match alias patterns.
187 unsigned PredicateIndex);
188};
189
190} // end namespace llvm
191
192#endif // LLVM_MC_MCINSTPRINTER_H
IRTranslator LLVM IR MI
unsigned Reg
raw_pwrite_stream & OS
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
This is an instance of a target assembly language printer that converts an MCInst to valid target ass...
Definition: MCInstPrinter.h:44
void setPrintBranchImmAsAddress(bool Value)
bool UseMarkup
True if we are printing marked up assembly.
Definition: MCInstPrinter.h:56
void setMCInstrAnalysis(const MCInstrAnalysis *Value)
format_object< int64_t > formatHex(int64_t Value) const
bool PrintImmHex
True if we are printing immediates as hex.
Definition: MCInstPrinter.h:62
void setCommentStream(raw_ostream &OS)
Specify a stream to emit comments to.
Definition: MCInstPrinter.h:93
virtual bool applyTargetSpecificCLOption(StringRef Opt)
Customize the printer according to a command line option.
Definition: MCInstPrinter.h:90
const MCInstrInfo & MII
Definition: MCInstPrinter.h:51
raw_ostream * CommentStream
A stream that comments can be emitted to if desired.
Definition: MCInstPrinter.h:49
bool getPrintImmHex() const
void setSymbolizeOperands(bool Value)
bool SymbolizeOperands
If true, symbolize branch target and memory reference operands.
Definition: MCInstPrinter.h:73
void setPrintImmHex(bool Value)
virtual ~MCInstPrinter()
virtual void printRegName(raw_ostream &OS, MCRegister Reg) const
Print the assembler register name.
StringRef getOpcodeName(unsigned Opcode) const
Return the name of the specified opcode enum (e.g.
virtual std::pair< const char *, uint64_t > getMnemonic(const MCInst *MI)=0
Returns a pair containing the mnemonic for MI and the number of bits left for further processing by p...
StringRef markup(StringRef s) const
Utility functions to make adding mark ups simpler.
void setUseMarkup(bool Value)
format_object< int64_t > formatDec(int64_t Value) const
Utility functions to print decimal/hexadecimal values.
const MCRegisterInfo & MRI
Definition: MCInstPrinter.h:52
void printAnnotation(raw_ostream &OS, StringRef Annot)
Utility function for printing annotations.
const MCAsmInfo & MAI
Definition: MCInstPrinter.h:50
format_object< int64_t > formatImm(int64_t Value) const
Utility function to print immediates in decimal or hex.
bool getUseMarkup() const
virtual void printInst(const MCInst *MI, uint64_t Address, StringRef Annot, const MCSubtargetInfo &STI, raw_ostream &OS)=0
Print the specified MCInst to the specified raw_ostream.
bool PrintBranchImmAsAddress
If true, a branch immediate (e.g.
Definition: MCInstPrinter.h:70
void setPrintHexStyle(HexStyle::Style Value)
const char * matchAliasPatterns(const MCInst *MI, const MCSubtargetInfo *STI, const AliasMatchingData &M)
Helper for matching MCInsts to alias patterns when printing instructions.
const MCInstrAnalysis * MIA
Definition: MCInstPrinter.h:53
MCInstPrinter(const MCAsmInfo &mai, const MCInstrInfo &mii, const MCRegisterInfo &mri)
Definition: MCInstPrinter.h:83
HexStyle::Style PrintHexStyle
Which style to use for printing hexadecimal values.
Definition: MCInstPrinter.h:65
bool PrintAliases
True if we prefer aliases (e.g. nop) to raw mnemonics.
Definition: MCInstPrinter.h:59
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:184
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:26
Instances of this class represent operands of the MCInst class.
Definition: MCInst.h:36
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Wrapper class representing physical registers. Should be passed by value.
Definition: MCRegister.h:24
Generic base class for all target subtargets.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
LLVM Value Representation.
Definition: Value.h:74
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void dumpBytes(ArrayRef< uint8_t > Bytes, raw_ostream &OS)
Convert ‘Bytes’ to a hex string and output to ‘OS’.
Tablegenerated data structures needed to match alias patterns.
ArrayRef< AliasPatternCond > PatternConds
bool(* ValidateMCOperand)(const MCOperand &MCOp, const MCSubtargetInfo &STI, unsigned PredicateIndex)
ArrayRef< PatternsForOpcode > OpToPatterns
ArrayRef< AliasPattern > Patterns
Data for each alias pattern.
Map from opcode to pattern list by binary search.