Searched defs:return_value (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dnodes.cc1261 HInstruction* return_value = nullptr; local
1267 return_value = last->InputAt(0);
1274 return_value = new (allocator) HPhi(
1276 to->AddPhi(return_value->AsPhi());
1282 return_value->AsPhi()->AddInput(last->InputAt(0));
1289 if (return_value != nullptr) {
1290 invoke->ReplaceWith(return_value);
/art/runtime/
H A Dinstrumentation.cc876 uint32_t dex_pc, const JValue& return_value) const {
884 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
992 JValue return_value; local
994 return_value.SetJ(0);
996 return_value.SetJ(fpr_result);
998 return_value.SetJ(gpr_result);
1005 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
1020 return_value.GetJ()) << *self;
1022 self->SetDeoptimizationReturnValue(return_value, return_shorty == 'L');
H A Ddebugger.cc266 uint32_t dex_pc, const JValue& return_value)
279 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
1727 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, argument
1731 OutputJValue(tag, return_value, pReply);
1996 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { argument
2000 expandBufAdd1(pReply, return_value->GetI());
2002 expandBufAdd2BE(pReply, return_value->GetI());
2004 expandBufAdd4BE(pReply, return_value->GetI());
2006 expandBufAdd8BE(pReply, return_value->GetJ());
2012 mirror::Object* value = return_value
2870 PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object, int event_flags, const JValue* return_value) argument
3043 UpdateDebugger(Thread* thread, mirror::Object* this_object, ArtMethod* m, uint32_t dex_pc, int event_flags, const JValue* return_value) argument
[all...]

Completed in 54 milliseconds