Home
last modified time | relevance | path

Searched refs:m_sections_up (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/
H A DObjectFilePlaceholder.cpp38 m_sections_up = std::make_unique<lldb_private::SectionList>(); in CreateSections()
45 m_sections_up->AddSection(section_sp); in CreateSections()
50 return lldb_private::Address(m_sections_up->GetSectionAtIndex(0), 0); in GetBaseAddress()
60 assert(m_sections_up->GetNumSections(0) == 1); in SetLoadAddress()
62 target.SetSectionLoadAddress(m_sections_up->GetSectionAtIndex(0), m_base); in SetLoadAddress()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DObjectFileJIT.cpp107 if (!m_sections_up) { in CreateSections()
108 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
111 delegate_sp->PopulateSectionList(this, *m_sections_up); in CreateSections()
112 unified_section_list = *m_sections_up; in CreateSections()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp127 if (m_sections_up) in CreateSections()
129 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
145 m_sections_up->AddSection(section_sp); in CreateSections()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp182 if (m_sections_up) in CreateSections()
185 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
246 m_sections_up->AddSection(section); in CreateSections()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp178 if (m_sections_up) in CreateSections()
180 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
231 m_sections_up->AddSection(section_sp); in CreateSections()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/XCOFF/
H A DObjectFileXCOFF.cpp297 if (m_sections_up) in CreateSections()
300 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
358 m_sections_up->AddSection(section_sp); in CreateSectionsWithBitness()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp261 if (m_sections_up) in CreateSections()
264 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
311 m_sections_up->AddSection(section_sp); in CreateSections()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp258 m_memory_addr(LLDB_INVALID_ADDRESS), m_sections_up(), m_symtab_up(), in ObjectFile()
279 m_process_wp(process_sp), m_memory_addr(header_addr), m_sections_up(), in ObjectFile()
603 if (m_sections_up == nullptr) { in GetSectionList()
615 return m_sections_up.get(); in GetSectionList()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp292 m_sections_up.reset(); in ~Module()
1218 if (!m_sections_up) { in GetSectionList()
1223 return m_sections_up.get(); in GetSectionList()
1241 if (!m_sections_up) in GetUnifiedSectionList()
1242 m_sections_up = std::make_unique<SectionList>(); in GetUnifiedSectionList()
1243 return m_sections_up.get(); in GetUnifiedSectionList()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h788 std::unique_ptr<lldb_private::SectionList> m_sections_up; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1873 if (m_sections_up) in CreateSections()
1876 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
1899 m_sections_up->AddSection(Segment); in CreateSections()
1947 (InfoOr->Segment ? InfoOr->Segment->GetChildren() : *m_sections_up) in CreateSections()
1955 unified_section_list = *m_sections_up; in CreateSections()
2405 SectionList *section_list = m_sections_up.get(); in ParseSymbolTable()
2629 SectionList *section_list = m_sections_up.get(); in ParseTrampolineSymbols()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h1052 lldb::SectionListUP m_sections_up; ///< Unified section list for module that variable