Home
last modified time | relevance | path

Searched refs:return_value (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dinstrumentation.cc876 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()
Dinstrumentation.h71 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
Ddebugger.h403 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)
Dtrace.h154 const JValue& return_value)
Ddebugger.cc266 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 …]
Dinstrumentation_test.cc55 const JValue& return_value ATTRIBUTE_UNUSED) in MethodExited()
Dtrace.cc778 const JValue& return_value ATTRIBUTE_UNUSED) { in MethodExited()
/art/compiler/optimizing/
Dnodes.cc1261 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()