LibJIT+LibJS: Rename Assembler to X86_64Assembler

This is in preparation for making LibJIT support multiple architectures.
Assembler will now be typedefed to the specific assembler
for a particular architecture.
Additionally, there's now JIT_ARCH_SUPPORTED which is defined on
architectures which LibJIT supports.
This commit is contained in:
Nikodem Rabuliński 2023-11-05 17:52:29 +01:00 committed by Andreas Kling
commit 8aa35f4fab
Notes: sideshowbarker 2024-07-17 06:51:40 +09:00
4 changed files with 778 additions and 764 deletions

View file

@ -10,7 +10,7 @@
#include <AK/Platform.h>
#include <LibJS/JIT/NativeExecutable.h>
#if ARCH(X86_64)
#ifdef JIT_ARCH_SUPPORTED
# include <LibJIT/Assembler.h>
# include <LibJS/Bytecode/Executable.h>
# include <LibJS/Bytecode/Op.h>