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

References

lib/Target/X86/X86ISelLowering.cpp
24983   if (VT.getScalarType() != MVT::i64 && VT.is256BitVector())
24983   if (VT.getScalarType() != MVT::i64 && VT.is256BitVector())
24993   if (VT == MVT::v8i16) {
24996     SDValue Sign = DAG.getConstant(APInt::getSignedMinValue(16), DL, VT);
24997     N0 = DAG.getNode(ISD::XOR, DL, VT, N0, Sign);
24998     N1 = DAG.getNode(ISD::XOR, DL, VT, N1, Sign);
25000     SDValue Result = DAG.getNode(Opcode, DL, VT, N0, N1);
25001     return DAG.getNode(ISD::XOR, DL, VT, Result, Sign);
25014   SDValue Cond = DAG.getSetCC(DL, VT, N0, N1, CC);
25015   return DAG.getSelect(DL, VT, Cond, N0, N1);