2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-28 02:57:34 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-07 21:46:09 -07: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 07:05:40 -06:00
|
|
|
bool byteSwap;
|
2008-12-07 21:46:09 -07:00
|
|
|
u64 immediate;
|
|
|
|
s32 displacement;
|
2014-10-03 19:04:46 -06:00
|
|
|
|
|
|
|
bool operator==(const InstructionInfo &other) const;
|
2008-12-07 21:46:09 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ModRM
|
|
|
|
{
|
|
|
|
int mod, reg, rm;
|
|
|
|
ModRM(u8 modRM, u8 rex)
|
|
|
|
{
|
|
|
|
mod = modRM >> 6;
|
2015-02-15 12:43:31 -07:00
|
|
|
reg = ((modRM >> 3) & 7) | ((rex & 4) ? 8 : 0);
|
2008-12-07 21:46:09 -07:00
|
|
|
rm = modRM & 7;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-09-02 14:37:04 -06:00
|
|
|
enum AccessType
|
|
|
|
{
|
2008-12-07 21:46:09 -07:00
|
|
|
OP_ACCESS_READ = 0,
|
|
|
|
OP_ACCESS_WRITE = 1
|
|
|
|
};
|
|
|
|
|
2013-09-02 14:37:04 -06:00
|
|
|
bool DisassembleMov(const unsigned char *codePtr, InstructionInfo *info);
|