1 /*===- X86DisassemblerDecoderInternal.h - Disassembler decoder -----*- C -*-==*
3 * The LLVM Compiler Infrastructure
5 * This file is distributed under the University of Illinois Open Source
6 * License. See LICENSE.TXT for details.
8 *===----------------------------------------------------------------------===*
10 * This file is part of the X86 Disassembler.
11 * It contains the public interface of the instruction decoder.
12 * Documentation for the disassembler can be found in X86Disassembler.h.
14 *===----------------------------------------------------------------------===*/
16 #ifndef X86DISASSEMBLERDECODER_H
17 #define X86DISASSEMBLERDECODER_H
23 #define INSTRUCTION_SPECIFIER_FIELDS \
26 #define INSTRUCTION_IDS \
27 const InstrUID *instructionIDs;
29 #include "X86DisassemblerDecoderCommon.h"
31 #undef INSTRUCTION_SPECIFIER_FIELDS
32 #undef INSTRUCTION_IDS
35 * Accessor functions for various fields of an Intel instruction
37 #define modFromModRM(modRM) ((modRM & 0xc0) >> 6)
38 #define regFromModRM(modRM) ((modRM & 0x38) >> 3)
39 #define rmFromModRM(modRM) (modRM & 0x7)
40 #define scaleFromSIB(sib) ((sib & 0xc0) >> 6)
41 #define indexFromSIB(sib) ((sib & 0x38) >> 3)
42 #define baseFromSIB(sib) (sib & 0x7)
43 #define wFromREX(rex) ((rex & 0x8) >> 3)
44 #define rFromREX(rex) ((rex & 0x4) >> 2)
45 #define xFromREX(rex) ((rex & 0x2) >> 1)
46 #define bFromREX(rex) (rex & 0x1)
49 * These enums represent Intel registers for use by the decoder.
74 #define EA_BASES_16BIT \
110 #define EA_BASES_32BIT \
146 #define EA_BASES_64BIT \
210 #define REGS_SEGMENT \
228 #define REGS_CONTROL \
239 #define ALL_EA_BASES \
244 #define ALL_SIB_BASES \
261 * EABase - All possible values of the base field for effective-address
262 * computations, a.k.a. the Mod and R/M fields of the ModR/M byte. We
263 * distinguish between bases (EA_BASE_*) and registers that just happen to be
264 * referred to when Mod == 0b11 (EA_REG_*).
268 #define ENTRY(x) EA_BASE_##x,
271 #define ENTRY(x) EA_REG_##x,
278 * SIBIndex - All possible values of the SIB index field.
279 * Borrows entries from ALL_EA_BASES with the special case that
280 * sib is synonymous with NONE.
284 #define ENTRY(x) SIB_INDEX_##x,
291 * SIBBase - All possible values of the SIB base field.
295 #define ENTRY(x) SIB_BASE_##x,
302 * EADisplacement - Possible displacement types for effective-address
313 * Reg - All possible values of the reg field in the ModR/M byte.
316 #define ENTRY(x) MODRM_REG_##x,
323 * SegmentOverride - All possible segment overrides.
336 typedef uint8_t BOOL
;
339 * byteReader_t - Type for the byte reader that the consumer must provide to
340 * the decoder. Reads a single byte from the instruction's address space.
341 * @param arg - A baton that the consumer can associate with any internal
342 * state that it needs.
343 * @param byte - A pointer to a single byte in memory that should be set to
344 * contain the value at address.
345 * @param address - The address in the instruction's address space that should
347 * @return - -1 if the byte cannot be read for any reason; 0 otherwise.
349 typedef int (*byteReader_t
)(void* arg
, uint8_t* byte
, uint64_t address
);
352 * dlog_t - Type for the logging function that the consumer can provide to
353 * get debugging output from the decoder.
354 * @param arg - A baton that the consumer can associate with any internal
355 * state that it needs.
356 * @param log - A string that contains the message. Will be reused after
357 * the logger returns.
359 typedef void (*dlog_t
)(void* arg
, const char *log
);
362 * The x86 internal instruction, which is produced by the decoder.
364 struct InternalInstruction
{
365 /* Reader interface (C) */
367 /* Opaque value passed to the reader */
369 /* The address of the next byte to read via the reader */
370 uint64_t readerCursor
;
372 /* Logger interface (C) */
374 /* Opaque value passed to the logger */
377 /* General instruction information */
379 /* The mode to disassemble for (64-bit, protected, real) */
380 DisassemblerMode mode
;
381 /* The start of the instruction, usable with the reader */
382 uint64_t startLocation
;
383 /* The length of the instruction, in bytes */
388 /* 1 if the prefix byte corresponding to the entry is present; 0 if not */
389 uint8_t prefixPresent
[0x100];
390 /* contains the location (for use with the reader) of the prefix byte */
391 uint64_t prefixLocations
[0x100];
392 /* The value of the REX prefix, if present */
394 /* The location of the REX prefix */
395 uint64_t rexLocation
;
396 /* The location where a mandatory prefix would have to be (i.e., right before
397 the opcode, or right before the REX prefix if one is present) */
398 uint64_t necessaryPrefixLocation
;
399 /* The segment override type */
400 SegmentOverride segmentOverride
;
402 /* Sizes of various critical pieces of data */
403 uint8_t registerSize
;
405 uint8_t displacementSize
;
406 uint8_t immediateSize
;
410 /* The value of the two-byte escape prefix (usually 0x0f) */
411 uint8_t twoByteEscape
;
412 /* The value of the three-byte escape prefix (usually 0x38 or 0x3a) */
413 uint8_t threeByteEscape
;
414 /* The last byte of the opcode, not counting any ModR/M extension */
416 /* The ModR/M byte of the instruction, if it is an opcode extension */
417 uint8_t modRMExtension
;
421 /* The type of opcode, used for indexing into the array of decode tables */
422 OpcodeType opcodeType
;
423 /* The instruction ID, extracted from the decode table */
424 uint16_t instructionID
;
425 /* The specifier for the instruction, from the instruction info table */
426 const struct InstructionSpecifier
*spec
;
428 /* state for additional bytes, consumed during operand decode. Pattern:
429 consumed___ indicates that the byte was already consumed and does not
430 need to be consumed again */
432 /* The ModR/M byte, which contains most register operands and some portion of
433 all memory operands */
437 /* The SIB byte, used for more complex 32- or 64-bit memory operands */
441 /* The displacement, used for memory operands */
442 BOOL consumedDisplacement
;
443 int32_t displacement
;
445 /* Immediates. There can be two in some cases */
446 uint8_t numImmediatesConsumed
;
447 uint8_t numImmediatesTranslated
;
448 uint64_t immediates
[2];
450 /* A register or immediate operand encoded into the opcode */
451 BOOL consumedOpcodeModifier
;
452 uint8_t opcodeModifier
;
455 /* Portions of the ModR/M byte */
457 /* These fields determine the allowable values for the ModR/M fields, which
458 depend on operand and address widths */
463 /* The Mod and R/M fields can encode a base for an effective address, or a
464 register. These are separated into two fields here */
466 EADisplacement eaDisplacement
;
467 /* The reg field always encodes a register */
476 /* decodeInstruction - Decode one instruction and store the decoding results in
477 * a buffer provided by the consumer.
478 * @param insn - The buffer to store the instruction in. Allocated by the
480 * @param reader - The byteReader_t for the bytes to be read.
481 * @param readerArg - An argument to pass to the reader for storing context
482 * specific to the consumer. May be NULL.
483 * @param logger - The dlog_t to be used in printing status messages from the
484 * disassembler. May be NULL.
485 * @param loggerArg - An argument to pass to the logger for storing context
486 * specific to the logger. May be NULL.
487 * @param startLoc - The address (in the reader's address space) of the first
488 * byte in the instruction.
489 * @param mode - The mode (16-bit, 32-bit, 64-bit) to decode in.
490 * @return - Nonzero if there was an error during decode, 0 otherwise.
492 int decodeInstruction(struct InternalInstruction
* insn
,
498 DisassemblerMode mode
);
500 /* x86DisassemblerDebug - C-accessible function for printing a message to
502 * @param file - The name of the file printing the debug message.
503 * @param line - The line number that printed the debug message.
504 * @param s - The message to print.
507 void x86DisassemblerDebug(const char *file
,