Lines Matching defs:Flags
69 unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE | ELF::SHF_GROUP;
72 Flags,
117 // both gas and MC will produce a section with no flags. Given
170 unsigned Flags = 0;
173 Flags |= ELF::SHF_ALLOC;
176 Flags |= ELF::SHF_EXECINSTR;
179 Flags |= ELF::SHF_WRITE;
182 Flags |= ELF::SHF_TLS;
187 Flags |= ELF::SHF_MERGE;
190 Flags |= ELF::SHF_STRINGS;
192 return Flags;
212 // Infer section flags from the section name if we can.
216 unsigned Flags = getELFSectionFlags(Kind);
219 Flags |= ELF::SHF_GROUP;
222 getELFSectionType(SectionName, Kind), Flags,
266 unsigned Flags = getELFSectionFlags(Kind);
272 Flags |= ELF::SHF_GROUP;
277 Flags, Kind, 0, Group);
429 /// emitModuleFlags - Perform code emission for module flags.
443 // Ignore flags with 'Require' behavior.
544 // If the user declared multiple globals with different section flags, we need
730 unsigned Flags = 0;
733 Flags |=
736 Flags |=
741 Flags |=
746 Flags |=
751 Flags |=
755 Flags |=
760 return Flags;
935 // spec, this section is a space-separated string containing flags for linker.