Home | History | Annotate | Download | only in X86

Lines Matching refs:ANDNP

7454   V2 = DAG.getBitcast(VT, DAG.getNode(X86ISD::ANDNP, DL, MaskVT,
22126 case X86ISD::ANDNP: return "X86ISD::ANDNP";
27951 /// Try to fold: (and (xor X, -1), Y) -> (andnp X, Y).
27991 return DAG.getNode(X86ISD::ANDNP, DL, VT, N00, N1);
28309 if (N0.getOpcode() == X86ISD::ANDNP)
28312 if (N0.getOpcode() != ISD::AND || N1.getOpcode() != X86ISD::ANDNP)
28323 // Check to see if the mask appeared in both the AND and ANDNP.
29794 case X86ISD::FANDN: IntOpcode = X86ISD::ANDNP; break;