Home
last modified time | relevance | path

Searched refs:sf (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dstack.h71 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in Create() local
72 return sf; in Create()
78 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in Create() local
79 return sf; in Create()
Dthread.cc111 void Thread::SetDeoptimizationShadowFrame(ShadowFrame* sf) { in SetDeoptimizationShadowFrame() argument
112 deoptimization_shadow_frame_ = sf; in SetDeoptimizationShadowFrame()
120 ShadowFrame* sf = deoptimization_shadow_frame_; in GetAndClearDeoptimizationShadowFrame() local
123 return sf; in GetAndClearDeoptimizationShadowFrame()
Dthread.h546 void SetDeoptimizationShadowFrame(ShadowFrame* sf);
/art/runtime/entrypoints/portable/
Dportable_trampoline_entrypoints.cc146 ShadowFrame& sf, size_t first_arg_reg) : in BuildPortableShadowFrameVisitor() argument
147 PortableArgumentVisitor(caller_mh, sp), sf_(sf), cur_reg_(first_arg_reg) { } in BuildPortableShadowFrameVisitor()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc229 uint32_t shorty_len, ShadowFrame& sf, size_t first_arg_reg) : in BuildQuickShadowFrameVisitor() argument
230 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {} in BuildQuickShadowFrameVisitor()