123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- //===- X86RecognizableInstr.h - Disassembler instruction spec ----*- C++ -*-===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- //
- // This file is part of the X86 Disassembler Emitter.
- // It contains the interface of a single recognizable instruction.
- // Documentation for the disassembler emitter in general can be found in
- // X86DisasemblerEmitter.h.
- //
- //===----------------------------------------------------------------------===//
- #ifndef LLVM_UTILS_TABLEGEN_X86RECOGNIZABLEINSTR_H
- #define LLVM_UTILS_TABLEGEN_X86RECOGNIZABLEINSTR_H
- #include "CodeGenTarget.h"
- #include "X86DisassemblerTables.h"
- #include "llvm/ADT/SmallVector.h"
- #include "llvm/Support/DataTypes.h"
- #include "llvm/TableGen/Record.h"
- namespace llvm {
- namespace X86Disassembler {
- /// RecognizableInstr - Encapsulates all information required to decode a single
- /// instruction, as extracted from the LLVM instruction tables. Has methods
- /// to interpret the information available in the LLVM tables, and to emit the
- /// instruction into DisassemblerTables.
- class RecognizableInstr {
- private:
- /// The opcode of the instruction, as used in an MCInst
- InstrUID UID;
- /// The record from the .td files corresponding to this instruction
- const Record* Rec;
- /// The OpPrefix field from the record
- uint8_t OpPrefix;
- /// The OpMap field from the record
- uint8_t OpMap;
- /// The opcode field from the record; this is the opcode used in the Intel
- /// encoding and therefore distinct from the UID
- uint8_t Opcode;
- /// The form field from the record
- uint8_t Form;
- // The encoding field from the record
- uint8_t Encoding;
- /// The OpSize field from the record
- uint8_t OpSize;
- /// The AdSize field from the record
- uint8_t AdSize;
- /// The hasREX_WPrefix field from the record
- bool HasREX_WPrefix;
- /// The hasVEX_4V field from the record
- bool HasVEX_4V;
- /// The hasVEX_4VOp3 field from the record
- bool HasVEX_4VOp3;
- /// The hasVEX_WPrefix field from the record
- bool HasVEX_WPrefix;
- /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set
- bool HasVEX_LPrefix;
- /// The hasMemOp4Prefix field from the record
- bool HasMemOp4Prefix;
- /// The ignoreVEX_L field from the record
- bool IgnoresVEX_L;
- /// The hasEVEX_L2Prefix field from the record
- bool HasEVEX_L2Prefix;
- /// The hasEVEX_K field from the record
- bool HasEVEX_K;
- /// The hasEVEX_KZ field from the record
- bool HasEVEX_KZ;
- /// The hasEVEX_B field from the record
- bool HasEVEX_B;
- /// The isCodeGenOnly field from the record
- bool IsCodeGenOnly;
- /// The ForceDisassemble field from the record
- bool ForceDisassemble;
- // The CD8_Scale field from the record
- uint8_t CD8_Scale;
- // Whether the instruction has the predicate "In64BitMode"
- bool Is64Bit;
- // Whether the instruction has the predicate "In32BitMode"
- bool Is32Bit;
- /// The instruction name as listed in the tables
- std::string Name;
- /// The AT&T AsmString for the instruction
- std::string AsmString;
- /// Indicates whether the instruction should be emitted into the decode
- /// tables; regardless, it will be emitted into the instruction info table
- bool ShouldBeEmitted;
-
- /// The operands of the instruction, as listed in the CodeGenInstruction.
- /// They are not one-to-one with operands listed in the MCInst; for example,
- /// memory operands expand to 5 operands in the MCInst
- const std::vector<CGIOperandList::OperandInfo>* Operands;
-
- /// The description of the instruction that is emitted into the instruction
- /// info table
- InstructionSpecifier* Spec;
- /// insnContext - Returns the primary context in which the instruction is
- /// valid.
- ///
- /// @return - The context in which the instruction is valid.
- InstructionContext insnContext() const;
- /// typeFromString - Translates an operand type from the string provided in
- /// the LLVM tables to an OperandType for use in the operand specifier.
- ///
- /// @param s - The string, as extracted by calling Rec->getName()
- /// on a CodeGenInstruction::OperandInfo.
- /// @param hasREX_WPrefix - Indicates whether the instruction has a REX.W
- /// prefix. If it does, 32-bit register operands stay
- /// 32-bit regardless of the operand size.
- /// @param OpSize Indicates the operand size of the instruction.
- /// If register size does not match OpSize, then
- /// register sizes keep their size.
- /// @return - The operand's type.
- static OperandType typeFromString(const std::string& s,
- bool hasREX_WPrefix, uint8_t OpSize);
- /// immediateEncodingFromString - Translates an immediate encoding from the
- /// string provided in the LLVM tables to an OperandEncoding for use in
- /// the operand specifier.
- ///
- /// @param s - See typeFromString().
- /// @param OpSize - Indicates whether this is an OpSize16 instruction.
- /// If it is not, then 16-bit immediate operands stay 16-bit.
- /// @return - The operand's encoding.
- static OperandEncoding immediateEncodingFromString(const std::string &s,
- uint8_t OpSize);
- /// rmRegisterEncodingFromString - Like immediateEncodingFromString, but
- /// handles operands that are in the REG field of the ModR/M byte.
- static OperandEncoding rmRegisterEncodingFromString(const std::string &s,
- uint8_t OpSize);
- /// rmRegisterEncodingFromString - Like immediateEncodingFromString, but
- /// handles operands that are in the REG field of the ModR/M byte.
- static OperandEncoding roRegisterEncodingFromString(const std::string &s,
- uint8_t OpSize);
- static OperandEncoding memoryEncodingFromString(const std::string &s,
- uint8_t OpSize);
- static OperandEncoding relocationEncodingFromString(const std::string &s,
- uint8_t OpSize);
- static OperandEncoding opcodeModifierEncodingFromString(const std::string &s,
- uint8_t OpSize);
- static OperandEncoding vvvvRegisterEncodingFromString(const std::string &s,
- uint8_t OpSize);
- static OperandEncoding writemaskRegisterEncodingFromString(const std::string &s,
- uint8_t OpSize);
- /// \brief Adjust the encoding type for an operand based on the instruction.
- void adjustOperandEncoding(OperandEncoding &encoding);
- /// handleOperand - Converts a single operand from the LLVM table format to
- /// the emitted table format, handling any duplicate operands it encounters
- /// and then one non-duplicate.
- ///
- /// @param optional - Determines whether to assert that the
- /// operand exists.
- /// @param operandIndex - The index into the generated operand table.
- /// Incremented by this function one or more
- /// times to reflect possible duplicate
- /// operands).
- /// @param physicalOperandIndex - The index of the current operand into the
- /// set of non-duplicate ('physical') operands.
- /// Incremented by this function once.
- /// @param numPhysicalOperands - The number of non-duplicate operands in the
- /// instructions.
- /// @param operandMapping - The operand mapping, which has an entry for
- /// each operand that indicates whether it is a
- /// duplicate, and of what.
- void handleOperand(bool optional,
- unsigned &operandIndex,
- unsigned &physicalOperandIndex,
- unsigned &numPhysicalOperands,
- const unsigned *operandMapping,
- OperandEncoding (*encodingFromString)
- (const std::string&,
- uint8_t OpSize));
- /// shouldBeEmitted - Returns the shouldBeEmitted field. Although filter()
- /// filters out many instructions, at various points in decoding we
- /// determine that the instruction should not actually be decodable. In
- /// particular, MMX MOV instructions aren't emitted, but they're only
- /// identified during operand parsing.
- ///
- /// @return - true if at this point we believe the instruction should be
- /// emitted; false if not. This will return false if filter() returns false
- /// once emitInstructionSpecifier() has been called.
- bool shouldBeEmitted() const {
- return ShouldBeEmitted;
- }
-
- /// emitInstructionSpecifier - Loads the instruction specifier for the current
- /// instruction into a DisassemblerTables.
- ///
- void emitInstructionSpecifier();
-
- /// emitDecodePath - Populates the proper fields in the decode tables
- /// corresponding to the decode paths for this instruction.
- ///
- /// \param tables The DisassemblerTables to populate with the decode
- /// decode information for the current instruction.
- void emitDecodePath(DisassemblerTables &tables) const;
- /// Constructor - Initializes a RecognizableInstr with the appropriate fields
- /// from a CodeGenInstruction.
- ///
- /// \param tables The DisassemblerTables that the specifier will be added to.
- /// \param insn The CodeGenInstruction to extract information from.
- /// \param uid The unique ID of the current instruction.
- RecognizableInstr(DisassemblerTables &tables,
- const CodeGenInstruction &insn,
- InstrUID uid);
- public:
- /// processInstr - Accepts a CodeGenInstruction and loads decode information
- /// for it into a DisassemblerTables if appropriate.
- ///
- /// \param tables The DiassemblerTables to be populated with decode
- /// information.
- /// \param insn The CodeGenInstruction to be used as a source for this
- /// information.
- /// \param uid The unique ID of the instruction.
- static void processInstr(DisassemblerTables &tables,
- const CodeGenInstruction &insn,
- InstrUID uid);
- };
-
- } // namespace X86Disassembler
- } // namespace llvm
- #endif
|