Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp178 unsigned SecFlags = None; in ParseSectionFlags() local
187 SecFlags |= Alloc; in ParseSectionFlags()
188 if (SecFlags & InitData) in ParseSectionFlags()
190 SecFlags &= ~Load; in ParseSectionFlags()
194 SecFlags |= InitData; in ParseSectionFlags()
195 if (SecFlags & Alloc) in ParseSectionFlags()
197 SecFlags &= ~NoWrite; in ParseSectionFlags()
198 if ((SecFlags & NoLoad) == 0) in ParseSectionFlags()
199 SecFlags |= Load; in ParseSectionFlags()
203 SecFlags |= NoLoad; in ParseSectionFlags()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()