1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibJS: Inline Cell::Visitor::visit() functions

This allows the calls to MarkingVisitor::visit_impl() during GC to be
devirtualized in Heap::mark_live_cells().
This commit is contained in:
Andreas Kling 2021-05-25 18:17:41 +02:00
parent c81b3e1ee3
commit 91656d63c7
4 changed files with 11 additions and 28 deletions

View file

@ -327,6 +327,12 @@ inline Value js_negative_infinity()
return Value(-INFINITY);
}
inline void Cell::Visitor::visit(Value value)
{
if (value.is_cell())
visit_impl(value.as_cell());
}
Value greater_than(GlobalObject&, Value lhs, Value rhs);
Value greater_than_equals(GlobalObject&, Value lhs, Value rhs);
Value less_than(GlobalObject&, Value lhs, Value rhs);