Home
last modified time | relevance | path

Searched refs:SecFlags (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp184 SecFlags |= Alloc; in ParseSectionFlags()
187 SecFlags &= ~Load; in ParseSectionFlags()
196 SecFlags |= Load; in ParseSectionFlags()
201 SecFlags &= ~Load; in ParseSectionFlags()
230 SecFlags |= Code; in ParseSectionFlags()
248 if (SecFlags == None) in ParseSectionFlags()
249 SecFlags = InitData; in ParseSectionFlags()
251 if (SecFlags & Code) in ParseSectionFlags()
255 if ((SecFlags & Alloc) && (SecFlags & Load) == 0) in ParseSectionFlags()
257 if (SecFlags & NoLoad) in ParseSectionFlags()
[all …]
/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.h516 OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags, in OwnedDataSection() argument
521 Flags = OriginalFlags = SecFlags; in OwnedDataSection()