Lines Matching refs:NodeProperties
73 Node* end_block() { return NodeProperties::GetControlInput(unique_return()); } in end_block()
78 return NodeProperties::GetEffectInput(unique_return()); in effect_output()
83 return NodeProperties::GetValueInput(unique_return(), 0); in value_output()
87 Node* unique_return = NodeProperties::GetControlInput(end_); in unique_return()
117 Node* final_merge = NodeProperties::GetControlInput(graph->end(), 0); in UnifyReturn()
139 values.push_back(NodeProperties::GetValueInput(input, 0)); in UnifyReturn()
140 effects.push_back(NodeProperties::GetEffectInput(input)); in UnifyReturn()
141 iter.UpdateToAndIncrement(NodeProperties::GetControlInput(input)); in UnifyReturn()
236 Node* control = NodeProperties::GetControlInput(call); in InlineAtCall()
243 NodeProperties::GetValueInput(call, 0), in InlineAtCall()
244 NodeProperties::GetEffectInput(call)); in InlineAtCall()
261 NodeProperties::ReplaceWithValue(*iter, call->InputAt(index)); in InlineAtCall()
265 NodeProperties::ReplaceWithValue(*iter, context); in InlineAtCall()
268 NodeProperties::ReplaceWithValue(*iter, jsgraph->UndefinedConstant()); in InlineAtCall()
277 if (NodeProperties::IsEffectEdge(iter.edge())) { in InlineAtCall()
279 } else if (NodeProperties::IsControlEdge(iter.edge())) { in InlineAtCall()
291 if (NodeProperties::IsEffectEdge(iter.edge())) { in InlineAtCall()
293 } else if (NodeProperties::IsControlEdge(iter.edge())) { in InlineAtCall()
296 DCHECK(NodeProperties::IsValueEdge(iter.edge())); in InlineAtCall()
331 Node* frame_state() { return NodeProperties::GetFrameStateInput(call_); } in frame_state()
438 NodeProperties::ReplaceFrameStateInput(node, outer_frame_state); in TryInlineCall()