2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-03-28 08:57:34 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 04:46:09 +00: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 13:05:40 +00:00
|
|
|
bool byteSwap;
|
2008-12-08 04:46:09 +00:00
|
|
|
u64 immediate;
|
|
|
|
s32 displacement;
|
2014-10-04 01:04:46 +00:00
|
|
|
|
|
|
|
bool operator==(const InstructionInfo &other) const;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 20:37:04 +00:00
|
|
|
enum AccessType
|
|
|
|
{
|
2008-12-08 04:46:09 +00:00
|
|
|
OP_ACCESS_READ = 0,
|
|
|
|
OP_ACCESS_WRITE = 1
|
|
|
|
};
|
|
|
|
|
2013-09-02 20:37:04 +00:00
|
|
|
bool DisassembleMov(const unsigned char *codePtr, InstructionInfo *info);
|