core: prepare the conversion to the new emitter naming

This commit is contained in:
Gregory Hainaut 2015-11-23 07:33:36 +01:00
parent 21445fe0d0
commit 5dfe7ffc47
11 changed files with 18 additions and 1 deletions

View File

@ -22,6 +22,8 @@
#include "VU.h"
#include "R3000A.h"
using namespace x86Emitter;
__tls_emit u8 *j8Ptr[32];
__tls_emit u32 *j32Ptr[32];

View File

@ -19,6 +19,7 @@
#include "iR5900.h"
#include "R5900OpcodeTables.h"
using namespace x86Emitter;
namespace R5900 {
namespace Dynarec {

View File

@ -22,6 +22,7 @@
#include "x86emitter/x86emitter.h"
#include "R3000A.h"
using namespace x86Emitter;
// yay sloppy crap needed until we can remove dependency on this hippopotamic
// landmass of shared code. (air)

View File

@ -20,6 +20,8 @@
#include "R5900OpcodeTables.h"
#include "iR5900.h"
using namespace x86Emitter;
namespace R5900 {
namespace Dynarec {
namespace OpcodeImpl

View File

@ -22,7 +22,7 @@
#include "R5900OpcodeTables.h"
#include "iR5900.h"
namespace Interp = R5900::Interpreter::OpcodeImpl;
using namespace x86Emitter;
namespace R5900 {
namespace Dynarec {

View File

@ -20,6 +20,7 @@
#include "R5900OpcodeTables.h"
#include "iR5900.h"
using namespace x86Emitter;
namespace R5900 {
namespace Dynarec {

View File

@ -20,6 +20,8 @@
#include "R5900OpcodeTables.h"
#include "iR5900.h"
using namespace x86Emitter;
namespace Interp = R5900::Interpreter::OpcodeImpl;
namespace R5900 {

View File

@ -20,6 +20,7 @@
#include "R5900OpcodeTables.h"
#include "iR5900.h"
using namespace x86Emitter;
namespace R5900 {
namespace Dynarec {

View File

@ -32,6 +32,8 @@
#include "vtlb.h"
using namespace x86Emitter;
////////////////////
// Code Templates //
////////////////////

View File

@ -28,6 +28,8 @@
#include "sVU_Debug.h"
#include "sVU_zerorec.h"
using namespace x86Emitter;
#ifdef _WIN32
#pragma warning(disable:4244)
#pragma warning(disable:4761)

View File

@ -27,6 +27,9 @@
#include "sVU_Micro.h"
#include "sVU_Debug.h"
#include "sVU_zerorec.h"
using namespace x86Emitter;
//------------------------------------------------------------------
#define MINMAXFIX 1
//------------------------------------------------------------------