Searched defs:GetParamAddress (Results 1 - 2 of 2) sorted by relevance

/art/runtime/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc86 byte* GetParamAddress() const { function in class:art::PortableArgumentVisitor
153 sf_.SetVRegLong(cur_reg_, *reinterpret_cast<jlong*>(GetParamAddress()));
157 sf_.SetVRegReference(cur_reg_, *reinterpret_cast<mirror::Object**>(GetParamAddress()));
165 sf_.SetVReg(cur_reg_, *reinterpret_cast<jint*>(GetParamAddress()));
239 mirror::Object* obj = *reinterpret_cast<mirror::Object**>(GetParamAddress());
245 val.j = *reinterpret_cast<jlong*>(GetParamAddress());
253 val.i = *reinterpret_cast<jint*>(GetParamAddress());
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc150 byte* GetParamAddress() const { function in class:art::QuickArgumentVisitor
169 uint64_t low_half = *reinterpret_cast<uint32_t*>(GetParamAddress());
240 sf_.SetVRegLong(cur_reg_, *reinterpret_cast<jlong*>(GetParamAddress()));
245 sf_.SetVRegReference(cur_reg_, *reinterpret_cast<mirror::Object**>(GetParamAddress()));
253 sf_.SetVReg(cur_reg_, *reinterpret_cast<jint*>(GetParamAddress()));
329 mirror::Object* obj = *reinterpret_cast<mirror::Object**>(GetParamAddress());
338 val.j = *reinterpret_cast<jlong*>(GetParamAddress());
347 val.i = *reinterpret_cast<jint*>(GetParamAddress());
426 soa_->AddLocalReference<jobject>(*reinterpret_cast<mirror::Object**>(GetParamAddress()));

Completed in 46 milliseconds