diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-05-27 23:00:18 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-08-03 13:44:37 -0500 |
| commit | d9b5482840962b2c697c906a9db9092b4e86d9a8 (patch) | |
| tree | 776e1245972c65986c5e5fe97ab0d8198658de1d /Source/Core/VideoCommon/VertexLoader.cpp | |
| parent | 35bebe9ce0b6e33afac970454b95318a3a11319a (diff) | |
Remove x86_32 from VertexLoader.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp index 9417b7e78f..5cc8b0600b 100644 --- a/Source/Core/VideoCommon/VertexLoader.cpp +++ b/Source/Core/VideoCommon/VertexLoader.cpp @@ -755,12 +755,8 @@ void VertexLoader::CompileVertexTranslator() #ifdef USE_VERTEX_LOADER_JIT // End loop here -#if _M_X86_64 MOV(64, R(RAX), Imm64((u64)&loop_counter)); SUB(32, MatR(RAX), Imm8(1)); -#else - SUB(32, M(&loop_counter), Imm8(1)); -#endif J_CC(CC_NZ, loop_start); ABI_PopAllCalleeSavedRegsAndAdjustStack(); @@ -771,13 +767,9 @@ void VertexLoader::CompileVertexTranslator() void VertexLoader::WriteCall(TPipelineFunction func) { #ifdef USE_VERTEX_LOADER_JIT -#if _M_X86_64 MOV(64, R(RAX), Imm64((u64)func)); CALLptr(R(RAX)); #else - CALL((void*)func); -#endif -#else m_PipelineStages[m_numPipelineStages++] = func; #endif } @@ -786,24 +778,16 @@ void VertexLoader::WriteCall(TPipelineFunction func) void VertexLoader::WriteGetVariable(int bits, OpArg dest, void *address) { #ifdef USE_VERTEX_LOADER_JIT -#if _M_X86_64 MOV(64, R(RAX), Imm64((u64)address)); MOV(bits, dest, MatR(RAX)); -#else - MOV(bits, dest, M(address)); -#endif #endif } void VertexLoader::WriteSetVariable(int bits, void *address, OpArg value) { #ifdef USE_VERTEX_LOADER_JIT -#if _M_X86_64 MOV(64, R(RAX), Imm64((u64)address)); MOV(bits, MatR(RAX), value); -#else - MOV(bits, M(address), value); -#endif #endif } #endif |
