Lines Matching refs:cursor_block
1002 HBasicBlock* cursor_block = compare->GetBlock(); in CreateDiamondPatternForPolymorphicInline() local
1008 HBasicBlock* then = cursor_block->SplitAfterForInlining(compare); in CreateDiamondPatternForPolymorphicInline()
1032 cursor_block->AddInstruction(new (allocator) HIf(compare, dex_pc)); in CreateDiamondPatternForPolymorphicInline()
1040 cursor_block->AddSuccessor(otherwise); in CreateDiamondPatternForPolymorphicInline()
1041 cursor_block->AddSuccessor(then); in CreateDiamondPatternForPolymorphicInline()
1046 then->SetDominator(cursor_block); in CreateDiamondPatternForPolymorphicInline()
1047 cursor_block->AddDominatedBlock(then); in CreateDiamondPatternForPolymorphicInline()
1048 otherwise->SetDominator(cursor_block); in CreateDiamondPatternForPolymorphicInline()
1049 cursor_block->AddDominatedBlock(otherwise); in CreateDiamondPatternForPolymorphicInline()
1050 merge->SetDominator(cursor_block); in CreateDiamondPatternForPolymorphicInline()
1051 cursor_block->AddDominatedBlock(merge); in CreateDiamondPatternForPolymorphicInline()
1054 size_t index = IndexOfElement(graph_->reverse_post_order_, cursor_block); in CreateDiamondPatternForPolymorphicInline()