Lines Matching defs:frame_state
187 FrameState frame_state{NodeProperties::GetFrameStateInput(node)};
188 FrameStateInfo const& frame_info = frame_state.frame_state_info();
370 bool CollectFrameStateUniqueUses(Node* node, FrameState frame_state,
374 if (frame_state->UseCount() > 1) return true;
375 if (frame_state.stack() == node) {
377 uses_buffer[*use_count] = {frame_state, FrameState::kFrameStateStackInput};
380 if (!CollectStateValuesOwnedUses(node, frame_state.locals(), uses_buffer,
390 FrameState frame_state, Node* from, Node* to, StateCloneMode mode) {
393 if (frame_state->UseCount() > 1) return frame_state;
395 mode == kChangeInPlace ? static_cast<Node*>(frame_state) : nullptr;
396 if (frame_state.stack() == from) {
398 copy = graph()->CloneNode(frame_state);
402 Node* locals = frame_state.locals();
406 copy = graph()->CloneNode(frame_state);
410 return copy != nullptr ? FrameState{copy} : frame_state;
580 FrameState frame_state{NodeProperties::GetFrameStateInput(node)};
581 if (!CollectFrameStateUniqueUses(callee, frame_state, replaceable_uses,
626 frame_state, callee, target,