blob: 3ae112b1e7770986929de300c6442beea56a5325 [file] [log] [blame]
Sean Callanan8ed9f512009-12-19 02:59:52 +00001//===- X86RecognizableInstr.h - Disassembler instruction spec ----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is part of the X86 Disassembler Emitter.
11// It contains the interface of a single recognizable instruction.
12// Documentation for the disassembler emitter in general can be found in
13// X86DisasemblerEmitter.h.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef X86RECOGNIZABLEINSTR_H
18#define X86RECOGNIZABLEINSTR_H
19
20#include "X86DisassemblerTables.h"
21
22#include "CodeGenTarget.h"
Sean Callanan8ed9f512009-12-19 02:59:52 +000023
Peter Collingbourne7c788882011-10-01 16:41:13 +000024#include "llvm/TableGen/Record.h"
Michael J. Spencer3cc52ea2010-11-29 18:47:54 +000025#include "llvm/Support/DataTypes.h"
Sean Callanan8ed9f512009-12-19 02:59:52 +000026#include "llvm/ADT/SmallVector.h"
27
28namespace llvm {
29
30namespace X86Disassembler {
31
32/// RecognizableInstr - Encapsulates all information required to decode a single
33/// instruction, as extracted from the LLVM instruction tables. Has methods
34/// to interpret the information available in the LLVM tables, and to emit the
35/// instruction into DisassemblerTables.
36class RecognizableInstr {
37private:
38 /// The opcode of the instruction, as used in an MCInst
39 InstrUID UID;
40 /// The record from the .td files corresponding to this instruction
41 const Record* Rec;
42 /// The prefix field from the record
43 uint8_t Prefix;
44 /// The opcode field from the record; this is the opcode used in the Intel
45 /// encoding and therefore distinct from the UID
46 uint8_t Opcode;
47 /// The form field from the record
48 uint8_t Form;
49 /// The segment override field from the record
50 uint8_t SegOvr;
51 /// The hasOpSizePrefix field from the record
52 bool HasOpSizePrefix;
53 /// The hasREX_WPrefix field from the record
54 bool HasREX_WPrefix;
Sean Callanana21e2ea2011-03-15 01:23:15 +000055 /// The hasVEXPrefix field from the record
56 bool HasVEXPrefix;
Bruno Cardoso Lopes99405df2010-06-08 22:51:23 +000057 /// The hasVEX_4VPrefix field from the record
58 bool HasVEX_4VPrefix;
Craig Topperb53fa8b2011-10-16 07:55:05 +000059 /// The hasVEX_4VOp3Prefix field from the record
60 bool HasVEX_4VOp3Prefix;
Sean Callanana21e2ea2011-03-15 01:23:15 +000061 /// The hasVEX_WPrefix field from the record
62 bool HasVEX_WPrefix;
63 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set
64 bool HasVEX_LPrefix;
Craig Toppere6a3a292011-12-30 05:20:36 +000065 /// The hasMemOp4Prefix field from the record
66 bool HasMemOp4Prefix;
67 /// The ignoreVEX_L field from the record
Craig Topper6744a172011-10-04 06:30:42 +000068 bool IgnoresVEX_L;
Sean Callanan8ed9f512009-12-19 02:59:52 +000069 /// The hasLockPrefix field from the record
70 bool HasLockPrefix;
71 /// The isCodeGenOnly filed from the record
72 bool IsCodeGenOnly;
Craig Topper4da632e2011-09-23 06:57:25 +000073 // Whether the instruction has the predicate "In64BitMode"
Eli Friedman71052592011-07-16 02:41:28 +000074 bool Is64Bit;
Craig Topper4da632e2011-09-23 06:57:25 +000075 // Whether the instruction has the predicate "In32BitMode"
76 bool Is32Bit;
Craig Topper17730842011-10-16 03:51:13 +000077
Sean Callanan8ed9f512009-12-19 02:59:52 +000078 /// The instruction name as listed in the tables
79 std::string Name;
80 /// The AT&T AsmString for the instruction
81 std::string AsmString;
82
83 /// Indicates whether the instruction is SSE
84 bool IsSSE;
85 /// Indicates whether the instruction has FR operands - MOVs with FR operands
86 /// are typically ignored
87 bool HasFROperands;
88 /// Indicates whether the instruction should be emitted into the decode
89 /// tables; regardless, it will be emitted into the instruction info table
90 bool ShouldBeEmitted;
91
92 /// The operands of the instruction, as listed in the CodeGenInstruction.
93 /// They are not one-to-one with operands listed in the MCInst; for example,
94 /// memory operands expand to 5 operands in the MCInst
Chris Lattnerc240bb02010-11-01 04:03:32 +000095 const std::vector<CGIOperandList::OperandInfo>* Operands;
96
Sean Callanan8ed9f512009-12-19 02:59:52 +000097 /// The description of the instruction that is emitted into the instruction
98 /// info table
99 InstructionSpecifier* Spec;
100
101 /// insnContext - Returns the primary context in which the instruction is
102 /// valid.
103 ///
104 /// @return - The context in which the instruction is valid.
105 InstructionContext insnContext() const;
106
107 enum filter_ret {
108 FILTER_STRONG, // instruction has no place in the instruction tables
109 FILTER_WEAK, // instruction may conflict, and should be eliminated if
110 // it does
111 FILTER_NORMAL // instruction should have high priority and generate an
112 // error if it conflcits with any other FILTER_NORMAL
113 // instruction
114 };
Sean Callanana21e2ea2011-03-15 01:23:15 +0000115
Sean Callanan8ed9f512009-12-19 02:59:52 +0000116 /// filter - Determines whether the instruction should be decodable. Some
117 /// instructions are pure intrinsics and use unencodable operands; many
118 /// synthetic instructions are duplicates of other instructions; other
119 /// instructions only differ in the logical way in which they are used, and
120 /// have the same decoding. Because these would cause decode conflicts,
121 /// they must be filtered out.
122 ///
123 /// @return - The degree of filtering to be applied (see filter_ret).
124 filter_ret filter() const;
Sean Callanana21e2ea2011-03-15 01:23:15 +0000125
126 /// hasFROperands - Returns true if any operand is a FR operand.
127 bool hasFROperands() const;
128
129 /// has256BitOperands - Returns true if any operand is a 256-bit SSE operand.
130 bool has256BitOperands() const;
Sean Callanan8ed9f512009-12-19 02:59:52 +0000131
132 /// typeFromString - Translates an operand type from the string provided in
133 /// the LLVM tables to an OperandType for use in the operand specifier.
134 ///
135 /// @param s - The string, as extracted by calling Rec->getName()
136 /// on a CodeGenInstruction::OperandInfo.
137 /// @param isSSE - Indicates whether the instruction is an SSE
138 /// instruction. For SSE instructions, immediates are
139 /// fixed-size rather than being affected by the
140 /// mandatory OpSize prefix.
141 /// @param hasREX_WPrefix - Indicates whether the instruction has a REX.W
142 /// prefix. If it does, 32-bit register operands stay
143 /// 32-bit regardless of the operand size.
144 /// @param hasOpSizePrefix- Indicates whether the instruction has an OpSize
145 /// prefix. If it does not, then 16-bit register
146 /// operands stay 16-bit.
147 /// @return - The operand's type.
148 static OperandType typeFromString(const std::string& s,
149 bool isSSE,
150 bool hasREX_WPrefix,
151 bool hasOpSizePrefix);
152
153 /// immediateEncodingFromString - Translates an immediate encoding from the
154 /// string provided in the LLVM tables to an OperandEncoding for use in
155 /// the operand specifier.
156 ///
157 /// @param s - See typeFromString().
158 /// @param hasOpSizePrefix - Indicates whether the instruction has an OpSize
159 /// prefix. If it does not, then 16-bit immediate
160 /// operands stay 16-bit.
161 /// @return - The operand's encoding.
162 static OperandEncoding immediateEncodingFromString(const std::string &s,
163 bool hasOpSizePrefix);
164
165 /// rmRegisterEncodingFromString - Like immediateEncodingFromString, but
166 /// handles operands that are in the REG field of the ModR/M byte.
167 static OperandEncoding rmRegisterEncodingFromString(const std::string &s,
168 bool hasOpSizePrefix);
169
170 /// rmRegisterEncodingFromString - Like immediateEncodingFromString, but
171 /// handles operands that are in the REG field of the ModR/M byte.
172 static OperandEncoding roRegisterEncodingFromString(const std::string &s,
173 bool hasOpSizePrefix);
174 static OperandEncoding memoryEncodingFromString(const std::string &s,
175 bool hasOpSizePrefix);
176 static OperandEncoding relocationEncodingFromString(const std::string &s,
177 bool hasOpSizePrefix);
178 static OperandEncoding opcodeModifierEncodingFromString(const std::string &s,
179 bool hasOpSizePrefix);
Sean Callanana21e2ea2011-03-15 01:23:15 +0000180 static OperandEncoding vvvvRegisterEncodingFromString(const std::string &s,
181 bool HasOpSizePrefix);
Sean Callanan8ed9f512009-12-19 02:59:52 +0000182
183 /// handleOperand - Converts a single operand from the LLVM table format to
184 /// the emitted table format, handling any duplicate operands it encounters
185 /// and then one non-duplicate.
186 ///
187 /// @param optional - Determines whether to assert that the
188 /// operand exists.
189 /// @param operandIndex - The index into the generated operand table.
190 /// Incremented by this function one or more
191 /// times to reflect possible duplicate
192 /// operands).
193 /// @param physicalOperandIndex - The index of the current operand into the
194 /// set of non-duplicate ('physical') operands.
195 /// Incremented by this function once.
196 /// @param numPhysicalOperands - The number of non-duplicate operands in the
197 /// instructions.
198 /// @param operandMapping - The operand mapping, which has an entry for
199 /// each operand that indicates whether it is a
200 /// duplicate, and of what.
201 void handleOperand(bool optional,
202 unsigned &operandIndex,
203 unsigned &physicalOperandIndex,
204 unsigned &numPhysicalOperands,
205 unsigned *operandMapping,
206 OperandEncoding (*encodingFromString)
207 (const std::string&,
208 bool hasOpSizePrefix));
209
210 /// shouldBeEmitted - Returns the shouldBeEmitted field. Although filter()
211 /// filters out many instructions, at various points in decoding we
212 /// determine that the instruction should not actually be decodable. In
213 /// particular, MMX MOV instructions aren't emitted, but they're only
214 /// identified during operand parsing.
215 ///
216 /// @return - true if at this point we believe the instruction should be
217 /// emitted; false if not. This will return false if filter() returns false
218 /// once emitInstructionSpecifier() has been called.
219 bool shouldBeEmitted() const {
220 return ShouldBeEmitted;
221 }
222
223 /// emitInstructionSpecifier - Loads the instruction specifier for the current
224 /// instruction into a DisassemblerTables.
225 ///
226 /// @arg tables - The DisassemblerTables to populate with the specifier for
227 /// the current instruction.
228 void emitInstructionSpecifier(DisassemblerTables &tables);
229
230 /// emitDecodePath - Populates the proper fields in the decode tables
231 /// corresponding to the decode paths for this instruction.
232 ///
233 /// @arg tables - The DisassemblerTables to populate with the decode
234 /// decode information for the current instruction.
235 void emitDecodePath(DisassemblerTables &tables) const;
236
237 /// Constructor - Initializes a RecognizableInstr with the appropriate fields
238 /// from a CodeGenInstruction.
239 ///
240 /// @arg tables - The DisassemblerTables that the specifier will be added to.
241 /// @arg insn - The CodeGenInstruction to extract information from.
242 /// @arg uid - The unique ID of the current instruction.
243 RecognizableInstr(DisassemblerTables &tables,
244 const CodeGenInstruction &insn,
245 InstrUID uid);
246public:
247 /// processInstr - Accepts a CodeGenInstruction and loads decode information
248 /// for it into a DisassemblerTables if appropriate.
249 ///
250 /// @arg tables - The DiassemblerTables to be populated with decode
251 /// information.
252 /// @arg insn - The CodeGenInstruction to be used as a source for this
253 /// information.
254 /// @uid - The unique ID of the instruction.
255 static void processInstr(DisassemblerTables &tables,
256 const CodeGenInstruction &insn,
257 InstrUID uid);
258};
259
260} // namespace X86Disassembler
261
262} // namespace llvm
263
264#endif