mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:18:12 +00:00
LibJS/JIT: Store the VM register array base in RBX
This allows us to use the displacement-less MOV encoding when accessing register $0 (the accumulator). This reduces code size by 158 KiB on Kraken/ai-astar.js :^)
This commit is contained in:
parent
32d3a47058
commit
9c0c672839
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ private:
|
|||
static constexpr auto ARG5 = Assembler::Reg::R9;
|
||||
static constexpr auto RET = Assembler::Reg::RAX;
|
||||
static constexpr auto STACK_POINTER = Assembler::Reg::RSP;
|
||||
static constexpr auto REGISTER_ARRAY_BASE = Assembler::Reg::R13;
|
||||
static constexpr auto REGISTER_ARRAY_BASE = Assembler::Reg::RBX;
|
||||
static constexpr auto LOCALS_ARRAY_BASE = Assembler::Reg::R14;
|
||||
static constexpr auto UNWIND_CONTEXT_BASE = Assembler::Reg::R15;
|
||||
# endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue