Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp185 SecFlags |= Alloc; in ParseSectionFlags()
188 SecFlags &= ~Load; in ParseSectionFlags()
202 SecFlags &= ~Load; in ParseSectionFlags()
231 SecFlags |= Code; in ParseSectionFlags()
243 SecFlags |= Info; in ParseSectionFlags()
253 if (SecFlags == None) in ParseSectionFlags()
254 SecFlags = InitData; in ParseSectionFlags()
256 if (SecFlags & Code) in ParseSectionFlags()
260 if ((SecFlags & Alloc) && (SecFlags & Load) == 0) in ParseSectionFlags()
262 if (SecFlags & NoLoad) in ParseSectionFlags()
[all …]
/openbsd/gnu/llvm/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()