2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2009-10-04 20:28:08 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
2009-07-03 20:12:33 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
/*
|
2009-11-06 21:45:30 +00:00
|
|
|
* ix86 core v0.9.1
|
2009-04-14 01:26:57 +00:00
|
|
|
*
|
|
|
|
* Original Authors (v0.6.2 and prior):
|
|
|
|
* linuzappz <linuzappz@pcsx.net>
|
|
|
|
* alexey silinov
|
|
|
|
* goldfinger
|
|
|
|
* zerofrog(@gmail.com)
|
|
|
|
*
|
2009-11-06 21:45:30 +00:00
|
|
|
* Authors of v0.9.1:
|
2009-04-14 01:26:57 +00:00
|
|
|
* Jake.Stine(@gmail.com)
|
|
|
|
* cottonvibes(@gmail.com)
|
|
|
|
* sudonim(1@gmail.com)
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PrecompiledHeader.h"
|
2009-07-03 00:49:40 +00:00
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
// defined in tools.cpp
|
2009-10-22 13:00:59 +00:00
|
|
|
//extern __aligned16 u64 g_globalXMMData[2*iREGCNT_XMM];
|
|
|
|
#include "tools.h"
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-04-14 01:26:57 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Notes on Thread Local Storage:
|
|
|
|
// * TLS is pretty simple, and "just works" from a programmer perspective, with only
|
|
|
|
// some minor additional computational overhead (see performance notes below).
|
|
|
|
//
|
|
|
|
// * MSVC and GCC handle TLS differently internally, but behavior to the programmer is
|
|
|
|
// generally identical.
|
|
|
|
//
|
|
|
|
// Performance Considerations:
|
2009-10-16 03:46:19 +00:00
|
|
|
// * GCC's implementation involves an extra dereference from normal storage (possibly
|
|
|
|
// applies to x86-32 only -- x86-64 is untested).
|
2009-04-14 01:26:57 +00:00
|
|
|
//
|
|
|
|
// * MSVC's implementation involves *two* extra dereferences from normal storage because
|
|
|
|
// it has to look up the TLS heap pointer from the Windows Thread Storage Area. (in
|
2009-10-16 03:46:19 +00:00
|
|
|
// generated ASM code, this dereference is denoted by access to the fs:[2ch] address),
|
2009-04-14 01:26:57 +00:00
|
|
|
//
|
|
|
|
// * However, in either case, the optimizer usually optimizes it to a register so the
|
2009-10-16 03:46:19 +00:00
|
|
|
// extra overhead is minimal over a series of instructions.
|
|
|
|
//
|
|
|
|
// MSVC Notes:
|
|
|
|
// * Important!! the Full Optimization [/Ox] option effectively disables TLS optimizations
|
|
|
|
// in MSVC 2008 and earlier, causing generally significant code bloat. Not tested in
|
|
|
|
// VC2010 yet.
|
|
|
|
//
|
|
|
|
// * VC2010 generally does a superior job of optimizing TLS across inlined functions and
|
|
|
|
// class methods, compared to predecessors.
|
2009-04-14 01:26:57 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
2009-12-24 22:22:34 +00:00
|
|
|
__tls_emit u8* x86Ptr;
|
|
|
|
__tls_emit XMMSSEType g_xmmtypes[iREGCNT_XMM] = { XMMT_INT };
|
2009-04-07 08:42:25 +00:00
|
|
|
|
2009-04-07 21:54:50 +00:00
|
|
|
namespace x86Emitter {
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
template void xWrite<u8>( u8 val );
|
|
|
|
template void xWrite<u16>( u16 val );
|
|
|
|
template void xWrite<u32>( u32 val );
|
|
|
|
template void xWrite<u64>( u64 val );
|
|
|
|
template void xWrite<u128>( u128 val );
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
__forceinline void xWrite8( u8 val )
|
|
|
|
{
|
|
|
|
xWrite( val );
|
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void xWrite16( u16 val )
|
2009-07-03 20:12:33 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite( val );
|
2009-07-03 20:12:33 +00:00
|
|
|
}
|
2009-04-24 11:25:10 +00:00
|
|
|
|
|
|
|
__forceinline void xWrite32( u32 val )
|
2009-07-03 20:12:33 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite( val );
|
2009-07-03 20:12:33 +00:00
|
|
|
}
|
2009-04-24 11:25:10 +00:00
|
|
|
|
|
|
|
__forceinline void xWrite64( u64 val )
|
2009-07-03 20:12:33 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite( val );
|
|
|
|
}
|
|
|
|
|
2009-11-07 15:46:09 +00:00
|
|
|
// Empty initializers are due to frivolously pointless GCC errors (it demands the
|
|
|
|
// objects be initialized even though they have no actual variable members).
|
|
|
|
|
|
|
|
const xAddressIndexer<ModSibBase> ptr = { };
|
|
|
|
const xAddressIndexer<ModSib128> ptr128 = { };
|
|
|
|
const xAddressIndexer<ModSib64> ptr64 = { };
|
|
|
|
const xAddressIndexer<ModSib32> ptr32 = { };
|
|
|
|
const xAddressIndexer<ModSib16> ptr16 = { };
|
|
|
|
const xAddressIndexer<ModSib8> ptr8 = { };
|
2009-04-07 21:54:50 +00:00
|
|
|
|
2009-04-14 01:26:57 +00:00
|
|
|
// ------------------------------------------------------------------------
|
2009-04-14 12:37:48 +00:00
|
|
|
|
2009-11-07 15:46:09 +00:00
|
|
|
const xRegisterEmpty xEmptyReg = { };
|
2009-04-19 05:24:20 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xRegisterSSE
|
2009-04-19 05:24:20 +00:00
|
|
|
xmm0( 0 ), xmm1( 1 ),
|
|
|
|
xmm2( 2 ), xmm3( 3 ),
|
|
|
|
xmm4( 4 ), xmm5( 5 ),
|
|
|
|
xmm6( 6 ), xmm7( 7 );
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xRegisterMMX
|
2009-04-19 05:24:20 +00:00
|
|
|
mm0( 0 ), mm1( 1 ),
|
|
|
|
mm2( 2 ), mm3( 3 ),
|
|
|
|
mm4( 4 ), mm5( 5 ),
|
|
|
|
mm6( 6 ), mm7( 7 );
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-04-22 18:35:44 +00:00
|
|
|
const xAddressReg
|
2009-04-14 01:26:57 +00:00
|
|
|
eax( 0 ), ebx( 3 ),
|
|
|
|
ecx( 1 ), edx( 2 ),
|
2009-07-03 00:49:40 +00:00
|
|
|
esp( 4 ), ebp( 5 ),
|
|
|
|
esi( 6 ), edi( 7 );
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xRegister16
|
2009-04-14 01:26:57 +00:00
|
|
|
ax( 0 ), bx( 3 ),
|
|
|
|
cx( 1 ), dx( 2 ),
|
2009-07-03 00:49:40 +00:00
|
|
|
sp( 4 ), bp( 5 ),
|
|
|
|
si( 6 ), di( 7 );
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xRegister8
|
2009-04-16 01:34:09 +00:00
|
|
|
al( 0 ),
|
2009-04-14 01:26:57 +00:00
|
|
|
dl( 2 ), bl( 3 ),
|
|
|
|
ah( 4 ), ch( 5 ),
|
|
|
|
dh( 6 ), bh( 7 );
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xRegisterCL cl;
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-07-03 00:49:40 +00:00
|
|
|
const char *const x86_regnames_gpr8[8] =
|
|
|
|
{
|
|
|
|
"al", "cl", "dl", "bl",
|
|
|
|
"ah", "ch", "dh", "bh"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *const x86_regnames_gpr16[8] =
|
|
|
|
{
|
|
|
|
"ax", "cx", "dx", "bx",
|
|
|
|
"sp", "bp", "si", "di"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *const x86_regnames_gpr32[8] =
|
|
|
|
{
|
|
|
|
"eax", "ecx", "edx", "ebx",
|
|
|
|
"esp", "ebp", "esi", "edi"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *const x86_regnames_sse[8] =
|
|
|
|
{
|
|
|
|
"xmm0", "xmm1", "xmm2", "xmm3",
|
|
|
|
"xmm4", "xmm5", "xmm6", "xmm7"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *const x86_regnames_mmx[8] =
|
|
|
|
{
|
|
|
|
"mm0", "mm1", "mm2", "mm3",
|
|
|
|
"mm4", "mm5", "mm6", "mm7"
|
|
|
|
};
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
const char* xRegisterBase::GetName()
|
2009-04-07 08:42:25 +00:00
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
if( Id == xRegId_Invalid ) return "invalid";
|
|
|
|
if( Id == xRegId_Empty ) return "empty";
|
2009-11-06 21:51:39 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// bad error? Return a "big" error string. Might break formatting of register tables
|
|
|
|
// but that's the least of your worries if you see this baby.
|
|
|
|
if( Id >= 8 || Id <= -3 ) return "!Register index out of range!";
|
|
|
|
|
|
|
|
switch( GetOperandSize() )
|
2009-07-03 00:49:40 +00:00
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
case 1: return x86_regnames_gpr8[ Id ];
|
|
|
|
case 2: return x86_regnames_gpr16[ Id ];
|
|
|
|
case 4: return x86_regnames_gpr32[ Id ];
|
|
|
|
case 8: return x86_regnames_mmx[ Id ];
|
|
|
|
case 16: return x86_regnames_sse[ Id ];
|
2009-07-03 00:49:40 +00:00
|
|
|
}
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
return "oops?";
|
|
|
|
}
|
2009-04-16 14:45:13 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Performance note: VC++ wants to use byte/word register form for the following
|
|
|
|
// ModRM/SibSB constructors when we use xWrite<u8>, and furthermore unrolls the
|
|
|
|
// the shift using a series of ADDs for the following results:
|
|
|
|
// add cl,cl
|
|
|
|
// add cl,cl
|
|
|
|
// add cl,cl
|
|
|
|
// or cl,bl
|
|
|
|
// add cl,cl
|
|
|
|
// ... etc.
|
|
|
|
//
|
|
|
|
// This is unquestionably bad optimization by Core2 standard, an generates tons of
|
|
|
|
// register aliases and false dependencies. (although may have been ideal for early-
|
|
|
|
// brand P4s with a broken barrel shifter?). The workaround is to do our own manual
|
|
|
|
// x86Ptr access and update using a u32 instead of u8. Thanks to little endianness,
|
|
|
|
// the same end result is achieved and no false dependencies are generated. The draw-
|
|
|
|
// back is that it clobbers 3 bytes past the end of the write, which could cause a
|
|
|
|
// headache for someone who himself is doing some kind of headache-inducing amount of
|
|
|
|
// recompiler SMC. So we don't do a work-around, and just hope for the compiler to
|
|
|
|
// stop sucking someday instead. :)
|
|
|
|
//
|
|
|
|
// (btw, I know this isn't a critical performance item by any means, but it's
|
|
|
|
// annoying simply because it *should* be an easy thing to optimize)
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
static __forceinline void ModRM( uint mod, uint reg, uint rm )
|
|
|
|
{
|
|
|
|
xWrite8( (mod << 6) | (reg << 3) | rm );
|
|
|
|
}
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
static __forceinline void SibSB( u32 ss, u32 index, u32 base )
|
|
|
|
{
|
|
|
|
xWrite8( (ss << 6) | (index << 3) | base );
|
|
|
|
}
|
2009-04-23 12:39:59 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
void EmitSibMagic( uint regfield, const void* address )
|
|
|
|
{
|
|
|
|
ModRM( 0, regfield, ModRm_UseDisp32 );
|
|
|
|
xWrite<s32>( (s32)address );
|
|
|
|
}
|
2009-04-23 12:39:59 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// emitter helpers for xmm instruction with prefixes, most of which are using
|
|
|
|
// the basic opcode format (items inside braces denote optional or conditional
|
|
|
|
// emission):
|
|
|
|
//
|
|
|
|
// [Prefix] / 0x0f / [OpcodePrefix] / Opcode / ModRM+[SibSB]
|
|
|
|
//
|
|
|
|
// Prefixes are typically 0x66, 0xf2, or 0xf3. OpcodePrefixes are either 0x38 or
|
|
|
|
// 0x3a [and other value will result in assertion failue].
|
|
|
|
//
|
|
|
|
__emitinline void xOpWrite0F( u8 prefix, u16 opcode, int instId, const ModSibBase& sib )
|
|
|
|
{
|
|
|
|
SimdPrefix( prefix, opcode );
|
|
|
|
EmitSibMagic( instId, sib );
|
|
|
|
}
|
2009-04-23 12:39:59 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
__emitinline void xOpWrite0F( u8 prefix, u16 opcode, int instId, const void* data )
|
|
|
|
{
|
|
|
|
SimdPrefix( prefix, opcode );
|
|
|
|
EmitSibMagic( instId, data );
|
|
|
|
}
|
2009-04-23 12:39:59 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
__emitinline void xOpWrite0F( u16 opcode, int instId, const ModSibBase& sib )
|
|
|
|
{
|
|
|
|
xOpWrite0F( 0, opcode, instId, sib );
|
|
|
|
}
|
2009-04-14 01:26:57 +00:00
|
|
|
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// returns TRUE if this instruction requires SIB to be encoded, or FALSE if the
|
|
|
|
// instruction ca be encoded as ModRm alone.
|
|
|
|
static __forceinline bool NeedsSibMagic( const ModSibBase& info )
|
|
|
|
{
|
|
|
|
// no registers? no sibs!
|
|
|
|
// (ModSibBase::Reduce always places a register in Index, and optionally leaves
|
|
|
|
// Base empty if only register is specified)
|
|
|
|
if( info.Index.IsEmpty() ) return false;
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// A scaled register needs a SIB
|
|
|
|
if( info.Scale != 0 ) return true;
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// two registers needs a SIB
|
|
|
|
if( !info.Base.IsEmpty() ) return true;
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Conditionally generates Sib encoding information!
|
|
|
|
//
|
|
|
|
// regfield - register field to be written to the ModRm. This is either a register specifier
|
|
|
|
// or an opcode extension. In either case, the instruction determines the value for us.
|
|
|
|
//
|
|
|
|
void EmitSibMagic( uint regfield, const ModSibBase& info )
|
|
|
|
{
|
|
|
|
pxAssertDev( regfield < 8, "Invalid x86 register identifier." );
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
int displacement_size = (info.Displacement == 0) ? 0 :
|
|
|
|
( ( info.IsByteSizeDisp() ) ? 1 : 2 );
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
if( !NeedsSibMagic( info ) )
|
|
|
|
{
|
|
|
|
// Use ModRm-only encoding, with the rm field holding an index/base register, if
|
|
|
|
// one has been specified. If neither register is specified then use Disp32 form,
|
|
|
|
// which is encoded as "EBP w/o displacement" (which is why EBP must always be
|
|
|
|
// encoded *with* a displacement of 0, if it would otherwise not have one).
|
|
|
|
|
|
|
|
if( info.Index.IsEmpty() )
|
|
|
|
{
|
|
|
|
EmitSibMagic( regfield, (void*)info.Displacement );
|
|
|
|
return;
|
2009-04-14 01:26:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
if( info.Index == ebp && displacement_size == 0 )
|
|
|
|
displacement_size = 1; // forces [ebp] to be encoded as [ebp+0]!
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
ModRM( displacement_size, regfield, info.Index.Id );
|
2009-04-14 01:26:57 +00:00
|
|
|
}
|
2009-11-06 21:45:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// In order to encode "just" index*scale (and no base), we have to encode
|
|
|
|
// it as a special [index*scale + displacement] form, which is done by
|
|
|
|
// specifying EBP as the base register and setting the displacement field
|
|
|
|
// to zero. (same as ModRm w/o SIB form above, basically, except the
|
|
|
|
// ModRm_UseDisp flag is specified in the SIB instead of the ModRM field).
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
if( info.Base.IsEmpty() )
|
2009-04-14 01:26:57 +00:00
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
ModRM( 0, regfield, ModRm_UseSib );
|
|
|
|
SibSB( info.Scale, info.Index.Id, ModRm_UseDisp32 );
|
|
|
|
xWrite<s32>( info.Displacement );
|
|
|
|
return;
|
2009-04-14 01:26:57 +00:00
|
|
|
}
|
2009-11-06 21:45:30 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if( info.Base == ebp && displacement_size == 0 )
|
|
|
|
displacement_size = 1; // forces [ebp] to be encoded as [ebp+0]!
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
ModRM( displacement_size, regfield, ModRm_UseSib );
|
|
|
|
SibSB( info.Scale, info.Index.Id, info.Base.Id );
|
|
|
|
}
|
|
|
|
}
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
if( displacement_size != 0 )
|
|
|
|
{
|
|
|
|
if( displacement_size == 1 )
|
|
|
|
xWrite<s8>( info.Displacement );
|
|
|
|
else
|
|
|
|
xWrite<s32>( info.Displacement );
|
|
|
|
}
|
|
|
|
}
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// Writes a ModRM byte for "Direct" register access forms, which is used for all
|
|
|
|
// instructions taking a form of [reg,reg].
|
|
|
|
void EmitSibMagic( uint reg1, const xRegisterBase& reg2 )
|
|
|
|
{
|
|
|
|
xWrite8( (Mod_Direct << 6) | (reg1 << 3) | reg2.Id );
|
|
|
|
}
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
void EmitSibMagic( const xRegisterBase& reg1, const xRegisterBase& reg2 )
|
|
|
|
{
|
|
|
|
xWrite8( (Mod_Direct << 6) | (reg1.Id << 3) | reg2.Id );
|
|
|
|
}
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
void EmitSibMagic( const xRegisterBase& reg1, const void* src )
|
|
|
|
{
|
|
|
|
EmitSibMagic( reg1.Id, src );
|
|
|
|
}
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
void EmitSibMagic( const xRegisterBase& reg1, const ModSibBase& sib )
|
|
|
|
{
|
|
|
|
EmitSibMagic( reg1.Id, sib );
|
|
|
|
}
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// xSetPtr / xAlignPtr / xGetPtr / xAdvancePtr
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-15 15:45:52 +00:00
|
|
|
// Assigns the current emitter buffer target address.
|
|
|
|
// This is provided instead of using x86Ptr directly, since we may in the future find
|
|
|
|
// a need to change the storage class system for the x86Ptr 'under the hood.'
|
2009-07-03 20:12:33 +00:00
|
|
|
__emitinline void xSetPtr( void* ptr )
|
2009-04-15 15:45:52 +00:00
|
|
|
{
|
|
|
|
x86Ptr = (u8*)ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieves the current emitter buffer target address.
|
|
|
|
// This is provided instead of using x86Ptr directly, since we may in the future find
|
|
|
|
// a need to change the storage class system for the x86Ptr 'under the hood.'
|
2009-04-24 11:25:10 +00:00
|
|
|
__emitinline u8* xGetPtr()
|
2009-04-15 15:45:52 +00:00
|
|
|
{
|
|
|
|
return x86Ptr;
|
|
|
|
}
|
|
|
|
|
2009-07-03 20:12:33 +00:00
|
|
|
__emitinline void xAlignPtr( uint bytes )
|
2009-04-15 15:45:52 +00:00
|
|
|
{
|
|
|
|
// forward align
|
|
|
|
x86Ptr = (u8*)( ( (uptr)x86Ptr + bytes - 1) & ~(bytes - 1) );
|
|
|
|
}
|
|
|
|
|
2009-12-15 20:46:30 +00:00
|
|
|
// Performs best-case alignment for the target CPU, for use prior to starting a new
|
|
|
|
// function. This is not meant to be used prior to jump targets, since it doesn't
|
|
|
|
// add padding (additionally, speed benefit from jump alignment is minimal, and often
|
|
|
|
// a loss).
|
|
|
|
__emitinline void xAlignCallTarget()
|
|
|
|
{
|
|
|
|
// Core2/i7 CPUs prefer unaligned addresses. Checking for SSSE3 is a decent filter.
|
|
|
|
// (also align in debug modes for disasm convenience)
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-12-15 20:46:30 +00:00
|
|
|
if( IsDebugBuild || !x86caps.hasSupplementalStreamingSIMD3Extensions )
|
|
|
|
{
|
|
|
|
// - P4's and earlier prefer 16 byte alignment.
|
|
|
|
// - AMD Athlons and Phenoms prefer 8 byte alignment, but I don't have an easy
|
|
|
|
// heuristic for it yet.
|
|
|
|
// - AMD Phenom IIs are unknown (either prefer 8 byte, or unaligned).
|
|
|
|
|
|
|
|
xAlignPtr( 16 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
__emitinline u8* xGetAlignedCallTarget()
|
|
|
|
{
|
|
|
|
xAlignCallTarget();
|
|
|
|
return x86Ptr;
|
|
|
|
}
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
__emitinline void xAdvancePtr( uint bytes )
|
2009-04-15 15:45:52 +00:00
|
|
|
{
|
|
|
|
if( IsDevBuild )
|
|
|
|
{
|
|
|
|
// common debugger courtesy: advance with INT3 as filler.
|
|
|
|
for( uint i=0; i<bytes; i++ )
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0xcc );
|
2009-04-15 15:45:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
x86Ptr += bytes;
|
|
|
|
}
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// xAddressInfo Method Implementations
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
xAddressInfo& xAddressInfo::Add( const xAddressReg& src )
|
|
|
|
{
|
|
|
|
if( src == Index )
|
|
|
|
{
|
|
|
|
Factor++;
|
|
|
|
}
|
|
|
|
else if( src == Base )
|
|
|
|
{
|
|
|
|
// Compound the existing register reference into the Index/Scale pair.
|
|
|
|
Base = xEmptyReg;
|
|
|
|
|
|
|
|
if( src == Index )
|
|
|
|
Factor++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pxAssertDev( Index.IsEmpty(), "x86Emitter: Only one scaled index register is allowed in an address modifier." );
|
|
|
|
Index = src;
|
|
|
|
Factor = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( Base.IsEmpty() )
|
|
|
|
Base = src;
|
|
|
|
else if( Index.IsEmpty() )
|
|
|
|
Index = src;
|
|
|
|
else
|
|
|
|
pxFailDev( L"x86Emitter: address modifiers cannot have more than two index registers." ); // oops, only 2 regs allowed per ModRm!
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
xAddressInfo& xAddressInfo::Add( const xAddressInfo& src )
|
|
|
|
{
|
|
|
|
Add( src.Base );
|
|
|
|
Add( src.Displacement );
|
|
|
|
|
|
|
|
// If the factor is 1, we can just treat index like a base register also.
|
|
|
|
if( src.Factor == 1 )
|
|
|
|
{
|
|
|
|
Add( src.Index );
|
|
|
|
}
|
|
|
|
else if( Index.IsEmpty() )
|
|
|
|
{
|
|
|
|
Index = src.Index;
|
|
|
|
Factor = src.Factor;
|
|
|
|
}
|
|
|
|
else if( Index == src.Index )
|
|
|
|
{
|
|
|
|
Factor += src.Factor;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pxFailDev( L"x86Emitter: address modifiers cannot have more than two index registers." ); // oops, only 2 regs allowed per ModRm!
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-19 05:24:20 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Generates a 'reduced' ModSib form, which has valid Base, Index, and Scale values.
|
|
|
|
// Necessary because by default ModSib compounds registers into Index when possible.
|
|
|
|
//
|
|
|
|
// If the ModSib is in illegal form ([Base + Index*5] for example) then an assertion
|
2009-07-03 20:12:33 +00:00
|
|
|
// followed by an InvalidParameter Exception will be tossed around in haphazard
|
2009-04-19 05:24:20 +00:00
|
|
|
// fashion.
|
|
|
|
//
|
|
|
|
// Optimization Note: Currently VC does a piss poor job of inlining this, even though
|
|
|
|
// constant propagation *should* resove it to little or no code (VC's constprop fails
|
|
|
|
// on C++ class initializers). There is a work around [using array initializers instead]
|
2009-07-03 20:12:33 +00:00
|
|
|
// but it's too much trouble for code that isn't performance critical anyway.
|
2009-04-19 05:24:20 +00:00
|
|
|
// And, with luck, maybe VC10 will optimize it better and make it a non-issue. :D
|
|
|
|
//
|
|
|
|
void ModSibBase::Reduce()
|
|
|
|
{
|
|
|
|
if( Index.IsStackPointer() )
|
|
|
|
{
|
|
|
|
// esp cannot be encoded as the index, so move it to the Base, if possible.
|
|
|
|
// note: intentionally leave index assigned to esp also (generates correct
|
|
|
|
// encoding later, since ESP cannot be encoded 'alone')
|
|
|
|
|
2009-10-04 15:34:40 +00:00
|
|
|
pxAssert( Scale == 0 ); // esp can't have an index modifier!
|
|
|
|
pxAssert( Base.IsEmpty() ); // base must be empty or else!
|
2009-04-19 05:24:20 +00:00
|
|
|
|
|
|
|
Base = Index;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no index reg, then load the base register into the index slot.
|
|
|
|
if( Index.IsEmpty() )
|
|
|
|
{
|
|
|
|
Index = Base;
|
|
|
|
Scale = 0;
|
|
|
|
if( !Base.IsStackPointer() ) // prevent ESP from being encoded 'alone'
|
2009-11-06 21:45:30 +00:00
|
|
|
Base = xEmptyReg;
|
2009-04-19 05:24:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The Scale has a series of valid forms, all shown here:
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-04-19 05:24:20 +00:00
|
|
|
switch( Scale )
|
|
|
|
{
|
|
|
|
case 0: break;
|
|
|
|
case 1: Scale = 0; break;
|
|
|
|
case 2: Scale = 1; break;
|
|
|
|
|
|
|
|
case 3: // becomes [reg*2+reg]
|
2009-10-04 15:34:40 +00:00
|
|
|
pxAssertDev( Base.IsEmpty(), "Cannot scale an Index register by 3 when Base is not empty!" );
|
2009-04-19 05:24:20 +00:00
|
|
|
Base = Index;
|
|
|
|
Scale = 1;
|
|
|
|
break;
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-04-19 05:24:20 +00:00
|
|
|
case 4: Scale = 2; break;
|
|
|
|
|
|
|
|
case 5: // becomes [reg*4+reg]
|
2009-10-04 15:34:40 +00:00
|
|
|
pxAssertDev( Base.IsEmpty(), "Cannot scale an Index register by 5 when Base is not empty!" );
|
2009-04-19 05:24:20 +00:00
|
|
|
Base = Index;
|
|
|
|
Scale = 2;
|
|
|
|
break;
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-04-19 05:24:20 +00:00
|
|
|
case 6: // invalid!
|
2009-10-04 15:34:40 +00:00
|
|
|
pxFail( "x86 asm cannot scale a register by 6." );
|
2009-04-19 05:24:20 +00:00
|
|
|
break;
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-04-19 05:24:20 +00:00
|
|
|
case 7: // so invalid!
|
2009-10-04 15:34:40 +00:00
|
|
|
pxFail( "x86 asm cannot scale a register by 7." );
|
2009-04-19 05:24:20 +00:00
|
|
|
break;
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-04-19 05:24:20 +00:00
|
|
|
case 8: Scale = 3; break;
|
|
|
|
case 9: // becomes [reg*8+reg]
|
2009-10-04 15:34:40 +00:00
|
|
|
pxAssertDev( Base.IsEmpty(), "Cannot scale an Index register by 9 when Base is not empty!" );
|
2009-04-19 05:24:20 +00:00
|
|
|
Base = Index;
|
|
|
|
Scale = 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-14 01:26:57 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Internal implementation of EmitSibMagic which has been custom tailored
|
|
|
|
// to optimize special forms of the Lea instructions accordingly, such
|
|
|
|
// as when a LEA can be replaced with a "MOV reg,imm" or "MOV reg,reg".
|
|
|
|
//
|
2009-04-14 12:37:48 +00:00
|
|
|
// preserve_flags - set to ture to disable use of SHL on [Index*Base] forms
|
|
|
|
// of LEA, which alters flags states.
|
|
|
|
//
|
2009-11-06 21:45:30 +00:00
|
|
|
static void EmitLeaMagic( const xRegisterInt& to, const ModSibBase& src, bool preserve_flags )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-07-03 20:12:33 +00:00
|
|
|
int displacement_size = (src.Displacement == 0) ? 0 :
|
2009-04-08 06:25:40 +00:00
|
|
|
( ( src.IsByteSizeDisp() ) ? 1 : 2 );
|
|
|
|
|
|
|
|
// See EmitSibMagic for commenting on SIB encoding.
|
|
|
|
|
|
|
|
if( !NeedsSibMagic( src ) )
|
|
|
|
{
|
|
|
|
// LEA Land: means we have either 1-register encoding or just an offset.
|
|
|
|
// offset is encodable as an immediate MOV, and a register is encodable
|
|
|
|
// as a register MOV.
|
|
|
|
|
|
|
|
if( src.Index.IsEmpty() )
|
|
|
|
{
|
2009-04-20 03:10:05 +00:00
|
|
|
xMOV( to, src.Displacement );
|
2009-04-08 06:25:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if( displacement_size == 0 )
|
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
_xMovRtoR( to, src.Index );
|
2009-04-08 06:25:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-15 15:45:52 +00:00
|
|
|
if( !preserve_flags )
|
|
|
|
{
|
|
|
|
// encode as MOV and ADD combo. Make sure to use the immediate on the
|
|
|
|
// ADD since it can encode as an 8-bit sign-extended value.
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
_xMovRtoR( to, src.Index );
|
2009-04-20 03:10:05 +00:00
|
|
|
xADD( to, src.Displacement );
|
2009-04-15 15:45:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// note: no need to do ebp+0 check since we encode all 0 displacements as
|
|
|
|
// register assignments above (via MOV)
|
2009-04-08 06:25:40 +00:00
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0x8d );
|
2009-04-15 15:45:52 +00:00
|
|
|
ModRM( displacement_size, to.Id, src.Index.Id );
|
|
|
|
}
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( src.Base.IsEmpty() )
|
|
|
|
{
|
2009-04-14 12:37:48 +00:00
|
|
|
if( !preserve_flags && (displacement_size == 0) )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
|
|
|
// Encode [Index*Scale] as a combination of Mov and Shl.
|
2009-04-14 01:26:57 +00:00
|
|
|
// This is more efficient because of the bloated LEA format which requires
|
2009-04-14 12:37:48 +00:00
|
|
|
// a 32 bit displacement, and the compact nature of the alternative.
|
2009-04-14 01:26:57 +00:00
|
|
|
//
|
|
|
|
// (this does not apply to older model P4s with the broken barrel shifter,
|
|
|
|
// but we currently aren't optimizing for that target anyway).
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
_xMovRtoR( to, src.Index );
|
2009-04-20 03:10:05 +00:00
|
|
|
xSHL( to, src.Scale );
|
2009-04-08 06:25:40 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0x8d );
|
2009-04-08 06:25:40 +00:00
|
|
|
ModRM( 0, to.Id, ModRm_UseSib );
|
|
|
|
SibSB( src.Scale, src.Index.Id, ModRm_UseDisp32 );
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite32( src.Displacement );
|
2009-04-14 01:26:57 +00:00
|
|
|
return;
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-15 15:45:52 +00:00
|
|
|
if( src.Scale == 0 )
|
|
|
|
{
|
|
|
|
if( !preserve_flags )
|
|
|
|
{
|
|
|
|
if( src.Index == esp )
|
|
|
|
{
|
|
|
|
// ESP is not encodable as an index (ix86 ignores it), thus:
|
2009-11-06 21:45:30 +00:00
|
|
|
_xMovRtoR( to, src.Base ); // will do the trick!
|
2009-04-20 03:10:05 +00:00
|
|
|
if( src.Displacement ) xADD( to, src.Displacement );
|
2009-04-15 15:45:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if( src.Displacement == 0 )
|
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
_xMovRtoR( to, src.Base );
|
|
|
|
_g1_EmitOp( G1Type_ADD, to, src.Index );
|
2009-04-15 15:45:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( (src.Index == esp) && (src.Displacement == 0) )
|
|
|
|
{
|
|
|
|
// special case handling of ESP as Index, which is replaceable with
|
|
|
|
// a single MOV even when preserve_flags is set! :D
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
_xMovRtoR( to, src.Base );
|
2009-04-15 15:45:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-08 06:25:40 +00:00
|
|
|
if( src.Base == ebp && displacement_size == 0 )
|
|
|
|
displacement_size = 1; // forces [ebp] to be encoded as [ebp+0]!
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0x8d );
|
2009-04-08 06:25:40 +00:00
|
|
|
ModRM( displacement_size, to.Id, ModRm_UseSib );
|
|
|
|
SibSB( src.Scale, src.Index.Id, src.Base.Id );
|
|
|
|
}
|
|
|
|
}
|
2009-04-14 01:26:57 +00:00
|
|
|
|
|
|
|
if( displacement_size != 0 )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-04-15 21:00:32 +00:00
|
|
|
if( displacement_size == 1 )
|
2009-04-20 03:10:05 +00:00
|
|
|
xWrite<s8>( src.Displacement );
|
2009-04-15 21:00:32 +00:00
|
|
|
else
|
2009-04-20 03:10:05 +00:00
|
|
|
xWrite<s32>( src.Displacement );
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
__emitinline void xLEA( xRegister32 to, const ModSibBase& src, bool preserve_flags )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-04-14 12:37:48 +00:00
|
|
|
EmitLeaMagic( to, src, preserve_flags );
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
__emitinline void xLEA( xRegister16 to, const ModSibBase& src, bool preserve_flags )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0x66 );
|
2009-04-14 12:37:48 +00:00
|
|
|
EmitLeaMagic( to, src, preserve_flags );
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// =====================================================================================================
|
|
|
|
// TEST / INC / DEC
|
|
|
|
// =====================================================================================================
|
|
|
|
void xImpl_Test::operator()( const xRegister8& to, const xRegister8& from ) const
|
|
|
|
{
|
|
|
|
xWrite8( 0x84 );
|
|
|
|
EmitSibMagic( from, to );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_Test::operator()( const xRegister16& to, const xRegister16& from ) const
|
|
|
|
{
|
|
|
|
to.prefix16();
|
|
|
|
xWrite8( 0x85 );
|
|
|
|
EmitSibMagic( from, to );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_Test::operator()( const xRegister32& to, const xRegister32& from ) const
|
|
|
|
{
|
|
|
|
xWrite8( 0x85 );
|
|
|
|
EmitSibMagic( from, to );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_Test::operator()( const ModSib32orLess& dest, int imm ) const
|
|
|
|
{
|
|
|
|
dest.prefix16();
|
|
|
|
xWrite8( dest.Is8BitOp() ? 0xf6 : 0xf7 );
|
|
|
|
EmitSibMagic( 0, dest );
|
|
|
|
dest.xWriteImm( imm );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_Test::operator()( const xRegisterInt& to, int imm ) const
|
|
|
|
{
|
|
|
|
to.prefix16();
|
|
|
|
|
|
|
|
if( to.IsAccumulator() )
|
|
|
|
xWrite8( to.Is8BitOp() ? 0xa8 : 0xa9 );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xWrite8( to.Is8BitOp() ? 0xf6 : 0xf7 );
|
|
|
|
EmitSibMagic( 0, to );
|
|
|
|
}
|
|
|
|
to.xWriteImm( imm );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_BitScan::operator()( const xRegister32& to, const xRegister32& from ) const { xOpWrite0F( Opcode, to, from ); }
|
|
|
|
void xImpl_BitScan::operator()( const xRegister16& to, const xRegister16& from ) const { xOpWrite0F( 0x66, Opcode, to, from ); }
|
|
|
|
void xImpl_BitScan::operator()( const xRegister16or32& to, const ModSibBase& sibsrc ) const
|
|
|
|
{
|
|
|
|
xOpWrite0F( (to->GetOperandSize() == 2) ? 0x66 : 0x00, Opcode, to, sibsrc );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_IncDec::operator()( const xRegisterInt& to ) const
|
|
|
|
{
|
|
|
|
if( to.Is8BitOp() )
|
|
|
|
{
|
|
|
|
xWrite8( 0xfe );
|
|
|
|
EmitSibMagic( isDec ? 1 : 0, to );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
to.prefix16();
|
|
|
|
xWrite8( (isDec ? 0x48 : 0x40) | to.Id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_IncDec::operator()( const ModSib32orLess& to ) const
|
|
|
|
{
|
|
|
|
to.prefix16();
|
|
|
|
xWrite8( to.Is8BitOp() ? 0xfe : 0xff );
|
|
|
|
EmitSibMagic( isDec ? 1 : 0, to );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_DwordShift::operator()( const xRegister32& to, const xRegister32& from, const xRegisterCL& /* clreg */ ) const { xOpWrite0F( OpcodeBase+1, to, from ); }
|
|
|
|
void xImpl_DwordShift::operator()( const xRegister16& to, const xRegister16& from, const xRegisterCL& /* clreg */ ) const { xOpWrite0F( 0x66, OpcodeBase+1, to, from ); }
|
|
|
|
void xImpl_DwordShift::operator()( const xRegister32& to, const xRegister32& from, u8 shiftcnt ) const
|
|
|
|
{
|
|
|
|
if( shiftcnt != 0 )
|
|
|
|
xOpWrite0F( OpcodeBase, to, from );
|
|
|
|
}
|
|
|
|
void xImpl_DwordShift::operator()( const xRegister16& to, const xRegister16& from, u8 shiftcnt ) const
|
|
|
|
{
|
|
|
|
if( shiftcnt != 0 )
|
|
|
|
xOpWrite0F( 0x66, OpcodeBase, to, from );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_DwordShift::operator()( const ModSibBase& dest, const xRegister16or32& from, const xRegisterCL& /* clreg */ ) const
|
|
|
|
{
|
|
|
|
xOpWrite0F( (from->GetOperandSize() == 2) ? 0x66 : 0x00, OpcodeBase, from, dest );
|
|
|
|
}
|
|
|
|
|
|
|
|
void xImpl_DwordShift::operator()( const ModSibBase& dest, const xRegister16or32& from, u8 shiftcnt ) const
|
|
|
|
{
|
|
|
|
if( shiftcnt != 0 )
|
|
|
|
xOpWrite0F( (from->GetOperandSize() == 2) ? 0x66 : 0x00, OpcodeBase, from, dest, shiftcnt );
|
|
|
|
}
|
|
|
|
|
2009-11-06 21:51:39 +00:00
|
|
|
const xImpl_Test xTEST = { };
|
2009-11-06 21:45:30 +00:00
|
|
|
|
2009-11-06 21:51:39 +00:00
|
|
|
const xImpl_BitScan xBSF = { 0xbc };
|
|
|
|
const xImpl_BitScan xBSR = { 0xbd };
|
2009-11-06 21:45:30 +00:00
|
|
|
|
2009-11-06 21:51:39 +00:00
|
|
|
const xImpl_IncDec xINC = { false };
|
|
|
|
const xImpl_IncDec xDEC = { true };
|
2009-11-06 21:45:30 +00:00
|
|
|
|
|
|
|
const xImpl_DwordShift xSHLD = { 0xa4 };
|
|
|
|
const xImpl_DwordShift xSHRD = { 0xac };
|
2009-04-16 01:34:09 +00:00
|
|
|
|
2009-04-08 06:25:40 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Push / Pop Emitters
|
|
|
|
//
|
|
|
|
// Note: pushad/popad implementations are intentionally left out. The instructions are
|
|
|
|
// invalid in x64, and are super slow on x32. Use multiple Push/Pop instructions instead.
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
__emitinline void xPOP( const ModSibBase& from )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0x8f );
|
2009-04-17 18:47:04 +00:00
|
|
|
EmitSibMagic( 0, from );
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
__emitinline void xPUSH( const ModSibBase& from )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0xff );
|
2009-04-17 18:47:04 +00:00
|
|
|
EmitSibMagic( 6, from );
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
__forceinline void xPOP( xRegister32 from ) { xWrite8( 0x58 | from.Id ); }
|
|
|
|
|
|
|
|
__forceinline void xPUSH( u32 imm ) { xWrite8( 0x68 ); xWrite32( imm ); }
|
|
|
|
__forceinline void xPUSH( xRegister32 from ) { xWrite8( 0x50 | from.Id ); }
|
|
|
|
|
|
|
|
// pushes the EFLAGS register onto the stack
|
|
|
|
__forceinline void xPUSHFD() { xWrite8( 0x9C ); }
|
|
|
|
// pops the EFLAGS register from the stack
|
|
|
|
__forceinline void xPOPFD() { xWrite8( 0x9D ); }
|
|
|
|
|
|
|
|
|
2009-04-19 02:14:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2009-04-24 11:25:10 +00:00
|
|
|
|
2009-10-18 19:26:07 +00:00
|
|
|
__forceinline void xLEAVE() { xWrite8( 0xC9 ); }
|
2009-04-24 11:25:10 +00:00
|
|
|
__forceinline void xRET() { xWrite8( 0xC3 ); }
|
|
|
|
__forceinline void xCBW() { xWrite16( 0x9866 ); }
|
|
|
|
__forceinline void xCWD() { xWrite8( 0x98 ); }
|
|
|
|
__forceinline void xCDQ() { xWrite8( 0x99 ); }
|
|
|
|
__forceinline void xCWDE() { xWrite8( 0x98 ); }
|
|
|
|
|
|
|
|
__forceinline void xLAHF() { xWrite8( 0x9f ); }
|
|
|
|
__forceinline void xSAHF() { xWrite8( 0x9e ); }
|
|
|
|
|
|
|
|
__forceinline void xSTC() { xWrite8( 0xF9 ); }
|
|
|
|
__forceinline void xCLC() { xWrite8( 0xF8 ); }
|
|
|
|
|
|
|
|
// NOP 1-byte
|
|
|
|
__forceinline void xNOP() { xWrite8(0x90); }
|
|
|
|
|
2010-03-15 14:15:40 +00:00
|
|
|
__forceinline void xINT( u8 imm )
|
|
|
|
{
|
|
|
|
if (imm == 3)
|
|
|
|
xWrite8(0xcc);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xWrite8(0xcd);
|
|
|
|
xWrite8(imm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void xINTO() { xWrite8(0xce); }
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
__emitinline void xBSWAP( const xRegister32& to )
|
2009-04-19 02:14:50 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( 0x0F );
|
|
|
|
xWrite8( 0xC8 | to.Id );
|
2009-04-19 02:14:50 +00:00
|
|
|
}
|
|
|
|
|
2009-07-03 00:49:40 +00:00
|
|
|
__emitinline void xStoreReg( const xRegisterSSE& src )
|
|
|
|
{
|
2010-06-04 22:27:06 +00:00
|
|
|
xMOVDQA( ptr[&XMMRegisters::data[src.Id*2]], src );
|
2009-07-03 00:49:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__emitinline void xRestoreReg( const xRegisterSSE& dest )
|
|
|
|
{
|
2010-06-04 22:27:06 +00:00
|
|
|
xMOVDQA( dest, ptr[&XMMRegisters::data[dest.Id*2]] );
|
2009-07-03 00:49:40 +00:00
|
|
|
}
|
|
|
|
|
2009-04-07 08:42:25 +00:00
|
|
|
}
|