HomeSort by: relevance | last modified time | path
    Searched refs:SectionFlag (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
COFFObjcopy.cpp 97 static void setSectionFlags(Section &Sec, SectionFlag AllFlags) {
113 if ((AllFlags & SectionFlag::SecAlloc) && !(AllFlags & SectionFlag::SecLoad))
115 if (AllFlags & SectionFlag::SecNoload)
117 if (!(AllFlags & SectionFlag::SecReadonly))
119 if (AllFlags & SectionFlag::SecDebug)
122 if (AllFlags & SectionFlag::SecCode)
124 if (AllFlags & SectionFlag::SecData)
126 if (AllFlags & SectionFlag::SecShare)
128 if (AllFlags & SectionFlag::SecExclude
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
CommonConfig.h 55 enum SectionFlag {
76 Optional<SectionFlag> NewFlags;
81 SectionFlag NewFlags;
ConfigManager.cpp 172 static SectionFlag parseSectionRenameFlag(StringRef SectionName) {
173 return llvm::StringSwitch<SectionFlag>(SectionName)
174 .CaseLower("alloc", SectionFlag::SecAlloc)
175 .CaseLower("load", SectionFlag::SecLoad)
176 .CaseLower("noload", SectionFlag::SecNoload)
177 .CaseLower("readonly", SectionFlag::SecReadonly)
178 .CaseLower("debug", SectionFlag::SecDebug)
179 .CaseLower("code", SectionFlag::SecCode)
180 .CaseLower("data", SectionFlag::SecData)
181 .CaseLower("rom", SectionFlag::SecRom
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
ELFObjcopy.cpp 74 uint64_t getNewShfFlags(SectionFlag AllFlags) {
76 if (AllFlags & SectionFlag::SecAlloc)
78 if (!(AllFlags & SectionFlag::SecReadonly))
80 if (AllFlags & SectionFlag::SecCode)
82 if (AllFlags & SectionFlag::SecMerge)
84 if (AllFlags & SectionFlag::SecStrings)
86 if (AllFlags & SectionFlag::SecExclude)
103 static void setSectionFlagsAndType(SectionBase &Sec, SectionFlag Flags) {
111 Flags & (SectionFlag::SecContents | SectionFlag::SecLoad))
    [all...]

Completed in 44 milliseconds