Home
last modified time | relevance | path

Searched refs:AllFlags (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp98 static uint32_t flagsToCharacteristics(SectionFlag AllFlags, uint32_t OldChar) { in flagsToCharacteristics() argument
113 if ((AllFlags & SectionFlag::SecAlloc) && !(AllFlags & SectionFlag::SecLoad)) in flagsToCharacteristics()
115 if (AllFlags & SectionFlag::SecNoload) in flagsToCharacteristics()
117 if (!(AllFlags & SectionFlag::SecReadonly)) in flagsToCharacteristics()
119 if (AllFlags & SectionFlag::SecDebug) in flagsToCharacteristics()
122 if (AllFlags & SectionFlag::SecCode) in flagsToCharacteristics()
124 if (AllFlags & SectionFlag::SecData) in flagsToCharacteristics()
126 if (AllFlags & SectionFlag::SecShare) in flagsToCharacteristics()
128 if (AllFlags & SectionFlag::SecExclude) in flagsToCharacteristics()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp66 static Expected<uint64_t> getNewShfFlags(SectionFlag AllFlags, in getNewShfFlags() argument
69 if (AllFlags & SectionFlag::SecAlloc) in getNewShfFlags()
71 if (!(AllFlags & SectionFlag::SecReadonly)) in getNewShfFlags()
73 if (AllFlags & SectionFlag::SecCode) in getNewShfFlags()
75 if (AllFlags & SectionFlag::SecMerge) in getNewShfFlags()
77 if (AllFlags & SectionFlag::SecStrings) in getNewShfFlags()
79 if (AllFlags & SectionFlag::SecExclude) in getNewShfFlags()
81 if (AllFlags & SectionFlag::SecLarge) { in getNewShfFlags()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h661 unsigned AllFlags; member
665 VPIRFlags() : OpType(OperationType::Other), AllFlags(0) {} in VPIRFlags()
694 AllFlags = 0; in VPIRFlags()
718 AllFlags = Other.AllFlags; in transferFlags()