| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | AddressRange.cpp | 47 SectionSP range_sect_sp = GetBaseAddress().GetSection(); in Contains() 48 SectionSP addr_sect_sp = addr.GetSection(); in Contains() 63 if (addr.GetSection() == m_base_addr.GetSection()) in ContainsFileAddress() 95 if (addr.GetSection() == m_base_addr.GetSection()) in ContainsLoadAddress() 203 static_cast<void *>(m_base_addr.GetSection().get()), in DumpDebug()
|
| H A D | Address.cpp | 285 SectionSP section_sp(GetSection()); in GetModule() 292 SectionSP section_sp(GetSection()); in GetFileAddress() 312 SectionSP section_sp(GetSection()); in GetLoadAddress() 411 SectionSP section_sp(GetSection()); in Dump() 674 if (sc.symbol->GetAddressRef().GetSection() != GetSection()) { in Dump() 715 sc.symbol->GetAddressRef().GetSection() != GetSection()) in Dump() 806 if (GetSection()) in SectionWasDeleted() 831 SectionSP section_sp(GetSection()); in CalculateSymbolContext() 845 SectionSP section_sp(GetSection()); in CalculateSymbolContextModule() 852 SectionSP section_sp(GetSection()); in CalculateSymbolContextCompileUnit() [all …]
|
| H A D | Module.cpp | 459 SectionSP section_sp(so_addr.GetSection()); in ResolveSymbolContextForAddress() 556 if (addr_range.GetBaseAddress().GetSection() == in ResolveSymbolContextForAddress() 557 so_addr.GetSection()) { in ResolveSymbolContextForAddress()
|
| H A D | FormatEntity.cpp | 474 if (func_addr.GetSection() == format_addr.GetSection()) { in DumpAddressOffsetFromFunction()
|
| /openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
| H A D | CXXFunctionPointer.cpp | 44 if (so_addr.GetSection() == nullptr) { in CXXFunctionPointerSummaryProvider() 58 if (test_address.GetSection() != nullptr) { in CXXFunctionPointerSummaryProvider()
|
| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverAddress.cpp | 66 SectionSP section_sp = m_addr.GetSection(); in SerializeToStructuredData() 95 if (m_addr.GetSection() || m_module_filespec) in ResolveBreakpoint() 108 if (m_addr.GetSection()) in ResolveBreakpointInModules()
|
| H A D | Breakpoint.cpp | 539 SectionSP section_sp(section_addr.GetSection()); in ModulesChanged() 589 SectionSP section_sp(break_loc_sp->GetAddress().GetSection()); in ModulesChanged() 662 SectionSP section_sp = break_loc_sp->GetAddress().GetSection(); in ModuleReplaced()
|
| H A D | BreakpointLocationList.cpp | 87 SectionSP section_sp(break_loc->GetAddress().GetSection()); in FindInModule()
|
| /openbsd-src/gnu/llvm/lldb/examples/lookup/ |
| H A D | main.cpp | 191 bool success = addr.IsValid() && addr.GetSection().IsValid(); in main() 205 addr.GetSection().GetName(), addr.GetOffset()); in main()
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBAddress.i | 98 GetSection (); 184 …section = property(GetSection, None, doc='''A read only property that returns an lldb object that …
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | Address.h | 333 return IsValid() && (GetSection().get() != nullptr); in IsSectionOffset() 429 lldb::SectionSP GetSection() const { return m_section_wp.lock(); } in GetSection() function
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | Block.cpp | 255 if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) { in GetRangeContainingAddress() 290 if (addr.GetSection() == func_range.GetBaseAddress().GetSection()) { in GetRangeIndexContainingAddress()
|
| H A D | Symbol.cpp | 118 return (bool)m_addr_range.GetBaseAddress().GetSection(); in ValueIsAddress() 181 if (m_addr_range.GetBaseAddress().GetSection()) { in GetDescription() 682 bool is_addr = m_addr_range.GetBaseAddress().GetSection().get() != nullptr; in Encode()
|
| H A D | Function.cpp | 409 SectionSP section_sp(m_range.GetBaseAddress().GetSection()); in CalculateSymbolContextModule()
|
| H A D | ObjectFile.cpp | 301 const SectionSP section_sp(symbol->GetAddressRef().GetSection()); in GetAddressClass()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBAddress.cpp | 152 lldb::SBSection SBAddress::GetSection() { in GetSection() function in SBAddress 157 sb_section.SetSP(m_opaque_up->GetSection()); in GetSection()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBAddress.h | 72 lldb::SBSection GetSection();
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 1156 SectionSP section_sp(symbol->GetAddressRef().GetSection()); in GetAddressClass() 1933 SectionSP GetSection(uint8_t n_sect, addr_t file_addr) { in GetSection() function in MachSymtabSectionInfo 2895 symbol_section = section_info.GetSection( in ParseSymtab() 2910 symbol_section = section_info.GetSection( in ParseSymtab() 2943 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 2953 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 2987 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 3152 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 3163 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() 3175 symbol_section = section_info.GetSection(nlist.n_sect, in ParseSymtab() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Minidump/ |
| H A D | MinidumpFileBuilder.cpp | 156 SectionSP sect_sp = mod->GetObjectFile()->GetBaseAddress().GetSection(); in getModuleFileSize() 176 lldb::SectionSP next_sect_sp = sect_so_addr.GetSection(); in getModuleFileSize() 183 next_sect_sp = sect_so_addr.GetSection(); in getModuleFileSize()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | RegisterContextUnwind.cpp | 187 if (m_current_pc.GetSection() == m_start_pc.GetSection()) { in InitializeZerothFrame() 512 addr_range.GetBaseAddress().GetSection() != m_current_pc.GetSection() || in InitializeNonZerothFrame()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | ObjectFilePECOFF.cpp | 709 SectionSP sect = addr.GetSection(); in ReadImageDataByRVA() 918 if (auto section_sp = symbol.GetAddressRef().GetSection()) in AppendFromExportTable()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 1048 sc.function->GetAddressRange().GetBaseAddress().GetSection()); in RemoveFunctionsWithModuleNotEqualTo()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 1720 SectionSP section_sp(addr.GetSection()); in DumpRegion()
|
| H A D | CommandObjectThread.cpp | 1010 Address fun_end_addr(fun_start_addr.GetSection(), in DoExecute()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Disassembler/LLVMC/ |
| H A D | DisassemblerLLVMC.cpp | 1757 if (value_so_addr.IsValid() && value_so_addr.GetSection()) { in SymbolLookup()
|