Searched refs:return_value (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | instrumentation.cc | 876 uint32_t dex_pc, const JValue& return_value) const { in MethodExitEventImpl() 884 cur->MethodExited(thread, this_object, method, dex_pc, return_value); in MethodExitEventImpl() 992 JValue return_value; in PopInstrumentationStackFrame() local 994 return_value.SetJ(0); in PopInstrumentationStackFrame() 996 return_value.SetJ(fpr_result); in PopInstrumentationStackFrame() 998 return_value.SetJ(gpr_result); in PopInstrumentationStackFrame() 1005 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); in PopInstrumentationStackFrame() 1020 return_value.GetJ()) << *self; in PopInstrumentationStackFrame() 1022 self->SetDeoptimizationReturnValue(return_value, return_shorty == 'L'); in PopInstrumentationStackFrame()
|
D | instrumentation.h | 71 const JValue& return_value) 286 const JValue& return_value) const in MethodExitEvent() argument 289 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value); in MethodExitEvent() 388 uint32_t dex_pc, const JValue& return_value) const
|
D | debugger.h | 403 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, 433 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) 543 int event_flags, const JValue* return_value) 764 const JValue* return_value)
|
D | trace.h | 154 const JValue& return_value)
|
D | debugger.cc | 266 uint32_t dex_pc, const JValue& return_value) in MethodExited() argument 279 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value); in MethodExited() 1727 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, in OutputMethodReturnValue() argument 1731 OutputJValue(tag, return_value, pReply); in OutputMethodReturnValue() 1996 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { in OutputJValue() argument 2000 expandBufAdd1(pReply, return_value->GetI()); in OutputJValue() 2002 expandBufAdd2BE(pReply, return_value->GetI()); in OutputJValue() 2004 expandBufAdd4BE(pReply, return_value->GetI()); in OutputJValue() 2006 expandBufAdd8BE(pReply, return_value->GetJ()); in OutputJValue() 2012 mirror::Object* value = return_value->GetL(); in OutputJValue() [all …]
|
D | instrumentation_test.cc | 55 const JValue& return_value ATTRIBUTE_UNUSED) in MethodExited()
|
D | trace.cc | 778 const JValue& return_value ATTRIBUTE_UNUSED) { in MethodExited()
|
/art/compiler/optimizing/ |
D | nodes.cc | 1261 HInstruction* return_value = nullptr; in InlineInto() local 1267 return_value = last->InputAt(0); in InlineInto() 1274 return_value = new (allocator) HPhi( in InlineInto() 1276 to->AddPhi(return_value->AsPhi()); in InlineInto() 1282 return_value->AsPhi()->AddInput(last->InputAt(0)); in InlineInto() 1289 if (return_value != nullptr) { in InlineInto() 1290 invoke->ReplaceWith(return_value); in InlineInto()
|