Home
last modified time | relevance | path

Searched refs:SectionType (Results 1 – 22 of 22) sorted by relevance

/NextBSD/contrib/llvm/lib/MC/
HDMCSectionMachO.cpp104 MachO::SectionType SectionType = getType(); in PrintSwitchToSection() local
105 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE && in PrintSwitchToSection()
108 if (SectionTypeDescriptors[SectionType].AssemblerName) { in PrintSwitchToSection()
110 OS << SectionTypeDescriptors[SectionType].AssemblerName; in PrintSwitchToSection()
187 StringRef SectionType = GetEmptyOrTrim(2); in ParseSectionSpecifier() local
208 if (SectionType.empty()) in ParseSectionSpecifier()
216 SectionType == Descriptor.AssemblerName; in ParseSectionSpecifier()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDSection.h62 … FindSectionByType (lldb::SectionType sect_type, bool check_children, size_t start_idx = 0) const;
117 lldb::SectionType sect_type,
132 lldb::SectionType sect_type,
256 lldb::SectionType
312 lldb::SectionType m_type; // The type of this section
/NextBSD/contrib/llvm/include/llvm/MC/
HDMCSectionMachO.h59 MachO::SectionType getType() const { in getType()
60 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Expression/
HDIRExecutionUnit.h349 static lldb::SectionType
358 lldb::SectionType m_sect_type;
365 lldb::SectionType sect_type, in AllocationRecord()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/
HDSymbolVendorELF.cpp143 static const SectionType g_sections[] = in CreateInstance()
160 SectionType section_type = g_sections[idx]; in CreateInstance()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Utility/
HDConvertEnum.h19 const char *GetSectionTypeAsCString(lldb::SectionType sect_type);
/NextBSD/contrib/llvm/lib/MC/MCParser/
HDDarwinAsmParser.cpp436 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local
437 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol()
438 SectionType != MachO::S_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol()
439 SectionType != MachO::S_SYMBOL_STUBS) in parseDirectiveIndirectSymbol()
/NextBSD/contrib/llvm/tools/lldb/source/Utility/
HDConvertEnum.cpp30 lldb_private::GetSectionTypeAsCString(lldb::SectionType sect_type) in GetSectionTypeAsCString()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDSection.cpp26 SectionType sect_type, in Section()
61 SectionType sect_type, in Section()
493 SectionList::FindSectionByType (SectionType sect_type, bool check_children, size_t start_idx) const in FindSectionByType()
HDAddress.cpp484 SectionType sect_type = section_sp->GetType(); in Dump()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBSection.h71 SectionType
/NextBSD/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
HDRuntimeDyld.cpp303 unsigned SectionType = MachO->getSectionType(Section); in isZeroInit() local
304 return SectionType == MachO::S_ZEROFILL || in isZeroInit()
305 SectionType == MachO::S_GB_ZEROFILL; in isZeroInit()
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBSection.cpp244 SectionType
/NextBSD/contrib/llvm/lib/Object/
HDMachOObjectFile.cpp534 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionData() local
536 !(SectionType == MachO::S_ZEROFILL || in isSectionData()
537 SectionType == MachO::S_GB_ZEROFILL); in isSectionData()
542 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionBSS() local
544 (SectionType == MachO::S_ZEROFILL || in isSectionBSS()
545 SectionType == MachO::S_GB_ZEROFILL); in isSectionBSS()
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDIRExecutionUnit.cpp461 lldb::SectionType
464 lldb::SectionType sect_type = lldb::eSectionTypeCode; in GetSectionTypeFromSectionName()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-enumerations.h580 enum SectionType enum
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDObjectFile.cpp334 const SectionType section_type = section_sp->GetType(); in GetAddressClass()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
HDObjectFileELF.cpp328 static lldb::SectionType
1671 SectionType sect_type = eSectionTypeOther; in CreateSections()
1776 static const SectionType g_sections[] = in CreateSections()
1794 SectionType section_type = g_sections[idx]; in CreateSections()
/NextBSD/sys/contrib/dev/acpica/include/
HDactbl1.h725 UINT8 SectionType[16]; member
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDSymbolFileDWARF.h222 lldb::SectionType sect_type,
HDSymbolFileDWARF.cpp740 SymbolFileDWARF::GetCachedSectionData (uint32_t got_flag, SectionType sect_type, DWARFDataExtractor… in GetCachedSectionData()
/NextBSD/contrib/llvm/include/llvm/Support/
HDMachO.h156 enum SectionType : uint32_t { enum