Searched defs:then (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dgvn_test.cc142 HBasicBlock* then = new (&allocator) HBasicBlock(graph); local
145 graph->AddBlock(then);
149 block->AddSuccessor(then);
151 then->AddSuccessor(join);
154 then->AddInstruction(new (&allocator) HInstanceFieldGet(parameter,
163 then->AddInstruction(new (&allocator) HGoto());
191 ASSERT_TRUE(then->GetFirstInstruction()->IsGoto());
H A Dregister_allocator_test.cc484 HBasicBlock* then = new (allocator) HBasicBlock(graph); local
487 graph->AddBlock(then);
491 block->AddSuccessor(then);
493 then->AddSuccessor(join);
495 then->AddInstruction(new (allocator) HGoto());
518 then->AddInstruction(*input1);
867 // this interval and the first interval. We would have then put the interval with ranges
H A Dinliner.cc559 // and the returned block is the start of the then branch (that could contain multiple blocks).
560 HBasicBlock* then = cursor_block->SplitAfterForInlining(compare); local
587 graph_->AddBlock(then);
593 cursor_block->AddSuccessor(then);
598 then->SetDominator(cursor_block);
599 cursor_block->AddDominatedBlock(then);
608 graph_->reverse_post_order_[++index] = then;
616 then, original_invoke_block, /* replace_if_back_edge */ false);
1055 // same as the local "this" pointer then we must have a super invocation.

Completed in 486 milliseconds