/art/compiler/jni/quick/ |
D | calling_convention.cc | 257 bool return_value; in IsCurrentParamAReference() local 262 &return_value)) { in IsCurrentParamAReference() 263 return return_value; in IsCurrentParamAReference() 279 bool return_value; in IsCurrentParamAFloatOrDouble() local 284 &return_value)) { in IsCurrentParamAFloatOrDouble() 285 return return_value; in IsCurrentParamAFloatOrDouble() 293 bool return_value; in IsCurrentParamADouble() local 298 &return_value)) { in IsCurrentParamADouble() 299 return return_value; in IsCurrentParamADouble() 307 bool return_value; in IsCurrentParamALong() local [all …]
|
D | calling_convention.h | 422 bool* return_value) const;
|
/art/tools/bisection_search/ |
D | bisection_test.py | 54 self.testable_mock.GetAllMethods.return_value = self._METHODS 55 self.testable_mock.GetAllPassesForMethod.return_value = self._PASSES 65 self.testable_mock.Test.return_value = True 70 self.testable_mock.Test.return_value = False 85 self.testable_mock.GetAllPassesForMethod.return_value += (
|
/art/runtime/entrypoints/quick/ |
D | quick_deoptimization_entrypoints.cc | 70 JValue return_value; in artDeoptimizeFromCompiledCode() local 71 return_value.SetJ(0); // we never deoptimize from compiled code with an invoke result. in artDeoptimizeFromCompiledCode() 72 self->PushDeoptimizationContext(return_value, in artDeoptimizeFromCompiledCode()
|
/art/runtime/ |
D | instrumentation.cc | 61 Handle<mirror::Object> return_value) { in MethodExited() argument 65 v.SetL(return_value.Get()); in MethodExited() 1171 const JValue& return_value) const { in MethodExitEventImpl() 1180 listener->MethodExited(thread, thiz, method, dex_pc, return_value); in MethodExitEventImpl() 1184 Handle<mirror::Object> ret(hs.NewHandle(return_value.GetL())); in MethodExitEventImpl() 1499 JValue return_value; in PopInstrumentationStackFrame() local 1501 return_value.SetJ(0); in PopInstrumentationStackFrame() 1503 return_value.SetJ(*fpr_result); in PopInstrumentationStackFrame() 1505 return_value.SetJ(*gpr_result); in PopInstrumentationStackFrame() 1509 res.Assign(return_value.GetL()); in PopInstrumentationStackFrame() [all …]
|
D | instrumentation.h | 80 Handle<mirror::Object> return_value) 90 const JValue& return_value) 404 const JValue& return_value) const in MethodExitEvent() argument 407 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value); in MethodExitEvent() 577 const JValue& return_value) const
|
D | debugger.h | 425 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, 455 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) 547 int event_flags, const JValue* return_value) 782 const JValue* return_value)
|
D | trace.h | 188 const JValue& return_value)
|
D | debugger.cc | 182 const JValue& return_value) in MethodExited() argument 195 Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value); in MethodExited() 1747 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, in OutputMethodReturnValue() argument 1751 OutputJValue(tag, return_value, pReply); in OutputMethodReturnValue() 2039 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { in OutputJValue() argument 2043 expandBufAdd1(pReply, return_value->GetI()); in OutputJValue() 2045 expandBufAdd2BE(pReply, return_value->GetI()); in OutputJValue() 2047 expandBufAdd4BE(pReply, return_value->GetI()); in OutputJValue() 2049 expandBufAdd8BE(pReply, return_value->GetJ()); in OutputJValue() 2055 mirror::Object* value = return_value->GetL(); in OutputJValue() [all …]
|
D | instrumentation_test.cc | 69 Handle<mirror::Object> return_value ATTRIBUTE_UNUSED) in MethodExited() 78 const JValue& return_value ATTRIBUTE_UNUSED) in MethodExited()
|
D | trace.cc | 749 const JValue& return_value ATTRIBUTE_UNUSED) { in MethodExited()
|
D | thread.h | 1003 void PushDeoptimizationContext(const JValue& return_value,
|
D | thread.cc | 257 void Thread::PushDeoptimizationContext(const JValue& return_value, in PushDeoptimizationContext() argument 263 return_value, in PushDeoptimizationContext()
|
/art/tools/tracefast-plugin/ |
D | tracefast.cc | 55 art::Handle<art::mirror::Object> return_value ATTRIBUTE_UNUSED) in MethodExited() 62 const art::JValue& return_value ATTRIBUTE_UNUSED) in MethodExited()
|
/art/compiler/optimizing/ |
D | nodes.cc | 2460 HInstruction* return_value = nullptr; in InlineInto() local 2479 return_value = last->InputAt(0); in InlineInto() 2569 DCHECK(return_value == nullptr); in InlineInto() 2575 } else if (return_value == nullptr) { in InlineInto() 2576 return_value = last->InputAt(0); in InlineInto() 2582 return_value_phi->AddInput(return_value); in InlineInto() 2584 return_value = return_value_phi; in InlineInto() 2647 if (current == return_value) { in InlineInto() 2648 DCHECK_EQ(entry_block_, return_value->GetBlock()); in InlineInto() 2649 return_value = replacement; in InlineInto() [all …]
|
/art/openjdkjvmti/ |
D | events.cc | 597 art::Handle<art::mirror::Object> return_value) in MethodExited() argument 607 ScopedLocalRef<jobject> return_jobj(jnienv, AddLocalRef<jobject>(jnienv, return_value.Get())); in MethodExited() 624 const art::JValue& return_value) in MethodExited() argument 636 val.j = return_value.GetJ(); in MethodExited()
|
/art/test/ti-agent/ |
D | trace_helper.cc | 243 jvalue return_value) { in methodExitCB() argument 263 was_popped_by_exception ? nullptr : GetJavaValue(jvmti, jnienv, method, return_value); in methodExitCB()
|
/art/test/1953-pop-frame/ |
D | pop_frame.cc | 166 jvalue return_value ATTRIBUTE_UNUSED) { in cbMethodExit()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 839 jvalue return_value);
|