Home
last modified time | relevance | path

Searched refs:GetLoadAddress (Results 1 – 25 of 100) sorted by relevance

1234

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp97 addr_t load_base_addr = GetBaseAddress().GetLoadAddress(target); in ContainsLoadAddress()
101 addr_t load_addr = addr.GetLoadAddress(target); in ContainsLoadAddress()
115 addr_t load_base_addr = GetBaseAddress().GetLoadAddress(target); in ContainsLoadAddress()
178 vmaddr = m_base_addr.GetLoadAddress(target); in Dump()
H A DValueObjectMemory.cpp63 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
93 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
193 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue()
H A DAddress.cpp313 addr_t Address::GetLoadAddress(Target *target) const { in GetLoadAddress() function in Address
350 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
372 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress()
471 addr_t load_addr = GetLoadAddress(target); in Dump()
780 addr_t load_addr = GetLoadAddress(target); in Dump()
944 addr_t a_load_addr = a.GetLoadAddress(target); in CompareLoadAddress()
945 addr_t b_load_addr = b.GetLoadAddress(target); in CompareLoadAddress()
H A DValueObjectVTable.cpp231 vtable_info_or_err->addr.GetLoadAddress(target_sp.get()); in UpdateValue()
253 m_vtable_symbol->GetLoadAddress(target_sp.get()) + in UpdateValue()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResourceList.cpp26 wp_res_sp->GetLoadAddress(), wp_res_sp->GetByteSize()); in Add()
40 (*pos)->GetLoadAddress(), (*pos)->GetByteSize()); in Remove()
57 (*pos)->GetLoadAddress(), (*pos)->GetByteSize()); in RemoveByAddress()
H A DWatchpoint.cpp112 lldb::addr_t return_addr = return_address.GetLoadAddress(target_sp.get()); in SetupVariableWatchpointDisabler()
201 Address watch_address(GetLoadAddress()); in CaptureWatchedValue()
224 Address watch_address(GetLoadAddress()); in WatchedValueReportable()
346 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
H A DBreakpointResolverAddress.cpp136 m_resolved_addr = m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback()
147 m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.cpp511 m_linker_file_list_struct_addr.GetLoadAddress(&m_process->GetTarget()), in ReadKmodsListHeader()
604 kld_off_address_symbol->GetAddress().GetLoadAddress( in ReadAllKmods()
610 kld_off_next_symbol->GetAddress().GetLoadAddress(&m_process->GetTarget()), in ReadAllKmods()
615 kld_off_filename_symbol->GetAddress().GetLoadAddress( in ReadAllKmods()
622 kld_off_pathname_symbol->GetAddress().GetLoadAddress( in ReadAllKmods()
633 linker_files_head_addr.GetLoadAddress(&m_process->GetTarget()); in ReadAllKmods()
694 if (m_kernel_image_info.GetLoadAddress() == LLDB_INVALID_ADDRESS) { in LoadKernelModules()
712 if (m_kernel_image_info.GetLoadAddress() == LLDB_INVALID_ADDRESS) { in LoadKernelModules()
717 if (m_kernel_image_info.GetLoadAddress() != LLDB_INVALID_ADDRESS) { in LoadKernelModules()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp97 lldb::addr_t DynamicLoaderWindowsDYLD::GetLoadAddress(ModuleSP executable) { in GetLoadAddress() function in DynamicLoaderWindowsDYLD
131 lldb::addr_t load_addr = GetLoadAddress(executable); in DidAttach()
158 lldb::addr_t load_addr = GetLoadAddress(executable); in DidLaunch()
H A DDynamicLoaderWindowsDYLD.h45 lldb::addr_t GetLoadAddress(lldb::ModuleSP executable);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTraceCursor.cpp115 lldb::addr_t SBTraceCursor::GetLoadAddress() const { in GetLoadAddress() function in SBTraceCursor
118 return m_opaque_sp->GetLoadAddress(); in GetLoadAddress()
H A DSBAddress.cpp107 lldb::addr_t SBAddress::GetLoadAddress(const SBTarget &target) const { in GetLoadAddress() function in SBAddress
115 addr = m_opaque_up->GetLoadAddress(target_sp.get()); in GetLoadAddress()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBAddressExtensions.i19 return self.GetLoadAddress (target)
32 return self.GetLoadAddress (target)
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRegisterContextUnwind.cpp230 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeZerothFrame()
237 (uint64_t)m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()), in InitializeZerothFrame()
252 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeZerothFrame()
302 (uint64_t)m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()), in InitializeZerothFrame()
616 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeNonZerothFrame()
623 (uint64_t)m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()), in InitializeNonZerothFrame()
646 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeNonZerothFrame()
662 m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr())); in InitializeNonZerothFrame()
833 m_current_pc.GetLoadAddress(exe_ctx.GetTargetPtr()); in GetFullUnwindPlanForFrame()
1950 m_current_pc.GetLoadAddress(target) - m_start_pc.GetLoadAddress(target); in PropagateTrapHandlerFlagFromUnwindPlan()
[all …]
H A DThreadPlanCallFunction.cpp78 start_load_addr = m_start_addr.GetLoadAddress(&GetTarget()); in ConstructorSetup()
92 function_load_addr = m_function_addr.GetLoadAddress(&GetTarget()); in ConstructorSetup()
226 m_function_addr.GetLoadAddress(&GetTarget())); in GetDescription()
H A DThreadPlanCallFunctionUsingABI.cpp53 m_function_addr.GetLoadAddress(&GetTarget())); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTraceCursor.h156 lldb::addr_t GetLoadAddress() const;
H A DSBSection.h43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target);
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointSite.h27 virtual lldb::addr_t GetLoadAddress() const { return m_addr; } in GetLoadAddress() function
H A DStopPointSiteList.h39 lldb::addr_t site_load_addr = site_sp->GetLoadAddress(); in Add()
209 if (prev_site->GetLoadAddress() + prev_site->GetByteSize() > lower_bound) in FindInRange()
H A DWatchpointResource.h31 lldb::addr_t GetLoadAddress() const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTraceCursor.h244 virtual lldb::addr_t GetLoadAddress() const = 0;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryUnwind.cpp44 addr_t pc = frame->GetFrameCodeAddress().GetLoadAddress( in DoCreateRegisterContextForFrame()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h290 GetLoadAddress(caller_address, caller, target)}; in GetCallerAddress()
312 static lldb::addr_t GetLoadAddress(lldb::addr_t unresolved_pc,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceCursorIntelPT.h33 lldb::addr_t GetLoadAddress() const override;

1234