Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
HDCOFFAsmParser.cpp174 unsigned SecFlags = None; in ParseSectionFlags() local
183 SecFlags |= Alloc; in ParseSectionFlags()
184 if (SecFlags & InitData) in ParseSectionFlags()
186 SecFlags &= ~Load; in ParseSectionFlags()
190 SecFlags |= InitData; in ParseSectionFlags()
191 if (SecFlags & Alloc) in ParseSectionFlags()
193 SecFlags &= ~NoWrite; in ParseSectionFlags()
194 if ((SecFlags & NoLoad) == 0) in ParseSectionFlags()
195 SecFlags |= Load; in ParseSectionFlags()
199 SecFlags |= NoLoad; in ParseSectionFlags()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
HDSampleProf.h156 enum SecFlags { SecFlagInValid = 0, SecFlagCompress = (1 << 0) };
166 static inline bool hasSecFlag(SecHdrTableEntry &Entry, SecFlags Flag) {
HDSampleProfWriter.h171 void addSectionFlags(SecType Type, SecFlags Flags);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
HDObject.h504 OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags, in OwnedDataSection() argument
509 Flags = OriginalFlags = SecFlags; in OwnedDataSection()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
HDSampleProfWriter.cpp401 SecFlags Flags) { in addSectionFlags()