1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00
serenity/Userland/Libraries/LibJS/JIT
Andreas Kling 8b32e98f3f LibJS/JIT: Simplify Increment Int32 fast path
When we know the value is a positive Int32 less than 0x7fffffff,
it's safe to just add 1 to it and use that as the final result.
This avoids the work of re-adding the INT32_TAG.
2023-10-27 19:07:22 +02:00
..
Compiler.cpp LibJS/JIT: Simplify Increment Int32 fast path 2023-10-27 19:07:22 +02:00
Compiler.h LibJIT+LibJS: Move JIT::Assembler into a new LibJIT library 2023-10-27 19:07:22 +02:00
NativeExecutable.cpp LibJS/JIT: Don't keep trying to JIT unsupported bytecode executables 2023-10-27 19:07:22 +02:00
NativeExecutable.h LibJS/JIT: Don't keep trying to JIT unsupported bytecode executables 2023-10-27 19:07:22 +02:00