Home
last modified time | relevance | path

Searched refs:IsReturn (Results 1 – 13 of 13) sorted by relevance

/art/compiler/optimizing/
Descape.cc72 } else if (user->IsReturn()) { in VisitEscapes()
121 } else if (escape->IsReturn()) { in CalculateEscape()
Dlive_ranges_test.cc77 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST_F()
121 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST_F()
Dselect_generator.cc45 return instruction->IsGoto() || instruction->IsReturn(); in IsSimpleBlock()
Dcode_sinking.cc39 if (!last->IsReturn() && !last->IsReturnVoid()) { in Run()
Dblock_builder.cc191 } else if (instruction.IsReturn() || (instruction.Opcode() == Instruction::THROW)) { in ConnectBasicBlocks()
Dnodes.cc2252 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsReturn(); in IsSingleReturn()
2257 (GetLastInstruction()->IsReturn() || GetLastInstruction()->IsReturnVoid()); in IsSingleReturnOrReturnVoidAllowingPhis()
2270 (GetLastInstruction()->IsReturn() || GetLastInstruction()->IsReturnVoid()); in EndsWithReturn()
2753 if (last->IsReturn()) { in InlineInto()
2847 DCHECK(last->IsReturn()); in InlineInto()
Dscheduler.cc751 instruction->IsReturn() || in IsSchedulable()
Dgraph_checker.cc41 if (instruction->IsReturn() || instruction->IsReturnVoid()) { in IsAllowedToJumpToExitBlock()
/art/runtime/verifier/
Dinstruction_flags.cc36 if (IsReturn()) encoding[kReturn] = 'R'; in ToString()
Dinstruction_flags.h101 bool IsReturn() const { in IsReturn() function
Dmethod_verifier.cc1183 if (inst->IsReturn()) { in VerifyInstructions()
3614 if (GetInstructionFlags(next_insn_idx).IsReturn()) { in CodeFlowVerifyInstruction()
4895 if (GetInstructionFlags(next_insn).IsReturn()) { in UpdateRegisters()
/art/libdexfile/dex/
Ddex_instruction.h584 bool IsReturn() const { in IsReturn() function
590 return IsBranch() || IsReturn() || Opcode() == THROW; in IsBasicBlockEnd()
/art/dexdump/
Ddexdump_cfg.cc266 if (inst->IsReturn() || in DumpMethodCFG()