2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:09:55 +03:00
|
|
|
// 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;
|
2014-10-04 04:04:46 +03:00
|
|
|
|
|
|
|
bool operator==(const InstructionInfo &other) const;
|
2008-12-08 06:46:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ModRM
|
|
|
|
{
|
|
|
|
int mod, reg, rm;
|
|
|
|
ModRM(u8 modRM, u8 rex)
|
|
|
|
{
|
|
|
|
mod = modRM >> 6;
|
2015-02-15 21:43:31 +02:00
|
|
|
reg = ((modRM >> 3) & 7) | ((rex & 4) ? 8 : 0);
|
2008-12-08 06:46:09 +02:00
|
|
|
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);
|