Home
last modified time | relevance | path

Searched refs:m_address (Results 1 – 17 of 17) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Core/
DValueObjectMemory.cpp56 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(type_sp), in ValueObjectMemory()
63 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
68 lldb::addr_t file_address = m_address.GetFileAddress(); in ValueObjectMemory()
73 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
84 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(), in ValueObjectMemory()
93 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
98 lldb::addr_t file_address = m_address.GetFileAddress(); in ValueObjectMemory()
103 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
167 if (m_address.IsValid()) { in UpdateValue()
193 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue()
[all …]
DValueObjectDynamicValue.cpp35 : ValueObject(parent), m_address(), m_dynamic_type_info(), in ValueObjectDynamicValue()
222 if (!m_address.IsValid() || m_address != dynamic_address) { in UpdateValue()
223 if (m_address.IsValid()) in UpdateValue()
227 m_address = dynamic_address; in UpdateValue()
229 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in UpdateValue()
245 if (m_address.IsValid() && m_dynamic_type_info) { in UpdateValue()
DDisassembler.cpp569 : m_address(address), m_address_class(addr_class), m_opcode(), in Instruction()
576 m_address_class = m_address.GetAddressClass(); in GetAddressClass()
622 prev_sym_ctx, exe_ctx, &m_address, ss); in Dump()
/openbsd/src/gnu/llvm/lldb/source/Breakpoint/
DBreakpointLocation.cpp36 m_is_reexported(false), m_is_indirect(false), m_address(addr), in BreakpointLocation()
39 Symbol *symbol = m_address.CalculateSymbolContextSymbol(); in BreakpointLocation()
52 return m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()); in GetLoadAddress()
63 Address &BreakpointLocation::GetAddress() { return m_address; } in GetAddress()
257 CompileUnit *comp_unit = m_address.CalculateSymbolContextCompileUnit(); in ConditionSaysStop()
456 m_address.GetOpcodeLoadAddress(&m_owner.GetTarget())); in ResolveBreakpointSite()
507 if (m_address.IsSectionOffset()) { in GetDescription()
508 m_address.CalculateSymbolContext(&sc); in GetDescription()
516 sc.DumpStopContext(s, m_owner.GetTarget().GetProcessSP().get(), m_address, in GetDescription()
561 if (m_address.IsSectionOffset() && in GetDescription()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugArangeSet.cpp156 DescriptorContainsAddress(dw_addr_t address) : m_address(address) {} in DescriptorContainsAddress()
158 return (m_address >= desc.address) && in operator ()()
159 (m_address < (desc.address + desc.length)); in operator ()()
163 const dw_addr_t m_address; member in DescriptorContainsAddress
/openbsd/src/gnu/llvm/lldb/source/Target/
DQueueItem.cpp19 : m_queue_wp(), m_process_wp(), m_item_ref(item_ref), m_address(address), in QueueItem()
39 Address &QueueItem::GetAddress() { return m_address; } in GetAddress()
41 void QueueItem::SetAddress(Address addr) { m_address = addr; } in SetAddress()
DStopInfo.cpp91 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
99 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
130 m_address = bp_site_sp->GetLoadAddress(); in StoreBPInfo()
230 } else if (m_address == LLDB_INVALID_ADDRESS) in GetDescription()
237 m_value, m_address); in GetDescription()
611 lldb::addr_t m_address; // We use this to capture the breakpoint site address member in lldb_private::StopInfoBreakpoint
/openbsd/src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
DCFBasicHash.cpp9 if (m_address != LLDB_INVALID_ADDRESS) { in IsValid()
24 m_address = addr; in Update()
47 addr_t addr = m_address.GetLoadAddress(target); in UpdateFor()
DCFBasicHash.h65 Address m_address = LLDB_INVALID_ADDRESS; variable
/openbsd/src/gnu/llvm/lldb/source/Expression/
DUserExpression.cpp65 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
82 if (m_address.IsValid()) { in LockAndCheckContext()
85 return (Address::CompareLoadAddress(m_address, in LockAndCheckContext()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DDisassembler.h65 const Address &GetAddress() const { return m_address; } in GetAddress()
99 m_address = addr; in SetAddress()
233 Address m_address; // The section offset address of this instruction
DValueObjectMemory.h63 Address m_address; ///< The variable that this value object is based upon variable
DValueObjectDynamicValue.h111 Address m_address; ///< The variable that this value object is based upon variable
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DQueueItem.h144 lldb_private::Address m_address; variable
/openbsd/src/gnu/llvm/lldb/include/lldb/Expression/
DUserExpression.h309 Address m_address; ///< The address the process is stopped in. variable
/openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/
DBreakpointLocation.h344 Address m_address; ///< The address defining this location. variable
/openbsd/src/gnu/llvm/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp518 const addr_t pc = m_address.GetFileAddress(); in Decode()
576 lldb::addr_t pc = m_address.GetFileAddress(); in CalculateMnemonicOperandsAndComment()
590 const lldb::addr_t load_addr = m_address.GetLoadAddress(target); in CalculateMnemonicOperandsAndComment()
1186 lldb::addr_t pc = m_address.GetFileAddress(); in VisitInstruction()