Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dcontext_x86.h38 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
39 bool success = SetGPR(ESP, new_sp); in SetSP()
/art/runtime/arch/arm64/
Dcontext_arm64.h39 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
40 bool success = SetGPR(SP, new_sp); in SetSP()
/art/runtime/arch/x86_64/
Dcontext_x86_64.h38 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
39 bool success = SetGPR(RSP, new_sp); in SetSP()
/art/runtime/arch/mips/
Dcontext_mips.h38 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
39 bool success = SetGPR(SP, new_sp); in SetSP()
/art/runtime/arch/arm/
Dcontext_arm.h39 void SetSP(uintptr_t new_sp) OVERRIDE { in SetSP() argument
40 bool success = SetGPR(SP, new_sp); in SetSP()
/art/compiler/dex/quick/mips/
Dcall_mips.cc309 RegStorage new_sp = AllocTemp(); in GenEntrySequence() local
341 OpRegRegImm(kOpSub, new_sp, rs_rMIPS_SP, frame_sub); in GenEntrySequence()
342 LIR* branch = OpCmpBranch(kCondUlt, new_sp, check_reg, nullptr); in GenEntrySequence()
345 OpRegCopy(rs_rMIPS_SP, new_sp); // Establish stack in GenEntrySequence()
/art/runtime/arch/
Dcontext.h47 virtual void SetSP(uintptr_t new_sp) = 0;