Home
last modified time | relevance | path

Searched refs:new_sp (Results 1 – 8 of 8) sorted by relevance

/art/runtime/arch/mips/
Dcontext_mips.h39 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
40 SetGPR(SP, new_sp); in SetSP()
/art/runtime/arch/arm/
Dcontext_arm.h40 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
41 SetGPR(SP, new_sp); in SetSP()
/art/runtime/arch/x86_64/
Dcontext_x86_64.h39 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
40 SetGPR(RSP, new_sp); in SetSP()
/art/runtime/arch/arm64/
Dcontext_arm64.h40 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
41 SetGPR(SP, new_sp); in SetSP()
/art/runtime/arch/mips64/
Dcontext_mips64.h39 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
40 SetGPR(SP, new_sp); in SetSP()
/art/runtime/arch/x86/
Dcontext_x86.h39 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
40 SetGPR(ESP, new_sp); in SetSP()
/art/runtime/arch/
Dcontext.h48 virtual void SetSP(uintptr_t new_sp) = 0;
/art/compiler/dex/quick/mips/
Dcall_mips.cc287 RegStorage new_sp = AllocPtrSizeTemp(); in GenEntrySequence() local
339 OpRegRegImm(kOpSub, new_sp, rs_sp, frame_sub); in GenEntrySequence()
340 LIR* branch = OpCmpBranch(kCondUlt, new_sp, check_reg, nullptr); in GenEntrySequence()
343 OpRegCopy(rs_sp, new_sp); // Establish stack. in GenEntrySequence()