Searched refs:m_sections_up (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp139 if (!m_sections_up) {
140 m_sections_up.reset(new SectionList());
143 delegate_sp->PopulateSectionList(this, *m_sections_up);
144 unified_section_list = *m_sections_up;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp128 if (m_sections_up)
130 m_sections_up = std::make_unique<SectionList>();
146 m_sections_up->AddSection(section_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp268 m_memory_addr(LLDB_INVALID_ADDRESS), m_sections_up(), m_symtab_up(),
289 m_process_wp(process_sp), m_memory_addr(header_addr), m_sections_up(),
607 if (m_sections_up == nullptr) {
619 return m_sections_up.get();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp82 return Address(m_sections_up->GetSectionAtIndex(0), 0);
86 m_sections_up = std::make_unique<SectionList>();
92 m_sections_up->AddSection(section_sp);
103 assert(m_sections_up->GetNumSections(0) == 1);
106 m_sections_up->GetSectionAtIndex(0), m_base);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp281 m_sections_up.reset();
1254 // Populate m_sections_up with sections from objfile.
1255 if (!m_sections_up) {
1260 return m_sections_up.get();
1278 if (!m_sections_up)
1279 m_sections_up = std::make_unique<SectionList>();
1280 return m_sections_up.get();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h667 std::unique_ptr<lldb_private::SectionList> m_sections_up; member in class:lldb_private::ObjectFile
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h973 lldb::SectionListUP m_sections_up; ///< Unified section list for module that member in class:lldb_private::Module
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1764 if (m_sections_up)
1767 m_sections_up = std::make_unique<SectionList>();
1790 m_sections_up->AddSection(Segment);
1838 (InfoOr->Segment ? InfoOr->Segment->GetChildren() : *m_sections_up)
1846 unified_section_list = *m_sections_up;
2282 SectionList *section_list = m_sections_up.get();
2507 SectionList *section_list = m_sections_up.get();

Completed in 87 milliseconds