Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A 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()
171 if (m_address.IsValid()) { in UpdateValue()
197 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue()
[all …]
H A DValueObjectDynamicValue.cpp35 : ValueObject(parent), m_address(), m_dynamic_type_info(), in ValueObjectDynamicValue()
238 if (!m_address.IsValid() || m_address != dynamic_address) { in UpdateValue()
239 if (m_address.IsValid()) in UpdateValue()
243 m_address = dynamic_address; in UpdateValue()
245 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in UpdateValue()
261 if (m_address.IsValid() && m_dynamic_type_info) { in UpdateValue()
H A DDisassembler.cpp566 : m_address(address), m_address_class(addr_class), m_opcode(), in Instruction()
573 m_address_class = m_address.GetAddressClass(); in GetAddressClass()
619 prev_sym_ctx, exe_ctx, &m_address, ss); in Dump()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp36 m_is_indirect(false), m_address(addr), m_owner(owner), in BreakpointLocation()
39 Symbol *symbol = m_address.CalculateSymbolContextSymbol(); in BreakpointLocation()
51 return m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()); in GetLoadAddress()
62 Address &BreakpointLocation::GetAddress() { return m_address; } in GetAddress()
250 CompileUnit *comp_unit = m_address.CalculateSymbolContextCompileUnit(); in ConditionSaysStop()
449 m_address.GetOpcodeLoadAddress(&m_owner.GetTarget())); in ResolveBreakpointSite()
500 if (m_address.IsSectionOffset()) { in GetDescription()
501 m_address.CalculateSymbolContext(&sc); in GetDescription()
509 sc.DumpStopContext(s, m_owner.GetTarget().GetProcessSP().get(), m_address, in GetDescription()
560 if (m_address.IsSectionOffset() && in GetDescription()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp157 DescriptorContainsAddress(dw_addr_t address) : m_address(address) {} in operator ()()
159 return (m_address >= desc.address) && in operator ()()
160 (m_address < (desc.address + desc.length)); in operator ()()
164 const dw_addr_t m_address;
163 const dw_addr_t m_address; global() member in DescriptorContainsAddress
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A 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()
H A DCFBasicHash.h65 Address m_address = LLDB_INVALID_ADDRESS; variable
/freebsd/contrib/llvm-project/lldb/source/Target/
H A 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()
H A DStopInfo.cpp92 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
100 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
133 m_address = bp_site_sp->GetLoadAddress(); in StoreBPInfo()
233 } else if (m_address == LLDB_INVALID_ADDRESS) in GetDescription()
240 m_value, m_address); in GetDescription()
617 lldb::addr_t m_address; // We use this to capture the breakpoint site address member in lldb_private::StopInfoBreakpoint
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DDecodedThread.cpp23 : m_libipt_error_code(libipt_error_code), m_address(address) { in IntelPTError()
29 if (m_address != LLDB_INVALID_ADDRESS && m_address > 0) in log()
30 OS << formatv(": {0:x+16}", m_address); in log()
H A DDecodedThread.h52 lldb::addr_t m_address;
51 lldb::addr_t m_address; global() variable
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp64 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
81 if (m_address.IsValid()) { in LockAndCheckContext()
84 return (Address::CompareLoadAddress(m_address, in LockAndCheckContext()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h65 const Address &GetAddress() const { return m_address; } in GetAddress()
101 m_address = addr; in SetAddress()
235 Address m_address; // The section offset address of this instruction
H A DValueObjectMemory.h63 Address m_address; ///< The variable that this value object is based upon variable
H A DValueObjectDynamicValue.h111 Address m_address; ///< The variable that this value object is based upon variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DQueueItem.h144 lldb_private::Address m_address; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h354 Address m_address; ///< The address defining this location. variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DUserExpression.h319 Address m_address; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp523 const addr_t pc = m_address.GetFileAddress(); in Decode()
583 lldb::addr_t pc = m_address.GetFileAddress(); in CalculateMnemonicOperandsAndComment()
597 const lldb::addr_t load_addr = m_address.GetLoadAddress(target); in CalculateMnemonicOperandsAndComment()
1205 lldb::addr_t pc = m_address.GetFileAddress();