Lines Matching defs:flags
37 uint32_t flags;
41 static StringRef getAbiName(uint32_t flags) {
42 switch (flags) {
69 uint32_t abi = files[0].flags & (EF_MIPS_ABI | EF_MIPS_ABI2);
70 bool nan = files[0].flags & EF_MIPS_NAN2008;
71 bool fp = files[0].flags & EF_MIPS_FP64;
74 if (ctx.arg.is64 && f.flags & EF_MIPS_MICROMIPS)
77 uint32_t abi2 = f.flags & (EF_MIPS_ABI | EF_MIPS_ABI2);
83 bool nan2 = f.flags & EF_MIPS_NAN2008;
88 bool fp2 = f.flags & EF_MIPS_FP64;
98 ret |= f.flags &
106 bool isPic = files[0].flags & (EF_MIPS_PIC | EF_MIPS_CPIC);
108 bool isPic2 = f.flags & (EF_MIPS_PIC | EF_MIPS_CPIC);
118 uint32_t ret = files[0].flags & (EF_MIPS_PIC | EF_MIPS_CPIC);
120 ret &= f.flags & (EF_MIPS_PIC | EF_MIPS_CPIC);
185 static StringRef getMachName(uint32_t flags) {
186 switch (flags & EF_MIPS_MACH) {
230 static StringRef getArchName(uint32_t flags) {
231 switch (flags & EF_MIPS_ARCH) {
259 static std::string getFullArchName(uint32_t flags) {
260 StringRef arch = getArchName(flags);
261 StringRef mach = getMachName(flags);
277 uint32_t ret = files[0].flags & (EF_MIPS_ARCH | EF_MIPS_MACH);
280 uint32_t newFlags = f.flags & (EF_MIPS_ARCH | EF_MIPS_MACH);