Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCSectionMachO.cpp116 MachO::SectionType SectionType = getType(); in PrintSwitchToSection() local
117 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE && in PrintSwitchToSection()
120 if (!SectionTypeDescriptors[SectionType].AssemblerName.empty()) { in PrintSwitchToSection()
122 OS << SectionTypeDescriptors[SectionType].AssemblerName; in PrintSwitchToSection()
199 StringRef SectionType = GetEmptyOrTrim(2); in ParseSectionSpecifier() local
220 if (SectionType.empty()) in ParseSectionSpecifier()
227 return SectionType == Descriptor.AssemblerName; in ParseSectionSpecifier()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwp.h30 bool LoadSectionData(uint64_t dwo_id, lldb::SectionType sect_type,
37 bool LoadRawSectionData(lldb::SectionType sect_type,
45 std::map<lldb::SectionType, lldb_private::DWARFDataExtractor> m_sections;
H A DSymbolFileDWARFDwp.cpp18 lldbSectTypeToLlvmSectionKind(lldb::SectionType type) { in lldbSectTypeToLlvmSectionKind()
92 uint64_t dwo_id, lldb::SectionType sect_type, in LoadSectionData()
113 lldb::SectionType sect_type, lldb_private::DWARFDataExtractor &data) { in LoadRawSectionData()
H A DSymbolFileDWARFDwoDwp.h23 void LoadSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARFDwoDwp.cpp30 void SymbolFileDWARFDwoDwp::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData()
H A DSymbolFileDWARFDwo.h56 void LoadSectionData(lldb::SectionType sect_type,
H A DSymbolFileDWARFDwo.cpp30 void SymbolFileDWARFDwo::LoadSectionData(lldb::SectionType sect_type, in LoadSectionData()
H A DSymbolFileDWARF.h341 GetCachedSectionData(lldb::SectionType sect_type,
344 virtual void LoadSectionData(lldb::SectionType sect_type,
/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,
183 lldb::SectionType GetType() const { return m_type; } in GetType()
259 lldb::SectionType m_type; // The type of this section
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCSectionMachO.h58 MachO::SectionType getType() const { in getType()
59 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h30 LLVM_YAML_STRONG_TYPEDEF(uint32_t, SectionType)
167 explicit Section(SectionType SecType) : Type(SecType) {} in Section()
170 SectionType Type;
419 template <> struct ScalarEnumerationTraits<WasmYAML::SectionType> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
420 static void enumeration(IO &IO, WasmYAML::SectionType &Type); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp145 WasmYAML::SectionType SectionType; in mapping() local
147 SectionType = Section->Type; in mapping()
149 IO.mapRequired("Type", SectionType); in mapping()
151 switch (SectionType) { in mapping()
244 void ScalarEnumerationTraits<WasmYAML::SectionType>::enumeration( in enumeration()
245 IO &IO, WasmYAML::SectionType &Type) { in enumeration()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp128 static const SectionType g_sections[] = { in CreateInstance()
140 SectionType section_type = g_sections[idx]; in CreateInstance()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h362 static lldb::SectionType
371 lldb::SectionType m_sect_type;
377 lldb::SectionType sect_type, size_t size, in AllocationRecord()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h68 using llvm::MachO::SectionType;
120 SectionType type;
153 inline bool isZeroFillSection(SectionType T) { in isZeroFillSection()
H A DMachONormalizedFileBinaryUtils.h206 SectionType &sectionType,
H A DMachONormalizedFileFromAtoms.cpp54 SectionInfo(StringRef seg, StringRef sect, SectionType type,
60 SectionType type;
78 SectionInfo::SectionInfo(StringRef sg, StringRef sct, SectionType t, in SectionInfo()
232 SectionType sectionType; in getRelocatableSection()
263 SectionType sectionType;
H A DMachONormalizedFileBinaryReader.cpp300 section.type = (SectionType)(read32(&sect->flags, isBig) & in readBinary()
343 section.type = (SectionType)(read32(&sect->flags, isBig) & in readBinary()
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp555 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local
556 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol()
557 SectionType != MachO::S_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol()
558 SectionType != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS && in parseDirectiveIndirectSymbol()
559 SectionType != MachO::S_SYMBOL_STUBS) in parseDirectiveIndirectSymbol()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBSection.h54 SectionType GetSectionType();
/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()
170 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section()
550 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBSection.cpp184 SectionType SBSection::GetSectionType() { in GetSectionType()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp460 unsigned SectionType = MachO->getSectionType(Section); in isZeroInit() local
461 return SectionType == MachO::S_ZEROFILL || in isZeroInit()
462 SectionType == MachO::S_GB_ZEROFILL; in isZeroInit()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp361 static lldb::SectionType
1746 static SectionType GetSectionTypeFromName(llvm::StringRef Name) { in GetSectionTypeFromName()
1747 return llvm::StringSwitch<SectionType>(Name) in GetSectionTypeFromName()
1785 SectionType ObjectFileELF::GetSectionType(const ELFSectionHeaderInfo &H) const { in GetSectionType()
1801 SectionType Type = GetSectionTypeFromName(H.section_name.GetStringRef()); in GetSectionType()
1811 static uint32_t GetTargetByteSize(SectionType Type, const ArchSpec &arch) { in GetTargetByteSize()
1985 SectionType sect_type = GetSectionType(header); in CreateSections()
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dactbl1.h1704 UINT8 SectionType[16]; member
1719 UINT8 SectionType[16]; member

12