Searched refs:ret_val (Results 1 - 6 of 6) sorted by relevance

/art/runtime/interpreter/
H A Dinterpreter.h42 JValue* ret_val)
H A Dinterpreter.cc494 void EnterInterpreterFromDeoptimize(Thread* self, ShadowFrame* shadow_frame, JValue* ret_val)
497 value.SetJ(ret_val->GetJ()); // Set value to last known result in case the shadow frame chain is empty.
524 ret_val->SetJ(value.GetJ());
/art/compiler/dex/quick/arm64/
H A Dcodegen_arm64.h279 RegStorage ret_val = RegStorage(RegStorage::k32BitSolo, local
283 ret_val.GetReg());
284 return ret_val;
315 RegStorage ret_val = RegStorage(RegStorage::k64BitSolo, local
319 ret_val.GetReg());
320 return ret_val;
/art/compiler/dex/quick/x86/
H A Dcodegen_x86.h384 RegStorage ret_val = RegStorage(RegStorage::k32BitSolo, local
388 ret_val.GetReg());
389 return ret_val;
402 RegStorage ret_val = RegStorage(RegStorage::k64BitSolo, local
406 ret_val.GetReg());
407 return ret_val;
/art/runtime/
H A Dthread.h720 void SetDeoptimizationReturnValue(const JValue& ret_val);
722 ShadowFrame* GetAndClearDeoptimizationShadowFrame(JValue* ret_val);
H A Dthread.cc114 void Thread::SetDeoptimizationReturnValue(const JValue& ret_val) { argument
115 tls64_.deoptimization_return_value.SetJ(ret_val.GetJ());
118 ShadowFrame* Thread::GetAndClearDeoptimizationShadowFrame(JValue* ret_val) { argument
121 ret_val->SetJ(tls64_.deoptimization_return_value.GetJ());

Completed in 87 milliseconds