2009-02-09 21:15:56 +00:00
|
|
|
/* Pcsx2 - Pc Ps2 Emulator
|
2009-02-15 23:23:46 +00:00
|
|
|
* Copyright (C) 2002-2009 Pcsx2 Team
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
/*
|
2009-04-14 01:26:57 +00:00
|
|
|
* ix86 core v0.9.0
|
|
|
|
*
|
|
|
|
* Original Authors (v0.6.2 and prior):
|
|
|
|
* linuzappz <linuzappz@pcsx.net>
|
|
|
|
* alexey silinov
|
|
|
|
* goldfinger
|
|
|
|
* zerofrog(@gmail.com)
|
|
|
|
*
|
|
|
|
* Authors of v0.9.0:
|
|
|
|
* 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
|
|
|
|
PCSX2_ALIGNED16_EXTERN( u64 g_globalXMMData[2*iREGCNT_XMM] );
|
2009-03-01 20:44:48 +00:00
|
|
|
|
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:
|
|
|
|
// * GCC's implementation involves an extra dereference from normal storage.
|
|
|
|
//
|
|
|
|
// * 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
|
|
|
|
// generated ASM code, this dereference is denoted by access to the fs:[2ch] address).
|
|
|
|
//
|
|
|
|
// * However, in either case, the optimizer usually optimizes it to a register so the
|
|
|
|
// extra overhead is minimal over a series of instructions. (Note!! the Full Opt-
|
|
|
|
// imization [/Ox] option effectively disables TLS optimizations in MSVC, causing
|
|
|
|
// generally significant code bloat).
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2009-04-07 16:54:02 +00:00
|
|
|
__threadlocal u8 *x86Ptr;
|
|
|
|
__threadlocal u8 *j8Ptr[32];
|
|
|
|
__threadlocal u32 *j32Ptr[32];
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-04-15 21:00:32 +00:00
|
|
|
__threadlocal 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-04-24 11:25:10 +00:00
|
|
|
__forceinline void xWrite8( u8 val )
|
|
|
|
{
|
|
|
|
xWrite( val );
|
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void xWrite16( u16 val )
|
|
|
|
{
|
|
|
|
xWrite( val );
|
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void xWrite32( u32 val )
|
|
|
|
{
|
|
|
|
xWrite( val );
|
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void xWrite64( u64 val )
|
|
|
|
{
|
|
|
|
xWrite( val );
|
|
|
|
}
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xAddressIndexerBase ptr;
|
|
|
|
const xAddressIndexer<u128> ptr128;
|
|
|
|
const xAddressIndexer<u64> ptr64;
|
|
|
|
const xAddressIndexer<u32> ptr32;
|
|
|
|
const xAddressIndexer<u16> ptr16;
|
|
|
|
const xAddressIndexer<u8> 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-04-24 11:25:10 +00:00
|
|
|
template< typename OperandType > const xRegisterBase<OperandType> xRegisterBase<OperandType>::Empty;
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const xAddressReg xAddressReg::Empty;
|
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-04-16 01:34:09 +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-04-24 11:25:10 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2009-04-14 01:26:57 +00:00
|
|
|
namespace Internal
|
2009-04-07 08:42:25 +00:00
|
|
|
{
|
2009-07-03 00:49:40 +00:00
|
|
|
|
|
|
|
template< typename T >
|
|
|
|
const char* xGetRegName( const xRegister<T>& src )
|
|
|
|
{
|
|
|
|
if( src.IsEmpty() ) return "empty";
|
|
|
|
switch( sizeof(T) )
|
|
|
|
{
|
|
|
|
case 1: return tbl_regnames_gpr8[ src.Id ];
|
|
|
|
case 2: return tbl_regnames_gpr16[ src.Id ];
|
|
|
|
case 4: return tbl_regnames_gpr32[ src.Id ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
2009-04-14 01:26:57 +00:00
|
|
|
// Performance note: VC++ wants to use byte/word register form for the following
|
2009-04-20 03:10:05 +00:00
|
|
|
// ModRM/SibSB constructors when we use xWrite<u8>, and furthermore unrolls the
|
2009-04-14 01:26:57 +00:00
|
|
|
// 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,
|
2009-04-15 21:00:32 +00:00
|
|
|
// 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. :)
|
2009-04-14 01:26:57 +00:00
|
|
|
//
|
|
|
|
// (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-24 11:25:10 +00:00
|
|
|
static __forceinline void ModRM( uint mod, uint reg, uint rm )
|
2009-04-16 14:45:13 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( (mod << 6) | (reg << 3) | rm );
|
2009-04-16 14:45:13 +00:00
|
|
|
}
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
static __forceinline void SibSB( u32 ss, u32 index, u32 base )
|
2009-04-14 01:26:57 +00:00
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( (ss << 6) | (index << 3) | base );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
__forceinline void EmitSibMagic( uint regfield, const void* address )
|
2009-04-15 21:00:32 +00:00
|
|
|
{
|
|
|
|
ModRM( 0, regfield, ModRm_UseDisp32 );
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite<s32>( (s32)address );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
|
2009-04-23 12:39:59 +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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
__emitinline void xOpWrite0F( u8 prefix, u16 opcode, int instId, const void* data )
|
|
|
|
{
|
|
|
|
SimdPrefix( prefix, opcode );
|
2009-04-24 11:25:10 +00:00
|
|
|
EmitSibMagic( instId, data );
|
2009-04-23 12:39:59 +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
|
|
|
// 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!
|
2009-04-15 15:45:52 +00:00
|
|
|
// (ModSibBase::Reduce always places a register in Index, and optionally leaves
|
|
|
|
// Base empty if only register is specified)
|
2009-04-14 01:26:57 +00:00
|
|
|
if( info.Index.IsEmpty() ) return false;
|
|
|
|
|
|
|
|
// A scaled register needs a SIB
|
|
|
|
if( info.Scale != 0 ) return true;
|
|
|
|
|
|
|
|
// two registers needs a SIB
|
|
|
|
if( !info.Base.IsEmpty() ) return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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.
|
|
|
|
//
|
2009-04-24 11:25:10 +00:00
|
|
|
__noinline void EmitSibMagic( uint regfield, const ModSibBase& info )
|
2009-04-14 01:26:57 +00:00
|
|
|
{
|
|
|
|
jASSUME( regfield < 8 );
|
|
|
|
|
|
|
|
int displacement_size = (info.Displacement == 0) ? 0 :
|
|
|
|
( ( info.IsByteSizeDisp() ) ? 1 : 2 );
|
|
|
|
|
|
|
|
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() )
|
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
EmitSibMagic( regfield, (void*)info.Displacement );
|
2009-04-14 01:26:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( info.Index == ebp && displacement_size == 0 )
|
|
|
|
displacement_size = 1; // forces [ebp] to be encoded as [ebp+0]!
|
|
|
|
|
|
|
|
ModRM( displacement_size, regfield, info.Index.Id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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).
|
|
|
|
|
|
|
|
if( info.Base.IsEmpty() )
|
|
|
|
{
|
|
|
|
ModRM( 0, regfield, ModRm_UseSib );
|
|
|
|
SibSB( info.Scale, info.Index.Id, ModRm_UseDisp32 );
|
2009-04-20 03:10:05 +00:00
|
|
|
xWrite<s32>( info.Displacement );
|
2009-04-14 01:26:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( info.Base == ebp && displacement_size == 0 )
|
|
|
|
displacement_size = 1; // forces [ebp] to be encoded as [ebp+0]!
|
|
|
|
|
|
|
|
ModRM( displacement_size, regfield, ModRm_UseSib );
|
|
|
|
SibSB( info.Scale, info.Index.Id, info.Base.Id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( displacement_size != 0 )
|
|
|
|
{
|
2009-04-15 21:00:32 +00:00
|
|
|
if( displacement_size == 1 )
|
2009-04-20 03:10:05 +00:00
|
|
|
xWrite<s8>( info.Displacement );
|
2009-04-15 21:00:32 +00:00
|
|
|
else
|
2009-04-20 03:10:05 +00:00
|
|
|
xWrite<s32>( info.Displacement );
|
2009-04-14 01:26:57 +00:00
|
|
|
}
|
|
|
|
}
|
2009-04-08 06:25:40 +00:00
|
|
|
}
|
|
|
|
|
2009-04-14 01:26:57 +00:00
|
|
|
using namespace Internal;
|
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const MovImplAll xMOV;
|
2009-04-24 11:25:10 +00:00
|
|
|
const xImpl_Test xTEST;
|
2009-04-16 22:38:55 +00:00
|
|
|
|
2009-04-20 19:25:35 +00:00
|
|
|
const xImpl_G1Logic<G1Type_AND,0x54> xAND;
|
|
|
|
const xImpl_G1Logic<G1Type_OR,0x56> xOR;
|
|
|
|
const xImpl_G1Logic<G1Type_XOR,0x57> xXOR;
|
2009-04-20 00:06:51 +00:00
|
|
|
|
2009-04-20 19:25:35 +00:00
|
|
|
const xImpl_G1Arith<G1Type_ADD,0x58> xADD;
|
|
|
|
const xImpl_G1Arith<G1Type_SUB,0x5c> xSUB;
|
2009-04-20 00:06:51 +00:00
|
|
|
|
2009-04-20 19:25:35 +00:00
|
|
|
const xImpl_Group1<G1Type_ADC> xADC;
|
|
|
|
const xImpl_Group1<G1Type_SBB> xSBB;
|
|
|
|
const xImpl_G1Compare xCMP;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const Group2ImplAll<G2Type_ROL> xROL;
|
|
|
|
const Group2ImplAll<G2Type_ROR> xROR;
|
|
|
|
const Group2ImplAll<G2Type_RCL> xRCL;
|
|
|
|
const Group2ImplAll<G2Type_RCR> xRCR;
|
|
|
|
const Group2ImplAll<G2Type_SHL> xSHL;
|
|
|
|
const Group2ImplAll<G2Type_SHR> xSHR;
|
|
|
|
const Group2ImplAll<G2Type_SAR> xSAR;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
const xImpl_Group3<G3Type_NOT> xNOT;
|
|
|
|
const xImpl_Group3<G3Type_NEG> xNEG;
|
|
|
|
const xImpl_Group3<G3Type_MUL> xUMUL;
|
|
|
|
const xImpl_Group3<G3Type_DIV> xUDIV;
|
|
|
|
const xImpl_iDiv xDIV;
|
2009-04-20 19:25:35 +00:00
|
|
|
const xImpl_iMul xMUL;
|
2009-04-16 22:38:55 +00:00
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
const xImpl_IncDec<false> xINC;
|
|
|
|
const xImpl_IncDec<true> xDEC;
|
2009-04-16 22:38:55 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const MovExtendImplAll<false> xMOVZX;
|
|
|
|
const MovExtendImplAll<true> xMOVSX;
|
2009-04-16 01:34:09 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const DwordShiftImplAll<false> xSHLD;
|
|
|
|
const DwordShiftImplAll<true> xSHRD;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
const xImpl_Group8<G8Type_BT> xBT;
|
|
|
|
const xImpl_Group8<G8Type_BTR> xBTR;
|
|
|
|
const xImpl_Group8<G8Type_BTS> xBTS;
|
|
|
|
const xImpl_Group8<G8Type_BTC> xBTC;
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-24 11:25:10 +00:00
|
|
|
const xImpl_BitScan<0xbc> xBSF;
|
|
|
|
const xImpl_BitScan<0xbd> xBSR;
|
2009-04-19 02:14:50 +00:00
|
|
|
|
2009-04-17 18:47:04 +00:00
|
|
|
// ------------------------------------------------------------------------
|
2009-04-20 03:10:05 +00:00
|
|
|
const CMovImplGeneric xCMOV;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const CMovImplAll<Jcc_Above> xCMOVA;
|
|
|
|
const CMovImplAll<Jcc_AboveOrEqual> xCMOVAE;
|
|
|
|
const CMovImplAll<Jcc_Below> xCMOVB;
|
|
|
|
const CMovImplAll<Jcc_BelowOrEqual> xCMOVBE;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const CMovImplAll<Jcc_Greater> xCMOVG;
|
|
|
|
const CMovImplAll<Jcc_GreaterOrEqual> xCMOVGE;
|
|
|
|
const CMovImplAll<Jcc_Less> xCMOVL;
|
|
|
|
const CMovImplAll<Jcc_LessOrEqual> xCMOVLE;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const CMovImplAll<Jcc_Zero> xCMOVZ;
|
|
|
|
const CMovImplAll<Jcc_Equal> xCMOVE;
|
|
|
|
const CMovImplAll<Jcc_NotZero> xCMOVNZ;
|
|
|
|
const CMovImplAll<Jcc_NotEqual> xCMOVNE;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const CMovImplAll<Jcc_Overflow> xCMOVO;
|
|
|
|
const CMovImplAll<Jcc_NotOverflow> xCMOVNO;
|
|
|
|
const CMovImplAll<Jcc_Carry> xCMOVC;
|
|
|
|
const CMovImplAll<Jcc_NotCarry> xCMOVNC;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const CMovImplAll<Jcc_Signed> xCMOVS;
|
|
|
|
const CMovImplAll<Jcc_Unsigned> xCMOVNS;
|
|
|
|
const CMovImplAll<Jcc_ParityEven> xCMOVPE;
|
|
|
|
const CMovImplAll<Jcc_ParityOdd> xCMOVPO;
|
2009-04-15 21:00:32 +00:00
|
|
|
|
2009-04-17 18:47:04 +00:00
|
|
|
// ------------------------------------------------------------------------
|
2009-04-20 03:10:05 +00:00
|
|
|
const SetImplGeneric xSET;
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const SetImplAll<Jcc_Above> xSETA;
|
|
|
|
const SetImplAll<Jcc_AboveOrEqual> xSETAE;
|
|
|
|
const SetImplAll<Jcc_Below> xSETB;
|
|
|
|
const SetImplAll<Jcc_BelowOrEqual> xSETBE;
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const SetImplAll<Jcc_Greater> xSETG;
|
|
|
|
const SetImplAll<Jcc_GreaterOrEqual> xSETGE;
|
|
|
|
const SetImplAll<Jcc_Less> xSETL;
|
|
|
|
const SetImplAll<Jcc_LessOrEqual> xSETLE;
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const SetImplAll<Jcc_Zero> xSETZ;
|
|
|
|
const SetImplAll<Jcc_Equal> xSETE;
|
|
|
|
const SetImplAll<Jcc_NotZero> xSETNZ;
|
|
|
|
const SetImplAll<Jcc_NotEqual> xSETNE;
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const SetImplAll<Jcc_Overflow> xSETO;
|
|
|
|
const SetImplAll<Jcc_NotOverflow> xSETNO;
|
|
|
|
const SetImplAll<Jcc_Carry> xSETC;
|
|
|
|
const SetImplAll<Jcc_NotCarry> xSETNC;
|
2009-04-17 18:47:04 +00:00
|
|
|
|
2009-04-20 03:10:05 +00:00
|
|
|
const SetImplAll<Jcc_Signed> xSETS;
|
|
|
|
const SetImplAll<Jcc_Unsigned> xSETNS;
|
|
|
|
const SetImplAll<Jcc_ParityEven> xSETPE;
|
|
|
|
const SetImplAll<Jcc_ParityOdd> xSETPO;
|
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-04-24 11:25:10 +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-04-24 11:25:10 +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-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-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
|
|
|
|
// followed by an InvalidParameter Exception will be tossed around in haphazard
|
|
|
|
// 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]
|
|
|
|
// but it's too much trouble for code that isn't performance critical anyway.
|
|
|
|
// 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')
|
|
|
|
|
|
|
|
jASSUME( Scale == 0 ); // esp can't have an index modifier!
|
|
|
|
jASSUME( Base.IsEmpty() ); // base must be empty or else!
|
|
|
|
|
|
|
|
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-04-20 03:10:05 +00:00
|
|
|
Base = xAddressReg::Empty;
|
2009-04-19 05:24:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The Scale has a series of valid forms, all shown here:
|
|
|
|
|
|
|
|
switch( Scale )
|
|
|
|
{
|
|
|
|
case 0: break;
|
|
|
|
case 1: Scale = 0; break;
|
|
|
|
case 2: Scale = 1; break;
|
|
|
|
|
|
|
|
case 3: // becomes [reg*2+reg]
|
|
|
|
jASSUME( Base.IsEmpty() );
|
|
|
|
Base = Index;
|
|
|
|
Scale = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4: Scale = 2; break;
|
|
|
|
|
|
|
|
case 5: // becomes [reg*4+reg]
|
|
|
|
jASSUME( Base.IsEmpty() );
|
|
|
|
Base = Index;
|
|
|
|
Scale = 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: // invalid!
|
|
|
|
assert( false );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: // so invalid!
|
|
|
|
assert( false );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8: Scale = 3; break;
|
|
|
|
case 9: // becomes [reg*8+reg]
|
|
|
|
jASSUME( Base.IsEmpty() );
|
|
|
|
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-04-16 22:38:55 +00:00
|
|
|
template< typename OperandType >
|
2009-04-20 03:10:05 +00:00
|
|
|
static void EmitLeaMagic( xRegister<OperandType> to, const ModSibBase& src, bool preserve_flags )
|
2009-04-08 06:25:40 +00:00
|
|
|
{
|
2009-04-20 03:10:05 +00:00
|
|
|
typedef xRegister<OperandType> ToReg;
|
2009-04-16 22:38:55 +00:00
|
|
|
|
2009-04-08 06:25:40 +00:00
|
|
|
int displacement_size = (src.Displacement == 0) ? 0 :
|
|
|
|
( ( 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-04-20 03:10:05 +00:00
|
|
|
xMOV( to, ToReg( src.Index.Id ) );
|
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-04-20 03:10:05 +00:00
|
|
|
xMOV( to, ToReg( src.Index.Id ) );
|
|
|
|
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-04-20 03:10:05 +00:00
|
|
|
xMOV( to, ToReg( src.Index.Id ) );
|
|
|
|
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-04-20 03:10:05 +00:00
|
|
|
xMOV( to, ToReg( src.Base.Id ) ); // will do the trick!
|
|
|
|
if( src.Displacement ) xADD( to, src.Displacement );
|
2009-04-15 15:45:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if( src.Displacement == 0 )
|
|
|
|
{
|
2009-04-20 03:10:05 +00:00
|
|
|
xMOV( to, ToReg( src.Base.Id ) );
|
|
|
|
xADD( to, ToReg( src.Index.Id ) );
|
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-04-20 03:10:05 +00:00
|
|
|
xMOV( to, ToReg( src.Base.Id ) );
|
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-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
|
|
|
|
|
|
|
__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); }
|
|
|
|
|
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 )
|
|
|
|
{
|
|
|
|
xMOVDQA( &g_globalXMMData[src.Id*2], src );
|
|
|
|
}
|
|
|
|
|
|
|
|
__emitinline void xRestoreReg( const xRegisterSSE& dest )
|
|
|
|
{
|
|
|
|
xMOVDQA( dest, &g_globalXMMData[dest.Id*2] );
|
|
|
|
}
|
|
|
|
|
2009-04-07 08:42:25 +00:00
|
|
|
}
|