2009-04-15 21:00:32 +00:00
|
|
|
/* Pcsx2 - Pc Ps2 Emulator
|
|
|
|
* Copyright (C) 2002-2009 Pcsx2 Team
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Note: This header is meant to be included from within the x86Emitter::Internal namespace.
|
|
|
|
// Instructions implemented in this header are as follows -->>
|
|
|
|
|
|
|
|
enum G2Type
|
|
|
|
{
|
|
|
|
G2Type_ROL=0,
|
|
|
|
G2Type_ROR,
|
|
|
|
G2Type_RCL,
|
|
|
|
G2Type_RCR,
|
|
|
|
G2Type_SHL,
|
|
|
|
G2Type_SHR,
|
|
|
|
G2Type_Unused,
|
|
|
|
G2Type_SAR
|
|
|
|
};
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Group 2 (shift) instructions have no Sib/ModRM forms.
|
|
|
|
// Optimization Note: For Imm forms, we ignore the instruction if the shift count is zero.
|
|
|
|
// This is a safe optimization since any zero-value shift does not affect any flags.
|
|
|
|
//
|
2009-04-20 19:25:35 +00:00
|
|
|
template< G2Type InstType >
|
|
|
|
class Group2ImplAll
|
2009-04-15 21:00:32 +00:00
|
|
|
{
|
2009-04-20 19:25:35 +00:00
|
|
|
public:
|
|
|
|
template< typename T > __forceinline void operator()( const xRegister<T>& to, __unused const xRegisterCL& from ) const
|
2009-04-15 21:00:32 +00:00
|
|
|
{
|
2009-04-20 19:25:35 +00:00
|
|
|
prefix16<T>();
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( Is8BitOp<T>() ? 0xd2 : 0xd3 );
|
|
|
|
EmitSibMagic( InstType, to );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
|
2009-04-20 19:25:35 +00:00
|
|
|
template< typename T > __noinline void operator()( const ModSibStrict<T>& sibdest, __unused const xRegisterCL& from ) const
|
|
|
|
{
|
|
|
|
prefix16<T>();
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( Is8BitOp<T>() ? 0xd2 : 0xd3 );
|
2009-04-20 19:25:35 +00:00
|
|
|
EmitSibMagic( InstType, sibdest );
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename T > __noinline void operator()( const ModSibStrict<T>& sibdest, u8 imm ) const
|
2009-04-15 21:00:32 +00:00
|
|
|
{
|
|
|
|
if( imm == 0 ) return;
|
|
|
|
|
2009-04-20 19:25:35 +00:00
|
|
|
prefix16<T>();
|
2009-04-15 21:00:32 +00:00
|
|
|
if( imm == 1 )
|
|
|
|
{
|
|
|
|
// special encoding of 1's
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( Is8BitOp<T>() ? 0xd0 : 0xd1 );
|
2009-04-20 19:25:35 +00:00
|
|
|
EmitSibMagic( InstType, sibdest );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( Is8BitOp<T>() ? 0xc0 : 0xc1 );
|
2009-04-20 19:25:35 +00:00
|
|
|
EmitSibMagic( InstType, sibdest );
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( imm );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
}
|
2009-04-20 19:25:35 +00:00
|
|
|
|
|
|
|
template< typename T > __forceinline void operator()( const xRegister<T>& to, u8 imm ) const
|
2009-04-15 21:00:32 +00:00
|
|
|
{
|
|
|
|
if( imm == 0 ) return;
|
|
|
|
|
2009-04-20 19:25:35 +00:00
|
|
|
prefix16<T>();
|
2009-04-15 21:00:32 +00:00
|
|
|
if( imm == 1 )
|
|
|
|
{
|
|
|
|
// special encoding of 1's
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( Is8BitOp<T>() ? 0xd0 : 0xd1 );
|
|
|
|
EmitSibMagic( InstType, to );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-24 11:25:10 +00:00
|
|
|
xWrite8( Is8BitOp<T>() ? 0xc0 : 0xc1 );
|
|
|
|
EmitSibMagic( InstType, to );
|
|
|
|
xWrite8( imm );
|
2009-04-15 21:00:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-03 00:49:40 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
template< typename T > __noinline void operator()( const xDirectOrIndirect<T>& to, u8 imm ) const
|
|
|
|
{
|
|
|
|
_DoI_helpermess( *this, to, imm );
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename T > __noinline void operator()( const xDirectOrIndirect<T>& to, const xRegisterCL& from ) const
|
|
|
|
{
|
|
|
|
_DoI_helpermess( *this, to, from );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-15 21:00:32 +00:00
|
|
|
Group2ImplAll() {} // I am a class with no members, so I need an explicit constructor! Sense abounds.
|
|
|
|
};
|