/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSectionMachO.cpp | 115 MachO::SectionType SectionType = getType(); in PrintSwitchToSection() local 116 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE && in PrintSwitchToSection() 119 if (!SectionTypeDescriptors[SectionType].AssemblerName.empty()) { in PrintSwitchToSection() 121 OS << SectionTypeDescriptors[SectionType].AssemblerName; in PrintSwitchToSection() 198 StringRef SectionType = GetEmptyOrTrim(2); in ParseSectionSpecifier() local 219 if (SectionType.empty()) in ParseSectionSpecifier() 226 return SectionType == Descriptor.AssemblerName; in ParseSectionSpecifier()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.h | 94 enum SectionType { ROData = 0, Data, BSS, NumSectionTypes }; enum 163 void writeDataOfType(SectionType SectionType,
|
D | IceELFObjectWriter.cpp | 273 ELFObjectWriter::SectionType 324 writeDataOfType(static_cast<SectionType>(I++), SectionList, RelocationKind, in writeDataSection() 338 void ELFObjectWriter::writeDataOfType(SectionType ST, in writeDataOfType()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSectionMachO.h | 57 MachO::SectionType getType() const { in getType() 58 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | WasmYAML.cpp | 163 WasmYAML::SectionType SectionType; in mapping() local 165 SectionType = Section->Type; in mapping() 167 IO.mapRequired("Type", SectionType); in mapping() 169 switch (SectionType) { in mapping() 275 void ScalarEnumerationTraits<WasmYAML::SectionType>::enumeration( in enumeration() 276 IO &IO, WasmYAML::SectionType &Type) { in enumeration()
|
D | MachOEmitter.cpp | 90 template <typename SectionType> 91 SectionType constructSection(MachOYAML::Section Sec) { in constructSection() 92 SectionType TempSec; in constructSection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | WasmYAML.h | 29 LLVM_YAML_STRONG_TYPEDEF(uint32_t, SectionType) 178 explicit Section(SectionType SecType) : Type(SecType) {} in Section() 181 SectionType Type; 466 template <> struct ScalarEnumerationTraits<WasmYAML::SectionType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 467 static void enumeration(IO &IO, WasmYAML::SectionType &Type); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | DarwinAsmParser.cpp | 554 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local 555 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol() 556 SectionType != MachO::S_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol() 557 SectionType != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS && in parseDirectiveIndirectSymbol() 558 SectionType != MachO::S_SYMBOL_STUBS) in parseDirectiveIndirectSymbol()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | MachOLinkGraphBuilder.cpp | 142 unsigned SectionType = NSec.Flags & MachO::SECTION_TYPE; in createNormalizedSections() local 143 if (SectionType != MachO::S_ZEROFILL && in createNormalizedSections() 144 SectionType != MachO::S_GB_ZEROFILL) { in createNormalizedSections()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 508 unsigned SectionType = MachO->getSectionType(Section); in isZeroInit() local 509 return SectionType == MachO::S_ZEROFILL || in isZeroInit() 510 SectionType == MachO::S_GB_ZEROFILL; in isZeroInit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 2019 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionData() local 2021 !(SectionType == MachO::S_ZEROFILL || in isSectionData() 2022 SectionType == MachO::S_GB_ZEROFILL); in isSectionData() 2027 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionBSS() local 2029 (SectionType == MachO::S_ZEROFILL || in isSectionBSS() 2030 SectionType == MachO::S_GB_ZEROFILL); in isSectionBSS() 2039 unsigned SectionType = Flags & MachO::SECTION_TYPE; in isSectionVirtual() local 2040 return SectionType == MachO::S_ZEROFILL || in isSectionVirtual() 2041 SectionType == MachO::S_GB_ZEROFILL; in isSectionVirtual()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | MachO.h | 115 enum SectionType : uint32_t { enum
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | MachO.h | 114 enum SectionType : uint32_t { enum
|