LibJS: Move all bytecode instruction implementations to Interpreter.cpp

This allows aggressive inlining without LTO.
This commit is contained in:
Andreas Kling 2023-09-27 10:10:00 +02:00
parent e5474c384d
commit ae1ac9871b
Notes: sideshowbarker 2024-07-16 20:21:48 +09:00
3 changed files with 1916 additions and 1930 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,6 @@ set(SOURCES
Bytecode/IdentifierTable.cpp
Bytecode/Instruction.cpp
Bytecode/Interpreter.cpp
Bytecode/Op.cpp
Bytecode/RegexTable.cpp
Bytecode/StringTable.cpp
Console.cpp