Searched defs:sf (Results 1 - 4 of 4) sorted by path

/art/runtime/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc151 ShadowFrame& sf, size_t first_arg_reg) :
152 PortableArgumentVisitor(caller_mh, sp), sf_(sf), cur_reg_(first_arg_reg) { }
150 BuildPortableShadowFrameVisitor(MethodHelper& caller_mh, mirror::ArtMethod** sp, ShadowFrame& sf, size_t first_arg_reg) argument
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc440 const char* shorty, uint32_t shorty_len, ShadowFrame* sf,
442 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
439 BuildQuickShadowFrameVisitor(StackReference<mirror::ArtMethod>* sp, bool is_static, const char* shorty, uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) argument
/art/runtime/
H A Dstack.h141 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); local
142 return sf;
H A Dthread.cc110 void Thread::SetDeoptimizationShadowFrame(ShadowFrame* sf) { argument
111 tlsPtr_.deoptimization_shadow_frame = sf;
119 ShadowFrame* sf = tlsPtr_.deoptimization_shadow_frame; local
122 return sf;
125 void Thread::SetShadowFrameUnderConstruction(ShadowFrame* sf) { argument
126 sf->SetLink(tlsPtr_.shadow_frame_under_construction);
127 tlsPtr_.shadow_frame_under_construction = sf;

Completed in 62 milliseconds