Home
last modified time | relevance | path

Searched refs:sect_type (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwp.cpp92 uint64_t dwo_id, lldb::SectionType sect_type, in LoadSectionData() argument
95 if (!LoadRawSectionData(sect_type, section_data)) in LoadSectionData()
103 it->second->getOffset(lldbSectTypeToLlvmSectionKind(sect_type)); in LoadSectionData()
113 lldb::SectionType sect_type, lldb_private::DWARFDataExtractor &data) { in LoadRawSectionData() argument
116 auto it = m_sections.find(sect_type); in LoadRawSectionData()
129 section_list->FindSectionByType(sect_type, true)); in LoadRawSectionData()
132 m_sections[sect_type] = data; in LoadRawSectionData()
137 m_sections[sect_type].Clear(); in LoadRawSectionData()
H A DSymbolFileDWARFDwoDwp.cpp30 void SymbolFileDWARFDwoDwp::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData() argument
32 if (m_dwp_symfile->LoadSectionData(m_dwo_id, sect_type, data)) in LoadSectionData()
35 SymbolFileDWARF::LoadSectionData(sect_type, data); in LoadSectionData()
H A DSymbolFileDWARFDwo.cpp30 void SymbolFileDWARFDwo::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData() argument
35 SectionSP section_sp(section_list->FindSectionByType(sect_type, true)); in LoadSectionData()
51 SymbolFileDWARF::LoadSectionData(sect_type, data); in LoadSectionData()
H A DSymbolFileDWARFDwp.h30 bool LoadSectionData(uint64_t dwo_id, lldb::SectionType sect_type,
37 bool LoadRawSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARFDwoDwp.h23 void LoadSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARFDwo.h56 void LoadSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARF.h341 GetCachedSectionData(lldb::SectionType sect_type,
344 virtual void LoadSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARF.cpp595 SymbolFileDWARF::GetCachedSectionData(lldb::SectionType sect_type, in GetCachedSectionData() argument
597 llvm::call_once(data_segment.m_flag, [this, sect_type, &data_segment] { in GetCachedSectionData()
598 this->LoadSectionData(sect_type, std::ref(data_segment.m_data)); in GetCachedSectionData()
603 void SymbolFileDWARF::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData() argument
608 SectionSP section_sp(section_list->FindSectionByType(sect_type, true)); in LoadSectionData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DIRExecutionUnit.cpp507 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
510 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
513 sect_type = lldb::eSectionTypeData; in GetSectionTypeFromSectionName()
516 sect_type = lldb::eSectionTypeData; in GetSectionTypeFromSectionName()
519 sect_type = lldb::eSectionTypeOther; in GetSectionTypeFromSectionName()
525 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
527 sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
555 sect_type = lldb::eSectionTypeDWARFDebugLoc; in GetSectionTypeFromSectionName()
588 sect_type = lldb::eSectionTypeInvalid; in GetSectionTypeFromSectionName()
590 sect_type = lldb::eSectionTypeOther; in GetSectionTypeFromSectionName()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DSection.cpp148 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() argument
153 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
170 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() argument
175 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
550 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType() argument
556 if (m_sections[idx]->GetType() == sect_type) { in FindSectionByType()
561 sect_type, check_children, 0); in FindSectionByType()
H A DAddress.cpp475 SectionType sect_type = section_sp->GetType(); in Dump() local
476 switch (sect_type) { in Dump()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DSection.h75 lldb::SectionSP FindSectionByType(lldb::SectionType sect_type,
114 lldb::SectionType sect_type, lldb::addr_t file_vm_addr,
125 lldb::SectionType sect_type, lldb::addr_t file_vm_addr,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h377 lldb::SectionType sect_type, size_t size, in AllocationRecord()
381 m_sect_type(sect_type), m_size(size), m_alignment(alignment), in AllocationRecord()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1985 SectionType sect_type = GetSectionType(header); in CreateSections() local
1988 GetTargetByteSize(sect_type, m_arch_spec); in CreateSections()
1999 sect_type, // Section type. in CreateSections()