Home
last modified time | relevance | path

Searched refs:SetSP (Results 1 – 7 of 7) sorted by relevance

/art/runtime/arch/
Dcontext.h55 virtual void SetSP(uintptr_t new_sp) = 0;
/art/runtime/arch/riscv64/
Dcontext_riscv64.h41 void SetSP(uintptr_t new_sp) override { SetGPR(SP, new_sp); } in SetSP() function
/art/runtime/arch/arm64/
Dcontext_arm64.h41 void SetSP(uintptr_t new_sp) override { in SetSP() function
/art/runtime/arch/arm/
Dcontext_arm.h41 void SetSP(uintptr_t new_sp) override { in SetSP() function
/art/runtime/arch/x86_64/
Dcontext_x86_64.h40 void SetSP(uintptr_t new_sp) override { in SetSP() function
/art/runtime/arch/x86/
Dcontext_x86.h40 void SetSP(uintptr_t new_sp) override { in SetSP() function
/art/runtime/
Dquick_exception_handler.cc735 context_->SetSP(reinterpret_cast<uintptr_t>(handler_quick_frame_)); in DoLongJump()