1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:27:35 +00:00

LibJS/JIT: Add increment instruction

Instead of using `Add` with an immediate of 1 use the `Inc` instruction
This commit is contained in:
Stephan Vedder 2023-11-07 16:56:02 +01:00 committed by Andreas Kling
parent e122039c99
commit 0e69f744df
2 changed files with 26 additions and 19 deletions

View file

@ -742,6 +742,21 @@ struct X86_64Assembler {
}
}
void inc32(Operand op, Optional<Label&> overflow_label)
{
if (op.is_register_or_memory()) {
emit_rex_for_slash(op, REX_W::No);
emit8(0xff);
emit_modrm_slash(0, op);
} else {
VERIFY_NOT_REACHED();
}
if (overflow_label.has_value()) {
jump_if(Condition::Overflow, *overflow_label);
}
}
void add(Operand dst, Operand src)
{
if (dst.is_register_or_memory() && src.type == Operand::Type::Reg) {