reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/PowerPC/PPCISelLowering.cpp
 2044   assert(((M0 | M1) < 4) && "A mask element out of bounds?");
 2049     if ((M0 | M1) < 2) {
 2050       DM = IsLE ? (((~M1) & 1) << 1) + ((~M0) & 1) : (M0 << 1) + (M1 & 1);
 2050       DM = IsLE ? (((~M1) & 1) << 1) + ((~M0) & 1) : (M0 << 1) + (M1 & 1);
 2058     if (M0 > 1 && M1 < 2) {
 2060     } else if (M0 < 2 && M1 > 1) {
 2062       M1 = (M1 + 2) % 4;
 2062       M1 = (M1 + 2) % 4;
 2068     DM = (((~M1) & 1) << 1) + ((~M0) & 1);
 2071     if (M0 < 2 && M1 > 1) {
 2073     } else if (M0 > 1 && M1 < 2) {
 2075       M1 = (M1 + 2) % 4;
 2075       M1 = (M1 + 2) % 4;
 2081     DM = (M0 << 1) + (M1 & 1);