Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Suffix

61   ClassI,     // generic integer instruction, e.g., "i8" suffix
62 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
63 ClassW, // width-specific instruction, e.g., "8" suffix
66 // but we need to not emit any suffix for in our
1078 char Suffix = '\0';
1081 case 8: Suffix = 'b'; break;
1082 case 16: Suffix = 'h'; break;
1083 case 32: Suffix = 's'; break;
1084 case 64: Suffix = 'd'; break;
1085 default: llvm_unreachable("Bad suffix!");
1088 if (Suffix != '\0') {
1090 S.insert(Pos, &Suffix, 1);
1283 // Call the non-splat builtin: chop off the "_n" suffix from the name.