Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/linux/minidump_writer/
Dlinux_dumper.h140 uintptr_t stack_pointer, uintptr_t sp_offset);
152 uintptr_t sp_offset,
Dlinux_dumper.cc785 uintptr_t sp_offset) { in SanitizeStackCopy() argument
839 (sp_offset + sizeof(uintptr_t) - 1) & ~(sizeof(uintptr_t) - 1); in SanitizeStackCopy()
880 uintptr_t sp_offset, in StackHasPointerToMapping() argument
890 (sp_offset + sizeof(uintptr_t) - 1) & ~(sizeof(uintptr_t) - 1); in StackHasPointerToMapping()
/external/llvm-project/llvm/test/CodeGen/X86/
Dwin-catchpad.ll57 ; X86: movl %esp, -[[sp_offset:[0-9]+]](%ebp)
82 ; X86: movl %esp, -[[sp_offset]](%ebp)
100 ; X86: movl %esp, -[[sp_offset]](%ebp)
/external/llvm/test/CodeGen/X86/
Dwin-catchpad.ll57 ; X86: movl %esp, -[[sp_offset:[0-9]+]](%ebp)
82 ; X86: movl %esp, -[[sp_offset]](%ebp)
100 ; X86: movl %esp, -[[sp_offset]](%ebp)
/external/vixl/test/aarch64/
Dtest-utils-aarch64.cc660 const int sp_offset = offsetof(dump_t, sp_); in Dump() local
673 __ Str(tmp, MemOperand(dump_base, sp_offset)); in Dump()
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp971 addr_t sp_offset = addr_byte_size * BitCount(registers); in EmulatePUSH() local
972 addr_t addr = sp - sp_offset; in EmulatePUSH()
1004 context.SetImmediateSigned(-sp_offset); in EmulatePUSH()
1007 LLDB_REGNUM_GENERIC_SP, sp - sp_offset)) in EmulatePUSH()
1098 addr_t sp_offset = addr_byte_size * BitCount(registers); in EmulatePOP() local
1133 context.SetImmediateSigned(sp_offset); in EmulatePOP()
1136 LLDB_REGNUM_GENERIC_SP, sp + sp_offset)) in EmulatePOP()
1184 addr_t sp_offset = imm32; in EmulateADDRdSPImm() local
1185 addr_t addr = sp + sp_offset; // a pointer to the stack area in EmulateADDRdSPImm()
1194 context.SetRegisterPlusOffset(sp_reg, sp_offset); in EmulateADDRdSPImm()
[all …]
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
DRenderScriptRuntime.cpp182 uint64_t sp_offset = 0; in GetArgsX86_64() local
184 sp_offset += arg_size[arg_list[i].type]; in GetArgsX86_64()
187 sp_offset = (sp_offset + 0xf) & 0xf; in GetArgsX86_64()
188 sp += sp_offset; in GetArgsX86_64()