Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp193 SecFlags |= Alloc; in ParseSectionFlags()
196 SecFlags &= ~Load; in ParseSectionFlags()
210 SecFlags &= ~Load; in ParseSectionFlags()
239 SecFlags |= Code; in ParseSectionFlags()
251 SecFlags |= Info; in ParseSectionFlags()
261 if (SecFlags == None) in ParseSectionFlags()
262 SecFlags = InitData; in ParseSectionFlags()
264 if (SecFlags & Code) in ParseSectionFlags()
268 if ((SecFlags & Alloc) && (SecFlags & Load) == 0) in ParseSectionFlags()
270 if (SecFlags & NoLoad) in ParseSectionFlags()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h523 OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags, in OwnedDataSection() argument
528 Flags = OriginalFlags = SecFlags; in OwnedDataSection()