HomeSort by relevance Sort by last modified time
    Searched refs:GetLastInstruction (Results 1 - 6 of 6) sorted by null

  /art/compiler/optimizing/
graph_test.cc 84 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_true);
85 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), return_block);
90 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_true);
93 HBasicBlock* false_block = if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor();
119 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), return_block);
120 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), if_false);
125 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), if_false);
128 HBasicBlock* true_block = if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor();
153 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfTrueSuccessor(), if_block);
154 ASSERT_EQ(if_block->GetLastInstruction()->AsIf()->IfFalseSuccessor(), return_block)
    [all...]
live_ranges_test.cc 71 ASSERT_TRUE(block->GetLastInstruction()->AsReturn() != nullptr);
72 ASSERT_EQ(8u, block->GetLastInstruction()->GetLifetimePosition());
117 ASSERT_TRUE(block->GetLastInstruction()->AsReturn() != nullptr);
118 ASSERT_EQ(22u, block->GetLastInstruction()->GetLifetimePosition());
builder.cc 277 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
285 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
296 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
307 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
409 HInstruction* null_check = current_block_->GetLastInstruction();
419 current_block_->GetLastInstruction(),
423 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
459 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
691 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
698 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
    [all...]
register_allocator_test.cc 317 HReturn* ret = return_block->GetLastInstruction()->AsReturn();
337 HAdd* last_add = graph->GetBlocks().Get(1)->GetLastInstruction()->GetPrevious()->AsAdd();
register_allocator.cc 746 HInstruction* last = block->GetLastInstruction();
    [all...]
nodes.h 303 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; }
    [all...]

Completed in 55 milliseconds