Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DEmulateInstruction.h190 int64_t signed_offset; // signed offset added to base register member
217 int64_t signed_offset; // signed offset by which to adjust self (for member
242 void SetRegisterPlusOffset(RegisterInfo base_reg, int64_t signed_offset) { in SetRegisterPlusOffset()
245 info.RegisterPlusOffset.signed_offset = signed_offset; in SetRegisterPlusOffset()
280 void SetOffset(int64_t signed_offset) { in SetOffset()
282 info.signed_offset = signed_offset; in SetOffset()
/llvm-project-15.0.7/lldb/source/Core/
H A DEmulateInstruction.cpp447 info.RegisterPlusOffset.signed_offset); in Dump()
477 strm.Printf(" (signed_offset = %+" PRId64 ")", info.signed_offset); in Dump()
/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp580 const int64_t offset = context.info.RegisterPlusOffset.signed_offset; in WriteRegister()