From d459ebee412a6b5f336fde0b167fede6c62b224d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 7 Mar 2015 10:50:15 -0800 Subject: [PATCH] Rename jit/ to vm/. --- AMBuildScript | 2 +- sourcepawn/{jit => vm}/AMBuilder | 2 +- sourcepawn/{jit => vm}/Makefile | 0 sourcepawn/{jit => vm}/Makefile.shell | 0 sourcepawn/{jit => vm}/api.cpp | 0 sourcepawn/{jit => vm}/api.h | 0 sourcepawn/{jit => vm}/code-allocator.cpp | 0 sourcepawn/{jit => vm}/code-allocator.h | 0 sourcepawn/{jit => vm}/code-stubs.cpp | 0 sourcepawn/{jit => vm}/code-stubs.h | 0 sourcepawn/{jit => vm}/compiled-function.cpp | 0 sourcepawn/{jit => vm}/compiled-function.h | 0 sourcepawn/{jit => vm}/dll_exports.cpp | 0 sourcepawn/{jit => vm}/dll_exports.h | 0 sourcepawn/{jit => vm}/environment.cpp | 0 sourcepawn/{jit => vm}/environment.h | 0 sourcepawn/{jit => vm}/file-utils.cpp | 0 sourcepawn/{jit => vm}/file-utils.h | 0 sourcepawn/{jit => vm}/legacy-image.h | 0 sourcepawn/{jit => vm}/md5/md5.cpp | 0 sourcepawn/{jit => vm}/md5/md5.h | 0 sourcepawn/{jit => vm}/msvc10/jit-x86.sln | 0 sourcepawn/{jit => vm}/msvc10/jit-x86.vcxproj | 0 sourcepawn/{jit => vm}/msvc10/jit-x86.vcxproj.filters | 0 sourcepawn/{jit => vm}/msvc8/jit-x86.sln | 0 sourcepawn/{jit => vm}/msvc8/jit-x86.vcproj | 0 sourcepawn/{jit => vm}/msvc9/jit-x86.sln | 0 sourcepawn/{jit => vm}/msvc9/jit-x86.vcproj | 0 sourcepawn/{jit => vm}/opcodes.cpp | 0 sourcepawn/{jit => vm}/opcodes.h | 0 sourcepawn/{jit => vm}/plugin-context.cpp | 0 sourcepawn/{jit => vm}/plugin-context.h | 0 sourcepawn/{jit => vm}/plugin-runtime.cpp | 0 sourcepawn/{jit => vm}/plugin-runtime.h | 0 sourcepawn/{jit => vm}/scripted-invoker.cpp | 0 sourcepawn/{jit => vm}/scripted-invoker.h | 0 sourcepawn/{jit => vm}/smx-v1-image.cpp | 0 sourcepawn/{jit => vm}/smx-v1-image.h | 0 sourcepawn/{jit => vm}/stack-frames.cpp | 0 sourcepawn/{jit => vm}/stack-frames.h | 0 sourcepawn/{jit => vm}/version.rc | 0 sourcepawn/{jit => vm}/watchdog_timer.cpp | 0 sourcepawn/{jit => vm}/watchdog_timer.h | 0 sourcepawn/{jit => vm}/x86/code-stubs-x86.cpp | 0 sourcepawn/{jit => vm}/x86/frames-x86.h | 0 sourcepawn/{jit => vm}/x86/jit_x86.cpp | 0 sourcepawn/{jit => vm}/x86/jit_x86.h | 0 sourcepawn/{jit => vm}/x86/x86-utils.cpp | 0 sourcepawn/{jit => vm}/x86/x86-utils.h | 0 sourcepawn/{jit => vm}/zlib/adler32.c | 0 sourcepawn/{jit => vm}/zlib/compress.c | 0 sourcepawn/{jit => vm}/zlib/crc32.c | 0 sourcepawn/{jit => vm}/zlib/crc32.h | 0 sourcepawn/{jit => vm}/zlib/deflate.c | 0 sourcepawn/{jit => vm}/zlib/deflate.h | 0 sourcepawn/{jit => vm}/zlib/gzio.c | 0 sourcepawn/{jit => vm}/zlib/infback.c | 0 sourcepawn/{jit => vm}/zlib/inffast.c | 0 sourcepawn/{jit => vm}/zlib/inffast.h | 0 sourcepawn/{jit => vm}/zlib/inffixed.h | 0 sourcepawn/{jit => vm}/zlib/inflate.c | 0 sourcepawn/{jit => vm}/zlib/inflate.h | 0 sourcepawn/{jit => vm}/zlib/inftrees.c | 0 sourcepawn/{jit => vm}/zlib/inftrees.h | 0 sourcepawn/{jit => vm}/zlib/trees.c | 0 sourcepawn/{jit => vm}/zlib/trees.h | 0 sourcepawn/{jit => vm}/zlib/uncompr.c | 0 sourcepawn/{jit => vm}/zlib/zconf.h | 0 sourcepawn/{jit => vm}/zlib/zlib.h | 0 sourcepawn/{jit => vm}/zlib/zutil.c | 0 sourcepawn/{jit => vm}/zlib/zutil.h | 0 71 files changed, 2 insertions(+), 2 deletions(-) rename sourcepawn/{jit => vm}/AMBuilder (97%) rename sourcepawn/{jit => vm}/Makefile (100%) rename sourcepawn/{jit => vm}/Makefile.shell (100%) rename sourcepawn/{jit => vm}/api.cpp (100%) rename sourcepawn/{jit => vm}/api.h (100%) rename sourcepawn/{jit => vm}/code-allocator.cpp (100%) rename sourcepawn/{jit => vm}/code-allocator.h (100%) rename sourcepawn/{jit => vm}/code-stubs.cpp (100%) rename sourcepawn/{jit => vm}/code-stubs.h (100%) rename sourcepawn/{jit => vm}/compiled-function.cpp (100%) rename sourcepawn/{jit => vm}/compiled-function.h (100%) rename sourcepawn/{jit => vm}/dll_exports.cpp (100%) rename sourcepawn/{jit => vm}/dll_exports.h (100%) rename sourcepawn/{jit => vm}/environment.cpp (100%) rename sourcepawn/{jit => vm}/environment.h (100%) rename sourcepawn/{jit => vm}/file-utils.cpp (100%) rename sourcepawn/{jit => vm}/file-utils.h (100%) rename sourcepawn/{jit => vm}/legacy-image.h (100%) rename sourcepawn/{jit => vm}/md5/md5.cpp (100%) rename sourcepawn/{jit => vm}/md5/md5.h (100%) rename sourcepawn/{jit => vm}/msvc10/jit-x86.sln (100%) rename sourcepawn/{jit => vm}/msvc10/jit-x86.vcxproj (100%) rename sourcepawn/{jit => vm}/msvc10/jit-x86.vcxproj.filters (100%) rename sourcepawn/{jit => vm}/msvc8/jit-x86.sln (100%) rename sourcepawn/{jit => vm}/msvc8/jit-x86.vcproj (100%) rename sourcepawn/{jit => vm}/msvc9/jit-x86.sln (100%) rename sourcepawn/{jit => vm}/msvc9/jit-x86.vcproj (100%) rename sourcepawn/{jit => vm}/opcodes.cpp (100%) rename sourcepawn/{jit => vm}/opcodes.h (100%) rename sourcepawn/{jit => vm}/plugin-context.cpp (100%) rename sourcepawn/{jit => vm}/plugin-context.h (100%) rename sourcepawn/{jit => vm}/plugin-runtime.cpp (100%) rename sourcepawn/{jit => vm}/plugin-runtime.h (100%) rename sourcepawn/{jit => vm}/scripted-invoker.cpp (100%) rename sourcepawn/{jit => vm}/scripted-invoker.h (100%) rename sourcepawn/{jit => vm}/smx-v1-image.cpp (100%) rename sourcepawn/{jit => vm}/smx-v1-image.h (100%) rename sourcepawn/{jit => vm}/stack-frames.cpp (100%) rename sourcepawn/{jit => vm}/stack-frames.h (100%) rename sourcepawn/{jit => vm}/version.rc (100%) rename sourcepawn/{jit => vm}/watchdog_timer.cpp (100%) rename sourcepawn/{jit => vm}/watchdog_timer.h (100%) rename sourcepawn/{jit => vm}/x86/code-stubs-x86.cpp (100%) rename sourcepawn/{jit => vm}/x86/frames-x86.h (100%) rename sourcepawn/{jit => vm}/x86/jit_x86.cpp (100%) rename sourcepawn/{jit => vm}/x86/jit_x86.h (100%) rename sourcepawn/{jit => vm}/x86/x86-utils.cpp (100%) rename sourcepawn/{jit => vm}/x86/x86-utils.h (100%) rename sourcepawn/{jit => vm}/zlib/adler32.c (100%) rename sourcepawn/{jit => vm}/zlib/compress.c (100%) rename sourcepawn/{jit => vm}/zlib/crc32.c (100%) rename sourcepawn/{jit => vm}/zlib/crc32.h (100%) rename sourcepawn/{jit => vm}/zlib/deflate.c (100%) rename sourcepawn/{jit => vm}/zlib/deflate.h (100%) rename sourcepawn/{jit => vm}/zlib/gzio.c (100%) rename sourcepawn/{jit => vm}/zlib/infback.c (100%) rename sourcepawn/{jit => vm}/zlib/inffast.c (100%) rename sourcepawn/{jit => vm}/zlib/inffast.h (100%) rename sourcepawn/{jit => vm}/zlib/inffixed.h (100%) rename sourcepawn/{jit => vm}/zlib/inflate.c (100%) rename sourcepawn/{jit => vm}/zlib/inflate.h (100%) rename sourcepawn/{jit => vm}/zlib/inftrees.c (100%) rename sourcepawn/{jit => vm}/zlib/inftrees.h (100%) rename sourcepawn/{jit => vm}/zlib/trees.c (100%) rename sourcepawn/{jit => vm}/zlib/trees.h (100%) rename sourcepawn/{jit => vm}/zlib/uncompr.c (100%) rename sourcepawn/{jit => vm}/zlib/zconf.h (100%) rename sourcepawn/{jit => vm}/zlib/zlib.h (100%) rename sourcepawn/{jit => vm}/zlib/zutil.c (100%) rename sourcepawn/{jit => vm}/zlib/zutil.h (100%) diff --git a/AMBuildScript b/AMBuildScript index f2214adb..3788e118 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -509,7 +509,7 @@ BuildScripts = [ 'extensions/topmenus/AMBuilder', 'extensions/updater/AMBuilder', 'sourcepawn/compiler/AMBuilder', - 'sourcepawn/jit/AMBuilder', + 'sourcepawn/vm/AMBuilder', ] if builder.backend == 'amb2': diff --git a/sourcepawn/jit/AMBuilder b/sourcepawn/vm/AMBuilder similarity index 97% rename from sourcepawn/jit/AMBuilder rename to sourcepawn/vm/AMBuilder index c3e04579..9592d186 100644 --- a/sourcepawn/jit/AMBuilder +++ b/sourcepawn/vm/AMBuilder @@ -3,7 +3,7 @@ import os Includes = [ os.path.join(SM.mms_root, 'core', 'sourcehook'), - os.path.join(builder.sourcePath, 'sourcepawn', 'jit'), + os.path.join(builder.sourcePath, 'sourcepawn', 'vm'), os.path.join(builder.sourcePath, 'public'), os.path.join(builder.sourcePath, 'public', 'sourcepawn'), os.path.join(builder.sourcePath, 'public', 'amtl'), diff --git a/sourcepawn/jit/Makefile b/sourcepawn/vm/Makefile similarity index 100% rename from sourcepawn/jit/Makefile rename to sourcepawn/vm/Makefile diff --git a/sourcepawn/jit/Makefile.shell b/sourcepawn/vm/Makefile.shell similarity index 100% rename from sourcepawn/jit/Makefile.shell rename to sourcepawn/vm/Makefile.shell diff --git a/sourcepawn/jit/api.cpp b/sourcepawn/vm/api.cpp similarity index 100% rename from sourcepawn/jit/api.cpp rename to sourcepawn/vm/api.cpp diff --git a/sourcepawn/jit/api.h b/sourcepawn/vm/api.h similarity index 100% rename from sourcepawn/jit/api.h rename to sourcepawn/vm/api.h diff --git a/sourcepawn/jit/code-allocator.cpp b/sourcepawn/vm/code-allocator.cpp similarity index 100% rename from sourcepawn/jit/code-allocator.cpp rename to sourcepawn/vm/code-allocator.cpp diff --git a/sourcepawn/jit/code-allocator.h b/sourcepawn/vm/code-allocator.h similarity index 100% rename from sourcepawn/jit/code-allocator.h rename to sourcepawn/vm/code-allocator.h diff --git a/sourcepawn/jit/code-stubs.cpp b/sourcepawn/vm/code-stubs.cpp similarity index 100% rename from sourcepawn/jit/code-stubs.cpp rename to sourcepawn/vm/code-stubs.cpp diff --git a/sourcepawn/jit/code-stubs.h b/sourcepawn/vm/code-stubs.h similarity index 100% rename from sourcepawn/jit/code-stubs.h rename to sourcepawn/vm/code-stubs.h diff --git a/sourcepawn/jit/compiled-function.cpp b/sourcepawn/vm/compiled-function.cpp similarity index 100% rename from sourcepawn/jit/compiled-function.cpp rename to sourcepawn/vm/compiled-function.cpp diff --git a/sourcepawn/jit/compiled-function.h b/sourcepawn/vm/compiled-function.h similarity index 100% rename from sourcepawn/jit/compiled-function.h rename to sourcepawn/vm/compiled-function.h diff --git a/sourcepawn/jit/dll_exports.cpp b/sourcepawn/vm/dll_exports.cpp similarity index 100% rename from sourcepawn/jit/dll_exports.cpp rename to sourcepawn/vm/dll_exports.cpp diff --git a/sourcepawn/jit/dll_exports.h b/sourcepawn/vm/dll_exports.h similarity index 100% rename from sourcepawn/jit/dll_exports.h rename to sourcepawn/vm/dll_exports.h diff --git a/sourcepawn/jit/environment.cpp b/sourcepawn/vm/environment.cpp similarity index 100% rename from sourcepawn/jit/environment.cpp rename to sourcepawn/vm/environment.cpp diff --git a/sourcepawn/jit/environment.h b/sourcepawn/vm/environment.h similarity index 100% rename from sourcepawn/jit/environment.h rename to sourcepawn/vm/environment.h diff --git a/sourcepawn/jit/file-utils.cpp b/sourcepawn/vm/file-utils.cpp similarity index 100% rename from sourcepawn/jit/file-utils.cpp rename to sourcepawn/vm/file-utils.cpp diff --git a/sourcepawn/jit/file-utils.h b/sourcepawn/vm/file-utils.h similarity index 100% rename from sourcepawn/jit/file-utils.h rename to sourcepawn/vm/file-utils.h diff --git a/sourcepawn/jit/legacy-image.h b/sourcepawn/vm/legacy-image.h similarity index 100% rename from sourcepawn/jit/legacy-image.h rename to sourcepawn/vm/legacy-image.h diff --git a/sourcepawn/jit/md5/md5.cpp b/sourcepawn/vm/md5/md5.cpp similarity index 100% rename from sourcepawn/jit/md5/md5.cpp rename to sourcepawn/vm/md5/md5.cpp diff --git a/sourcepawn/jit/md5/md5.h b/sourcepawn/vm/md5/md5.h similarity index 100% rename from sourcepawn/jit/md5/md5.h rename to sourcepawn/vm/md5/md5.h diff --git a/sourcepawn/jit/msvc10/jit-x86.sln b/sourcepawn/vm/msvc10/jit-x86.sln similarity index 100% rename from sourcepawn/jit/msvc10/jit-x86.sln rename to sourcepawn/vm/msvc10/jit-x86.sln diff --git a/sourcepawn/jit/msvc10/jit-x86.vcxproj b/sourcepawn/vm/msvc10/jit-x86.vcxproj similarity index 100% rename from sourcepawn/jit/msvc10/jit-x86.vcxproj rename to sourcepawn/vm/msvc10/jit-x86.vcxproj diff --git a/sourcepawn/jit/msvc10/jit-x86.vcxproj.filters b/sourcepawn/vm/msvc10/jit-x86.vcxproj.filters similarity index 100% rename from sourcepawn/jit/msvc10/jit-x86.vcxproj.filters rename to sourcepawn/vm/msvc10/jit-x86.vcxproj.filters diff --git a/sourcepawn/jit/msvc8/jit-x86.sln b/sourcepawn/vm/msvc8/jit-x86.sln similarity index 100% rename from sourcepawn/jit/msvc8/jit-x86.sln rename to sourcepawn/vm/msvc8/jit-x86.sln diff --git a/sourcepawn/jit/msvc8/jit-x86.vcproj b/sourcepawn/vm/msvc8/jit-x86.vcproj similarity index 100% rename from sourcepawn/jit/msvc8/jit-x86.vcproj rename to sourcepawn/vm/msvc8/jit-x86.vcproj diff --git a/sourcepawn/jit/msvc9/jit-x86.sln b/sourcepawn/vm/msvc9/jit-x86.sln similarity index 100% rename from sourcepawn/jit/msvc9/jit-x86.sln rename to sourcepawn/vm/msvc9/jit-x86.sln diff --git a/sourcepawn/jit/msvc9/jit-x86.vcproj b/sourcepawn/vm/msvc9/jit-x86.vcproj similarity index 100% rename from sourcepawn/jit/msvc9/jit-x86.vcproj rename to sourcepawn/vm/msvc9/jit-x86.vcproj diff --git a/sourcepawn/jit/opcodes.cpp b/sourcepawn/vm/opcodes.cpp similarity index 100% rename from sourcepawn/jit/opcodes.cpp rename to sourcepawn/vm/opcodes.cpp diff --git a/sourcepawn/jit/opcodes.h b/sourcepawn/vm/opcodes.h similarity index 100% rename from sourcepawn/jit/opcodes.h rename to sourcepawn/vm/opcodes.h diff --git a/sourcepawn/jit/plugin-context.cpp b/sourcepawn/vm/plugin-context.cpp similarity index 100% rename from sourcepawn/jit/plugin-context.cpp rename to sourcepawn/vm/plugin-context.cpp diff --git a/sourcepawn/jit/plugin-context.h b/sourcepawn/vm/plugin-context.h similarity index 100% rename from sourcepawn/jit/plugin-context.h rename to sourcepawn/vm/plugin-context.h diff --git a/sourcepawn/jit/plugin-runtime.cpp b/sourcepawn/vm/plugin-runtime.cpp similarity index 100% rename from sourcepawn/jit/plugin-runtime.cpp rename to sourcepawn/vm/plugin-runtime.cpp diff --git a/sourcepawn/jit/plugin-runtime.h b/sourcepawn/vm/plugin-runtime.h similarity index 100% rename from sourcepawn/jit/plugin-runtime.h rename to sourcepawn/vm/plugin-runtime.h diff --git a/sourcepawn/jit/scripted-invoker.cpp b/sourcepawn/vm/scripted-invoker.cpp similarity index 100% rename from sourcepawn/jit/scripted-invoker.cpp rename to sourcepawn/vm/scripted-invoker.cpp diff --git a/sourcepawn/jit/scripted-invoker.h b/sourcepawn/vm/scripted-invoker.h similarity index 100% rename from sourcepawn/jit/scripted-invoker.h rename to sourcepawn/vm/scripted-invoker.h diff --git a/sourcepawn/jit/smx-v1-image.cpp b/sourcepawn/vm/smx-v1-image.cpp similarity index 100% rename from sourcepawn/jit/smx-v1-image.cpp rename to sourcepawn/vm/smx-v1-image.cpp diff --git a/sourcepawn/jit/smx-v1-image.h b/sourcepawn/vm/smx-v1-image.h similarity index 100% rename from sourcepawn/jit/smx-v1-image.h rename to sourcepawn/vm/smx-v1-image.h diff --git a/sourcepawn/jit/stack-frames.cpp b/sourcepawn/vm/stack-frames.cpp similarity index 100% rename from sourcepawn/jit/stack-frames.cpp rename to sourcepawn/vm/stack-frames.cpp diff --git a/sourcepawn/jit/stack-frames.h b/sourcepawn/vm/stack-frames.h similarity index 100% rename from sourcepawn/jit/stack-frames.h rename to sourcepawn/vm/stack-frames.h diff --git a/sourcepawn/jit/version.rc b/sourcepawn/vm/version.rc similarity index 100% rename from sourcepawn/jit/version.rc rename to sourcepawn/vm/version.rc diff --git a/sourcepawn/jit/watchdog_timer.cpp b/sourcepawn/vm/watchdog_timer.cpp similarity index 100% rename from sourcepawn/jit/watchdog_timer.cpp rename to sourcepawn/vm/watchdog_timer.cpp diff --git a/sourcepawn/jit/watchdog_timer.h b/sourcepawn/vm/watchdog_timer.h similarity index 100% rename from sourcepawn/jit/watchdog_timer.h rename to sourcepawn/vm/watchdog_timer.h diff --git a/sourcepawn/jit/x86/code-stubs-x86.cpp b/sourcepawn/vm/x86/code-stubs-x86.cpp similarity index 100% rename from sourcepawn/jit/x86/code-stubs-x86.cpp rename to sourcepawn/vm/x86/code-stubs-x86.cpp diff --git a/sourcepawn/jit/x86/frames-x86.h b/sourcepawn/vm/x86/frames-x86.h similarity index 100% rename from sourcepawn/jit/x86/frames-x86.h rename to sourcepawn/vm/x86/frames-x86.h diff --git a/sourcepawn/jit/x86/jit_x86.cpp b/sourcepawn/vm/x86/jit_x86.cpp similarity index 100% rename from sourcepawn/jit/x86/jit_x86.cpp rename to sourcepawn/vm/x86/jit_x86.cpp diff --git a/sourcepawn/jit/x86/jit_x86.h b/sourcepawn/vm/x86/jit_x86.h similarity index 100% rename from sourcepawn/jit/x86/jit_x86.h rename to sourcepawn/vm/x86/jit_x86.h diff --git a/sourcepawn/jit/x86/x86-utils.cpp b/sourcepawn/vm/x86/x86-utils.cpp similarity index 100% rename from sourcepawn/jit/x86/x86-utils.cpp rename to sourcepawn/vm/x86/x86-utils.cpp diff --git a/sourcepawn/jit/x86/x86-utils.h b/sourcepawn/vm/x86/x86-utils.h similarity index 100% rename from sourcepawn/jit/x86/x86-utils.h rename to sourcepawn/vm/x86/x86-utils.h diff --git a/sourcepawn/jit/zlib/adler32.c b/sourcepawn/vm/zlib/adler32.c similarity index 100% rename from sourcepawn/jit/zlib/adler32.c rename to sourcepawn/vm/zlib/adler32.c diff --git a/sourcepawn/jit/zlib/compress.c b/sourcepawn/vm/zlib/compress.c similarity index 100% rename from sourcepawn/jit/zlib/compress.c rename to sourcepawn/vm/zlib/compress.c diff --git a/sourcepawn/jit/zlib/crc32.c b/sourcepawn/vm/zlib/crc32.c similarity index 100% rename from sourcepawn/jit/zlib/crc32.c rename to sourcepawn/vm/zlib/crc32.c diff --git a/sourcepawn/jit/zlib/crc32.h b/sourcepawn/vm/zlib/crc32.h similarity index 100% rename from sourcepawn/jit/zlib/crc32.h rename to sourcepawn/vm/zlib/crc32.h diff --git a/sourcepawn/jit/zlib/deflate.c b/sourcepawn/vm/zlib/deflate.c similarity index 100% rename from sourcepawn/jit/zlib/deflate.c rename to sourcepawn/vm/zlib/deflate.c diff --git a/sourcepawn/jit/zlib/deflate.h b/sourcepawn/vm/zlib/deflate.h similarity index 100% rename from sourcepawn/jit/zlib/deflate.h rename to sourcepawn/vm/zlib/deflate.h diff --git a/sourcepawn/jit/zlib/gzio.c b/sourcepawn/vm/zlib/gzio.c similarity index 100% rename from sourcepawn/jit/zlib/gzio.c rename to sourcepawn/vm/zlib/gzio.c diff --git a/sourcepawn/jit/zlib/infback.c b/sourcepawn/vm/zlib/infback.c similarity index 100% rename from sourcepawn/jit/zlib/infback.c rename to sourcepawn/vm/zlib/infback.c diff --git a/sourcepawn/jit/zlib/inffast.c b/sourcepawn/vm/zlib/inffast.c similarity index 100% rename from sourcepawn/jit/zlib/inffast.c rename to sourcepawn/vm/zlib/inffast.c diff --git a/sourcepawn/jit/zlib/inffast.h b/sourcepawn/vm/zlib/inffast.h similarity index 100% rename from sourcepawn/jit/zlib/inffast.h rename to sourcepawn/vm/zlib/inffast.h diff --git a/sourcepawn/jit/zlib/inffixed.h b/sourcepawn/vm/zlib/inffixed.h similarity index 100% rename from sourcepawn/jit/zlib/inffixed.h rename to sourcepawn/vm/zlib/inffixed.h diff --git a/sourcepawn/jit/zlib/inflate.c b/sourcepawn/vm/zlib/inflate.c similarity index 100% rename from sourcepawn/jit/zlib/inflate.c rename to sourcepawn/vm/zlib/inflate.c diff --git a/sourcepawn/jit/zlib/inflate.h b/sourcepawn/vm/zlib/inflate.h similarity index 100% rename from sourcepawn/jit/zlib/inflate.h rename to sourcepawn/vm/zlib/inflate.h diff --git a/sourcepawn/jit/zlib/inftrees.c b/sourcepawn/vm/zlib/inftrees.c similarity index 100% rename from sourcepawn/jit/zlib/inftrees.c rename to sourcepawn/vm/zlib/inftrees.c diff --git a/sourcepawn/jit/zlib/inftrees.h b/sourcepawn/vm/zlib/inftrees.h similarity index 100% rename from sourcepawn/jit/zlib/inftrees.h rename to sourcepawn/vm/zlib/inftrees.h diff --git a/sourcepawn/jit/zlib/trees.c b/sourcepawn/vm/zlib/trees.c similarity index 100% rename from sourcepawn/jit/zlib/trees.c rename to sourcepawn/vm/zlib/trees.c diff --git a/sourcepawn/jit/zlib/trees.h b/sourcepawn/vm/zlib/trees.h similarity index 100% rename from sourcepawn/jit/zlib/trees.h rename to sourcepawn/vm/zlib/trees.h diff --git a/sourcepawn/jit/zlib/uncompr.c b/sourcepawn/vm/zlib/uncompr.c similarity index 100% rename from sourcepawn/jit/zlib/uncompr.c rename to sourcepawn/vm/zlib/uncompr.c diff --git a/sourcepawn/jit/zlib/zconf.h b/sourcepawn/vm/zlib/zconf.h similarity index 100% rename from sourcepawn/jit/zlib/zconf.h rename to sourcepawn/vm/zlib/zconf.h diff --git a/sourcepawn/jit/zlib/zlib.h b/sourcepawn/vm/zlib/zlib.h similarity index 100% rename from sourcepawn/jit/zlib/zlib.h rename to sourcepawn/vm/zlib/zlib.h diff --git a/sourcepawn/jit/zlib/zutil.c b/sourcepawn/vm/zlib/zutil.c similarity index 100% rename from sourcepawn/jit/zlib/zutil.c rename to sourcepawn/vm/zlib/zutil.c diff --git a/sourcepawn/jit/zlib/zutil.h b/sourcepawn/vm/zlib/zutil.h similarity index 100% rename from sourcepawn/jit/zlib/zutil.h rename to sourcepawn/vm/zlib/zutil.h