2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-03-28 10:57:34 +02:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 06:46:09 +02:00
|
|
|
|
|
|
|
struct InstructionInfo
|
|
|
|
{
|
|
|
|
int operandSize; //8, 16, 32, 64
|
|
|
|
int instructionSize;
|
|
|
|
int regOperandReg;
|
|
|
|
int otherReg;
|
|
|
|
int scaledReg;
|
|
|
|
bool zeroExtend;
|
|
|
|
bool signExtend;
|
|
|
|
bool hasImmediate;
|
|
|
|
bool isMemoryWrite;
|
2014-04-23 16:05:40 +03:00
|
|
|
bool byteSwap;
|
2008-12-08 06:46:09 +02:00
|
|
|
u64 immediate;
|
|
|
|
s32 displacement;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ModRM
|
|
|
|
{
|
|
|
|
int mod, reg, rm;
|
|
|
|
ModRM(u8 modRM, u8 rex)
|
|
|
|
{
|
|
|
|
mod = modRM >> 6;
|
|
|
|
reg = ((modRM >> 3) & 7) | ((rex & 4)?8:0);
|
|
|
|
rm = modRM & 7;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-09-02 23:37:04 +03:00
|
|
|
enum AccessType
|
|
|
|
{
|
2008-12-08 06:46:09 +02:00
|
|
|
OP_ACCESS_READ = 0,
|
|
|
|
OP_ACCESS_WRITE = 1
|
|
|
|
};
|
|
|
|
|
2013-09-02 23:37:04 +03:00
|
|
|
bool DisassembleMov(const unsigned char *codePtr, InstructionInfo *info);
|