Home
last modified time | relevance | path

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

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