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
|
2010-04-25 00:31:27 +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-04-16 14:45:13 +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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-04-16 14:45:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Implementations found here: Increment and Decrement Instructions!
|
2009-11-06 21:45:30 +00:00
|
|
|
// (They're soooo lonely... but I dunno where else to stick this class!)
|
2009-04-16 22:38:55 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
namespace x86Emitter {
|
2009-04-17 01:54:35 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// xImpl_IncDec
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
struct xImpl_IncDec
|
2009-04-24 11:25:10 +00:00
|
|
|
{
|
2009-11-06 21:45:30 +00:00
|
|
|
bool isDec;
|
2009-04-16 22:38:55 +00:00
|
|
|
|
2009-11-06 21:45:30 +00:00
|
|
|
void operator()( const xRegisterInt& to ) const;
|
2010-07-05 19:15:19 +00:00
|
|
|
void operator()( const xIndirect32orLess& to ) const;
|
2009-04-16 22:38:55 +00:00
|
|
|
};
|
2009-11-06 21:45:30 +00:00
|
|
|
|
|
|
|
} // End namespace x86Emitter
|