DisasmCore.cpp revision 997c47dc1532875eb8e995bf9993dff13071c16f
/* $Id$ */
/** @file
* VBox Disassembler - Core Components.
*/
/*
* Copyright (C) 2006-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP LOG_GROUP_DIS
#include <VBox/dis.h>
#include <VBox/disopcode.h>
#include <VBox/err.h>
#include <VBox/log.h>
#include <iprt/assert.h>
#include <iprt/string.h>
#include <iprt/stdarg.h>
#include "DisasmInternal.h"
#include "DisasmTables.h"
/*******************************************************************************
* Internal Functions *
*******************************************************************************/
static int disCoreParseInstr(PDISCPUSTATE pCpu, RTUINTPTR uInstrAddr, const OPCODE *paOneByteMap, uint32_t *pcbInstr);
static unsigned QueryModRM(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu, unsigned *pSibInc = NULL);
static unsigned QueryModRM_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu, unsigned *pSibInc = NULL);
static void UseSIB(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
static unsigned ParseSIB_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
static void disasmModRMReg(PDISCPUSTATE pCpu, PCOPCODE pOp, unsigned idx, POP_PARAMETER pParam, int fRegAddr);
static void disasmModRMReg16(PDISCPUSTATE pCpu, PCOPCODE pOp, unsigned idx, POP_PARAMETER pParam);
static void disasmModRMSReg(PDISCPUSTATE pCpu, PCOPCODE pOp, unsigned idx, POP_PARAMETER pParam);
/** @name Parsers
* @{ */
static FNDISPARSE ParseIllegal;
static FNDISPARSE ParseModRM;
static FNDISPARSE ParseModRM_SizeOnly;
static FNDISPARSE UseModRM;
static FNDISPARSE ParseImmByte;
static FNDISPARSE ParseImmByte_SizeOnly;
static FNDISPARSE ParseImmByteSX;
static FNDISPARSE ParseImmByteSX_SizeOnly;
static FNDISPARSE ParseImmBRel;
static FNDISPARSE ParseImmBRel_SizeOnly;
static FNDISPARSE ParseImmUshort;
static FNDISPARSE ParseImmUshort_SizeOnly;
static FNDISPARSE ParseImmV;
static FNDISPARSE ParseImmV_SizeOnly;
static FNDISPARSE ParseImmVRel;
static FNDISPARSE ParseImmVRel_SizeOnly;
static FNDISPARSE ParseImmZ;
static FNDISPARSE ParseImmZ_SizeOnly;
static FNDISPARSE ParseImmAddr;
static FNDISPARSE ParseImmAddr_SizeOnly;
static FNDISPARSE ParseImmAddrF;
static FNDISPARSE ParseImmAddrF_SizeOnly;
static FNDISPARSE ParseFixedReg;
static FNDISPARSE ParseImmUlong;
static FNDISPARSE ParseImmUlong_SizeOnly;
static FNDISPARSE ParseImmQword;
static FNDISPARSE ParseImmQword_SizeOnly;
static FNDISPARSE ParseTwoByteEsc;
static FNDISPARSE ParseThreeByteEsc4;
static FNDISPARSE ParseThreeByteEsc5;
static FNDISPARSE ParseImmGrpl;
static FNDISPARSE ParseShiftGrp2;
static FNDISPARSE ParseGrp3;
static FNDISPARSE ParseGrp4;
static FNDISPARSE ParseGrp5;
static FNDISPARSE Parse3DNow;
static FNDISPARSE ParseGrp6;
static FNDISPARSE ParseGrp7;
static FNDISPARSE ParseGrp8;
static FNDISPARSE ParseGrp9;
static FNDISPARSE ParseGrp10;
static FNDISPARSE ParseGrp12;
static FNDISPARSE ParseGrp13;
static FNDISPARSE ParseGrp14;
static FNDISPARSE ParseGrp15;
static FNDISPARSE ParseGrp16;
static FNDISPARSE ParseModFence;
static FNDISPARSE ParseNopPause;
static FNDISPARSE ParseYv;
static FNDISPARSE ParseYb;
static FNDISPARSE ParseXv;
static FNDISPARSE ParseXb;
/* Floating point parsing */
static FNDISPARSE ParseEscFP;
/** @} */
/*******************************************************************************
* Global Variables *
*******************************************************************************/
/** Parser opcode table for full disassembly. */
PFNDISPARSE g_apfnFullDisasm[IDX_ParseMax] =
{
ParseIllegal,
ParseModRM,
UseModRM,
ParseImmByte,
ParseImmBRel,
ParseImmUshort,
ParseImmV,
ParseImmVRel,
ParseImmAddr,
ParseFixedReg,
ParseImmUlong,
ParseImmQword,
ParseTwoByteEsc,
ParseImmGrpl,
ParseShiftGrp2,
ParseGrp3,
ParseGrp4,
ParseGrp5,
Parse3DNow,
ParseGrp6,
ParseGrp7,
ParseGrp8,
ParseGrp9,
ParseGrp10,
ParseGrp12,
ParseGrp13,
ParseGrp14,
ParseGrp15,
ParseGrp16,
ParseModFence,
ParseYv,
ParseYb,
ParseXv,
ParseXb,
ParseEscFP,
ParseNopPause,
ParseImmByteSX,
ParseImmZ,
ParseThreeByteEsc4,
ParseThreeByteEsc5,
ParseImmAddrF
};
/** Parser opcode table for only calculating instruction size. */
PFNDISPARSE g_apfnCalcSize[IDX_ParseMax] =
{
ParseIllegal,
ParseModRM_SizeOnly,
UseModRM,
ParseImmByte_SizeOnly,
ParseImmBRel_SizeOnly,
ParseImmUshort_SizeOnly,
ParseImmV_SizeOnly,
ParseImmVRel_SizeOnly,
ParseImmAddr_SizeOnly,
ParseFixedReg,
ParseImmUlong_SizeOnly,
ParseImmQword_SizeOnly,
ParseTwoByteEsc,
ParseImmGrpl,
ParseShiftGrp2,
ParseGrp3,
ParseGrp4,
ParseGrp5,
Parse3DNow,
ParseGrp6,
ParseGrp7,
ParseGrp8,
ParseGrp9,
ParseGrp10,
ParseGrp12,
ParseGrp13,
ParseGrp14,
ParseGrp15,
ParseGrp16,
ParseModFence,
ParseYv,
ParseYb,
ParseXv,
ParseXb,
ParseEscFP,
ParseNopPause,
ParseImmByteSX_SizeOnly,
ParseImmZ_SizeOnly,
ParseThreeByteEsc4,
ParseThreeByteEsc5,
ParseImmAddrF_SizeOnly
};
/**
* Parses one guest instruction.
*
* The result is found in pCpu and pcbInstr.
*
* @returns VBox status code.
* @param pvInstr Address of the instruction to decode. This is a
* real address in the current context that can be
* accessed without faulting. (Consider
* DISInstrWithReader if this isn't the case.)
* @param enmCpuMode The CPU mode. DISCPUMODE_32BIT, DISCPUMODE_16BIT, or DISCPUMODE_64BIT.
* @param pfnReadBytes Callback for reading instruction bytes.
* @param pvUser User argument for the instruction reader. (Ends up in apvUserData[0].)
* @param pCpu Pointer to cpu structure. Will be initialized.
* @param pcbInstr Where to store the size of the instruction.
* NULL is allowed. This is also stored in
* PDISCPUSTATE::opsize.
*/
DISDECL(int) DISInstr(const void *pvInstr, DISCPUMODE enmCpuMode, PDISCPUSTATE pCpu, uint32_t *pcbInstr)
{
return DISInstEx((uintptr_t)pvInstr, enmCpuMode, DISOPTYPE_ALL, NULL /*pfnReadBytes*/, NULL /*pvUser*/, pCpu, pcbInstr);
}
/**
* Parses one guest instruction.
*
* The result is found in pCpu and pcbInstr.
*
* @returns VBox status code.
* @param uInstrAddr Address of the instruction to decode. What this means
* is left to the pfnReadBytes function.
* @param enmCpuMode The CPU mode. DISCPUMODE_32BIT, DISCPUMODE_16BIT, or DISCPUMODE_64BIT.
* @param pfnReadBytes Callback for reading instruction bytes.
* @param pvUser User argument for the instruction reader. (Ends up in apvUserData[0].)
* @param pCpu Pointer to cpu structure. Will be initialized.
* @param pcbInstr Where to store the size of the instruction.
* NULL is allowed. This is also stored in
* PDISCPUSTATE::opsize.
*/
DISDECL(int) DISInstrWithReader(RTUINTPTR uInstrAddr, DISCPUMODE enmCpuMode, PFNDISREADBYTES pfnReadBytes, void *pvUser,
PDISCPUSTATE pCpu, uint32_t *pcbInstr)
{
return DISInstEx(uInstrAddr, enmCpuMode, DISOPTYPE_ALL, pfnReadBytes, pvUser, pCpu, pcbInstr);
}
/**
* Disassembles on instruction, details in @a pCpu and length in @a pcbInstr.
*
* @returns VBox status code.
* @param uInstrAddr Address of the instruction to decode. What this means
* is left to the pfnReadBytes function.
* @param enmCpuMode The CPU mode. DISCPUMODE_32BIT, DISCPUMODE_16BIT, or DISCPUMODE_64BIT.
* @param pfnReadBytes Callback for reading instruction bytes.
* @param fFilter Instruction type filter.
* @param pvUser User argument for the instruction reader. (Ends up in apvUserData[0].)
* @param pCpu Pointer to CPU structure. With the exception of
* DISCPUSTATE::apvUserData[1] and
* DISCPUSTATE::apvUserData[2], the structure will be
* completely initialized by this API, i.e. no input is
* taken from it.
* @param pcbInstr Where to store the size of the instruction. (This
* is also stored in PDISCPUSTATE::opsize.) Optional.
*/
DISDECL(int) DISInstEx(RTUINTPTR uInstrAddr, DISCPUMODE enmCpuMode, uint32_t fFilter,
PFNDISREADBYTES pfnReadBytes, void *pvUser,
PDISCPUSTATE pCpu, uint32_t *pcbInstr)
{
const OPCODE *paOneByteMap;
/*
* Initialize the CPU state.
* Note! The RT_BZERO make ASSUMPTIONS about the placement of apvUserData.
*/
RT_BZERO(pCpu, RT_OFFSETOF(DISCPUSTATE, apvUserData));
pCpu->mode = enmCpuMode;
if (enmCpuMode == DISCPUMODE_64BIT)
{
paOneByteMap = g_aOneByteMapX64;
pCpu->addrmode = DISCPUMODE_64BIT;
pCpu->opmode = DISCPUMODE_32BIT;
}
else
{
paOneByteMap = g_aOneByteMapX86;
pCpu->addrmode = enmCpuMode;
pCpu->opmode = enmCpuMode;
}
pCpu->prefix = DISPREFIX_NONE;
pCpu->enmPrefixSeg = DIS_SELREG_DS;
pCpu->uInstrAddr = uInstrAddr;
pCpu->pfnDisasmFnTable = g_apfnFullDisasm;
pCpu->fFilter = fFilter;
pCpu->rc = VINF_SUCCESS;
pCpu->pfnReadBytes = pfnReadBytes ? pfnReadBytes : disReadBytesDefault;
pCpu->apvUserData[0] = pvUser;
return disCoreParseInstr(pCpu, uInstrAddr, paOneByteMap, pcbInstr);
}
/**
* Internal worker for DISCoreOne and DISCoreOneEx.
*
* @returns VBox status code.
* @param pCpu Initialized cpu state.
* @param paOneByteMap The one byte opcode map to use.
* @param uInstrAddr Instruction address.
* @param pcbInstr Where to store the instruction size. Can be NULL.
*/
static int disCoreParseInstr(PDISCPUSTATE pCpu, RTUINTPTR uInstrAddr, const OPCODE *paOneByteMap, uint32_t *pcbInstr)
{
/*
* Parse byte by byte.
*/
unsigned iByte = 0;
unsigned cbInc;
for (;;)
{
uint8_t codebyte = DISReadByte(pCpu, uInstrAddr+iByte);
uint8_t opcode = paOneByteMap[codebyte].opcode;
/* Hardcoded assumption about OP_* values!! */
if (opcode <= OP_LAST_PREFIX)
{
/* The REX prefix must precede the opcode byte(s). Any other placement is ignored. */
if (opcode != OP_REX)
{
/** Last prefix byte (for SSE2 extension tables); don't include the REX prefix */
pCpu->lastprefix = opcode;
pCpu->prefix &= ~DISPREFIX_REX;
}
switch (opcode)
{
case OP_INVALID:
if (pcbInstr)
*pcbInstr = iByte + 1;
return pCpu->rc = VERR_DIS_INVALID_OPCODE;
// segment override prefix byte
case OP_SEG:
pCpu->enmPrefixSeg = (DIS_SELREG)(paOneByteMap[codebyte].param1 - OP_PARM_REG_SEG_START);
/* Segment prefixes for CS, DS, ES and SS are ignored in long mode. */
if ( pCpu->mode != DISCPUMODE_64BIT
|| pCpu->enmPrefixSeg >= DIS_SELREG_FS)
{
pCpu->prefix |= DISPREFIX_SEG;
}
iByte += sizeof(uint8_t);
continue; //fetch the next byte
// lock prefix byte
case OP_LOCK:
pCpu->prefix |= DISPREFIX_LOCK;
iByte += sizeof(uint8_t);
continue; //fetch the next byte
// address size override prefix byte
case OP_ADDRSIZE:
pCpu->prefix |= DISPREFIX_ADDRSIZE;
if (pCpu->mode == DISCPUMODE_16BIT)
pCpu->addrmode = DISCPUMODE_32BIT;
else
if (pCpu->mode == DISCPUMODE_32BIT)
pCpu->addrmode = DISCPUMODE_16BIT;
else
pCpu->addrmode = DISCPUMODE_32BIT; /* 64 bits */
iByte += sizeof(uint8_t);
continue; //fetch the next byte
// operand size override prefix byte
case OP_OPSIZE:
pCpu->prefix |= DISPREFIX_OPSIZE;
if (pCpu->mode == DISCPUMODE_16BIT)
pCpu->opmode = DISCPUMODE_32BIT;
else
pCpu->opmode = DISCPUMODE_16BIT; /* for 32 and 64 bits mode (there is no 32 bits operand size override prefix) */
iByte += sizeof(uint8_t);
continue; //fetch the next byte
// rep and repne are not really prefixes, but we'll treat them as such
case OP_REPE:
pCpu->prefix |= DISPREFIX_REP;
iByte += sizeof(uint8_t);
continue; //fetch the next byte
case OP_REPNE:
pCpu->prefix |= DISPREFIX_REPNE;
iByte += sizeof(uint8_t);
continue; //fetch the next byte
case OP_REX:
Assert(pCpu->mode == DISCPUMODE_64BIT);
/* REX prefix byte */
pCpu->prefix |= DISPREFIX_REX;
pCpu->prefix_rex = DISPREFIX_REX_OP_2_FLAGS(paOneByteMap[codebyte].param1);
iByte += sizeof(uint8_t);
if (pCpu->prefix_rex & DISPREFIX_REX_FLAGS_W)
pCpu->opmode = DISCPUMODE_64BIT; /* overrides size prefix byte */
continue; //fetch the next byte
}
}
unsigned uIdx = iByte;
iByte += sizeof(uint8_t); //first opcode byte
pCpu->opcode = codebyte;
cbInc = ParseInstruction(uInstrAddr + iByte, &paOneByteMap[pCpu->opcode], pCpu);
iByte += cbInc;
break;
}
AssertMsg(pCpu->opsize == iByte || RT_FAILURE_NP(pCpu->rc), ("%u %u\n", pCpu->opsize, iByte));
pCpu->opsize = iByte;
if (pcbInstr)
*pcbInstr = iByte;
if (pCpu->prefix & DISPREFIX_LOCK)
disValidateLockSequence(pCpu);
return pCpu->rc;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseInstruction(RTUINTPTR uCodePtr, PCOPCODE pOp, PDISCPUSTATE pCpu)
{
int size = 0;
bool fFiltered = false;
Assert(uCodePtr && pOp && pCpu);
// Store the opcode format string for disasmPrintf
#ifndef DIS_CORE_ONLY
pCpu->pszOpcode = pOp->pszOpcode;
#endif
pCpu->pCurInstr = pOp;
/*
* Apply filter to instruction type to determine if a full disassembly is required.
* Note! Multibyte opcodes are always marked harmless until the final byte.
*/
if ((pOp->optype & pCpu->fFilter) == 0)
{
fFiltered = true;
pCpu->pfnDisasmFnTable = g_apfnCalcSize;
}
else
{
/* Not filtered out -> full disassembly */
pCpu->pfnDisasmFnTable = g_apfnFullDisasm;
}
// Should contain the parameter type on input
pCpu->param1.param = pOp->param1;
pCpu->param2.param = pOp->param2;
pCpu->param3.param = pOp->param3;
/* Correct the operand size if the instruction is marked as forced or default 64 bits */
if (pCpu->mode == DISCPUMODE_64BIT)
{
if (pOp->optype & DISOPTYPE_FORCED_64_OP_SIZE)
pCpu->opmode = DISCPUMODE_64BIT;
else
if ( (pOp->optype & DISOPTYPE_DEFAULT_64_OP_SIZE)
&& !(pCpu->prefix & DISPREFIX_OPSIZE))
pCpu->opmode = DISCPUMODE_64BIT;
}
else
if (pOp->optype & DISOPTYPE_FORCED_32_OP_SIZE_X86)
{
/* Forced 32 bits operand size for certain instructions (mov crx, mov drx). */
Assert(pCpu->mode != DISCPUMODE_64BIT);
pCpu->opmode = DISCPUMODE_32BIT;
}
if (pOp->idxParse1 != IDX_ParseNop)
{
size += pCpu->pfnDisasmFnTable[pOp->idxParse1](uCodePtr, pOp, &pCpu->param1, pCpu);
if (fFiltered == false) pCpu->param1.cb = DISGetParamSize(pCpu, &pCpu->param1);
}
if (pOp->idxParse2 != IDX_ParseNop)
{
size += pCpu->pfnDisasmFnTable[pOp->idxParse2](uCodePtr+size, pOp, &pCpu->param2, pCpu);
if (fFiltered == false) pCpu->param2.cb = DISGetParamSize(pCpu, &pCpu->param2);
}
if (pOp->idxParse3 != IDX_ParseNop)
{
size += pCpu->pfnDisasmFnTable[pOp->idxParse3](uCodePtr+size, pOp, &pCpu->param3, pCpu);
if (fFiltered == false) pCpu->param3.cb = DISGetParamSize(pCpu, &pCpu->param3);
}
// else simple one byte instruction
return size;
}
//*****************************************************************************
/* Floating point opcode parsing */
//*****************************************************************************
unsigned ParseEscFP(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
int index;
const OPCODE *fpop;
unsigned size = 0;
unsigned ModRM;
NOREF(pOp);
ModRM = DISReadByte(pCpu, uCodePtr);
index = pCpu->opcode - 0xD8;
if (ModRM <= 0xBF)
{
fpop = &(g_paMapX86_FP_Low[index])[MODRM_REG(ModRM)];
pCpu->pCurInstr = (PCOPCODE)fpop;
// Should contain the parameter type on input
pCpu->param1.param = fpop->param1;
pCpu->param2.param = fpop->param2;
}
else
{
fpop = &(g_paMapX86_FP_High[index])[ModRM - 0xC0];
pCpu->pCurInstr = (PCOPCODE)fpop;
}
/*
* Apply filter to instruction type to determine if a full disassembly is required.
* @note Multibyte opcodes are always marked harmless until the final byte.
*/
if ((fpop->optype & pCpu->fFilter) == 0)
pCpu->pfnDisasmFnTable = g_apfnCalcSize;
else
/* Not filtered out -> full disassembly */
pCpu->pfnDisasmFnTable = g_apfnFullDisasm;
/* Correct the operand size if the instruction is marked as forced or default 64 bits */
if (pCpu->mode == DISCPUMODE_64BIT)
{
/* Note: redundant, but just in case this ever changes */
if (fpop->optype & DISOPTYPE_FORCED_64_OP_SIZE)
pCpu->opmode = DISCPUMODE_64BIT;
else
if ( (fpop->optype & DISOPTYPE_DEFAULT_64_OP_SIZE)
&& !(pCpu->prefix & DISPREFIX_OPSIZE))
pCpu->opmode = DISCPUMODE_64BIT;
}
// Little hack to make sure the ModRM byte is included in the returned size
if (fpop->idxParse1 != IDX_ParseModRM && fpop->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
if (fpop->idxParse1 != IDX_ParseNop)
size += pCpu->pfnDisasmFnTable[fpop->idxParse1](uCodePtr+size, (PCOPCODE)fpop, pParam, pCpu);
if (fpop->idxParse2 != IDX_ParseNop)
size += pCpu->pfnDisasmFnTable[fpop->idxParse2](uCodePtr+size, (PCOPCODE)fpop, pParam, pCpu);
// Store the opcode format string for disasmPrintf
#ifndef DIS_CORE_ONLY
pCpu->pszOpcode = fpop->pszOpcode;
#endif
return size;
}
//*****************************************************************************
// SIB byte: (32 bits mode only)
// 7 - 6 5 - 3 2-0
// Scale Index Base
//*****************************************************************************
static const char *szSIBBaseReg[8] = {"EAX", "ECX", "EDX", "EBX", "ESP", "EBP", "ESI", "EDI"};
static const char *szSIBIndexReg[8] = {"EAX", "ECX", "EDX", "EBX", NULL, "EBP", "ESI", "EDI"};
static const char *szSIBBaseReg64[16] = {"RAX", "RCX", "RDX", "RBX", "RSP", "RBP", "RSI", "RDI", "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15"};
static const char *szSIBIndexReg64[16]= {"RAX", "RCX", "RDX", "RBX", NULL, "RBP", "RSI", "RDI", "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15"};
#if !defined(DIS_CORE_ONLY) && defined(LOG_ENABLED) || defined(_MSC_VER)
static const char *szSIBScale[4] = {"", "*2", "*4", "*8"};
#endif
//*****************************************************************************
void UseSIB(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned scale, base, index, regtype;
const char **ppszSIBIndexReg;
const char **ppszSIBBaseReg;
NOREF(uCodePtr); NOREF(pOp);
scale = pCpu->SIB.Bits.Scale;
base = pCpu->SIB.Bits.Base;
index = pCpu->SIB.Bits.Index;
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
ppszSIBIndexReg = szSIBIndexReg;
ppszSIBBaseReg = szSIBBaseReg;
regtype = DISUSE_REG_GEN32;
}
else
{
ppszSIBIndexReg = szSIBIndexReg64;
ppszSIBBaseReg = szSIBBaseReg64;
regtype = DISUSE_REG_GEN64;
}
if (ppszSIBIndexReg[index])
{
pParam->flags |= DISUSE_INDEX | regtype;
pParam->index.reg_gen = index;
if (scale != 0)
{
pParam->flags |= DISUSE_SCALE;
pParam->scale = (1<<scale);
}
}
if (base == 5 && pCpu->ModRM.Bits.Mod == 0)
{
// [scaled index] + disp32
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
pParam->flags |= DISUSE_DISPLACEMENT32;
pParam->uDisp.i32 = pCpu->i32SibDisp;
}
else
{ /* sign-extend to 64 bits */
pParam->flags |= DISUSE_DISPLACEMENT64;
pParam->uDisp.i64 = pCpu->i32SibDisp;
}
}
else
{
pParam->flags |= DISUSE_BASE | regtype;
pParam->base.reg_gen = base;
}
return; /* Already fetched everything in ParseSIB; no size returned */
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseSIB(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = sizeof(uint8_t);
unsigned SIB;
NOREF(pOp); NOREF(pParam);
SIB = DISReadByte(pCpu, uCodePtr);
uCodePtr += size;
pCpu->SIB.Bits.Base = SIB_BASE(SIB);
pCpu->SIB.Bits.Index = SIB_INDEX(SIB);
pCpu->SIB.Bits.Scale = SIB_SCALE(SIB);
if (pCpu->prefix & DISPREFIX_REX)
{
/* REX.B extends the Base field if not scaled index + disp32 */
if (!(pCpu->SIB.Bits.Base == 5 && pCpu->ModRM.Bits.Mod == 0))
pCpu->SIB.Bits.Base |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_B)) << 3);
pCpu->SIB.Bits.Index |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_X)) << 3);
}
if ( pCpu->SIB.Bits.Base == 5
&& pCpu->ModRM.Bits.Mod == 0)
{
/* Additional 32 bits displacement. No change in long mode. */
pCpu->i32SibDisp = DISReadDWord(pCpu, uCodePtr);
size += sizeof(int32_t);
}
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseSIB_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = sizeof(uint8_t);
unsigned SIB;
NOREF(pOp); NOREF(pParam);
SIB = DISReadByte(pCpu, uCodePtr);
uCodePtr += size;
pCpu->SIB.Bits.Base = SIB_BASE(SIB);
pCpu->SIB.Bits.Index = SIB_INDEX(SIB);
pCpu->SIB.Bits.Scale = SIB_SCALE(SIB);
if (pCpu->prefix & DISPREFIX_REX)
{
/* REX.B extends the Base field. */
pCpu->SIB.Bits.Base |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_B)) << 3);
/* REX.X extends the Index field. */
pCpu->SIB.Bits.Index |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_X)) << 3);
}
if ( pCpu->SIB.Bits.Base == 5
&& pCpu->ModRM.Bits.Mod == 0)
{
/* Additional 32 bits displacement. No change in long mode. */
size += sizeof(int32_t);
}
return size;
}
//*****************************************************************************
// ModR/M byte:
// 7 - 6 5 - 3 2-0
// Mod Reg/Opcode R/M
//*****************************************************************************
unsigned UseModRM(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
int vtype = OP_PARM_VTYPE(pParam->param);
unsigned reg = pCpu->ModRM.Bits.Reg;
unsigned mod = pCpu->ModRM.Bits.Mod;
unsigned rm = pCpu->ModRM.Bits.Rm;
switch (vtype)
{
case OP_PARM_G: //general purpose register
disasmModRMReg(pCpu, pOp, reg, pParam, 0);
return 0;
default:
if (IS_OP_PARM_RARE(vtype))
{
switch (vtype)
{
case OP_PARM_C: //control register
pParam->flags |= DISUSE_REG_CR;
if ( pCpu->pCurInstr->opcode == OP_MOV_CR
&& pCpu->opmode == DISCPUMODE_32BIT
&& (pCpu->prefix & DISPREFIX_LOCK))
{
pCpu->prefix &= ~DISPREFIX_LOCK;
pParam->base.reg_ctrl = USE_REG_CR8;
}
else
pParam->base.reg_ctrl = reg;
return 0;
case OP_PARM_D: //debug register
pParam->flags |= DISUSE_REG_DBG;
pParam->base.reg_dbg = reg;
return 0;
case OP_PARM_P: //MMX register
reg &= 7; /* REX.R has no effect here */
pParam->flags |= DISUSE_REG_MMX;
pParam->base.reg_mmx = reg;
return 0;
case OP_PARM_S: //segment register
reg &= 7; /* REX.R has no effect here */
disasmModRMSReg(pCpu, pOp, reg, pParam);
pParam->flags |= DISUSE_REG_SEG;
return 0;
case OP_PARM_T: //test register
reg &= 7; /* REX.R has no effect here */
pParam->flags |= DISUSE_REG_TEST;
pParam->base.reg_test = reg;
return 0;
case OP_PARM_W: //XMM register or memory operand
if (mod != 3)
break; /* memory operand */
reg = rm; /* the RM field specifies the xmm register */
/* else no break */
case OP_PARM_V: //XMM register
pParam->flags |= DISUSE_REG_XMM;
pParam->base.reg_xmm = reg;
return 0;
}
}
}
/* @todo bound */
if (pCpu->addrmode != DISCPUMODE_16BIT)
{
Assert(pCpu->addrmode == DISCPUMODE_32BIT || pCpu->addrmode == DISCPUMODE_64BIT);
/*
* Note: displacements in long mode are 8 or 32 bits and sign-extended to 64 bits
*/
switch (mod)
{
case 0: //effective address
if (rm == 4)
{ /* SIB byte follows ModRM */
UseSIB(uCodePtr, pOp, pParam, pCpu);
}
else
if (rm == 5)
{
/* 32 bits displacement */
if (pCpu->mode != DISCPUMODE_64BIT)
{
pParam->flags |= DISUSE_DISPLACEMENT32;
pParam->uDisp.i32 = pCpu->i32SibDisp;
}
else
{
pParam->flags |= DISUSE_RIPDISPLACEMENT32;
pParam->uDisp.i32 = pCpu->i32SibDisp;
}
}
else
{ //register address
pParam->flags |= DISUSE_BASE;
disasmModRMReg(pCpu, pOp, rm, pParam, 1);
}
break;
case 1: //effective address + 8 bits displacement
if (rm == 4) {//SIB byte follows ModRM
UseSIB(uCodePtr, pOp, pParam, pCpu);
}
else
{
pParam->flags |= DISUSE_BASE;
disasmModRMReg(pCpu, pOp, rm, pParam, 1);
}
pParam->uDisp.i8 = pCpu->i32SibDisp;
pParam->flags |= DISUSE_DISPLACEMENT8;
break;
case 2: //effective address + 32 bits displacement
if (rm == 4) {//SIB byte follows ModRM
UseSIB(uCodePtr, pOp, pParam, pCpu);
}
else
{
pParam->flags |= DISUSE_BASE;
disasmModRMReg(pCpu, pOp, rm, pParam, 1);
}
pParam->uDisp.i32 = pCpu->i32SibDisp;
pParam->flags |= DISUSE_DISPLACEMENT32;
break;
case 3: //registers
disasmModRMReg(pCpu, pOp, rm, pParam, 0);
break;
}
}
else
{//16 bits addressing mode
switch (mod)
{
case 0: //effective address
if (rm == 6)
{//16 bits displacement
pParam->uDisp.i16 = pCpu->i32SibDisp;
pParam->flags |= DISUSE_DISPLACEMENT16;
}
else
{
pParam->flags |= DISUSE_BASE;
disasmModRMReg16(pCpu, pOp, rm, pParam);
}
break;
case 1: //effective address + 8 bits displacement
disasmModRMReg16(pCpu, pOp, rm, pParam);
pParam->uDisp.i8 = pCpu->i32SibDisp;
pParam->flags |= DISUSE_BASE | DISUSE_DISPLACEMENT8;
break;
case 2: //effective address + 16 bits displacement
disasmModRMReg16(pCpu, pOp, rm, pParam);
pParam->uDisp.i16 = pCpu->i32SibDisp;
pParam->flags |= DISUSE_BASE | DISUSE_DISPLACEMENT16;
break;
case 3: //registers
disasmModRMReg(pCpu, pOp, rm, pParam, 0);
break;
}
}
return 0; //everything was already fetched in ParseModRM
}
//*****************************************************************************
// Query the size of the ModRM parameters and fetch the immediate data (if any)
//*****************************************************************************
unsigned QueryModRM(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu, unsigned *pSibInc)
{
unsigned sibinc;
unsigned size = 0;
// unsigned reg = pCpu->ModRM.Bits.Reg;
unsigned mod = pCpu->ModRM.Bits.Mod;
unsigned rm = pCpu->ModRM.Bits.Rm;
if (!pSibInc)
pSibInc = &sibinc;
*pSibInc = 0;
if (pCpu->addrmode != DISCPUMODE_16BIT)
{
Assert(pCpu->addrmode == DISCPUMODE_32BIT || pCpu->addrmode == DISCPUMODE_64BIT);
/*
* Note: displacements in long mode are 8 or 32 bits and sign-extended to 64 bits
*/
if (mod != 3 && rm == 4)
{ /* SIB byte follows ModRM */
*pSibInc = ParseSIB(uCodePtr, pOp, pParam, pCpu);
uCodePtr += *pSibInc;
size += *pSibInc;
}
switch (mod)
{
case 0: /* Effective address */
if (rm == 5) { /* 32 bits displacement */
pCpu->i32SibDisp = DISReadDWord(pCpu, uCodePtr);
size += sizeof(int32_t);
}
/* else register address */
break;
case 1: /* Effective address + 8 bits displacement */
pCpu->i32SibDisp = (int8_t)DISReadByte(pCpu, uCodePtr);
size += sizeof(char);
break;
case 2: /* Effective address + 32 bits displacement */
pCpu->i32SibDisp = DISReadDWord(pCpu, uCodePtr);
size += sizeof(int32_t);
break;
case 3: /* registers */
break;
}
}
else
{
/* 16 bits mode */
switch (mod)
{
case 0: /* Effective address */
if (rm == 6) {
pCpu->i32SibDisp = DISReadWord(pCpu, uCodePtr);
size += sizeof(uint16_t);
}
/* else register address */
break;
case 1: /* Effective address + 8 bits displacement */
pCpu->i32SibDisp = (int8_t)DISReadByte(pCpu, uCodePtr);
size += sizeof(char);
break;
case 2: /* Effective address + 32 bits displacement */
pCpu->i32SibDisp = (int16_t)DISReadWord(pCpu, uCodePtr);
size += sizeof(uint16_t);
break;
case 3: /* registers */
break;
}
}
return size;
}
//*****************************************************************************
// Query the size of the ModRM parameters and fetch the immediate data (if any)
//*****************************************************************************
unsigned QueryModRM_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu, unsigned *pSibInc)
{
unsigned sibinc;
unsigned size = 0;
// unsigned reg = pCpu->ModRM.Bits.Reg;
unsigned mod = pCpu->ModRM.Bits.Mod;
unsigned rm = pCpu->ModRM.Bits.Rm;
if (!pSibInc)
pSibInc = &sibinc;
*pSibInc = 0;
if (pCpu->addrmode != DISCPUMODE_16BIT)
{
Assert(pCpu->addrmode == DISCPUMODE_32BIT || pCpu->addrmode == DISCPUMODE_64BIT);
/*
* Note: displacements in long mode are 8 or 32 bits and sign-extended to 64 bits
*/
if (mod != 3 && rm == 4)
{ /* SIB byte follows ModRM */
*pSibInc = ParseSIB_SizeOnly(uCodePtr, pOp, pParam, pCpu);
uCodePtr += *pSibInc;
size += *pSibInc;
}
switch (mod)
{
case 0: //effective address
if (rm == 5) { /* 32 bits displacement */
size += sizeof(int32_t);
}
/* else register address */
break;
case 1: /* Effective address + 8 bits displacement */
size += sizeof(char);
break;
case 2: /* Effective address + 32 bits displacement */
size += sizeof(int32_t);
break;
case 3: /* registers */
break;
}
}
else
{
/* 16 bits mode */
switch (mod)
{
case 0: //effective address
if (rm == 6) {
size += sizeof(uint16_t);
}
/* else register address */
break;
case 1: /* Effective address + 8 bits displacement */
size += sizeof(char);
break;
case 2: /* Effective address + 32 bits displacement */
size += sizeof(uint16_t);
break;
case 3: /* registers */
break;
}
}
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseIllegal(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
AssertFailed();
return 0;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseModRM(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = sizeof(uint8_t); //ModRM byte
unsigned sibinc, ModRM;
ModRM = DISReadByte(pCpu, uCodePtr);
uCodePtr += sizeof(uint8_t);
pCpu->ModRM.Bits.Rm = MODRM_RM(ModRM);
pCpu->ModRM.Bits.Mod = MODRM_MOD(ModRM);
pCpu->ModRM.Bits.Reg = MODRM_REG(ModRM);
/* Disregard the mod bits for certain instructions (mov crx, mov drx).
*
* From the AMD manual:
* This instruction is always treated as a register-to-register (MOD = 11) instruction, regardless of the
* encoding of the MOD field in the MODR/M byte.
*/
if (pOp->optype & DISOPTYPE_MOD_FIXED_11)
pCpu->ModRM.Bits.Mod = 3;
if (pCpu->prefix & DISPREFIX_REX)
{
Assert(pCpu->mode == DISCPUMODE_64BIT);
/* REX.R extends the Reg field. */
pCpu->ModRM.Bits.Reg |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_R)) << 3);
/* REX.B extends the Rm field if there is no SIB byte nor a 32 bits displacement */
if (!( pCpu->ModRM.Bits.Mod != 3
&& pCpu->ModRM.Bits.Rm == 4)
&&
!( pCpu->ModRM.Bits.Mod == 0
&& pCpu->ModRM.Bits.Rm == 5))
{
pCpu->ModRM.Bits.Rm |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_B)) << 3);
}
}
size += QueryModRM(uCodePtr, pOp, pParam, pCpu, &sibinc);
uCodePtr += sibinc;
UseModRM(uCodePtr, pOp, pParam, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseModRM_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = sizeof(uint8_t); //ModRM byte
unsigned sibinc, ModRM;
ModRM = DISReadByte(pCpu, uCodePtr);
uCodePtr += sizeof(uint8_t);
pCpu->ModRM.Bits.Rm = MODRM_RM(ModRM);
pCpu->ModRM.Bits.Mod = MODRM_MOD(ModRM);
pCpu->ModRM.Bits.Reg = MODRM_REG(ModRM);
/* Disregard the mod bits for certain instructions (mov crx, mov drx).
*
* From the AMD manual:
* This instruction is always treated as a register-to-register (MOD = 11) instruction, regardless of the
* encoding of the MOD field in the MODR/M byte.
*/
if (pOp->optype & DISOPTYPE_MOD_FIXED_11)
pCpu->ModRM.Bits.Mod = 3;
if (pCpu->prefix & DISPREFIX_REX)
{
Assert(pCpu->mode == DISCPUMODE_64BIT);
/* REX.R extends the Reg field. */
pCpu->ModRM.Bits.Reg |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_R)) << 3);
/* REX.B extends the Rm field if there is no SIB byte nor a 32 bits displacement */
if (!( pCpu->ModRM.Bits.Mod != 3
&& pCpu->ModRM.Bits.Rm == 4)
&&
!( pCpu->ModRM.Bits.Mod == 0
&& pCpu->ModRM.Bits.Rm == 5))
{
pCpu->ModRM.Bits.Rm |= ((!!(pCpu->prefix_rex & DISPREFIX_REX_FLAGS_B)) << 3);
}
}
size += QueryModRM_SizeOnly(uCodePtr, pOp, pParam, pCpu, &sibinc);
uCodePtr += sibinc;
/* UseModRM is not necessary here; we're only interested in the opcode size */
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseModFence(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
////AssertMsgFailed(("??\n"));
//nothing to do apparently
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return 0;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmByte(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
pParam->parval = DISReadByte(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE8;
pParam->cb = sizeof(uint8_t);
return sizeof(uint8_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmByte_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return sizeof(uint8_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmByteSX(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
if (pCpu->opmode == DISCPUMODE_32BIT)
{
pParam->parval = (uint32_t)(int8_t)DISReadByte(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE32_SX8;
pParam->cb = sizeof(uint32_t);
}
else
if (pCpu->opmode == DISCPUMODE_64BIT)
{
pParam->parval = (uint64_t)(int8_t)DISReadByte(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE64_SX8;
pParam->cb = sizeof(uint64_t);
}
else
{
pParam->parval = (uint16_t)(int8_t)DISReadByte(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE16_SX8;
pParam->cb = sizeof(uint16_t);
}
return sizeof(uint8_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmByteSX_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return sizeof(uint8_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmUshort(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
pParam->parval = DISReadWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE16;
pParam->cb = sizeof(uint16_t);
return sizeof(uint16_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmUshort_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return sizeof(uint16_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmUlong(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
pParam->parval = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE32;
pParam->cb = sizeof(uint32_t);
return sizeof(uint32_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmUlong_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return sizeof(uint32_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmQword(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
pParam->parval = DISReadQWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE64;
pParam->cb = sizeof(uint64_t);
return sizeof(uint64_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmQword_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return sizeof(uint64_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmV(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
if (pCpu->opmode == DISCPUMODE_32BIT)
{
pParam->parval = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE32;
pParam->cb = sizeof(uint32_t);
return sizeof(uint32_t);
}
if (pCpu->opmode == DISCPUMODE_64BIT)
{
pParam->parval = DISReadQWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE64;
pParam->cb = sizeof(uint64_t);
return sizeof(uint64_t);
}
pParam->parval = DISReadWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE16;
pParam->cb = sizeof(uint16_t);
return sizeof(uint16_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmV_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam);
if (pCpu->opmode == DISCPUMODE_32BIT)
return sizeof(uint32_t);
if (pCpu->opmode == DISCPUMODE_64BIT)
return sizeof(uint64_t);
return sizeof(uint16_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmZ(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
/* Word for 16-bit operand-size or doubleword for 32 or 64-bit operand-size. */
if (pCpu->opmode == DISCPUMODE_16BIT)
{
pParam->parval = DISReadWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE16;
pParam->cb = sizeof(uint16_t);
return sizeof(uint16_t);
}
/* 64 bits op mode means *sign* extend to 64 bits. */
if (pCpu->opmode == DISCPUMODE_64BIT)
{
pParam->parval = (uint64_t)(int32_t)DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE64;
pParam->cb = sizeof(uint64_t);
}
else
{
pParam->parval = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE32;
pParam->cb = sizeof(uint32_t);
}
return sizeof(uint32_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmZ_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam);
/* Word for 16-bit operand-size or doubleword for 32 or 64-bit operand-size. */
if (pCpu->opmode == DISCPUMODE_16BIT)
return sizeof(uint16_t);
return sizeof(uint32_t);
}
//*****************************************************************************
// Relative displacement for branches (rel. to next instruction)
//*****************************************************************************
unsigned ParseImmBRel(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
pParam->parval = DISReadByte(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE8_REL;
pParam->cb = sizeof(uint8_t);
return sizeof(char);
}
//*****************************************************************************
// Relative displacement for branches (rel. to next instruction)
//*****************************************************************************
unsigned ParseImmBRel_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam); NOREF(pCpu);
return sizeof(char);
}
//*****************************************************************************
// Relative displacement for branches (rel. to next instruction)
//*****************************************************************************
unsigned ParseImmVRel(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(pOp);
if (pCpu->opmode == DISCPUMODE_32BIT)
{
pParam->parval = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE32_REL;
pParam->cb = sizeof(int32_t);
return sizeof(int32_t);
}
if (pCpu->opmode == DISCPUMODE_64BIT)
{
/* 32 bits relative immediate sign extended to 64 bits. */
pParam->parval = (uint64_t)(int32_t)DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE64_REL;
pParam->cb = sizeof(int64_t);
return sizeof(int32_t);
}
pParam->parval = DISReadWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE16_REL;
pParam->cb = sizeof(int16_t);
return sizeof(int16_t);
}
//*****************************************************************************
// Relative displacement for branches (rel. to next instruction)
//*****************************************************************************
unsigned ParseImmVRel_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp); NOREF(pParam);
if (pCpu->opmode == DISCPUMODE_16BIT)
return sizeof(int16_t);
/* Both 32 & 64 bits mode use 32 bits relative immediates. */
return sizeof(int32_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmAddr(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_p)
{
/* far 16:32 pointer */
pParam->parval = DISReadDWord(pCpu, uCodePtr);
*((uint32_t*)&pParam->parval+1) = DISReadWord(pCpu, uCodePtr+sizeof(uint32_t));
pParam->flags |= DISUSE_IMMEDIATE_ADDR_16_32;
pParam->cb = sizeof(uint16_t) + sizeof(uint32_t);
return sizeof(uint32_t) + sizeof(uint16_t);
}
/*
* near 32 bits pointer
*
* Note: used only in "mov al|ax|eax, [Addr]" and "mov [Addr], al|ax|eax"
* so we treat it like displacement.
*/
pParam->uDisp.i32 = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_DISPLACEMENT32;
pParam->cb = sizeof(uint32_t);
return sizeof(uint32_t);
}
if (pCpu->addrmode == DISCPUMODE_64BIT)
{
Assert(OP_PARM_VSUBTYPE(pParam->param) != OP_PARM_p);
/*
* near 64 bits pointer
*
* Note: used only in "mov al|ax|eax, [Addr]" and "mov [Addr], al|ax|eax"
* so we treat it like displacement.
*/
pParam->uDisp.i64 = DISReadQWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_DISPLACEMENT64;
pParam->cb = sizeof(uint64_t);
return sizeof(uint64_t);
}
if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_p)
{
/* far 16:16 pointer */
pParam->parval = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE_ADDR_16_16;
pParam->cb = 2*sizeof(uint16_t);
return sizeof(uint32_t);
}
/*
* near 16 bits pointer
*
* Note: used only in "mov al|ax|eax, [Addr]" and "mov [Addr], al|ax|eax"
* so we treat it like displacement.
*/
pParam->uDisp.i16 = DISReadWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_DISPLACEMENT16;
pParam->cb = sizeof(uint16_t);
return sizeof(uint16_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmAddr_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp);
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_p)
{// far 16:32 pointer
return sizeof(uint32_t) + sizeof(uint16_t);
}
else
{// near 32 bits pointer
return sizeof(uint32_t);
}
}
if (pCpu->addrmode == DISCPUMODE_64BIT)
{
Assert(OP_PARM_VSUBTYPE(pParam->param) != OP_PARM_p);
return sizeof(uint64_t);
}
else
{
if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_p)
{// far 16:16 pointer
return sizeof(uint32_t);
}
else
{// near 16 bits pointer
return sizeof(uint16_t);
}
}
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmAddrF(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
// immediate far pointers - only 16:16 or 16:32; determined by operand, *not* address size!
Assert(pCpu->opmode == DISCPUMODE_16BIT || pCpu->opmode == DISCPUMODE_32BIT);
Assert(OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_p);
if (pCpu->opmode == DISCPUMODE_32BIT)
{
// far 16:32 pointer
pParam->parval = DISReadDWord(pCpu, uCodePtr);
*((uint32_t*)&pParam->parval+1) = DISReadWord(pCpu, uCodePtr+sizeof(uint32_t));
pParam->flags |= DISUSE_IMMEDIATE_ADDR_16_32;
pParam->cb = sizeof(uint16_t) + sizeof(uint32_t);
return sizeof(uint32_t) + sizeof(uint16_t);
}
// far 16:16 pointer
pParam->parval = DISReadDWord(pCpu, uCodePtr);
pParam->flags |= DISUSE_IMMEDIATE_ADDR_16_16;
pParam->cb = 2*sizeof(uint16_t);
return sizeof(uint32_t);
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmAddrF_SizeOnly(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp);
// immediate far pointers - only 16:16 or 16:32
Assert(pCpu->opmode == DISCPUMODE_16BIT || pCpu->opmode == DISCPUMODE_32BIT);
Assert(OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_p);
if (pCpu->opmode == DISCPUMODE_32BIT)
{
// far 16:32 pointer
return sizeof(uint32_t) + sizeof(uint16_t);
}
else
{
// far 16:16 pointer
return sizeof(uint32_t);
}
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseFixedReg(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr);
/*
* Sets up flags for stored in OPC fixed registers.
*/
if (pParam->param == OP_PARM_NONE)
{
/* No parameter at all. */
return 0;
}
AssertCompile(OP_PARM_REG_GEN32_END < OP_PARM_REG_SEG_END);
AssertCompile(OP_PARM_REG_SEG_END < OP_PARM_REG_GEN16_END);
AssertCompile(OP_PARM_REG_GEN16_END < OP_PARM_REG_GEN8_END);
AssertCompile(OP_PARM_REG_GEN8_END < OP_PARM_REG_FP_END);
if (pParam->param <= OP_PARM_REG_GEN32_END)
{
/* 32-bit EAX..EDI registers. */
if (pCpu->opmode == DISCPUMODE_32BIT)
{
/* Use 32-bit registers. */
pParam->base.reg_gen = pParam->param - OP_PARM_REG_GEN32_START;
pParam->flags |= DISUSE_REG_GEN32;
pParam->cb = 4;
}
else
if (pCpu->opmode == DISCPUMODE_64BIT)
{
/* Use 64-bit registers. */
pParam->base.reg_gen = pParam->param - OP_PARM_REG_GEN32_START;
if ( (pOp->optype & DISOPTYPE_REXB_EXTENDS_OPREG)
&& pParam == &pCpu->param1 /* ugly assumption that it only applies to the first parameter */
&& (pCpu->prefix & DISPREFIX_REX)
&& (pCpu->prefix_rex & DISPREFIX_REX_FLAGS))
pParam->base.reg_gen += 8;
pParam->flags |= DISUSE_REG_GEN64;
pParam->cb = 8;
}
else
{
/* Use 16-bit registers. */
pParam->base.reg_gen = pParam->param - OP_PARM_REG_GEN32_START;
pParam->flags |= DISUSE_REG_GEN16;
pParam->cb = 2;
pParam->param = pParam->param - OP_PARM_REG_GEN32_START + OP_PARM_REG_GEN16_START;
}
}
else
if (pParam->param <= OP_PARM_REG_SEG_END)
{
/* Segment ES..GS registers. */
pParam->base.reg_seg = (DIS_SELREG)(pParam->param - OP_PARM_REG_SEG_START);
pParam->flags |= DISUSE_REG_SEG;
pParam->cb = 2;
}
else
if (pParam->param <= OP_PARM_REG_GEN16_END)
{
/* 16-bit AX..DI registers. */
pParam->base.reg_gen = pParam->param - OP_PARM_REG_GEN16_START;
pParam->flags |= DISUSE_REG_GEN16;
pParam->cb = 2;
}
else
if (pParam->param <= OP_PARM_REG_GEN8_END)
{
/* 8-bit AL..DL, AH..DH registers. */
pParam->base.reg_gen = pParam->param - OP_PARM_REG_GEN8_START;
pParam->flags |= DISUSE_REG_GEN8;
pParam->cb = 1;
if (pCpu->opmode == DISCPUMODE_64BIT)
{
if ( (pOp->optype & DISOPTYPE_REXB_EXTENDS_OPREG)
&& pParam == &pCpu->param1 /* ugly assumption that it only applies to the first parameter */
&& (pCpu->prefix & DISPREFIX_REX)
&& (pCpu->prefix_rex & DISPREFIX_REX_FLAGS))
pParam->base.reg_gen += 8; /* least significant byte of R8-R15 */
}
}
else
if (pParam->param <= OP_PARM_REG_FP_END)
{
/* FPU registers. */
pParam->base.reg_fp = pParam->param - OP_PARM_REG_FP_START;
pParam->flags |= DISUSE_REG_FP;
pParam->cb = 10;
}
Assert(!(pParam->param >= OP_PARM_REG_GEN64_START && pParam->param <= OP_PARM_REG_GEN64_END));
/* else - not supported for now registers. */
return 0;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseXv(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr);
pParam->flags |= DISUSE_POINTER_DS_BASED;
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
pParam->base.reg_gen = USE_REG_ESI;
pParam->flags |= DISUSE_REG_GEN32;
}
else
if (pCpu->addrmode == DISCPUMODE_64BIT)
{
pParam->base.reg_gen = USE_REG_RSI;
pParam->flags |= DISUSE_REG_GEN64;
}
else
{
pParam->base.reg_gen = USE_REG_SI;
pParam->flags |= DISUSE_REG_GEN16;
}
return 0; //no additional opcode bytes
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseXb(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp);
pParam->flags |= DISUSE_POINTER_DS_BASED;
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
pParam->base.reg_gen = USE_REG_ESI;
pParam->flags |= DISUSE_REG_GEN32;
}
else
if (pCpu->addrmode == DISCPUMODE_64BIT)
{
pParam->base.reg_gen = USE_REG_RSI;
pParam->flags |= DISUSE_REG_GEN64;
}
else
{
pParam->base.reg_gen = USE_REG_SI;
pParam->flags |= DISUSE_REG_GEN16;
}
return 0; //no additional opcode bytes
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseYv(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr);
pParam->flags |= DISUSE_POINTER_ES_BASED;
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
pParam->base.reg_gen = USE_REG_EDI;
pParam->flags |= DISUSE_REG_GEN32;
}
else
if (pCpu->addrmode == DISCPUMODE_64BIT)
{
pParam->base.reg_gen = USE_REG_RDI;
pParam->flags |= DISUSE_REG_GEN64;
}
else
{
pParam->base.reg_gen = USE_REG_DI;
pParam->flags |= DISUSE_REG_GEN16;
}
return 0; //no additional opcode bytes
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseYb(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
NOREF(uCodePtr); NOREF(pOp);
pParam->flags |= DISUSE_POINTER_ES_BASED;
if (pCpu->addrmode == DISCPUMODE_32BIT)
{
pParam->base.reg_gen = USE_REG_EDI;
pParam->flags |= DISUSE_REG_GEN32;
}
else
if (pCpu->addrmode == DISCPUMODE_64BIT)
{
pParam->base.reg_gen = USE_REG_RDI;
pParam->flags |= DISUSE_REG_GEN64;
}
else
{
pParam->base.reg_gen = USE_REG_DI;
pParam->flags |= DISUSE_REG_GEN16;
}
return 0; //no additional opcode bytes
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseTwoByteEsc(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
const OPCODE *pOpcode;
int size = sizeof(uint8_t);
NOREF(pOp); NOREF(pParam);
/* 2nd byte */
pCpu->opcode = DISReadByte(pCpu, uCodePtr);
/* default to the non-prefixed table. */
pOpcode = &g_aTwoByteMapX86[pCpu->opcode];
/* Handle opcode table extensions that rely on the address, repe or repne prefix byte. */
/** @todo Should we take the first or last prefix byte in case of multiple prefix bytes??? */
if (pCpu->lastprefix)
{
switch (pCpu->lastprefix)
{
case OP_OPSIZE: /* 0x66 */
if (g_aTwoByteMapX86_PF66[pCpu->opcode].opcode != OP_INVALID)
{
/* Table entry is valid, so use the extension table. */
pOpcode = &g_aTwoByteMapX86_PF66[pCpu->opcode];
/* Cancel prefix changes. */
pCpu->prefix &= ~DISPREFIX_OPSIZE;
pCpu->opmode = pCpu->mode;
}
break;
case OP_REPNE: /* 0xF2 */
if (g_aTwoByteMapX86_PFF2[pCpu->opcode].opcode != OP_INVALID)
{
/* Table entry is valid, so use the extension table. */
pOpcode = &g_aTwoByteMapX86_PFF2[pCpu->opcode];
/* Cancel prefix changes. */
pCpu->prefix &= ~DISPREFIX_REPNE;
}
break;
case OP_REPE: /* 0xF3 */
if (g_aTwoByteMapX86_PFF3[pCpu->opcode].opcode != OP_INVALID)
{
/* Table entry is valid, so use the extension table. */
pOpcode = &g_aTwoByteMapX86_PFF3[pCpu->opcode];
/* Cancel prefix changes. */
pCpu->prefix &= ~DISPREFIX_REP;
}
break;
}
}
size += ParseInstruction(uCodePtr+size, pOpcode, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseThreeByteEsc4(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
const OPCODE *pOpcode;
int size = sizeof(uint8_t);
NOREF(pOp); NOREF(pParam);
/* 3rd byte */
pCpu->opcode = DISReadByte(pCpu, uCodePtr);
/* default to the non-prefixed table. */
if (g_apThreeByteMapX86_0F38[pCpu->opcode >> 4])
{
pOpcode = g_apThreeByteMapX86_0F38[pCpu->opcode >> 4];
pOpcode = &pOpcode[pCpu->opcode & 0xf];
}
else
pOpcode = &g_InvalidOpcode[0];
/* Handle opcode table extensions that rely on the address, repne prefix byte. */
/** @todo Should we take the first or last prefix byte in case of multiple prefix bytes??? */
switch (pCpu->lastprefix)
{
case OP_OPSIZE: /* 0x66 */
if (g_apThreeByteMapX86_660F38[pCpu->opcode >> 4])
{
pOpcode = g_apThreeByteMapX86_660F38[pCpu->opcode >> 4];
pOpcode = &pOpcode[pCpu->opcode & 0xf];
if (pOpcode->opcode != OP_INVALID)
{
/* Table entry is valid, so use the extension table. */
/* Cancel prefix changes. */
pCpu->prefix &= ~DISPREFIX_OPSIZE;
pCpu->opmode = pCpu->mode;
}
}
break;
case OP_REPNE: /* 0xF2 */
if (g_apThreeByteMapX86_F20F38[pCpu->opcode >> 4])
{
pOpcode = g_apThreeByteMapX86_F20F38[pCpu->opcode >> 4];
pOpcode = &pOpcode[pCpu->opcode & 0xf];
if (pOpcode->opcode != OP_INVALID)
{
/* Table entry is valid, so use the extension table. */
/* Cancel prefix changes. */
pCpu->prefix &= ~DISPREFIX_REPNE;
}
}
break;
}
size += ParseInstruction(uCodePtr+size, pOpcode, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseThreeByteEsc5(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
const OPCODE *pOpcode;
int size = sizeof(uint8_t);
NOREF(pOp); NOREF(pParam);
/* 3rd byte */
pCpu->opcode = DISReadByte(pCpu, uCodePtr);
/** @todo Should we take the first or last prefix byte in case of multiple prefix bytes??? */
Assert(pCpu->lastprefix == OP_OPSIZE);
/* default to the non-prefixed table. */
if (g_apThreeByteMapX86_660F3A[pCpu->opcode >> 4])
{
pOpcode = g_apThreeByteMapX86_660F3A[pCpu->opcode >> 4];
pOpcode = &pOpcode[pCpu->opcode & 0xf];
if (pOpcode->opcode != OP_INVALID)
{
/* Table entry is valid, so use the extension table. */
/* Cancel prefix changes. */
pCpu->prefix &= ~DISPREFIX_OPSIZE;
pCpu->opmode = pCpu->mode;
}
}
else
pOpcode = &g_InvalidOpcode[0];
size += ParseInstruction(uCodePtr+size, pOpcode, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseNopPause(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0;
NOREF(pParam);
if (pCpu->prefix & DISPREFIX_REP)
{
pOp = &g_aMapX86_NopPause[1]; /* PAUSE */
pCpu->prefix &= ~DISPREFIX_REP;
}
else
pOp = &g_aMapX86_NopPause[0]; /* NOP */
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseImmGrpl(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
int idx = (pCpu->opcode - 0x80) * 8;
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group1[idx+reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseShiftGrp2(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
int idx;
unsigned size = 0, modrm, reg;
NOREF(pParam);
switch (pCpu->opcode)
{
case 0xC0:
case 0xC1:
idx = (pCpu->opcode - 0xC0)*8;
break;
case 0xD0:
case 0xD1:
case 0xD2:
case 0xD3:
idx = (pCpu->opcode - 0xD0 + 2)*8;
break;
default:
AssertMsgFailed(("Oops\n"));
return sizeof(uint8_t);
}
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group2[idx+reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp3(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
int idx = (pCpu->opcode - 0xF6) * 8;
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group3[idx+reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp4(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group4[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp5(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group5[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
// 0xF 0xF [ModRM] [SIB] [displacement] imm8_opcode
// It would appear the ModRM byte must always be present. How else can you
// determine the offset of the imm8_opcode byte otherwise?
//
//*****************************************************************************
unsigned Parse3DNow(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrmsize;
#ifdef DEBUG_Sander
//needs testing
AssertMsgFailed(("Test me\n"));
#endif
unsigned ModRM = DISReadByte(pCpu, uCodePtr);
pCpu->ModRM.Bits.Rm = MODRM_RM(ModRM);
pCpu->ModRM.Bits.Mod = MODRM_MOD(ModRM);
pCpu->ModRM.Bits.Reg = MODRM_REG(ModRM);
modrmsize = QueryModRM(uCodePtr+sizeof(uint8_t), pOp, pParam, pCpu);
uint8_t opcode = DISReadByte(pCpu, uCodePtr+sizeof(uint8_t)+modrmsize);
pOp = (PCOPCODE)&g_aTwoByteMapX86_3DNow[opcode];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
{
#ifdef DEBUG_Sander /* bird, 2005-06-28: Alex is getting this during full installation of win2ksp4. */
AssertMsgFailed(("Oops!\n")); //shouldn't happen!
#endif
size = sizeof(uint8_t); //ModRM byte
}
size += ParseInstruction(uCodePtr, pOp, pCpu);
size += sizeof(uint8_t); //imm8_opcode uint8_t
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp6(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group6[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp7(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg, rm, mod;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
mod = MODRM_MOD(modrm);
reg = MODRM_REG(modrm);
rm = MODRM_RM(modrm);
if (mod == 3 && rm == 0)
pOp = (PCOPCODE)&g_aMapX86_Group7_mod11_rm000[reg];
else
if (mod == 3 && rm == 1)
pOp = (PCOPCODE)&g_aMapX86_Group7_mod11_rm001[reg];
else
pOp = (PCOPCODE)&g_aMapX86_Group7_mem[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp8(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group8[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp9(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group9[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp10(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group10[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp12(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
if (pCpu->prefix & DISPREFIX_OPSIZE)
reg += 8; //2nd table
pOp = (PCOPCODE)&g_aMapX86_Group12[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp13(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
if (pCpu->prefix & DISPREFIX_OPSIZE)
reg += 8; //2nd table
pOp = (PCOPCODE)&g_aMapX86_Group13[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp14(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
if (pCpu->prefix & DISPREFIX_OPSIZE)
reg += 8; //2nd table
pOp = (PCOPCODE)&g_aMapX86_Group14[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp15(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg, mod, rm;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
mod = MODRM_MOD(modrm);
reg = MODRM_REG(modrm);
rm = MODRM_RM(modrm);
if (mod == 3 && rm == 0)
pOp = (PCOPCODE)&g_aMapX86_Group15_mod11_rm000[reg];
else
pOp = (PCOPCODE)&g_aMapX86_Group15_mem[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
//*****************************************************************************
unsigned ParseGrp16(RTUINTPTR uCodePtr, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu)
{
unsigned size = 0, modrm, reg;
NOREF(pParam);
modrm = DISReadByte(pCpu, uCodePtr);
reg = MODRM_REG(modrm);
pOp = (PCOPCODE)&g_aMapX86_Group16[reg];
//little hack to make sure the ModRM byte is included in the returned size
if (pOp->idxParse1 != IDX_ParseModRM && pOp->idxParse2 != IDX_ParseModRM)
size = sizeof(uint8_t); //ModRM byte
size += ParseInstruction(uCodePtr, pOp, pCpu);
return size;
}
//*****************************************************************************
#if !defined(DIS_CORE_ONLY) && defined(LOG_ENABLED)
static const char *szModRMReg8[] = {"AL", "CL", "DL", "BL", "AH", "CH", "DH", "BH", "R8B", "R9B", "R10B", "R11B", "R12B", "R13B", "R14B", "R15B", "SPL", "BPL", "SIL", "DIL"};
static const char *szModRMReg16[] = {"AX", "CX", "DX", "BX", "SP", "BP", "SI", "DI", "R8W", "R9W", "R10W", "R11W", "R12W", "R13W", "R14W", "R15W"};
static const char *szModRMReg32[] = {"EAX", "ECX", "EDX", "EBX", "ESP", "EBP", "ESI", "EDI", "R8D", "R9D", "R10D", "R11D", "R12D", "R13D", "R14D", "R15D"};
static const char *szModRMReg64[] = {"RAX", "RCX", "RDX", "RBX", "RSP", "RBP", "RSI", "RDI", "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15"};
static const char *szModRMReg1616[8] = {"BX+SI", "BX+DI", "BP+SI", "BP+DI", "SI", "DI", "BP", "BX"};
#endif
static const char *szModRMSegReg[6] = {"ES", "CS", "SS", "DS", "FS", "GS"};
static const int BaseModRMReg16[8] = { USE_REG_BX, USE_REG_BX, USE_REG_BP, USE_REG_BP, USE_REG_SI, USE_REG_DI, USE_REG_BP, USE_REG_BX};
static const int IndexModRMReg16[4] = { USE_REG_SI, USE_REG_DI, USE_REG_SI, USE_REG_DI};
//*****************************************************************************
static void disasmModRMReg(PDISCPUSTATE pCpu, PCOPCODE pOp, unsigned idx, POP_PARAMETER pParam, int fRegAddr)
{
int subtype, type, mod;
NOREF(pOp); NOREF(pCpu);
mod = pCpu->ModRM.Bits.Mod;
type = OP_PARM_VTYPE(pParam->param);
subtype = OP_PARM_VSUBTYPE(pParam->param);
if (fRegAddr)
subtype = (pCpu->addrmode == DISCPUMODE_64BIT) ? OP_PARM_q : OP_PARM_d;
else
if (subtype == OP_PARM_v || subtype == OP_PARM_NONE)
{
switch(pCpu->opmode)
{
case DISCPUMODE_32BIT:
subtype = OP_PARM_d;
break;
case DISCPUMODE_64BIT:
subtype = OP_PARM_q;
break;
case DISCPUMODE_16BIT:
subtype = OP_PARM_w;
break;
default:
/* make gcc happy */
break;
}
}
switch (subtype)
{
case OP_PARM_b:
Assert(idx < (pCpu->prefix & DISPREFIX_REX) ? 16 : 8);
/* AH, BH, CH & DH map to DIL, SIL, EBL & SPL when a rex prefix is present. */
/* Intel� 64 and IA-32 Architectures Software Developer�s Manual: 3.4.1.1 */
if ( (pCpu->prefix & DISPREFIX_REX)
&& idx >= USE_REG_AH
&& idx <= USE_REG_BH)
{
idx += (USE_REG_SPL - USE_REG_AH);
}
pParam->flags |= DISUSE_REG_GEN8;
pParam->base.reg_gen = idx;
break;
case OP_PARM_w:
Assert(idx < (pCpu->prefix & DISPREFIX_REX) ? 16 : 8);
pParam->flags |= DISUSE_REG_GEN16;
pParam->base.reg_gen = idx;
break;
case OP_PARM_d:
Assert(idx < (pCpu->prefix & DISPREFIX_REX) ? 16 : 8);
pParam->flags |= DISUSE_REG_GEN32;
pParam->base.reg_gen = idx;
break;
case OP_PARM_q:
pParam->flags |= DISUSE_REG_GEN64;
pParam->base.reg_gen = idx;
break;
default:
Log(("disasmModRMReg %x:%x failed!!\n", type, subtype));
pCpu->rc = VERR_DIS_INVALID_MODRM;
break;
}
}
//*****************************************************************************
//*****************************************************************************
static void disasmModRMReg16(PDISCPUSTATE pCpu, PCOPCODE pOp, unsigned idx, POP_PARAMETER pParam)
{
NOREF(pCpu); NOREF(pOp);
pParam->flags |= DISUSE_REG_GEN16;
pParam->base.reg_gen = BaseModRMReg16[idx];
if (idx < 4)
{
pParam->flags |= DISUSE_INDEX;
pParam->index.reg_gen = IndexModRMReg16[idx];
}
}
//*****************************************************************************
//*****************************************************************************
static void disasmModRMSReg(PDISCPUSTATE pCpu, PCOPCODE pOp, unsigned idx, POP_PARAMETER pParam)
{
NOREF(pOp);
if (idx >= RT_ELEMENTS(szModRMSegReg))
{
Log(("disasmModRMSReg %d failed!!\n", idx));
pCpu->rc = VERR_DIS_INVALID_PARAMETER;
return;
}
pParam->flags |= DISUSE_REG_SEG;
pParam->base.reg_seg = (DIS_SELREG)idx;
}
/**
* Slow path for storing instruction bytes.
*
* @param pCpu The disassembler state.
* @param uAddress The address.
* @param pbSrc The bytes.
* @param cbSrc The number of bytes.
*/
DECL_NO_INLINE(static, void)
disStoreInstrBytesSlow(PDISCPUSTATE pCpu, RTUINTPTR uAddress, const uint8_t *pbSrc, size_t cbSrc)
{
/*
* Figure out which case it is.
*/
uint32_t cbInstr = pCpu->opsize;
RTUINTPTR off = uAddress - pCpu->uInstrAddr;
if (off < cbInstr)
{
if (off + cbSrc <= cbInstr)
{
AssertMsg(memcmp(&pCpu->abInstr[off], pbSrc, cbSrc) == 0,
("%RTptr LB %zx off=%RTptr (%.*Rhxs)", uAddress, cbSrc, off, cbInstr, pCpu->abInstr));
return; /* fully re-reading old stuff. */
}
/* Only partially re-reading stuff, skip ahead and add the rest. */
uint32_t cbAlreadyRead = cbInstr - (uint32_t)off;
Assert(memcmp(&pCpu->abInstr[off], pbSrc, cbAlreadyRead) == 0);
uAddress += cbAlreadyRead;
pbSrc += cbAlreadyRead;
cbSrc -= cbAlreadyRead;
}
if (off >= sizeof(cbInstr))
{
/* The instruction is too long! This shouldn't happen. */
AssertMsgFailed(("%RTptr LB %zx off=%RTptr (%.*Rhxs)", uAddress, cbSrc, off, cbInstr, pCpu->abInstr));
return;
}
else if (off > cbInstr)
{
/* Mind the gap - this shouldn't happen, but read the gap bytes if it does. */
AssertMsgFailed(("%RTptr LB %zx off=%RTptr (%.16Rhxs)", uAddress, cbSrc, off, cbInstr, pCpu->abInstr));
uint32_t cbGap = off - cbInstr;
int rc = pCpu->pfnReadBytes(pCpu, &pCpu->abInstr[cbInstr], uAddress - cbGap, cbGap);
if (RT_FAILURE(rc))
{
pCpu->rc = VERR_DIS_MEM_READ;
RT_BZERO(&pCpu->abInstr[cbInstr], cbGap);
}
pCpu->opsize = cbInstr = off;
}
/*
* Copy the bytes.
*/
if (off + cbSrc <= sizeof(pCpu->abInstr))
{
memcpy(&pCpu->abInstr[cbInstr], pbSrc, cbSrc);
pCpu->opsize = cbInstr + (uint32_t)cbSrc;
}
else
{
size_t cbToCopy = sizeof(pCpu->abInstr) - off;
memcpy(&pCpu->abInstr[cbInstr], pbSrc, cbToCopy);
pCpu->opsize = sizeof(pCpu->abInstr);
AssertMsgFailed(("%RTptr LB %zx off=%RTptr (%.*Rhxs)", uAddress, cbSrc, off, sizeof(pCpu->abInstr), pCpu->abInstr));
}
}
DECLCALLBACK(int) disReadBytesDefault(PDISCPUSTATE pCpu, uint8_t *pbDst, RTUINTPTR uSrcAddr, uint32_t cbToRead)
{
#ifdef IN_RING0
AssertMsgFailed(("DISReadWord with no read callback in ring 0!!\n"));
RT_BZERO(pbDst, cbToRead);
return VERR_DIS_NO_READ_CALLBACK;
#else
memcpy(pbDst, (void const *)(uintptr_t)uSrcAddr, cbToRead);
return VINF_SUCCESS;
#endif
}
//*****************************************************************************
/* Read functions for getting the opcode bytes */
//*****************************************************************************
uint8_t DISReadByte(PDISCPUSTATE pCpu, RTUINTPTR uAddress)
{
uint8_t bTemp = 0;
int rc = pCpu->pfnReadBytes(pCpu, &bTemp, uAddress, sizeof(bTemp));
if (RT_FAILURE(rc))
{
Log(("DISReadByte failed!!\n"));
pCpu->rc = VERR_DIS_MEM_READ;
}
/** @todo change this into reading directly into abInstr and use it as a
* cache. */
if (RT_LIKELY( pCpu->uInstrAddr + pCpu->opsize == uAddress
&& pCpu->opsize + sizeof(bTemp) < sizeof(pCpu->abInstr)))
pCpu->abInstr[pCpu->opsize++] = bTemp;
else
disStoreInstrBytesSlow(pCpu, uAddress, &bTemp, sizeof(bTemp));
return bTemp;
}
//*****************************************************************************
//*****************************************************************************
uint16_t DISReadWord(PDISCPUSTATE pCpu, RTUINTPTR uAddress)
{
RTUINT16U uTemp;
uTemp.u = 0;
int rc = pCpu->pfnReadBytes(pCpu, uTemp.au8, uAddress, sizeof(uTemp));
if (RT_FAILURE(rc))
{
Log(("DISReadWord failed!!\n"));
pCpu->rc = VERR_DIS_MEM_READ;
}
if (RT_LIKELY( pCpu->uInstrAddr + pCpu->opsize == uAddress
&& pCpu->opsize + sizeof(uTemp) < sizeof(pCpu->abInstr)))
{
pCpu->abInstr[pCpu->opsize ] = uTemp.au8[0];
pCpu->abInstr[pCpu->opsize + 1] = uTemp.au8[1];
pCpu->opsize += 2;
}
else
disStoreInstrBytesSlow(pCpu, uAddress, uTemp.au8, sizeof(uTemp));
return uTemp.u;
}
//*****************************************************************************
//*****************************************************************************
uint32_t DISReadDWord(PDISCPUSTATE pCpu, RTUINTPTR uAddress)
{
RTUINT32U uTemp;
uTemp.u = 0;
int rc = pCpu->pfnReadBytes(pCpu, uTemp.au8, uAddress, sizeof(uTemp));
if (RT_FAILURE(rc))
{
Log(("DISReadDWord failed!!\n"));
pCpu->rc = VERR_DIS_MEM_READ;
}
if (RT_LIKELY( pCpu->uInstrAddr + pCpu->opsize == uAddress
&& pCpu->opsize + sizeof(uTemp) < sizeof(pCpu->abInstr)))
{
pCpu->abInstr[pCpu->opsize ] = uTemp.au8[0];
pCpu->abInstr[pCpu->opsize + 1] = uTemp.au8[1];
pCpu->abInstr[pCpu->opsize + 2] = uTemp.au8[2];
pCpu->abInstr[pCpu->opsize + 3] = uTemp.au8[3];
pCpu->opsize += 4;
}
else
disStoreInstrBytesSlow(pCpu, uAddress, uTemp.au8, sizeof(uTemp));
return uTemp.u;
}
//*****************************************************************************
//*****************************************************************************
uint64_t DISReadQWord(PDISCPUSTATE pCpu, RTUINTPTR uAddress)
{
RTUINT64U uTemp;
uTemp.u = 0;
int rc = pCpu->pfnReadBytes(pCpu, uTemp.au8, uAddress, sizeof(uTemp));
if (RT_FAILURE(rc))
{
Log(("DISReadQWord %x failed!!\n", uAddress));
pCpu->rc = VERR_DIS_MEM_READ;
}
if (RT_LIKELY( pCpu->uInstrAddr + pCpu->opsize == uAddress
&& pCpu->opsize + sizeof(uTemp) < sizeof(pCpu->abInstr)))
{
pCpu->abInstr[pCpu->opsize ] = uTemp.au8[0];
pCpu->abInstr[pCpu->opsize + 1] = uTemp.au8[1];
pCpu->abInstr[pCpu->opsize + 2] = uTemp.au8[2];
pCpu->abInstr[pCpu->opsize + 3] = uTemp.au8[3];
pCpu->abInstr[pCpu->opsize + 4] = uTemp.au8[4];
pCpu->abInstr[pCpu->opsize + 5] = uTemp.au8[5];
pCpu->abInstr[pCpu->opsize + 6] = uTemp.au8[6];
pCpu->abInstr[pCpu->opsize + 7] = uTemp.au8[7];
pCpu->opsize += 4;
}
else
disStoreInstrBytesSlow(pCpu, uAddress, uTemp.au8, sizeof(uTemp));
return uTemp.u;
}
/**
* Validates the lock sequence.
*
* The AMD manual lists the following instructions:
* ADC
* ADD
* AND
* BTC
* BTR
* BTS
* CMPXCHG
* CMPXCHG8B
* CMPXCHG16B
* DEC
* INC
* NEG
* NOT
* OR
* SBB
* SUB
* XADD
* XCHG
* XOR
*
* @param pCpu Fully disassembled instruction.
*/
void disValidateLockSequence(PDISCPUSTATE pCpu)
{
Assert(pCpu->prefix & DISPREFIX_LOCK);
/*
* Filter out the valid lock sequences.
*/
switch (pCpu->pCurInstr->opcode)
{
/* simple: no variations */
case OP_CMPXCHG8B: /* == OP_CMPXCHG16B? */
return;
/* simple: /r - reject register destination. */
case OP_BTC:
case OP_BTR:
case OP_BTS:
case OP_CMPXCHG:
case OP_XADD:
if (pCpu->ModRM.Bits.Mod == 3)
break;
return;
/*
* Lots of variants but its sufficient to check that param 1
* is a memory operand.
*/
case OP_ADC:
case OP_ADD:
case OP_AND:
case OP_DEC:
case OP_INC:
case OP_NEG:
case OP_NOT:
case OP_OR:
case OP_SBB:
case OP_SUB:
case OP_XCHG:
case OP_XOR:
if (pCpu->param1.flags & (DISUSE_BASE | DISUSE_INDEX | DISUSE_DISPLACEMENT64 | DISUSE_DISPLACEMENT32 | DISUSE_DISPLACEMENT16 | DISUSE_DISPLACEMENT8 | DISUSE_RIPDISPLACEMENT32))
return;
break;
default:
break;
}
/*
* Invalid lock sequence, make it a OP_ILLUD2.
*/
pCpu->pCurInstr = &g_aTwoByteMapX86[11];
Assert(pCpu->pCurInstr->opcode == OP_ILLUD2);
}