Home
last modified time | relevance | path

Searched refs:ShFlags (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFObjectWriter.cpp99 Elf64_Xword ShFlags, Elf64_Xword ShAddralign, in createSection() argument
103 new (Ctx.allocate<T>()) T(Name, ShType, ShFlags, ShAddralign, ShEntsize); in createSection()
120 constexpr Elf64_Xword ShFlags = 0; in createRelocationSection() local
122 RelSectionName, ShType, ShFlags, ShAlign, ShEntSize); in createRelocationSection()
225 constexpr Elf64_Xword ShFlags = SHF_ALLOC | SHF_EXECINSTR; in writeFunctionCode() local
227 Section = createSection<ELFTextSection>(SectionName, SHT_PROGBITS, ShFlags, in writeFunctionCode()
299 Elf64_Xword ShFlags, in writeTargetRODataSection() argument
306 Name, ShType, ShFlags, ShAddralign, ShEntsize); in writeTargetRODataSection()
358 const Elf64_Xword ShFlags = IsPIC ? (SHF_ALLOC | SHF_WRITE) : SHF_ALLOC; in writeDataOfType() local
359 Section = createSection<ELFDataSection>(SectionName, SHT_PROGBITS, ShFlags, in writeDataOfType()
[all …]
DIceELFSection.h49 ELFSection(const std::string &Name, Elf64_Word ShType, Elf64_Xword ShFlags, in ELFSection() argument
53 Header.sh_flags = ShFlags; in ELFSection()
169 Elf64_Xword ShFlags, Elf64_Xword ShAddralign, in ELFSymbolTableSection() argument
171 : ELFSection(Name, ShType, ShFlags, ShAddralign, ShEntsize), in ELFSymbolTableSection()
225 Elf64_Xword ShFlags, Elf64_Xword ShAddralign, in ELFRelocationSection() argument
227 : ELFSection(Name, ShType, ShFlags, ShAddralign, ShEntsize), in ELFRelocationSection()
DIceELFObjectWriter.h98 Elf64_Xword ShFlags, Elf64_Xword ShAddralign,
129 Elf64_Xword ShFlags, Elf64_Xword ShAddralign,
DIceTargetLoweringMIPS32.cpp5658 const llvm::ELF::Elf64_Xword ShFlags = llvm::ELF::SHF_ALLOC; in emitTargetRODataSections() local
5662 Name, ShType, ShFlags, ShAddralign, ShEntsize, in emitTargetRODataSections()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFYAML.cpp1023 !Section.ShName.hasValue() && !Section.ShFlags.hasValue())); in commonSectionMapping()
1027 IO.mapOptional("ShFlags", Section.ShFlags); in commonSectionMapping()
1305 if (RawSection->Flags && RawSection->ShFlags) in validate()
DELFEmitter.cpp360 if (From->ShFlags) in overrideFields()
361 To.sh_flags = *From->ShFlags; in overrideFields()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DELFYAML.h198 Optional<llvm::yaml::Hex64> ShFlags; member