Commit dd6fa2d1 authored by Leszek Swirski's avatar Leszek Swirski Committed by V8 LUCI CQ

[maglev] Fix lifetime extension of generator values

Loop used value lifetimes extension extends the lifetime of anything
used inside of a loop but defined outside of it, to make sure that it is
considered 'live' for the entire body of the loop (this is so that we
don't e.g. clobber their stack slots with stack slot reuse).

The implementation works on the principle that a) basic blocks are
topologically sorted by forward control flow, and b) loops are
irreducible. This means that basic blocks between a loop header and the
jump to that loop header are inside the loop, and nodes whose id
preceeds the loop header's id must be before the loop.

Generator resumes break this irreducibility by jumping into the middle
of loops. This is principally not a problem for the above lifetime
extension, it just means that the loop's used nodes will overapproximate
and include these generator nodes. However, there was an implicit
additional assumption that the node must be loadable by the loop end, to
extend its lifetime. This fails for the generator resume case, because
it's possible that the node didn't make it into any loop merge state,
e.g. because the resume would immediately deopt or return, e.g.

                 Start
                 /   \
                /   GeneratorResume
                |         |
                v         |
           .>Loop header  |
          |     |         |
          |   Branch      |
          |   |    |      |
          |   |  Suspend  |
          |   |           |
          |   |  Resume <-'
          |   |    |
          |   |  Return
          |   v
          `--JumpLoop

Here the Resume will get the accumulator from the generator and the
Return will use it, which will be seen as an out-of-loop use of the
generator, but the generator was never reachable from the "real" loop
body.

At the end of the day, since there are no actual uses of the generator
value in the loop body, the lifetime extension does no harm; all that
fails is a DCHECK that the values loop lifetime extension extends are
actually loadable. So, we can relax this DCHECK for this specific
generator edge case, by checking for whether the JumpLoop is reachable
from the generator resume.

Bug: v8:7700
Change-Id: Iec4db2aee5b8812de61c3afb9004c8be3982baa2
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3890975
Auto-Submit: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarJakob Linke <jgruber@chromium.org>
Commit-Queue: Jakob Linke <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/main@{#83144}
parent 9438113d
......@@ -799,6 +799,71 @@ void StraightForwardRegisterAllocator::InitializeConditionalBranchTarget(
target);
}
#ifdef DEBUG
namespace {
bool IsReachable(BasicBlock* source_block, BasicBlock* target_block,
std::set<BasicBlock*>& visited) {
if (source_block == target_block) return true;
if (!visited.insert(source_block).second) return false;
ControlNode* control_node = source_block->control_node();
if (UnconditionalControlNode* unconditional =
control_node->TryCast<UnconditionalControlNode>()) {
return IsReachable(unconditional->target(), target_block, visited);
}
if (BranchControlNode* branch = control_node->TryCast<BranchControlNode>()) {
return IsReachable(branch->if_true(), target_block, visited) ||
IsReachable(branch->if_true(), target_block, visited);
}
if (Switch* switch_node = control_node->TryCast<Switch>()) {
const BasicBlockRef* targets = switch_node->targets();
for (int i = 0; i < switch_node->size(); i++) {
if (IsReachable(source_block, targets[i].block_ptr(), visited)) {
return true;
}
}
if (switch_node->has_fallthrough()) {
if (IsReachable(source_block, switch_node->fallthrough(), visited)) {
return true;
}
}
return false;
}
return false;
}
// Complex predicate for a JumpLoop lifetime extension DCHECK, see comments
// in AllocateControlNode.
bool IsValueFromGeneratorResumeThatDoesNotReachJumpLoop(
Graph* graph, ValueNode* input_node, BasicBlock* jump_loop_block) {
// The given node _must_ be created in the generator resume block. This is
// always the third block -- the first is inital values, the second is the
// test for an undefined generator, and the third is the generator resume
// machinery.
DCHECK_GE(graph->num_blocks(), 3);
BasicBlock* generator_block = *(graph->begin() + 2);
DCHECK_EQ(generator_block->control_node()->opcode(), Opcode::kSwitch);
bool found_node = false;
for (Node* node : generator_block->nodes()) {
if (node == input_node) {
found_node = true;
break;
}
}
DCHECK(found_node);
std::set<BasicBlock*> visited;
bool jump_loop_block_is_reachable_from_generator_block =
IsReachable(generator_block, jump_loop_block, visited);
DCHECK(!jump_loop_block_is_reachable_from_generator_block);
return true;
}
} // namespace
#endif
void StraightForwardRegisterAllocator::AllocateControlNode(ControlNode* node,
BasicBlock* block) {
current_node_ = node;
......@@ -853,7 +918,14 @@ void StraightForwardRegisterAllocator::AllocateControlNode(ControlNode* node,
// extended lifetime nodes are dead.
if (auto jump_loop = node->TryCast<JumpLoop>()) {
for (Input& input : jump_loop->used_nodes()) {
DCHECK(input.node()->has_register() || input.node()->is_loadable());
// Since the value is used by the loop, it must be live somewhere (
// either in a register or loadable). The exception is when this value
// is created in a generator resume, and the use of it cannot reach the
// JumpLoop (e.g. because it returns or deopts on resume).
DCHECK_IMPLIES(
!input.node()->has_register() && !input.node()->is_loadable(),
IsValueFromGeneratorResumeThatDoesNotReachJumpLoop(
graph_, input.node(), block));
UpdateUse(&input);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment