Home
last modified time | relevance | path

Searched refs:m_sections_up (Results 1 – 11 of 11) 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()
63 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 IsStripped()
108 m_sections_up = std::make_unique<SectionList>(); in IsStripped()
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/JSON/
H A DObjectFileJSON.cpp178 if (m_sections_up) in CreateSections()
180 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
188 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()
250 m_sections_up->AddSection(section); in CreateSections()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp291 if (m_sections_up) in CreateSections()
294 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
341 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()
600 if (m_sections_up == nullptr) { in GetSectionList()
612 return m_sections_up.get(); in GetSectionList()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp288 m_sections_up.reset(); in ~Module()
1226 if (!m_sections_up) { in GetSectionList()
1231 return m_sections_up.get(); in GetSectionList()
1252 if (!m_sections_up) in GetUnifiedSectionList()
1253 m_sections_up = std::make_unique<SectionList>(); in GetUnifiedSectionList()
1254 return m_sections_up.get(); in GetUnifiedSectionList()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h761 std::unique_ptr<lldb_private::SectionList> m_sections_up; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1908 if (m_sections_up) in CreateSections()
1911 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
1934 m_sections_up->AddSection(Segment); in CreateSections()
1982 (InfoOr->Segment ? InfoOr->Segment->GetChildren() : *m_sections_up) in CreateSections()
1990 unified_section_list = *m_sections_up; in CreateSections()
2440 SectionList *section_list = m_sections_up.get(); in ParseSymbolTable()
2665 SectionList *section_list = m_sections_up.get(); in ParseTrampolineSymbols()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h1041 lldb::SectionListUP m_sections_up; ///< Unified section list for module that
1087 lldb::SectionListUP m_sections_up; ///< Unified section list for module that global() variable