Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- X86Disassembler.cpp - Disassembler for x86 and x86_64 -------------===// |
Daniel Dunbar | 900f2ce | 2009-11-25 06:53:08 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===// |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file is part of the X86 Disassembler. |
| 11 | // It contains code to translate the data produced by the decoder into |
| 12 | // MCInsts. |
| 13 | // Documentation for the disassembler can be found in X86Disassembler.h. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #include "X86Disassembler.h" |
| 18 | #include "X86DisassemblerDecoder.h" |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCContext.h" |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCDisassembler.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCExpr.h" |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCInst.h" |
Benjamin Kramer | 478e8de | 2012-02-11 14:50:54 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCInstrInfo.h" |
James Molloy | 4c493e8 | 2011-09-07 17:24:38 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCSubtargetInfo.h" |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Debug.h" |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 26 | #include "llvm/Support/TargetRegistry.h" |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Sean Callanan | 5c8f4cd | 2009-12-22 01:11:26 +0000 | [diff] [blame] | 28 | |
Chandler Carruth | d174b72 | 2014-04-22 02:03:14 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | using namespace llvm::X86Disassembler; |
| 31 | |
| 32 | #define DEBUG_TYPE "x86-disassembler" |
| 33 | |
Evan Cheng | d9997ac | 2011-06-27 18:32:37 +0000 | [diff] [blame] | 34 | #define GET_REGINFO_ENUM |
| 35 | #include "X86GenRegisterInfo.inc" |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 36 | #define GET_INSTRINFO_ENUM |
| 37 | #include "X86GenInstrInfo.inc" |
David Woodhouse | 7dd2182 | 2014-01-20 12:02:31 +0000 | [diff] [blame] | 38 | #define GET_SUBTARGETINFO_ENUM |
| 39 | #include "X86GenSubtargetInfo.inc" |
Sean Callanan | 5c8f4cd | 2009-12-22 01:11:26 +0000 | [diff] [blame] | 40 | |
Richard Smith | 89ee75d | 2014-04-20 21:07:34 +0000 | [diff] [blame] | 41 | void llvm::X86Disassembler::Debug(const char *file, unsigned line, |
| 42 | const char *s) { |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 43 | dbgs() << file << ":" << line << ": " << s; |
| 44 | } |
| 45 | |
Richard Smith | 89ee75d | 2014-04-20 21:07:34 +0000 | [diff] [blame] | 46 | const char *llvm::X86Disassembler::GetInstrName(unsigned Opcode, |
| 47 | const void *mii) { |
Benjamin Kramer | 478e8de | 2012-02-11 14:50:54 +0000 | [diff] [blame] | 48 | const MCInstrInfo *MII = static_cast<const MCInstrInfo *>(mii); |
| 49 | return MII->getName(Opcode); |
| 50 | } |
| 51 | |
Richard Smith | 89ee75d | 2014-04-20 21:07:34 +0000 | [diff] [blame] | 52 | #define debug(s) DEBUG(Debug(__FILE__, __LINE__, s)); |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 53 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 54 | namespace llvm { |
| 55 | |
| 56 | // Fill-ins to make the compiler happy. These constants are never actually |
| 57 | // assigned; they are just filler to make an automatically-generated switch |
| 58 | // statement work. |
| 59 | namespace X86 { |
| 60 | enum { |
| 61 | BX_SI = 500, |
| 62 | BX_DI = 501, |
| 63 | BP_SI = 502, |
| 64 | BP_DI = 503, |
| 65 | sib = 504, |
| 66 | sib64 = 505 |
| 67 | }; |
| 68 | } |
| 69 | |
Sean Callanan | 5c8f4cd | 2009-12-22 01:11:26 +0000 | [diff] [blame] | 70 | extern Target TheX86_32Target, TheX86_64Target; |
| 71 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 74 | static bool translateInstruction(MCInst &target, |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 75 | InternalInstruction &source, |
| 76 | const MCDisassembler *Dis); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 77 | |
Lang Hames | 0563ca1 | 2014-04-13 04:09:16 +0000 | [diff] [blame] | 78 | X86GenericDisassembler::X86GenericDisassembler( |
| 79 | const MCSubtargetInfo &STI, |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 80 | MCContext &Ctx, |
Lang Hames | 0563ca1 | 2014-04-13 04:09:16 +0000 | [diff] [blame] | 81 | std::unique_ptr<const MCInstrInfo> MII) |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 82 | : MCDisassembler(STI, Ctx), MII(std::move(MII)) { |
David Woodhouse | 7dd2182 | 2014-01-20 12:02:31 +0000 | [diff] [blame] | 83 | switch (STI.getFeatureBits() & |
| 84 | (X86::Mode16Bit | X86::Mode32Bit | X86::Mode64Bit)) { |
| 85 | case X86::Mode16Bit: |
| 86 | fMode = MODE_16BIT; |
| 87 | break; |
| 88 | case X86::Mode32Bit: |
| 89 | fMode = MODE_32BIT; |
| 90 | break; |
| 91 | case X86::Mode64Bit: |
| 92 | fMode = MODE_64BIT; |
| 93 | break; |
| 94 | default: |
| 95 | llvm_unreachable("Invalid CPU mode"); |
| 96 | } |
| 97 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 98 | |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame^] | 99 | struct Region { |
| 100 | ArrayRef<uint8_t> Bytes; |
| 101 | uint64_t Base; |
| 102 | Region(ArrayRef<uint8_t> Bytes, uint64_t Base) : Bytes(Bytes), Base(Base) {} |
| 103 | }; |
| 104 | |
| 105 | /// A callback function that wraps the readByte method from Region. |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 106 | /// |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 107 | /// @param Arg - The generic callback parameter. In this case, this should |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame^] | 108 | /// be a pointer to a Region. |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 109 | /// @param Byte - A pointer to the byte to be read. |
| 110 | /// @param Address - The address to be read. |
| 111 | static int regionReader(const void *Arg, uint8_t *Byte, uint64_t Address) { |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame^] | 112 | auto *R = static_cast<const Region *>(Arg); |
| 113 | ArrayRef<uint8_t> Bytes = R->Bytes; |
| 114 | unsigned Index = Address - R->Base; |
| 115 | if (Bytes.size() <= Index) |
| 116 | return -1; |
| 117 | *Byte = Bytes[Index]; |
| 118 | return 0; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | /// logger - a callback function that wraps the operator<< method from |
| 122 | /// raw_ostream. |
| 123 | /// |
| 124 | /// @param arg - The generic callback parameter. This should be a pointe |
| 125 | /// to a raw_ostream. |
| 126 | /// @param log - A string to be logged. logger() adds a newline. |
| 127 | static void logger(void* arg, const char* log) { |
| 128 | if (!arg) |
| 129 | return; |
| 130 | |
| 131 | raw_ostream &vStream = *(static_cast<raw_ostream*>(arg)); |
| 132 | vStream << log << "\n"; |
| 133 | } |
| 134 | |
| 135 | // |
| 136 | // Public interface for the disassembler |
| 137 | // |
| 138 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 139 | MCDisassembler::DecodeStatus X86GenericDisassembler::getInstruction( |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame^] | 140 | MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes, uint64_t Address, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 141 | raw_ostream &VStream, raw_ostream &CStream) const { |
| 142 | CommentStream = &CStream; |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 143 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 144 | InternalInstruction InternalInstr; |
Benjamin Kramer | e5e189f | 2011-09-21 21:47:35 +0000 | [diff] [blame] | 145 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 146 | dlog_t LoggerFn = logger; |
| 147 | if (&VStream == &nulls()) |
| 148 | LoggerFn = nullptr; // Disable logging completely if it's going to nulls(). |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 149 | |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame^] | 150 | Region R(Bytes, Address); |
| 151 | |
| 152 | int Ret = decodeInstruction(&InternalInstr, regionReader, (const void *)&R, |
| 153 | LoggerFn, (void *)&VStream, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 154 | (const void *)MII.get(), Address, fMode); |
| 155 | |
| 156 | if (Ret) { |
| 157 | Size = InternalInstr.readerCursor - Address; |
Owen Anderson | a4043c4 | 2011-08-17 17:44:15 +0000 | [diff] [blame] | 158 | return Fail; |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 159 | } else { |
| 160 | Size = InternalInstr.length; |
| 161 | return (!translateInstruction(Instr, InternalInstr, this)) ? Success : Fail; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
| 165 | // |
| 166 | // Private code that translates from struct InternalInstructions to MCInsts. |
| 167 | // |
| 168 | |
| 169 | /// translateRegister - Translates an internal register to the appropriate LLVM |
| 170 | /// register, and appends it as an operand to an MCInst. |
| 171 | /// |
| 172 | /// @param mcInst - The MCInst to append to. |
| 173 | /// @param reg - The Reg to append. |
| 174 | static void translateRegister(MCInst &mcInst, Reg reg) { |
| 175 | #define ENTRY(x) X86::x, |
| 176 | uint8_t llvmRegnums[] = { |
| 177 | ALL_REGS |
| 178 | 0 |
| 179 | }; |
| 180 | #undef ENTRY |
| 181 | |
| 182 | uint8_t llvmRegnum = llvmRegnums[reg]; |
| 183 | mcInst.addOperand(MCOperand::CreateReg(llvmRegnum)); |
| 184 | } |
| 185 | |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 186 | /// tryAddingSymbolicOperand - trys to add a symbolic operand in place of the |
| 187 | /// immediate Value in the MCInst. |
| 188 | /// |
| 189 | /// @param Value - The immediate Value, has had any PC adjustment made by |
| 190 | /// the caller. |
| 191 | /// @param isBranch - If the instruction is a branch instruction |
| 192 | /// @param Address - The starting address of the instruction |
| 193 | /// @param Offset - The byte offset to this immediate in the instruction |
| 194 | /// @param Width - The byte width of this immediate in the instruction |
| 195 | /// |
| 196 | /// If the getOpInfo() function was set when setupForSymbolicDisassembly() was |
| 197 | /// called then that function is called to get any symbolic information for the |
| 198 | /// immediate in the instruction using the Address, Offset and Width. If that |
| 199 | /// returns non-zero then the symbolic information it returns is used to create |
| 200 | /// an MCExpr and that is added as an operand to the MCInst. If getOpInfo() |
| 201 | /// returns zero and isBranch is true then a symbol look up for immediate Value |
| 202 | /// is done and if a symbol is found an MCExpr is created with that, else |
| 203 | /// an MCExpr with the immediate Value is created. This function returns true |
| 204 | /// if it adds an operand to the MCInst and false otherwise. |
| 205 | static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, |
| 206 | uint64_t Address, uint64_t Offset, |
| 207 | uint64_t Width, MCInst &MI, |
| 208 | const MCDisassembler *Dis) { |
Ahmed Bougacha | ad1084d | 2013-05-24 00:39:57 +0000 | [diff] [blame] | 209 | return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, |
| 210 | Offset, Width); |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Kevin Enderby | b119c08 | 2012-02-29 22:58:34 +0000 | [diff] [blame] | 213 | /// tryAddingPcLoadReferenceComment - trys to add a comment as to what is being |
| 214 | /// referenced by a load instruction with the base register that is the rip. |
| 215 | /// These can often be addresses in a literal pool. The Address of the |
| 216 | /// instruction and its immediate Value are used to determine the address |
| 217 | /// being referenced in the literal pool entry. The SymbolLookUp call back will |
| 218 | /// return a pointer to a literal 'C' string if the referenced address is an |
| 219 | /// address into a section with 'C' string literals. |
| 220 | static void tryAddingPcLoadReferenceComment(uint64_t Address, uint64_t Value, |
| 221 | const void *Decoder) { |
| 222 | const MCDisassembler *Dis = static_cast<const MCDisassembler*>(Decoder); |
Ahmed Bougacha | ad1084d | 2013-05-24 00:39:57 +0000 | [diff] [blame] | 223 | Dis->tryAddingPcLoadReferenceComment(Value, Address); |
Kevin Enderby | b119c08 | 2012-02-29 22:58:34 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Craig Topper | 35da3d1 | 2014-01-16 07:36:58 +0000 | [diff] [blame] | 226 | static const uint8_t segmentRegnums[SEG_OVERRIDE_max] = { |
| 227 | 0, // SEG_OVERRIDE_NONE |
| 228 | X86::CS, |
| 229 | X86::SS, |
| 230 | X86::DS, |
| 231 | X86::ES, |
| 232 | X86::FS, |
| 233 | X86::GS |
| 234 | }; |
| 235 | |
David Woodhouse | 2ef8d9c | 2014-01-22 15:08:08 +0000 | [diff] [blame] | 236 | /// translateSrcIndex - Appends a source index operand to an MCInst. |
| 237 | /// |
| 238 | /// @param mcInst - The MCInst to append to. |
David Woodhouse | 2ef8d9c | 2014-01-22 15:08:08 +0000 | [diff] [blame] | 239 | /// @param insn - The internal instruction. |
| 240 | static bool translateSrcIndex(MCInst &mcInst, InternalInstruction &insn) { |
| 241 | unsigned baseRegNo; |
| 242 | |
| 243 | if (insn.mode == MODE_64BIT) |
| 244 | baseRegNo = insn.prefixPresent[0x67] ? X86::ESI : X86::RSI; |
| 245 | else if (insn.mode == MODE_32BIT) |
| 246 | baseRegNo = insn.prefixPresent[0x67] ? X86::SI : X86::ESI; |
David Woodhouse | fee418c | 2014-01-22 15:31:29 +0000 | [diff] [blame] | 247 | else { |
| 248 | assert(insn.mode == MODE_16BIT); |
David Woodhouse | 2ef8d9c | 2014-01-22 15:08:08 +0000 | [diff] [blame] | 249 | baseRegNo = insn.prefixPresent[0x67] ? X86::ESI : X86::SI; |
David Woodhouse | fee418c | 2014-01-22 15:31:29 +0000 | [diff] [blame] | 250 | } |
David Woodhouse | 2ef8d9c | 2014-01-22 15:08:08 +0000 | [diff] [blame] | 251 | MCOperand baseReg = MCOperand::CreateReg(baseRegNo); |
| 252 | mcInst.addOperand(baseReg); |
| 253 | |
| 254 | MCOperand segmentReg; |
| 255 | segmentReg = MCOperand::CreateReg(segmentRegnums[insn.segmentOverride]); |
| 256 | mcInst.addOperand(segmentReg); |
| 257 | return false; |
| 258 | } |
| 259 | |
David Woodhouse | b33c2ef | 2014-01-22 15:08:21 +0000 | [diff] [blame] | 260 | /// translateDstIndex - Appends a destination index operand to an MCInst. |
| 261 | /// |
| 262 | /// @param mcInst - The MCInst to append to. |
David Woodhouse | b33c2ef | 2014-01-22 15:08:21 +0000 | [diff] [blame] | 263 | /// @param insn - The internal instruction. |
| 264 | |
| 265 | static bool translateDstIndex(MCInst &mcInst, InternalInstruction &insn) { |
| 266 | unsigned baseRegNo; |
| 267 | |
| 268 | if (insn.mode == MODE_64BIT) |
| 269 | baseRegNo = insn.prefixPresent[0x67] ? X86::EDI : X86::RDI; |
| 270 | else if (insn.mode == MODE_32BIT) |
| 271 | baseRegNo = insn.prefixPresent[0x67] ? X86::DI : X86::EDI; |
David Woodhouse | fee418c | 2014-01-22 15:31:29 +0000 | [diff] [blame] | 272 | else { |
| 273 | assert(insn.mode == MODE_16BIT); |
David Woodhouse | b33c2ef | 2014-01-22 15:08:21 +0000 | [diff] [blame] | 274 | baseRegNo = insn.prefixPresent[0x67] ? X86::EDI : X86::DI; |
David Woodhouse | fee418c | 2014-01-22 15:31:29 +0000 | [diff] [blame] | 275 | } |
David Woodhouse | b33c2ef | 2014-01-22 15:08:21 +0000 | [diff] [blame] | 276 | MCOperand baseReg = MCOperand::CreateReg(baseRegNo); |
| 277 | mcInst.addOperand(baseReg); |
| 278 | return false; |
| 279 | } |
| 280 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 281 | /// translateImmediate - Appends an immediate operand to an MCInst. |
| 282 | /// |
| 283 | /// @param mcInst - The MCInst to append to. |
| 284 | /// @param immediate - The immediate value to append. |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 285 | /// @param operand - The operand, as stored in the descriptor table. |
| 286 | /// @param insn - The internal instruction. |
Benjamin Kramer | de0a4fb | 2010-10-23 09:10:44 +0000 | [diff] [blame] | 287 | static void translateImmediate(MCInst &mcInst, uint64_t immediate, |
| 288 | const OperandSpecifier &operand, |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 289 | InternalInstruction &insn, |
| 290 | const MCDisassembler *Dis) { |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 291 | // Sign-extend the immediate if necessary. |
| 292 | |
Craig Topper | 6dedbae | 2012-03-04 02:16:41 +0000 | [diff] [blame] | 293 | OperandType type = (OperandType)operand.type; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 294 | |
Kevin Enderby | ec4bd31 | 2012-04-18 23:12:11 +0000 | [diff] [blame] | 295 | bool isBranch = false; |
| 296 | uint64_t pcrel = 0; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 297 | if (type == TYPE_RELv) { |
Kevin Enderby | ec4bd31 | 2012-04-18 23:12:11 +0000 | [diff] [blame] | 298 | isBranch = true; |
| 299 | pcrel = insn.startLocation + |
Kevin Enderby | 216ac31 | 2012-07-24 21:40:01 +0000 | [diff] [blame] | 300 | insn.immediateOffset + insn.immediateSize; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 301 | switch (insn.displacementSize) { |
| 302 | default: |
| 303 | break; |
Sean Callanan | 5e8603d | 2011-02-21 21:55:05 +0000 | [diff] [blame] | 304 | case 1: |
Craig Topper | 1885417 | 2013-08-25 22:23:38 +0000 | [diff] [blame] | 305 | if(immediate & 0x80) |
| 306 | immediate |= ~(0xffull); |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 307 | break; |
Sean Callanan | 5e8603d | 2011-02-21 21:55:05 +0000 | [diff] [blame] | 308 | case 2: |
Craig Topper | 1885417 | 2013-08-25 22:23:38 +0000 | [diff] [blame] | 309 | if(immediate & 0x8000) |
| 310 | immediate |= ~(0xffffull); |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 311 | break; |
Sean Callanan | 5e8603d | 2011-02-21 21:55:05 +0000 | [diff] [blame] | 312 | case 4: |
Craig Topper | 1885417 | 2013-08-25 22:23:38 +0000 | [diff] [blame] | 313 | if(immediate & 0x80000000) |
| 314 | immediate |= ~(0xffffffffull); |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 315 | break; |
Sean Callanan | 5e8603d | 2011-02-21 21:55:05 +0000 | [diff] [blame] | 316 | case 8: |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 317 | break; |
| 318 | } |
| 319 | } |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 320 | // By default sign-extend all X86 immediates based on their encoding. |
| 321 | else if (type == TYPE_IMM8 || type == TYPE_IMM16 || type == TYPE_IMM32 || |
Elena Demikhovsky | 8ac0bf9 | 2014-04-23 07:21:04 +0000 | [diff] [blame] | 322 | type == TYPE_IMM64 || type == TYPE_IMMv) { |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 323 | uint32_t Opcode = mcInst.getOpcode(); |
| 324 | switch (operand.encoding) { |
| 325 | default: |
| 326 | break; |
| 327 | case ENCODING_IB: |
| 328 | // Special case those X86 instructions that use the imm8 as a set of |
| 329 | // bits, bit count, etc. and are not sign-extend. |
| 330 | if (Opcode != X86::BLENDPSrri && Opcode != X86::BLENDPDrri && |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 331 | Opcode != X86::PBLENDWrri && Opcode != X86::MPSADBWrri && |
| 332 | Opcode != X86::DPPSrri && Opcode != X86::DPPDrri && |
| 333 | Opcode != X86::INSERTPSrr && Opcode != X86::VBLENDPSYrri && |
| 334 | Opcode != X86::VBLENDPSYrmi && Opcode != X86::VBLENDPDYrri && |
| 335 | Opcode != X86::VBLENDPDYrmi && Opcode != X86::VPBLENDWrri && |
| 336 | Opcode != X86::VMPSADBWrri && Opcode != X86::VDPPSYrri && |
| 337 | Opcode != X86::VDPPSYrmi && Opcode != X86::VDPPDrri && |
| 338 | Opcode != X86::VINSERTPSrr) |
Craig Topper | 1885417 | 2013-08-25 22:23:38 +0000 | [diff] [blame] | 339 | if(immediate & 0x80) |
| 340 | immediate |= ~(0xffull); |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 341 | break; |
| 342 | case ENCODING_IW: |
Craig Topper | 1885417 | 2013-08-25 22:23:38 +0000 | [diff] [blame] | 343 | if(immediate & 0x8000) |
| 344 | immediate |= ~(0xffffull); |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 345 | break; |
| 346 | case ENCODING_ID: |
Craig Topper | 1885417 | 2013-08-25 22:23:38 +0000 | [diff] [blame] | 347 | if(immediate & 0x80000000) |
| 348 | immediate |= ~(0xffffffffull); |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 349 | break; |
| 350 | case ENCODING_IO: |
Kevin Enderby | 5b03f72 | 2011-09-02 20:01:23 +0000 | [diff] [blame] | 351 | break; |
| 352 | } |
| 353 | } |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 354 | |
| 355 | switch (type) { |
Craig Topper | c30fdbc | 2012-08-31 15:40:30 +0000 | [diff] [blame] | 356 | case TYPE_XMM32: |
| 357 | case TYPE_XMM64: |
Craig Topper | 96e00e5 | 2011-09-14 05:55:28 +0000 | [diff] [blame] | 358 | case TYPE_XMM128: |
| 359 | mcInst.addOperand(MCOperand::CreateReg(X86::XMM0 + (immediate >> 4))); |
| 360 | return; |
| 361 | case TYPE_XMM256: |
| 362 | mcInst.addOperand(MCOperand::CreateReg(X86::YMM0 + (immediate >> 4))); |
| 363 | return; |
Elena Demikhovsky | 003e7d7 | 2013-07-28 08:28:38 +0000 | [diff] [blame] | 364 | case TYPE_XMM512: |
| 365 | mcInst.addOperand(MCOperand::CreateReg(X86::ZMM0 + (immediate >> 4))); |
| 366 | return; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 367 | case TYPE_REL8: |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 368 | isBranch = true; |
| 369 | pcrel = insn.startLocation + insn.immediateOffset + insn.immediateSize; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 370 | if(immediate & 0x80) |
| 371 | immediate |= ~(0xffull); |
| 372 | break; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 373 | case TYPE_REL32: |
| 374 | case TYPE_REL64: |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 375 | isBranch = true; |
| 376 | pcrel = insn.startLocation + insn.immediateOffset + insn.immediateSize; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 377 | if(immediate & 0x80000000) |
| 378 | immediate |= ~(0xffffffffull); |
| 379 | break; |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 380 | default: |
| 381 | // operand is 64 bits wide. Do nothing. |
| 382 | break; |
| 383 | } |
Craig Topper | 092e2fe | 2013-08-24 19:50:11 +0000 | [diff] [blame] | 384 | |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 385 | if(!tryAddingSymbolicOperand(immediate + pcrel, isBranch, insn.startLocation, |
| 386 | insn.immediateOffset, insn.immediateSize, |
| 387 | mcInst, Dis)) |
| 388 | mcInst.addOperand(MCOperand::CreateImm(immediate)); |
Craig Topper | 35da3d1 | 2014-01-16 07:36:58 +0000 | [diff] [blame] | 389 | |
| 390 | if (type == TYPE_MOFFS8 || type == TYPE_MOFFS16 || |
| 391 | type == TYPE_MOFFS32 || type == TYPE_MOFFS64) { |
| 392 | MCOperand segmentReg; |
| 393 | segmentReg = MCOperand::CreateReg(segmentRegnums[insn.segmentOverride]); |
| 394 | mcInst.addOperand(segmentReg); |
| 395 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | /// translateRMRegister - Translates a register stored in the R/M field of the |
| 399 | /// ModR/M byte to its LLVM equivalent and appends it to an MCInst. |
| 400 | /// @param mcInst - The MCInst to append to. |
| 401 | /// @param insn - The internal instruction to extract the R/M field |
| 402 | /// from. |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 403 | /// @return - 0 on success; -1 otherwise |
| 404 | static bool translateRMRegister(MCInst &mcInst, |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 405 | InternalInstruction &insn) { |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 406 | if (insn.eaBase == EA_BASE_sib || insn.eaBase == EA_BASE_sib64) { |
| 407 | debug("A R/M register operand may not have a SIB byte"); |
| 408 | return true; |
| 409 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 410 | |
| 411 | switch (insn.eaBase) { |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 412 | default: |
| 413 | debug("Unexpected EA base register"); |
| 414 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 415 | case EA_BASE_NONE: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 416 | debug("EA_BASE_NONE for ModR/M base"); |
| 417 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 418 | #define ENTRY(x) case EA_BASE_##x: |
| 419 | ALL_EA_BASES |
| 420 | #undef ENTRY |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 421 | debug("A R/M register operand may not have a base; " |
| 422 | "the operand must be a register."); |
| 423 | return true; |
| 424 | #define ENTRY(x) \ |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 425 | case EA_REG_##x: \ |
| 426 | mcInst.addOperand(MCOperand::CreateReg(X86::x)); break; |
| 427 | ALL_REGS |
| 428 | #undef ENTRY |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 429 | } |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 430 | |
| 431 | return false; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /// translateRMMemory - Translates a memory operand stored in the Mod and R/M |
| 435 | /// fields of an internal instruction (and possibly its SIB byte) to a memory |
| 436 | /// operand in LLVM's format, and appends it to an MCInst. |
| 437 | /// |
| 438 | /// @param mcInst - The MCInst to append to. |
| 439 | /// @param insn - The instruction to extract Mod, R/M, and SIB fields |
| 440 | /// from. |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 441 | /// @return - 0 on success; nonzero otherwise |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 442 | static bool translateRMMemory(MCInst &mcInst, InternalInstruction &insn, |
| 443 | const MCDisassembler *Dis) { |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 444 | // Addresses in an MCInst are represented as five operands: |
| 445 | // 1. basereg (register) The R/M base, or (if there is a SIB) the |
| 446 | // SIB base |
| 447 | // 2. scaleamount (immediate) 1, or (if there is a SIB) the specified |
| 448 | // scale amount |
| 449 | // 3. indexreg (register) x86_registerNONE, or (if there is a SIB) |
| 450 | // the index (which is multiplied by the |
| 451 | // scale amount) |
| 452 | // 4. displacement (immediate) 0, or the displacement if there is one |
| 453 | // 5. segmentreg (register) x86_registerNONE for now, but could be set |
| 454 | // if we have segment overrides |
| 455 | |
| 456 | MCOperand baseReg; |
| 457 | MCOperand scaleAmount; |
| 458 | MCOperand indexReg; |
| 459 | MCOperand displacement; |
| 460 | MCOperand segmentReg; |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 461 | uint64_t pcrel = 0; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 462 | |
| 463 | if (insn.eaBase == EA_BASE_sib || insn.eaBase == EA_BASE_sib64) { |
| 464 | if (insn.sibBase != SIB_BASE_NONE) { |
| 465 | switch (insn.sibBase) { |
| 466 | default: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 467 | debug("Unexpected sibBase"); |
| 468 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 469 | #define ENTRY(x) \ |
Sean Callanan | 36eab80 | 2009-12-22 21:12:55 +0000 | [diff] [blame] | 470 | case SIB_BASE_##x: \ |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 471 | baseReg = MCOperand::CreateReg(X86::x); break; |
| 472 | ALL_SIB_BASES |
| 473 | #undef ENTRY |
| 474 | } |
| 475 | } else { |
| 476 | baseReg = MCOperand::CreateReg(0); |
| 477 | } |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 478 | |
| 479 | // Check whether we are handling VSIB addressing mode for GATHER. |
| 480 | // If sibIndex was set to SIB_INDEX_NONE, index offset is 4 and |
| 481 | // we should use SIB_INDEX_XMM4|YMM4 for VSIB. |
| 482 | // I don't see a way to get the correct IndexReg in readSIB: |
| 483 | // We can tell whether it is VSIB or SIB after instruction ID is decoded, |
| 484 | // but instruction ID may not be decoded yet when calling readSIB. |
| 485 | uint32_t Opcode = mcInst.getOpcode(); |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 486 | bool IndexIs128 = (Opcode == X86::VGATHERDPDrm || |
| 487 | Opcode == X86::VGATHERDPDYrm || |
| 488 | Opcode == X86::VGATHERQPDrm || |
| 489 | Opcode == X86::VGATHERDPSrm || |
| 490 | Opcode == X86::VGATHERQPSrm || |
| 491 | Opcode == X86::VPGATHERDQrm || |
| 492 | Opcode == X86::VPGATHERDQYrm || |
| 493 | Opcode == X86::VPGATHERQQrm || |
| 494 | Opcode == X86::VPGATHERDDrm || |
| 495 | Opcode == X86::VPGATHERQDrm); |
| 496 | bool IndexIs256 = (Opcode == X86::VGATHERQPDYrm || |
| 497 | Opcode == X86::VGATHERDPSYrm || |
| 498 | Opcode == X86::VGATHERQPSYrm || |
Elena Demikhovsky | 371e363 | 2013-12-25 11:40:51 +0000 | [diff] [blame] | 499 | Opcode == X86::VGATHERDPDZrm || |
| 500 | Opcode == X86::VPGATHERDQZrm || |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 501 | Opcode == X86::VPGATHERQQYrm || |
| 502 | Opcode == X86::VPGATHERDDYrm || |
| 503 | Opcode == X86::VPGATHERQDYrm); |
Elena Demikhovsky | 371e363 | 2013-12-25 11:40:51 +0000 | [diff] [blame] | 504 | bool IndexIs512 = (Opcode == X86::VGATHERQPDZrm || |
| 505 | Opcode == X86::VGATHERDPSZrm || |
| 506 | Opcode == X86::VGATHERQPSZrm || |
| 507 | Opcode == X86::VPGATHERQQZrm || |
| 508 | Opcode == X86::VPGATHERDDZrm || |
| 509 | Opcode == X86::VPGATHERQDZrm); |
| 510 | if (IndexIs128 || IndexIs256 || IndexIs512) { |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 511 | unsigned IndexOffset = insn.sibIndex - |
| 512 | (insn.addressSize == 8 ? SIB_INDEX_RAX:SIB_INDEX_EAX); |
Elena Demikhovsky | 371e363 | 2013-12-25 11:40:51 +0000 | [diff] [blame] | 513 | SIBIndex IndexBase = IndexIs512 ? SIB_INDEX_ZMM0 : |
| 514 | IndexIs256 ? SIB_INDEX_YMM0 : SIB_INDEX_XMM0; |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 515 | insn.sibIndex = (SIBIndex)(IndexBase + |
| 516 | (insn.sibIndex == SIB_INDEX_NONE ? 4 : IndexOffset)); |
| 517 | } |
| 518 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 519 | if (insn.sibIndex != SIB_INDEX_NONE) { |
| 520 | switch (insn.sibIndex) { |
| 521 | default: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 522 | debug("Unexpected sibIndex"); |
| 523 | return true; |
Sean Callanan | 36eab80 | 2009-12-22 21:12:55 +0000 | [diff] [blame] | 524 | #define ENTRY(x) \ |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 525 | case SIB_INDEX_##x: \ |
| 526 | indexReg = MCOperand::CreateReg(X86::x); break; |
| 527 | EA_BASES_32BIT |
| 528 | EA_BASES_64BIT |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 529 | REGS_XMM |
| 530 | REGS_YMM |
Elena Demikhovsky | 003e7d7 | 2013-07-28 08:28:38 +0000 | [diff] [blame] | 531 | REGS_ZMM |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 532 | #undef ENTRY |
| 533 | } |
| 534 | } else { |
| 535 | indexReg = MCOperand::CreateReg(0); |
| 536 | } |
| 537 | |
| 538 | scaleAmount = MCOperand::CreateImm(insn.sibScale); |
| 539 | } else { |
| 540 | switch (insn.eaBase) { |
| 541 | case EA_BASE_NONE: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 542 | if (insn.eaDisplacement == EA_DISP_NONE) { |
| 543 | debug("EA_BASE_NONE and EA_DISP_NONE for ModR/M base"); |
| 544 | return true; |
| 545 | } |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 546 | if (insn.mode == MODE_64BIT){ |
| 547 | pcrel = insn.startLocation + |
| 548 | insn.displacementOffset + insn.displacementSize; |
Kevin Enderby | b119c08 | 2012-02-29 22:58:34 +0000 | [diff] [blame] | 549 | tryAddingPcLoadReferenceComment(insn.startLocation + |
| 550 | insn.displacementOffset, |
| 551 | insn.displacement + pcrel, Dis); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 552 | baseReg = MCOperand::CreateReg(X86::RIP); // Section 2.2.1.6 |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 553 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 554 | else |
| 555 | baseReg = MCOperand::CreateReg(0); |
| 556 | |
| 557 | indexReg = MCOperand::CreateReg(0); |
| 558 | break; |
| 559 | case EA_BASE_BX_SI: |
| 560 | baseReg = MCOperand::CreateReg(X86::BX); |
| 561 | indexReg = MCOperand::CreateReg(X86::SI); |
| 562 | break; |
| 563 | case EA_BASE_BX_DI: |
| 564 | baseReg = MCOperand::CreateReg(X86::BX); |
| 565 | indexReg = MCOperand::CreateReg(X86::DI); |
| 566 | break; |
| 567 | case EA_BASE_BP_SI: |
| 568 | baseReg = MCOperand::CreateReg(X86::BP); |
| 569 | indexReg = MCOperand::CreateReg(X86::SI); |
| 570 | break; |
| 571 | case EA_BASE_BP_DI: |
| 572 | baseReg = MCOperand::CreateReg(X86::BP); |
| 573 | indexReg = MCOperand::CreateReg(X86::DI); |
| 574 | break; |
| 575 | default: |
| 576 | indexReg = MCOperand::CreateReg(0); |
| 577 | switch (insn.eaBase) { |
| 578 | default: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 579 | debug("Unexpected eaBase"); |
| 580 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 581 | // Here, we will use the fill-ins defined above. However, |
| 582 | // BX_SI, BX_DI, BP_SI, and BP_DI are all handled above and |
| 583 | // sib and sib64 were handled in the top-level if, so they're only |
| 584 | // placeholders to keep the compiler happy. |
| 585 | #define ENTRY(x) \ |
| 586 | case EA_BASE_##x: \ |
| 587 | baseReg = MCOperand::CreateReg(X86::x); break; |
| 588 | ALL_EA_BASES |
| 589 | #undef ENTRY |
| 590 | #define ENTRY(x) case EA_REG_##x: |
| 591 | ALL_REGS |
| 592 | #undef ENTRY |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 593 | debug("A R/M memory operand may not be a register; " |
| 594 | "the base field must be a base."); |
| 595 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 596 | } |
| 597 | } |
Sean Callanan | 36eab80 | 2009-12-22 21:12:55 +0000 | [diff] [blame] | 598 | |
| 599 | scaleAmount = MCOperand::CreateImm(1); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | displacement = MCOperand::CreateImm(insn.displacement); |
Craig Topper | 35da3d1 | 2014-01-16 07:36:58 +0000 | [diff] [blame] | 603 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 604 | segmentReg = MCOperand::CreateReg(segmentRegnums[insn.segmentOverride]); |
| 605 | |
| 606 | mcInst.addOperand(baseReg); |
| 607 | mcInst.addOperand(scaleAmount); |
| 608 | mcInst.addOperand(indexReg); |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 609 | if(!tryAddingSymbolicOperand(insn.displacement + pcrel, false, |
| 610 | insn.startLocation, insn.displacementOffset, |
| 611 | insn.displacementSize, mcInst, Dis)) |
| 612 | mcInst.addOperand(displacement); |
Chris Lattner | 55595fb | 2010-07-13 04:23:55 +0000 | [diff] [blame] | 613 | mcInst.addOperand(segmentReg); |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 614 | return false; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | /// translateRM - Translates an operand stored in the R/M (and possibly SIB) |
| 618 | /// byte of an instruction to LLVM form, and appends it to an MCInst. |
| 619 | /// |
| 620 | /// @param mcInst - The MCInst to append to. |
| 621 | /// @param operand - The operand, as stored in the descriptor table. |
| 622 | /// @param insn - The instruction to extract Mod, R/M, and SIB fields |
| 623 | /// from. |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 624 | /// @return - 0 on success; nonzero otherwise |
Benjamin Kramer | de0a4fb | 2010-10-23 09:10:44 +0000 | [diff] [blame] | 625 | static bool translateRM(MCInst &mcInst, const OperandSpecifier &operand, |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 626 | InternalInstruction &insn, const MCDisassembler *Dis) { |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 627 | switch (operand.type) { |
| 628 | default: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 629 | debug("Unexpected type for a R/M operand"); |
| 630 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 631 | case TYPE_R8: |
| 632 | case TYPE_R16: |
| 633 | case TYPE_R32: |
| 634 | case TYPE_R64: |
| 635 | case TYPE_Rv: |
| 636 | case TYPE_MM: |
| 637 | case TYPE_MM32: |
| 638 | case TYPE_MM64: |
| 639 | case TYPE_XMM: |
| 640 | case TYPE_XMM32: |
| 641 | case TYPE_XMM64: |
| 642 | case TYPE_XMM128: |
Sean Callanan | c3fd523 | 2011-03-15 01:23:15 +0000 | [diff] [blame] | 643 | case TYPE_XMM256: |
Elena Demikhovsky | 003e7d7 | 2013-07-28 08:28:38 +0000 | [diff] [blame] | 644 | case TYPE_XMM512: |
Elena Demikhovsky | 371e363 | 2013-12-25 11:40:51 +0000 | [diff] [blame] | 645 | case TYPE_VK1: |
| 646 | case TYPE_VK8: |
| 647 | case TYPE_VK16: |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 648 | case TYPE_DEBUGREG: |
Sean Callanan | e7e1cf9 | 2010-05-06 20:59:00 +0000 | [diff] [blame] | 649 | case TYPE_CONTROLREG: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 650 | return translateRMRegister(mcInst, insn); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 651 | case TYPE_M: |
| 652 | case TYPE_M8: |
| 653 | case TYPE_M16: |
| 654 | case TYPE_M32: |
| 655 | case TYPE_M64: |
| 656 | case TYPE_M128: |
Sean Callanan | c3fd523 | 2011-03-15 01:23:15 +0000 | [diff] [blame] | 657 | case TYPE_M256: |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 658 | case TYPE_M512: |
| 659 | case TYPE_Mv: |
| 660 | case TYPE_M32FP: |
| 661 | case TYPE_M64FP: |
| 662 | case TYPE_M80FP: |
| 663 | case TYPE_M16INT: |
| 664 | case TYPE_M32INT: |
| 665 | case TYPE_M64INT: |
| 666 | case TYPE_M1616: |
| 667 | case TYPE_M1632: |
| 668 | case TYPE_M1664: |
Sean Callanan | 36eab80 | 2009-12-22 21:12:55 +0000 | [diff] [blame] | 669 | case TYPE_LEA: |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 670 | return translateRMMemory(mcInst, insn, Dis); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 671 | } |
| 672 | } |
| 673 | |
| 674 | /// translateFPRegister - Translates a stack position on the FPU stack to its |
| 675 | /// LLVM form, and appends it to an MCInst. |
| 676 | /// |
| 677 | /// @param mcInst - The MCInst to append to. |
| 678 | /// @param stackPos - The stack position to translate. |
Craig Topper | 9155118 | 2014-01-01 15:29:32 +0000 | [diff] [blame] | 679 | static void translateFPRegister(MCInst &mcInst, |
| 680 | uint8_t stackPos) { |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 681 | mcInst.addOperand(MCOperand::CreateReg(X86::ST0 + stackPos)); |
| 682 | } |
| 683 | |
Elena Demikhovsky | 371e363 | 2013-12-25 11:40:51 +0000 | [diff] [blame] | 684 | /// translateMaskRegister - Translates a 3-bit mask register number to |
| 685 | /// LLVM form, and appends it to an MCInst. |
| 686 | /// |
| 687 | /// @param mcInst - The MCInst to append to. |
| 688 | /// @param maskRegNum - Number of mask register from 0 to 7. |
| 689 | /// @return - false on success; true otherwise. |
| 690 | static bool translateMaskRegister(MCInst &mcInst, |
| 691 | uint8_t maskRegNum) { |
| 692 | if (maskRegNum >= 8) { |
| 693 | debug("Invalid mask register number"); |
| 694 | return true; |
| 695 | } |
| 696 | |
| 697 | mcInst.addOperand(MCOperand::CreateReg(X86::K0 + maskRegNum)); |
| 698 | return false; |
| 699 | } |
| 700 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 701 | /// translateOperand - Translates an operand stored in an internal instruction |
| 702 | /// to LLVM's format and appends it to an MCInst. |
| 703 | /// |
| 704 | /// @param mcInst - The MCInst to append to. |
| 705 | /// @param operand - The operand, as stored in the descriptor table. |
| 706 | /// @param insn - The internal instruction. |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 707 | /// @return - false on success; true otherwise. |
Benjamin Kramer | de0a4fb | 2010-10-23 09:10:44 +0000 | [diff] [blame] | 708 | static bool translateOperand(MCInst &mcInst, const OperandSpecifier &operand, |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 709 | InternalInstruction &insn, |
| 710 | const MCDisassembler *Dis) { |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 711 | switch (operand.encoding) { |
| 712 | default: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 713 | debug("Unhandled operand encoding during translation"); |
| 714 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 715 | case ENCODING_REG: |
| 716 | translateRegister(mcInst, insn.reg); |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 717 | return false; |
Elena Demikhovsky | 371e363 | 2013-12-25 11:40:51 +0000 | [diff] [blame] | 718 | case ENCODING_WRITEMASK: |
| 719 | return translateMaskRegister(mcInst, insn.writemask); |
Adam Nemet | 5933c2f | 2014-07-17 17:04:56 +0000 | [diff] [blame] | 720 | CASE_ENCODING_RM: |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 721 | return translateRM(mcInst, operand, insn, Dis); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 722 | case ENCODING_CB: |
| 723 | case ENCODING_CW: |
| 724 | case ENCODING_CD: |
| 725 | case ENCODING_CP: |
| 726 | case ENCODING_CO: |
| 727 | case ENCODING_CT: |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 728 | debug("Translation of code offsets isn't supported."); |
| 729 | return true; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 730 | case ENCODING_IB: |
| 731 | case ENCODING_IW: |
| 732 | case ENCODING_ID: |
| 733 | case ENCODING_IO: |
| 734 | case ENCODING_Iv: |
| 735 | case ENCODING_Ia: |
Sean Callanan | 4cd930f | 2010-05-05 22:47:27 +0000 | [diff] [blame] | 736 | translateImmediate(mcInst, |
| 737 | insn.immediates[insn.numImmediatesTranslated++], |
| 738 | operand, |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 739 | insn, |
| 740 | Dis); |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 741 | return false; |
David Woodhouse | 2ef8d9c | 2014-01-22 15:08:08 +0000 | [diff] [blame] | 742 | case ENCODING_SI: |
| 743 | return translateSrcIndex(mcInst, insn); |
David Woodhouse | b33c2ef | 2014-01-22 15:08:21 +0000 | [diff] [blame] | 744 | case ENCODING_DI: |
| 745 | return translateDstIndex(mcInst, insn); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 746 | case ENCODING_RB: |
| 747 | case ENCODING_RW: |
| 748 | case ENCODING_RD: |
| 749 | case ENCODING_RO: |
Craig Topper | 9155118 | 2014-01-01 15:29:32 +0000 | [diff] [blame] | 750 | case ENCODING_Rv: |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 751 | translateRegister(mcInst, insn.opcodeRegister); |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 752 | return false; |
Craig Topper | 623b0d6 | 2014-01-01 14:22:37 +0000 | [diff] [blame] | 753 | case ENCODING_FP: |
Craig Topper | 9155118 | 2014-01-01 15:29:32 +0000 | [diff] [blame] | 754 | translateFPRegister(mcInst, insn.modRM & 7); |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 755 | return false; |
Sean Callanan | c3fd523 | 2011-03-15 01:23:15 +0000 | [diff] [blame] | 756 | case ENCODING_VVVV: |
| 757 | translateRegister(mcInst, insn.vvvv); |
| 758 | return false; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 759 | case ENCODING_DUP: |
Craig Topper | b8aec08 | 2012-08-01 07:39:18 +0000 | [diff] [blame] | 760 | return translateOperand(mcInst, insn.operands[operand.type - TYPE_DUP0], |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 761 | insn, Dis); |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 762 | } |
| 763 | } |
| 764 | |
| 765 | /// translateInstruction - Translates an internal instruction and all its |
| 766 | /// operands to an MCInst. |
| 767 | /// |
| 768 | /// @param mcInst - The MCInst to populate with the instruction's data. |
| 769 | /// @param insn - The internal instruction. |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 770 | /// @return - false on success; true otherwise. |
| 771 | static bool translateInstruction(MCInst &mcInst, |
Kevin Enderby | 6fbcd8d | 2012-02-23 18:18:17 +0000 | [diff] [blame] | 772 | InternalInstruction &insn, |
| 773 | const MCDisassembler *Dis) { |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 774 | if (!insn.spec) { |
| 775 | debug("Instruction has no specification"); |
| 776 | return true; |
| 777 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 778 | |
| 779 | mcInst.setOpcode(insn.instructionID); |
Kevin Enderby | 35fd792 | 2013-06-20 22:32:18 +0000 | [diff] [blame] | 780 | // If when reading the prefix bytes we determined the overlapping 0xf2 or 0xf3 |
| 781 | // prefix bytes should be disassembled as xrelease and xacquire then set the |
| 782 | // opcode to those instead of the rep and repne opcodes. |
| 783 | if (insn.xAcquireRelease) { |
| 784 | if(mcInst.getOpcode() == X86::REP_PREFIX) |
| 785 | mcInst.setOpcode(X86::XRELEASE_PREFIX); |
| 786 | else if(mcInst.getOpcode() == X86::REPNE_PREFIX) |
| 787 | mcInst.setOpcode(X86::XACQUIRE_PREFIX); |
| 788 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 789 | |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 790 | insn.numImmediatesTranslated = 0; |
| 791 | |
Patrik Hagglund | 3199838 | 2014-04-28 12:12:27 +0000 | [diff] [blame] | 792 | for (const auto &Op : insn.operands) { |
| 793 | if (Op.encoding != ENCODING_NONE) { |
| 794 | if (translateOperand(mcInst, Op, insn, Dis)) { |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 795 | return true; |
| 796 | } |
| 797 | } |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 798 | } |
Sean Callanan | 010b373 | 2010-04-02 21:23:51 +0000 | [diff] [blame] | 799 | |
| 800 | return false; |
Sean Callanan | 04cc307 | 2009-12-19 02:59:52 +0000 | [diff] [blame] | 801 | } |
Daniel Dunbar | 900f2ce | 2009-11-25 06:53:08 +0000 | [diff] [blame] | 802 | |
David Woodhouse | 7dd2182 | 2014-01-20 12:02:31 +0000 | [diff] [blame] | 803 | static MCDisassembler *createX86Disassembler(const Target &T, |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 804 | const MCSubtargetInfo &STI, |
| 805 | MCContext &Ctx) { |
Lang Hames | 0563ca1 | 2014-04-13 04:09:16 +0000 | [diff] [blame] | 806 | std::unique_ptr<const MCInstrInfo> MII(T.createMCInstrInfo()); |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 807 | return new X86Disassembler::X86GenericDisassembler(STI, Ctx, std::move(MII)); |
Daniel Dunbar | 900f2ce | 2009-11-25 06:53:08 +0000 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | extern "C" void LLVMInitializeX86Disassembler() { |
| 811 | // Register the disassembler. |
| 812 | TargetRegistry::RegisterMCDisassembler(TheX86_32Target, |
David Woodhouse | 7dd2182 | 2014-01-20 12:02:31 +0000 | [diff] [blame] | 813 | createX86Disassembler); |
Daniel Dunbar | 900f2ce | 2009-11-25 06:53:08 +0000 | [diff] [blame] | 814 | TargetRegistry::RegisterMCDisassembler(TheX86_64Target, |
David Woodhouse | 7dd2182 | 2014-01-20 12:02:31 +0000 | [diff] [blame] | 815 | createX86Disassembler); |
Daniel Dunbar | 900f2ce | 2009-11-25 06:53:08 +0000 | [diff] [blame] | 816 | } |