/art/compiler/jni/quick/ |
D | calling_convention.cc | 255 bool return_value; in IsCurrentParamAReference() local 260 &return_value)) { in IsCurrentParamAReference() 261 return return_value; in IsCurrentParamAReference() 277 bool return_value; in IsCurrentParamAFloatOrDouble() local 282 &return_value)) { in IsCurrentParamAFloatOrDouble() 283 return return_value; in IsCurrentParamAFloatOrDouble() 291 bool return_value; in IsCurrentParamADouble() local 296 &return_value)) { in IsCurrentParamADouble() 297 return return_value; in IsCurrentParamADouble() 305 bool return_value; in IsCurrentParamALong() local [all …]
|
D | calling_convention.h | 420 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 | 74 JValue return_value; in artDeoptimizeFromCompiledCode() local 75 return_value.SetJ(0); // we never deoptimize from compiled code with an invoke result. in artDeoptimizeFromCompiledCode() 76 self->PushDeoptimizationContext(return_value, in artDeoptimizeFromCompiledCode()
|
/art/runtime/ |
D | instrumentation.cc | 58 Handle<mirror::Object> return_value) { in MethodExited() argument 62 v.SetL(return_value.Get()); in MethodExited() 1028 const JValue& return_value) const { in MethodExitEventImpl() 1037 listener->MethodExited(thread, thiz, method, dex_pc, return_value); in MethodExitEventImpl() 1041 Handle<mirror::Object> ret(hs.NewHandle(return_value.GetL())); in MethodExitEventImpl() 1354 JValue return_value; in PopInstrumentationStackFrame() local 1356 return_value.SetJ(0); in PopInstrumentationStackFrame() 1358 return_value.SetJ(*fpr_result); in PopInstrumentationStackFrame() 1360 return_value.SetJ(*gpr_result); in PopInstrumentationStackFrame() 1364 res.Assign(return_value.GetL()); in PopInstrumentationStackFrame() [all …]
|
D | instrumentation.h | 77 Handle<mirror::Object> return_value) 87 const JValue& return_value) 400 const JValue& return_value) const in MethodExitEvent() argument 403 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value); in MethodExitEvent() 568 const JValue& return_value) const
|
D | debugger.h | 413 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, 443 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) 535 int event_flags, const JValue* return_value) 769 const JValue* return_value)
|
D | trace.h | 154 const JValue& return_value)
|
D | debugger.cc | 178 const JValue& return_value) in MethodExited() argument 191 Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value); in MethodExited() 1780 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, in OutputMethodReturnValue() argument 1784 OutputJValue(tag, return_value, pReply); in OutputMethodReturnValue() 2072 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { in OutputJValue() argument 2076 expandBufAdd1(pReply, return_value->GetI()); in OutputJValue() 2078 expandBufAdd2BE(pReply, return_value->GetI()); in OutputJValue() 2080 expandBufAdd4BE(pReply, return_value->GetI()); in OutputJValue() 2082 expandBufAdd8BE(pReply, return_value->GetJ()); in OutputJValue() 2088 mirror::Object* value = return_value->GetL(); in OutputJValue() [all …]
|
D | instrumentation_test.cc | 70 Handle<mirror::Object> return_value ATTRIBUTE_UNUSED) in MethodExited() 79 const JValue& return_value ATTRIBUTE_UNUSED) in MethodExited()
|
D | trace.cc | 794 const JValue& return_value ATTRIBUTE_UNUSED) { in MethodExited()
|
D | thread.h | 1022 void PushDeoptimizationContext(const JValue& return_value,
|
D | thread.cc | 242 void Thread::PushDeoptimizationContext(const JValue& return_value, in PushDeoptimizationContext() argument 248 return_value, in PushDeoptimizationContext()
|
/art/compiler/optimizing/ |
D | nodes.cc | 2414 HInstruction* return_value = nullptr; in InlineInto() local 2433 return_value = last->InputAt(0); in InlineInto() 2523 DCHECK(return_value == nullptr); in InlineInto() 2529 } else if (return_value == nullptr) { in InlineInto() 2530 return_value = last->InputAt(0); in InlineInto() 2536 return_value_phi->AddInput(return_value); in InlineInto() 2538 return_value = return_value_phi; in InlineInto() 2601 if (current == return_value) { in InlineInto() 2602 DCHECK_EQ(entry_block_, return_value->GetBlock()); in InlineInto() 2603 return_value = replacement; in InlineInto() [all …]
|
/art/openjdkjvmti/ |
D | events.cc | 503 art::Handle<art::mirror::Object> return_value) in MethodExited() argument 512 ScopedLocalRef<jobject> return_jobj(jnienv, AddLocalRef<jobject>(jnienv, return_value.Get())); in MethodExited() 529 const art::JValue& return_value) in MethodExited() argument 540 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/openjdkjvmti/include/ |
D | jvmti.h | 839 jvalue return_value);
|