Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / utils / TableGen / X86RecognizableInstr.h
blob38bca87bfe614c3423b85e266c9f6415631429a0
1 //===- X86RecognizableInstr.h - Disassembler instruction spec ----*- 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 is part of the X86 Disassembler Emitter.
10 // It contains the interface of a single recognizable instruction.
11 // Documentation for the disassembler emitter in general can be found in
12 // X86DisassemblerEmitter.h.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_UTILS_TABLEGEN_X86RECOGNIZABLEINSTR_H
17 #define LLVM_UTILS_TABLEGEN_X86RECOGNIZABLEINSTR_H
19 #include "CodeGenInstruction.h"
20 #include "llvm/Support/X86DisassemblerDecoderCommon.h"
21 #include <cstdint>
22 #include <string>
23 #include <vector>
25 struct InstructionSpecifier;
27 namespace llvm {
29 class Record;
31 #define X86_INSTR_MRM_MAPPING \
32 MAP(C0, 64) \
33 MAP(C1, 65) \
34 MAP(C2, 66) \
35 MAP(C3, 67) \
36 MAP(C4, 68) \
37 MAP(C5, 69) \
38 MAP(C6, 70) \
39 MAP(C7, 71) \
40 MAP(C8, 72) \
41 MAP(C9, 73) \
42 MAP(CA, 74) \
43 MAP(CB, 75) \
44 MAP(CC, 76) \
45 MAP(CD, 77) \
46 MAP(CE, 78) \
47 MAP(CF, 79) \
48 MAP(D0, 80) \
49 MAP(D1, 81) \
50 MAP(D2, 82) \
51 MAP(D3, 83) \
52 MAP(D4, 84) \
53 MAP(D5, 85) \
54 MAP(D6, 86) \
55 MAP(D7, 87) \
56 MAP(D8, 88) \
57 MAP(D9, 89) \
58 MAP(DA, 90) \
59 MAP(DB, 91) \
60 MAP(DC, 92) \
61 MAP(DD, 93) \
62 MAP(DE, 94) \
63 MAP(DF, 95) \
64 MAP(E0, 96) \
65 MAP(E1, 97) \
66 MAP(E2, 98) \
67 MAP(E3, 99) \
68 MAP(E4, 100) \
69 MAP(E5, 101) \
70 MAP(E6, 102) \
71 MAP(E7, 103) \
72 MAP(E8, 104) \
73 MAP(E9, 105) \
74 MAP(EA, 106) \
75 MAP(EB, 107) \
76 MAP(EC, 108) \
77 MAP(ED, 109) \
78 MAP(EE, 110) \
79 MAP(EF, 111) \
80 MAP(F0, 112) \
81 MAP(F1, 113) \
82 MAP(F2, 114) \
83 MAP(F3, 115) \
84 MAP(F4, 116) \
85 MAP(F5, 117) \
86 MAP(F6, 118) \
87 MAP(F7, 119) \
88 MAP(F8, 120) \
89 MAP(F9, 121) \
90 MAP(FA, 122) \
91 MAP(FB, 123) \
92 MAP(FC, 124) \
93 MAP(FD, 125) \
94 MAP(FE, 126) \
95 MAP(FF, 127)
97 // A clone of X86 since we can't depend on something that is generated.
98 namespace X86Local {
99 enum {
100 Pseudo = 0,
101 RawFrm = 1,
102 AddRegFrm = 2,
103 RawFrmMemOffs = 3,
104 RawFrmSrc = 4,
105 RawFrmDst = 5,
106 RawFrmDstSrc = 6,
107 RawFrmImm8 = 7,
108 RawFrmImm16 = 8,
109 AddCCFrm = 9,
110 PrefixByte = 10,
111 MRMDestMem4VOp3CC = 20,
112 MRMr0 = 21,
113 MRMSrcMemFSIB = 22,
114 MRMDestMemFSIB = 23,
115 MRMDestMem = 24,
116 MRMSrcMem = 25,
117 MRMSrcMem4VOp3 = 26,
118 MRMSrcMemOp4 = 27,
119 MRMSrcMemCC = 28,
120 MRMXmCC = 30, MRMXm = 31,
121 MRM0m = 32, MRM1m = 33, MRM2m = 34, MRM3m = 35,
122 MRM4m = 36, MRM5m = 37, MRM6m = 38, MRM7m = 39,
123 MRMDestReg = 40,
124 MRMSrcReg = 41,
125 MRMSrcReg4VOp3 = 42,
126 MRMSrcRegOp4 = 43,
127 MRMSrcRegCC = 44,
128 MRMXrCC = 46, MRMXr = 47,
129 MRM0r = 48, MRM1r = 49, MRM2r = 50, MRM3r = 51,
130 MRM4r = 52, MRM5r = 53, MRM6r = 54, MRM7r = 55,
131 MRM0X = 56, MRM1X = 57, MRM2X = 58, MRM3X = 59,
132 MRM4X = 60, MRM5X = 61, MRM6X = 62, MRM7X = 63,
133 #define MAP(from, to) MRM_##from = to,
134 X86_INSTR_MRM_MAPPING
135 #undef MAP
138 enum {
139 OB = 0, TB = 1, T8 = 2, TA = 3, XOP8 = 4, XOP9 = 5, XOPA = 6, ThreeDNow = 7,
140 T_MAP5 = 8, T_MAP6 = 9, T_MAP7 = 10
143 enum {
144 PD = 1, XS = 2, XD = 3, PS = 4
147 enum {
148 VEX = 1, XOP = 2, EVEX = 3
151 enum {
152 OpSize16 = 1, OpSize32 = 2
155 enum {
156 AdSize16 = 1, AdSize32 = 2, AdSize64 = 3
160 namespace X86Disassembler {
162 class DisassemblerTables;
164 /// Extract common fields of a single X86 instruction from a CodeGenInstruction
165 struct RecognizableInstrBase {
166 /// The OpPrefix field from the record
167 uint8_t OpPrefix;
168 /// The OpMap field from the record
169 uint8_t OpMap;
170 /// The opcode field from the record; this is the opcode used in the Intel
171 /// encoding and therefore distinct from the UID
172 uint8_t Opcode;
173 /// The form field from the record
174 uint8_t Form;
175 // The encoding field from the record
176 uint8_t Encoding;
177 /// The OpSize field from the record
178 uint8_t OpSize;
179 /// The AdSize field from the record
180 uint8_t AdSize;
181 /// The hasREX_W field from the record
182 bool HasREX_W;
183 /// The hasVEX_4V field from the record
184 bool HasVEX_4V;
185 /// The IgnoresW field from the record
186 bool IgnoresW;
187 /// The hasVEX_L field from the record
188 bool HasVEX_L;
189 /// The ignoreVEX_L field from the record
190 bool IgnoresVEX_L;
191 /// The hasEVEX_L2Prefix field from the record
192 bool HasEVEX_L2;
193 /// The hasEVEX_K field from the record
194 bool HasEVEX_K;
195 /// The hasEVEX_KZ field from the record
196 bool HasEVEX_KZ;
197 /// The hasEVEX_B field from the record
198 bool HasEVEX_B;
199 /// Indicates that the instruction uses the L and L' fields for RC.
200 bool EncodeRC;
201 /// The isCodeGenOnly field from the record
202 bool IsCodeGenOnly;
203 /// The isAsmParserOnly field from the record
204 bool IsAsmParserOnly;
205 /// The ForceDisassemble field from the record
206 bool ForceDisassemble;
207 // The CD8_Scale field from the record
208 uint8_t CD8_Scale;
209 /// \param insn The CodeGenInstruction to extract information from.
210 RecognizableInstrBase(const CodeGenInstruction &insn);
211 /// \returns true if this instruction should be emitted
212 bool shouldBeEmitted() const;
215 /// RecognizableInstr - Encapsulates all information required to decode a single
216 /// instruction, as extracted from the LLVM instruction tables. Has methods
217 /// to interpret the information available in the LLVM tables, and to emit the
218 /// instruction into DisassemblerTables.
219 class RecognizableInstr : public RecognizableInstrBase {
220 private:
221 /// The record from the .td files corresponding to this instruction
222 const Record* Rec;
223 /// The instruction name as listed in the tables
224 std::string Name;
225 // Whether the instruction has the predicate "In32BitMode"
226 bool Is32Bit;
227 // Whether the instruction has the predicate "In64BitMode"
228 bool Is64Bit;
229 /// The operands of the instruction, as listed in the CodeGenInstruction.
230 /// They are not one-to-one with operands listed in the MCInst; for example,
231 /// memory operands expand to 5 operands in the MCInst
232 const std::vector<CGIOperandList::OperandInfo>* Operands;
234 /// The opcode of the instruction, as used in an MCInst
235 InstrUID UID;
236 /// The description of the instruction that is emitted into the instruction
237 /// info table
238 InstructionSpecifier* Spec;
240 /// insnContext - Returns the primary context in which the instruction is
241 /// valid.
243 /// @return - The context in which the instruction is valid.
244 InstructionContext insnContext() const;
246 /// typeFromString - Translates an operand type from the string provided in
247 /// the LLVM tables to an OperandType for use in the operand specifier.
249 /// @param s - The string, as extracted by calling Rec->getName()
250 /// on a CodeGenInstruction::OperandInfo.
251 /// @param hasREX_W - Indicates whether the instruction has a REX.W
252 /// prefix. If it does, 32-bit register operands stay
253 /// 32-bit regardless of the operand size.
254 /// @param OpSize Indicates the operand size of the instruction.
255 /// If register size does not match OpSize, then
256 /// register sizes keep their size.
257 /// @return - The operand's type.
258 static OperandType typeFromString(const std::string& s,
259 bool hasREX_W, uint8_t OpSize);
261 /// immediateEncodingFromString - Translates an immediate encoding from the
262 /// string provided in the LLVM tables to an OperandEncoding for use in
263 /// the operand specifier.
265 /// @param s - See typeFromString().
266 /// @param OpSize - Indicates whether this is an OpSize16 instruction.
267 /// If it is not, then 16-bit immediate operands stay 16-bit.
268 /// @return - The operand's encoding.
269 static OperandEncoding immediateEncodingFromString(const std::string &s,
270 uint8_t OpSize);
272 /// rmRegisterEncodingFromString - Like immediateEncodingFromString, but
273 /// handles operands that are in the REG field of the ModR/M byte.
274 static OperandEncoding rmRegisterEncodingFromString(const std::string &s,
275 uint8_t OpSize);
277 /// rmRegisterEncodingFromString - Like immediateEncodingFromString, but
278 /// handles operands that are in the REG field of the ModR/M byte.
279 static OperandEncoding roRegisterEncodingFromString(const std::string &s,
280 uint8_t OpSize);
281 static OperandEncoding memoryEncodingFromString(const std::string &s,
282 uint8_t OpSize);
283 static OperandEncoding relocationEncodingFromString(const std::string &s,
284 uint8_t OpSize);
285 static OperandEncoding opcodeModifierEncodingFromString(const std::string &s,
286 uint8_t OpSize);
287 static OperandEncoding vvvvRegisterEncodingFromString(const std::string &s,
288 uint8_t OpSize);
289 static OperandEncoding writemaskRegisterEncodingFromString(const std::string &s,
290 uint8_t OpSize);
292 /// Adjust the encoding type for an operand based on the instruction.
293 void adjustOperandEncoding(OperandEncoding &encoding);
295 /// handleOperand - Converts a single operand from the LLVM table format to
296 /// the emitted table format, handling any duplicate operands it encounters
297 /// and then one non-duplicate.
299 /// @param optional - Determines whether to assert that the
300 /// operand exists.
301 /// @param operandIndex - The index into the generated operand table.
302 /// Incremented by this function one or more
303 /// times to reflect possible duplicate
304 /// operands).
305 /// @param physicalOperandIndex - The index of the current operand into the
306 /// set of non-duplicate ('physical') operands.
307 /// Incremented by this function once.
308 /// @param numPhysicalOperands - The number of non-duplicate operands in the
309 /// instructions.
310 /// @param operandMapping - The operand mapping, which has an entry for
311 /// each operand that indicates whether it is a
312 /// duplicate, and of what.
313 void handleOperand(bool optional,
314 unsigned &operandIndex,
315 unsigned &physicalOperandIndex,
316 unsigned numPhysicalOperands,
317 const unsigned *operandMapping,
318 OperandEncoding (*encodingFromString)
319 (const std::string&,
320 uint8_t OpSize));
322 /// emitInstructionSpecifier - Loads the instruction specifier for the current
323 /// instruction into a DisassemblerTables.
325 void emitInstructionSpecifier();
327 /// emitDecodePath - Populates the proper fields in the decode tables
328 /// corresponding to the decode paths for this instruction.
330 /// \param tables The DisassemblerTables to populate with the decode
331 /// decode information for the current instruction.
332 void emitDecodePath(DisassemblerTables &tables) const;
334 public:
335 /// Constructor - Initializes a RecognizableInstr with the appropriate fields
336 /// from a CodeGenInstruction.
338 /// \param tables The DisassemblerTables that the specifier will be added to.
339 /// \param insn The CodeGenInstruction to extract information from.
340 /// \param uid The unique ID of the current instruction.
341 RecognizableInstr(DisassemblerTables &tables,
342 const CodeGenInstruction &insn,
343 InstrUID uid);
344 /// processInstr - Accepts a CodeGenInstruction and loads decode information
345 /// for it into a DisassemblerTables if appropriate.
347 /// \param tables The DiassemblerTables to be populated with decode
348 /// information.
349 /// \param insn The CodeGenInstruction to be used as a source for this
350 /// information.
351 /// \param uid The unique ID of the instruction.
352 static void processInstr(DisassemblerTables &tables,
353 const CodeGenInstruction &insn,
354 InstrUID uid);
357 std::string getMnemonic(const CodeGenInstruction *I, unsigned Variant);
358 bool isRegisterOperand(const Record *Rec);
359 bool isMemoryOperand(const Record *Rec);
360 bool isImmediateOperand(const Record *Rec);
361 unsigned getRegOperandSize(const Record *RegRec);
362 unsigned getMemOperandSize(const Record *MemRec);
363 } // namespace X86Disassembler
365 } // namespace llvm
367 #endif