Home
last modified time | relevance | path

Searched refs:IsReturn (Results 1 – 8 of 8) 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.cc803 } else if (inst->IsReturn()) { in VerifyInstructions()
3100 if (insn_flags_[next_insn_idx].IsReturn()) { in CodeFlowVerifyInstruction()
4258 if (!insn_flags_[next_insn].IsReturn()) { in UpdateRegisters()
/art/compiler/optimizing/
Dlive_ranges_test.cc81 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST()
129 ASSERT_TRUE(block->GetLastInstruction()->IsReturn()); in TEST()
Dnodes.cc1238 if (last->IsReturn()) { in InlineInto()
Dbuilder.cc1306 (last_in_target->IsReturn() || last_in_target->IsReturnVoid())) { in PotentiallyAddSuspendCheck()
/art/runtime/
Ddex_instruction.h478 bool IsReturn() const { in IsReturn() function
484 return IsBranch() || IsReturn() || Opcode() == THROW; in IsBasicBlockEnd()
Ddebugger.cc253 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { in MethodEntered()
275 DCHECK(IsReturn(method, dex_pc)); in MethodExited()
293 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { in DexPcMoved()
337 static bool IsReturn(ArtMethod* method, uint32_t dex_pc) in IsReturn() function in art::FINAL
341 return instruction->IsReturn(); in IsReturn()