LibJS: Move Bytecode::Instruction::execute() to the Op.h header

..and make sure it always gets inlined in the interpreter loop.
This commit is contained in:
Andreas Kling 2021-06-09 09:19:34 +02:00
commit 48a8022cf6
Notes: sideshowbarker 2024-07-18 12:35:26 +09:00
3 changed files with 20 additions and 15 deletions

View file

@ -8,6 +8,7 @@
#include <LibJS/Bytecode/BasicBlock.h>
#include <LibJS/Bytecode/Instruction.h>
#include <LibJS/Bytecode/Interpreter.h>
#include <LibJS/Bytecode/Op.h>
#include <LibJS/Runtime/GlobalObject.h>
namespace JS::Bytecode {