Rename jit_function to compiled-function.
This commit is contained in:
parent
892b8c05b1
commit
45bac7feb0
@ -30,9 +30,9 @@ if binary.compiler.cc.behavior == 'msvc':
|
|||||||
|
|
||||||
binary.sources += [
|
binary.sources += [
|
||||||
'BaseRuntime.cpp',
|
'BaseRuntime.cpp',
|
||||||
'engine2.cpp',
|
'compiled-function.cpp',
|
||||||
'dll_exports.cpp',
|
'dll_exports.cpp',
|
||||||
'jit_function.cpp',
|
'engine2.cpp',
|
||||||
'sp_vm_basecontext.cpp',
|
'sp_vm_basecontext.cpp',
|
||||||
'sp_vm_engine.cpp',
|
'sp_vm_engine.cpp',
|
||||||
'sp_vm_function.cpp',
|
'sp_vm_function.cpp',
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include <am-vector.h>
|
#include <am-vector.h>
|
||||||
#include <am-inlinelist.h>
|
#include <am-inlinelist.h>
|
||||||
#include "jit_shared.h"
|
#include "jit_shared.h"
|
||||||
#include "jit_function.h"
|
#include "compiled-function.h"
|
||||||
#include "sp_vm_function.h"
|
#include "sp_vm_function.h"
|
||||||
|
|
||||||
class BaseContext;
|
class BaseContext;
|
||||||
|
@ -18,7 +18,7 @@ OBJECTS = dll_exports.cpp \
|
|||||||
engine2.cpp \
|
engine2.cpp \
|
||||||
BaseRuntime.cpp \
|
BaseRuntime.cpp \
|
||||||
opcodes.cpp \
|
opcodes.cpp \
|
||||||
jit_function.cpp \
|
compiled-function.cpp \
|
||||||
md5/md5.cpp \
|
md5/md5.cpp \
|
||||||
zlib/adler32.c \
|
zlib/adler32.c \
|
||||||
zlib/compress.c \
|
zlib/compress.c \
|
||||||
|
@ -17,7 +17,7 @@ OBJECTS = dll_exports.cpp \
|
|||||||
sp_vm_function.cpp \
|
sp_vm_function.cpp \
|
||||||
engine2.cpp \
|
engine2.cpp \
|
||||||
BaseRuntime.cpp \
|
BaseRuntime.cpp \
|
||||||
jit_function.cpp \
|
compiled-function.cpp \
|
||||||
opcodes.cpp \
|
opcodes.cpp \
|
||||||
watchdog_timer.cpp \
|
watchdog_timer.cpp \
|
||||||
interpreter.cpp \
|
interpreter.cpp \
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License along with
|
// You should have received a copy of the GNU General Public License along with
|
||||||
// SourcePawn. If not, see http://www.gnu.org/licenses/.
|
// SourcePawn. If not, see http://www.gnu.org/licenses/.
|
||||||
//
|
//
|
||||||
#include "jit_function.h"
|
#include "compiled-function.h"
|
||||||
#include "sp_vm_engine.h"
|
#include "sp_vm_engine.h"
|
||||||
#include "jit_x86.h"
|
#include "jit_x86.h"
|
||||||
|
|
@ -25,7 +25,7 @@
|
|||||||
#include "jit_shared.h"
|
#include "jit_shared.h"
|
||||||
#include "BaseRuntime.h"
|
#include "BaseRuntime.h"
|
||||||
#include "sp_vm_basecontext.h"
|
#include "sp_vm_basecontext.h"
|
||||||
#include "jit_function.h"
|
#include "compiled-function.h"
|
||||||
#include "opcodes.h"
|
#include "opcodes.h"
|
||||||
#include <am-thread-utils.h>
|
#include <am-thread-utils.h>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user