Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dinstruction_flags.cc36 if (IsReturn()) encoding[kReturn] = 'R'; in ToString()
Dinstruction_flags.h101 bool IsReturn() const { in IsReturn() function
Dmethod_verifier.cc1176 if (inst->IsReturn()) { in VerifyInstructions()
3669 if (GetInstructionFlags(next_insn_idx).IsReturn()) { in CodeFlowVerifyInstruction()
4964 if (GetInstructionFlags(next_insn).IsReturn()) { in UpdateRegisters()
/art/compiler/optimizing/
Descape.cc83 } else if (user->IsReturn()) { in CalculateEscape()
Dlive_ranges_test.cc74 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST_F()
118 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST_F()
Dselect_generator.cc47 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.cc1980 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsReturn(); in IsSingleReturn()
1985 (GetLastInstruction()->IsReturn() || GetLastInstruction()->IsReturnVoid()); in IsSingleReturnOrReturnVoidAllowingPhis()
1998 (GetLastInstruction()->IsReturn() || GetLastInstruction()->IsReturnVoid()); in EndsWithReturn()
2478 if (last->IsReturn()) { in InlineInto()
2572 DCHECK(last->IsReturn()); in InlineInto()
Dscheduler.cc754 instruction->IsReturn() || in IsSchedulable()
Dgraph_checker.cc40 if (instruction->IsReturn() || instruction->IsReturnVoid()) { in IsAllowedToJumpToExitBlock()
/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()