Searched defs:last_instruction (Results 1 - 4 of 4) sorted by relevance

/art/compiler/optimizing/
H A Ddead_code_elimination.cc45 HInstruction* last_instruction = block->GetLastInstruction(); local
46 if (last_instruction->IsIf()) {
47 HIf* if_instruction = last_instruction->AsIf();
59 } else if (last_instruction->IsPackedSwitch()) {
60 HPackedSwitch* switch_instruction = last_instruction->AsPackedSwitch();
H A Dgraph_checker.cc121 HInstruction* last_instruction = IsExitTryBoundaryIntoExitBlock(predecessor) ? local
124 if (!IsAllowedToJumpToExitBlock(last_instruction)) {
126 last_instruction->DebugName(),
127 last_instruction->GetId()));
H A Dnodes.cc2154 HInstruction* last_instruction = predecessor->GetLastInstruction(); local
2155 if (last_instruction->IsTryBoundary() && !IsCatchBlock()) {
2161 DCHECK_EQ(last_instruction->AsTryBoundary()->GetNormalFlowSuccessor(), this);
2176 DCHECK(last_instruction->IsIf() ||
2177 last_instruction->IsPackedSwitch() ||
2178 (last_instruction->IsTryBoundary() && IsCatchBlock()));
2179 predecessor->RemoveInstruction(last_instruction);
2180 predecessor->AddInstruction(new (graph_->GetAllocator()) HGoto(last_instruction->GetDexPc()));
2185 predecessor->RemoveInstruction(last_instruction);
2190 // case, leave `last_instruction` a
[all...]
/art/compiler/utils/mips/
H A Dassembler_mips.cc940 uint32_t last_instruction = delay_slot_.instruction_; local
942 bool exchange = (last_instruction != 0 &&
959 CHECK_EQ(instr1, last_instruction);

Completed in 80 milliseconds