Home
last modified time | relevance | path

Searched refs:live_input_count (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Ddead-code-elimination.cc43 int live_input_count = 0; in ReduceEnd() local
49 if (i != live_input_count) node->ReplaceInput(live_input_count, input); in ReduceEnd()
50 ++live_input_count; in ReduceEnd()
52 if (live_input_count == 0) { in ReduceEnd()
54 } else if (live_input_count < input_count) { in ReduceEnd()
55 node->TrimInputCount(live_input_count); in ReduceEnd()
56 NodeProperties::ChangeOp(node, common()->End(live_input_count)); in ReduceEnd()
59 DCHECK_EQ(input_count, live_input_count); in ReduceEnd()
72 int live_input_count = 0; in ReduceLoopOrMerge() local
80 if (live_input_count != i) { in ReduceLoopOrMerge()
[all …]
Dosr.cc300 int const live_input_count = osr_loop->InputCount() - 1; in Deconstruct() local
301 CHECK_NE(0, live_input_count); in Deconstruct()
306 use, common->ResizeMergeOrPhi(use->op(), live_input_count)); in Deconstruct()
311 osr_loop, common->ResizeMergeOrPhi(osr_loop->op(), live_input_count)); in Deconstruct()