Home
last modified time | relevance | path

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

/art/runtime/
Dinstrumentation.cc952 uint32_t dex_pc, const JValue& return_value) const { in MethodExitEventImpl()
960 cur->MethodExited(thread, this_object, method, dex_pc, return_value); in MethodExitEventImpl()
1071 JValue return_value; in PopInstrumentationStackFrame() local
1073 return_value.SetJ(0); in PopInstrumentationStackFrame()
1075 return_value.SetJ(fpr_result); in PopInstrumentationStackFrame()
1077 return_value.SetJ(gpr_result); in PopInstrumentationStackFrame()
1084 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); in PopInstrumentationStackFrame()
1098 return_value.GetJ()) << *self; in PopInstrumentationStackFrame()
1100 self->SetDeoptimizationReturnValue(return_value); in PopInstrumentationStackFrame()
Dinstrumentation.h70 const JValue& return_value)
271 const JValue& return_value) const in MethodExitEvent() argument
274 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value); in MethodExitEvent()
364 uint32_t dex_pc, const JValue& return_value) const
Ddebugger.h381 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
411 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
522 int event_flags, const JValue* return_value)
667 const JValue* return_value)
Dtrace.h83 const JValue& return_value)
Ddebugger.cc248 uint32_t dex_pc, const JValue& return_value) in MethodExited() argument
254 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value); in MethodExited()
1758 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, in OutputMethodReturnValue() argument
1762 OutputJValue(tag, return_value, pReply); in OutputMethodReturnValue()
1950 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { in OutputJValue() argument
1954 expandBufAdd1(pReply, return_value->GetI()); in OutputJValue()
1956 expandBufAdd2BE(pReply, return_value->GetI()); in OutputJValue()
1958 expandBufAdd4BE(pReply, return_value->GetI()); in OutputJValue()
1960 expandBufAdd8BE(pReply, return_value->GetJ()); in OutputJValue()
1966 mirror::Object* value = return_value->GetL(); in OutputJValue()
[all …]
Dtrace.cc600 const JValue& return_value) { in MethodExited() argument
601 UNUSED(return_value); in MethodExited()
/art/compiler/sea_ir/code_gen/
Dcode_gen.cc140 llvm::Value* return_value = llvm_data_->GetValue(instruction->GetSSAProducers().at(0)); in Visit() local
141 llvm_data_->builder_.CreateRet(return_value); in Visit()
214 llvm::Value* return_value = llvm_data_->builder_.CreateCall(callee, in Visit() local
216 llvm_data_->AddValue(invoke, return_value); in Visit()