Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp187 SecFlags |= Alloc; in ParseSectionFlags()
190 SecFlags &= ~Load; in ParseSectionFlags()
199 SecFlags |= Load; in ParseSectionFlags()
204 SecFlags &= ~Load; in ParseSectionFlags()
233 SecFlags |= Code; in ParseSectionFlags()
251 if (SecFlags == None) in ParseSectionFlags()
252 SecFlags = InitData; in ParseSectionFlags()
254 if (SecFlags & Code) in ParseSectionFlags()
258 if ((SecFlags & Alloc) && (SecFlags & Load) == 0) in ParseSectionFlags()
260 if (SecFlags & NoLoad) in ParseSectionFlags()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h512 OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags, in OwnedDataSection() argument
517 Flags = OriginalFlags = SecFlags; in OwnedDataSection()