mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:07:45 +00:00
LibJS: Make JumpIf{True,False,Nullish} inherit from Jump
This saves a few lines in LogicalExpression::generate_bytecode.
This commit is contained in:
parent
afbbcde150
commit
ef83872f62
2 changed files with 16 additions and 35 deletions
|
@ -126,7 +126,7 @@ Optional<Bytecode::Register> LogicalExpression::generate_bytecode(Bytecode::Gene
|
||||||
auto result_reg = generator.allocate_register();
|
auto result_reg = generator.allocate_register();
|
||||||
auto lhs_reg = m_lhs->generate_bytecode(generator);
|
auto lhs_reg = m_lhs->generate_bytecode(generator);
|
||||||
|
|
||||||
Bytecode::Instruction* test_instr;
|
Bytecode::Op::Jump* test_instr;
|
||||||
switch (m_op) {
|
switch (m_op) {
|
||||||
case LogicalOp::And:
|
case LogicalOp::And:
|
||||||
test_instr = &generator.emit<Bytecode::Op::JumpIfTrue>(*lhs_reg);
|
test_instr = &generator.emit<Bytecode::Op::JumpIfTrue>(*lhs_reg);
|
||||||
|
@ -145,20 +145,7 @@ Optional<Bytecode::Register> LogicalExpression::generate_bytecode(Bytecode::Gene
|
||||||
auto& end_jump = generator.emit<Bytecode::Op::Jump>();
|
auto& end_jump = generator.emit<Bytecode::Op::Jump>();
|
||||||
|
|
||||||
auto rhs_label = generator.make_label();
|
auto rhs_label = generator.make_label();
|
||||||
|
test_instr->set_target(rhs_label);
|
||||||
switch (m_op) {
|
|
||||||
case LogicalOp::And:
|
|
||||||
static_cast<Bytecode::Op::JumpIfTrue*>(test_instr)->set_target(rhs_label);
|
|
||||||
break;
|
|
||||||
case LogicalOp::Or:
|
|
||||||
static_cast<Bytecode::Op::JumpIfFalse*>(test_instr)->set_target(rhs_label);
|
|
||||||
break;
|
|
||||||
case LogicalOp::NullishCoalescing:
|
|
||||||
static_cast<Bytecode::Op::JumpIfNullish*>(test_instr)->set_target(rhs_label);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
VERIFY_NOT_REACHED();
|
|
||||||
}
|
|
||||||
|
|
||||||
auto rhs_reg = m_rhs->generate_bytecode(generator);
|
auto rhs_reg = m_rhs->generate_bytecode(generator);
|
||||||
generator.emit<Bytecode::Op::LoadRegister>(result_reg, *rhs_reg);
|
generator.emit<Bytecode::Op::LoadRegister>(result_reg, *rhs_reg);
|
||||||
|
|
|
@ -229,8 +229,14 @@ private:
|
||||||
Register m_src;
|
Register m_src;
|
||||||
};
|
};
|
||||||
|
|
||||||
class Jump final : public Instruction {
|
class Jump : public Instruction {
|
||||||
public:
|
public:
|
||||||
|
explicit Jump(Type type, Optional<Label> target = {})
|
||||||
|
: Instruction(type)
|
||||||
|
, m_target(move(target))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
explicit Jump(Optional<Label> target = {})
|
explicit Jump(Optional<Label> target = {})
|
||||||
: Instruction(Type::Jump)
|
: Instruction(Type::Jump)
|
||||||
, m_target(move(target))
|
, m_target(move(target))
|
||||||
|
@ -242,65 +248,53 @@ public:
|
||||||
void execute(Bytecode::Interpreter&) const;
|
void execute(Bytecode::Interpreter&) const;
|
||||||
String to_string() const;
|
String to_string() const;
|
||||||
|
|
||||||
private:
|
protected:
|
||||||
Optional<Label> m_target;
|
Optional<Label> m_target;
|
||||||
};
|
};
|
||||||
|
|
||||||
class JumpIfFalse final : public Instruction {
|
class JumpIfFalse final : public Jump {
|
||||||
public:
|
public:
|
||||||
explicit JumpIfFalse(Register result, Optional<Label> target = {})
|
explicit JumpIfFalse(Register result, Optional<Label> target = {})
|
||||||
: Instruction(Type::JumpIfFalse)
|
: Jump(Type::JumpIfFalse, move(target))
|
||||||
, m_result(result)
|
, m_result(result)
|
||||||
, m_target(move(target))
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void set_target(Optional<Label> target) { m_target = move(target); }
|
|
||||||
|
|
||||||
void execute(Bytecode::Interpreter&) const;
|
void execute(Bytecode::Interpreter&) const;
|
||||||
String to_string() const;
|
String to_string() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Register m_result;
|
Register m_result;
|
||||||
Optional<Label> m_target;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class JumpIfTrue final : public Instruction {
|
class JumpIfTrue : public Jump {
|
||||||
public:
|
public:
|
||||||
explicit JumpIfTrue(Register result, Optional<Label> target = {})
|
explicit JumpIfTrue(Register result, Optional<Label> target = {})
|
||||||
: Instruction(Type::JumpIfTrue)
|
: Jump(Type::JumpIfTrue, move(target))
|
||||||
, m_result(result)
|
, m_result(result)
|
||||||
, m_target(move(target))
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void set_target(Optional<Label> target) { m_target = move(target); }
|
|
||||||
|
|
||||||
void execute(Bytecode::Interpreter&) const;
|
void execute(Bytecode::Interpreter&) const;
|
||||||
String to_string() const;
|
String to_string() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Register m_result;
|
Register m_result;
|
||||||
Optional<Label> m_target;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class JumpIfNullish final : public Instruction {
|
class JumpIfNullish final : public Jump {
|
||||||
public:
|
public:
|
||||||
explicit JumpIfNullish(Register result, Optional<Label> target = {})
|
explicit JumpIfNullish(Register result, Optional<Label> target = {})
|
||||||
: Instruction(Type::JumpIfNullish)
|
: Jump(Type::JumpIfNullish, move(target))
|
||||||
, m_result(result)
|
, m_result(result)
|
||||||
, m_target(move(target))
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void set_target(Optional<Label> target) { m_target = move(target); }
|
|
||||||
|
|
||||||
void execute(Bytecode::Interpreter&) const;
|
void execute(Bytecode::Interpreter&) const;
|
||||||
String to_string() const;
|
String to_string() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Register m_result;
|
Register m_result;
|
||||||
Optional<Label> m_target;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// NOTE: This instruction is variable-width depending on the number of arguments!
|
// NOTE: This instruction is variable-width depending on the number of arguments!
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue