Searched refs:sf (Results 1 – 5 of 5) sorted by relevance
/art/runtime/entrypoints/portable/ |
D | portable_trampoline_entrypoints.cc | 151 ShadowFrame& sf, size_t first_arg_reg) : in BuildPortableShadowFrameVisitor() argument 152 PortableArgumentVisitor(caller_mh, sp), sf_(sf), cur_reg_(first_arg_reg) { } in BuildPortableShadowFrameVisitor()
|
/art/runtime/ |
D | thread.cc | 110 void Thread::SetDeoptimizationShadowFrame(ShadowFrame* sf) { in SetDeoptimizationShadowFrame() argument 111 tlsPtr_.deoptimization_shadow_frame = sf; in SetDeoptimizationShadowFrame() 119 ShadowFrame* sf = tlsPtr_.deoptimization_shadow_frame; in GetAndClearDeoptimizationShadowFrame() local 122 return sf; in GetAndClearDeoptimizationShadowFrame() 125 void Thread::SetShadowFrameUnderConstruction(ShadowFrame* sf) { in SetShadowFrameUnderConstruction() argument 126 sf->SetLink(tlsPtr_.shadow_frame_under_construction); in SetShadowFrameUnderConstruction() 127 tlsPtr_.shadow_frame_under_construction = sf; in SetShadowFrameUnderConstruction()
|
D | stack.h | 141 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in Create() local 142 return sf; in Create()
|
D | thread.h | 719 void SetDeoptimizationShadowFrame(ShadowFrame* sf); 728 void SetShadowFrameUnderConstruction(ShadowFrame* sf);
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 440 const char* shorty, uint32_t shorty_len, ShadowFrame* sf, in BuildQuickShadowFrameVisitor() argument 442 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {} in BuildQuickShadowFrameVisitor()
|