Move macro assembler out of public/assembler into sourcepawn/vm/x86.

This commit is contained in:
David Anderson 2015-03-07 11:16:37 -08:00
parent 561004c4bf
commit 1d313e3120
7 changed files with 5 additions and 5 deletions

View File

@ -47,6 +47,7 @@ library.sources += [
'stack-frames.cpp', 'stack-frames.cpp',
'smx-v1-image.cpp', 'smx-v1-image.cpp',
'watchdog_timer.cpp', 'watchdog_timer.cpp',
'x86/assembler-x86.cpp',
'x86/code-stubs-x86.cpp', 'x86/code-stubs-x86.cpp',
'x86/jit_x86.cpp', 'x86/jit_x86.cpp',
'x86/x86-utils.cpp', 'x86/x86-utils.cpp',
@ -62,7 +63,6 @@ library.sources += [
'../third_party/zlib/trees.c', '../third_party/zlib/trees.c',
'../third_party/zlib/uncompr.c', '../third_party/zlib/uncompr.c',
'../third_party/zlib/zutil.c', '../third_party/zlib/zutil.c',
'../../public/jit/x86/assembler-x86.cpp',
] ]
libsourcepawn = builder.Add(library).binary libsourcepawn = builder.Add(library).binary

View File

@ -28,6 +28,6 @@
* *
* Version: $Id$ * Version: $Id$
*/ */
#include <assembler-x86.h> #include "assembler-x86.h"
CPUFeatures AssemblerX86::X86Features; CPUFeatures AssemblerX86::X86Features;

View File

@ -19,12 +19,12 @@
#include <sp_vm_types.h> #include <sp_vm_types.h>
#include <sp_vm_api.h> #include <sp_vm_api.h>
#include <macro-assembler-x86.h>
#include <am-vector.h> #include <am-vector.h>
#include "plugin-runtime.h" #include "plugin-runtime.h"
#include "plugin-context.h" #include "plugin-context.h"
#include "compiled-function.h" #include "compiled-function.h"
#include "opcodes.h" #include "opcodes.h"
#include "macro-assembler-x86.h"
using namespace SourcePawn; using namespace SourcePawn;

View File

@ -34,7 +34,7 @@
#include <assembler.h> #include <assembler.h>
#include <am-vector.h> #include <am-vector.h>
#include <string.h> #include <string.h>
#include <assembler-x86.h> #include "assembler-x86.h"
class MacroAssemblerX86 : public AssemblerX86 class MacroAssemblerX86 : public AssemblerX86
{ {

View File

@ -14,7 +14,7 @@
#define _include_sourcepawn_vm_x86_utils_h_ #define _include_sourcepawn_vm_x86_utils_h_
#include <stdint.h> #include <stdint.h>
#include <macro-assembler-x86.h> #include "macro-assembler-x86.h"
namespace sp { namespace sp {