Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
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()
175 if (m_address.IsValid()) { in UpdateValue()
201 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()
239 if (!m_address.IsValid() || m_address != dynamic_address) { in UpdateValue()
240 if (m_address.IsValid()) in UpdateValue()
258 m_address = LLDB_INVALID_ADDRESS; in UpdateValue()
262 m_address = dynamic_address; in UpdateValue()
264 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in UpdateValue()
283 if ((m_address.IsValid() || in UpdateValue()
/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()
53 return m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()); in GetLoadAddress()
63 Address &BreakpointLocation::GetAddress() { return m_address; } in GetAddress()
240 m_address.CalculateSymbolContextCompileUnit()) in ConditionSaysStop()
441 m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()))); in ResolveBreakpointSite()
494 if (m_address.IsSectionOffset()) { in GetDescription()
495 m_address.CalculateSymbolContext(&sc); in GetDescription()
514 sc.DumpStopContext(s, m_owner.GetTarget().GetProcessSP().get(), m_address, in GetDescription()
569 if (m_address.IsSectionOffset() && in GetDescription()
[all …]
/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.cpp93 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
101 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
134 m_address = bp_site_sp->GetLoadAddress(); in StoreBPInfo()
234 } else if (m_address == LLDB_INVALID_ADDRESS) in GetDescription()
241 m_value, m_address); in GetDescription()
638 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/Symbol/
H A DFunction.cpp263 m_address(std::move(address)), m_prologue_byte_size(0) { in Function()
265 lldb::addr_t base_file_addr = m_address.GetFileAddress(); in Function()
447 m_block.Dump(s, m_address.GetFileAddress(), INT_MAX, show_context); in Dump()
456 if (SectionSP section_sp = m_address.GetSection()) in CalculateSymbolContextModule()
644 m_block.GetRangeContainingAddress(m_address, entry_range); in GetPrologueByteSize()
648 const addr_t func_start_file_addr = m_address.GetFileAddress(); in GetPrologueByteSize()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h282 if (m_address == line_entry.range.GetBaseAddress()) { in SetPreferredLineEntry()
370 Address m_address; ///< The address defining this location. variable
/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
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp65 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
82 if (m_address.IsValid()) { in LockAndCheckContext()
85 return (Address::CompareLoadAddress(m_address, in LockAndCheckContext()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h453 const Address &GetAddress() const { return m_address; } in GetAddress()
659 Address m_address; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
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/Expression/
H A DUserExpression.h317 Address m_address; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp529 const addr_t pc = m_address.GetFileAddress(); in Decode()
592 lldb::addr_t pc = m_address.GetFileAddress(); in CalculateMnemonicOperandsAndComment()
604 const lldb::addr_t load_addr = m_address.GetLoadAddress(target); in CalculateMnemonicOperandsAndComment()
1212 lldb::addr_t pc = m_address.GetFileAddress(); in VisitInstruction()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp598 : m_address(address), m_address_class(addr_class), m_opcode(), in Instruction()
605 m_address_class = m_address.GetAddressClass(); in GetAddressClass()
651 prev_sym_ctx, exe_ctx, &m_address, ss); in Dump()