/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
H A D | CPPLanguageRuntime.cpp | 76 if (target.ResolveLoadAddress(address.GetCallableLoadAddress(&target), in line_entry_helper() 201 if (!target.GetSectionLoadList().ResolveLoadAddress( in FindLibCppStdFunctionCallableInfo() 209 if (!target.GetSectionLoadList().ResolveLoadAddress(vtable_address, in FindLibCppStdFunctionCallableInfo() 252 if (target.GetSectionLoadList().ResolveLoadAddress( in FindLibCppStdFunctionCallableInfo() 355 if (!target_sp->GetSectionLoadList().ResolveLoadAddress(curr_pc, in GetStepThroughTrampolinePlan()
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | SectionLoadHistory.cpp | 114 bool SectionLoadHistory::ResolveLoadAddress(uint32_t stop_id, addr_t load_addr, in ResolveLoadAddress() function in SectionLoadHistory 121 return section_load_list->ResolveLoadAddress(load_addr, so_addr); in ResolveLoadAddress()
|
H A D | ProcessTrace.cpp | 123 GetTarget().GetSectionLoadList().ResolveLoadAddress(addr, resolved_address); in DoReadMemory()
|
H A D | ThreadPlanTracer.cpp | 142 addr_valid = m_process.GetTarget().GetSectionLoadList().ResolveLoadAddress( in Log()
|
H A D | SectionLoadList.cpp | 219 bool SectionLoadList::ResolveLoadAddress(addr_t load_addr, Address &so_addr, in ResolveLoadAddress() function in SectionLoadList
|
H A D | ThreadPlanStepInRange.cpp | 265 GetTarget().GetSectionLoadList().ResolveLoadAddress(curr_addr, in ShouldStop()
|
/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
H A D | SectionLoadList.h | 43 bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr,
|
H A D | SectionLoadHistory.h | 47 bool ResolveLoadAddress(uint32_t stop_id, lldb::addr_t load_addr,
|
/openbsd/gnu/llvm/lldb/source/DataFormatters/ |
H A D | CXXFunctionPointer.cpp | 42 target->GetSectionLoadList().ResolveLoadAddress(func_ptr_address, in CXXFunctionPointerSummaryProvider()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Architecture/Mips/ |
H A D | ArchitectureMips.cpp | 85 target.ResolveLoadAddress(addr, resolved_addr); in GetBreakableLoadAddress()
|
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
H A D | ItaniumABILanguageRuntime.cpp | 65 if (target.GetSectionLoadList().ResolveLoadAddress(vtable_load_addr, in GetTypeInfoFromVTableAddress() 262 if (!process->GetTarget().GetSectionLoadList().ResolveLoadAddress( in GetDynamicTypeAndAddress()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | StopInfoMachException.cpp | 127 if (!target.ResolveLoadAddress(fixed_bad_address, brk_address)) in DeterminePtrauthFailure() 187 if (!target.ResolveLoadAddress(return_pc - 4, blr_address)) in DeterminePtrauthFailure()
|
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ |
H A D | DynamicLoaderWindowsDYLD.cpp | 84 if (!m_process->GetTarget().ResolveLoadAddress(module_addr, resolved_addr)) in OnUnloadModule()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | Coroutines.cpp | 57 if (!target_sp->ResolveLoadAddress(destroy_func_addr, destroy_func_address)) in ExtractDestroyFunction()
|
/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | DumpDataExtractor.cpp | 138 if (target_sp->GetSectionLoadList().ResolveLoadAddress(addr, so_addr)) { in DumpInstructions() 702 if (target_sp->GetSectionLoadList().ResolveLoadAddress(addr, in DumpDataExtractor() 714 if (target_sp->GetSectionLoadList().ResolveLoadAddress( in DumpDataExtractor()
|
H A D | Address.cpp | 140 if (target->GetSectionLoadList().ResolveLoadAddress(deref_addr, in ReadAddress() 1042 if (target && target->GetSectionLoadList().ResolveLoadAddress( in SetLoadAddress()
|
/openbsd/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
H A D | InstrumentationRuntimeTSan.cpp | 547 if (!process_sp->GetTarget().GetSectionLoadList().ResolveLoadAddress(addr, in GetSymbolNameFromAddress() 562 if (!process_sp->GetTarget().GetSectionLoadList().ResolveLoadAddress(addr, in GetSymbolDeclarationFromAddress() 600 if (!process_sp->GetTarget().GetSectionLoadList().ResolveLoadAddress( in GetFirstNonInternalFramePc()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBAddress.cpp | 128 *this = target.ResolveLoadAddress(load_addr); in SetLoadAddress()
|
H A D | SBBreakpoint.cpp | 141 if (!target.GetSectionLoadList().ResolveLoadAddress(vm_addr, address)) { in FindLocationByAddress() 161 if (!target.GetSectionLoadList().ResolveLoadAddress(vm_addr, address)) { in FindLocationIDByAddress()
|
H A D | SBTarget.cpp | 582 lldb::SBAddress SBTarget::ResolveLoadAddress(lldb::addr_t vm_addr) { in ResolveLoadAddress() function in SBTarget 590 if (target_sp->ResolveLoadAddress(vm_addr, addr)) in ResolveLoadAddress() 625 if (target_sp->ResolveLoadAddress(vm_addr, addr)) in ResolvePastLoadAddress() 2006 return GetInstructionsWithFlavor(ResolveLoadAddress(base_addr), nullptr, buf, in GetInstructions() 2016 return GetInstructionsWithFlavor(ResolveLoadAddress(base_addr), flavor_string, in GetInstructionsWithFlavor()
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectRegister.cpp | 108 .ResolveLoadAddress(reg_addr, so_reg_addr)) { in DumpRegister()
|
/openbsd/gnu/llvm/lldb/source/Breakpoint/ |
H A D | BreakpointLocationList.cpp | 106 m_owner.GetTarget().GetSectionLoadList().ResolveLoadAddress( in FindByAddress()
|
/openbsd/gnu/llvm/lldb/examples/darwin/heap_find/ |
H A D | heap.py | 468 sb_addr = process.GetTarget().ResolveLoadAddress(ptr_addr + offset) 472 sb_addr = process.GetTarget().ResolveLoadAddress(ptr_addr + offset)
|
/openbsd/gnu/llvm/lldb/source/Plugins/SystemRuntime/MacOSX/ |
H A D | SystemRuntimeMacOSX.cpp | 406 … if (m_process->GetTarget().ResolveLoadAddress (m_dispatch_tsd_indexes_addr, dti_struct_addr)) in ReadLibdispatchTSDIndexes() 874 m_process->GetTarget().ResolveLoadAddress(pending_item.code_address, in PopulatePendingItemsForQueue()
|
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
H A D | DynamicLoaderMacOSXDYLD.cpp | 1022 bool resolved = m_process->GetTarget().ResolveLoadAddress( in SetNotificationBreakpoint() 1030 resolved = m_process->GetTarget().ResolveLoadAddress( in SetNotificationBreakpoint()
|