Searched refs:sf (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | stack.h | 71 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()
|
D | thread.cc | 111 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()
|
D | thread.h | 546 void SetDeoptimizationShadowFrame(ShadowFrame* sf);
|
/art/runtime/entrypoints/portable/ |
D | portable_trampoline_entrypoints.cc | 146 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/ |
D | quick_trampoline_entrypoints.cc | 229 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()
|