Home
last modified time | relevance | path

Searched refs:sp_value (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/value/change_values/
H A DTestChangeValueAPI.py154 sp_value = frame0.FindValue("sp", lldb.eValueTypeRegister)
155 self.assertTrue(sp_value.IsValid(), "Got a stack pointer value")
156 result = sp_value.SetValueFromCString("1")
158 actual_value = sp_value.GetValueAsUnsigned(error, 0)
/llvm-project-15.0.7/lldb/test/API/python_api/frame/
H A DTestFrames.py91 sp_value = gpr_reg_set.GetChildMemberWithName("sp")
93 sp_value, "We should have a valid Stack Pointer.")
95 int(sp_value.GetValue(), 0), frame.GetSP(),
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp6022 DNBRegisterValue sp_value; in GetMachHeaderForMainExecutable() local
6024 GENERIC_REGNUM_SP, &sp_value)) { in GetMachHeaderForMainExecutable()
6026 addr_size == 8 ? sp_value.value.uint64 : sp_value.value.uint32; in GetMachHeaderForMainExecutable()