Home
last modified time | relevance | path

Searched refs:IsReturn (Results 1 – 11 of 11) 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.cc1090 } else if (inst->IsReturn()) { in VerifyInstructions()
3589 if (GetInstructionFlags(next_insn_idx).IsReturn()) { in CodeFlowVerifyInstruction()
4923 if (GetInstructionFlags(next_insn).IsReturn()) { in UpdateRegisters()
/art/compiler/optimizing/
Dlive_ranges_test.cc77 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST_F()
125 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST_F()
Dblock_builder.cc157 } else if (instruction.IsReturn() || (instruction.Opcode() == Instruction::THROW)) { in ConnectBasicBlocks()
Dload_store_elimination.cc78 if (user->IsReturn()) { in ReferenceInfo()
Dgraph_checker.cc31 return instruction->IsThrow() || instruction->IsReturn() || instruction->IsReturnVoid(); in IsAllowedToJumpToExitBlock()
Dnodes.cc2036 if (last->IsReturn()) { in InlineInto()
2124 DCHECK(last->IsReturn()); in InlineInto()
/art/runtime/
Ddex_instruction.h511 bool IsReturn() const { in IsReturn() function
517 return IsBranch() || IsReturn() || Opcode() == THROW; in IsBasicBlockEnd()
Ddebugger.cc156 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { in MethodEntered()
178 DCHECK(IsReturn(method, dex_pc)); in MethodExited()
196 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { in DexPcMoved()
251 static bool IsReturn(ArtMethod* method, uint32_t dex_pc) in IsReturn() function in art::FINAL
255 return instruction->IsReturn(); in IsReturn()
Dutils.cc1710 if (inst->IsReturn() || in DumpMethodCFGImpl()