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

References

lib/Target/X86/X86ISelLowering.cpp
39969   EVT InSVT = InVT.getVectorElementType();
39976       InVT == MVT::v16i32 && VT == MVT::v16i8) {
39994                       (InVT.getSizeInBits() > 128) &&
39995                       (Subtarget.hasVLX() || InVT.getSizeInBits() > 256) &&
40026   if (TLI.isTypeLegal(InVT) && InVT.isVector() && SVT != MVT::i1 &&
40026   if (TLI.isTypeLegal(InVT) && InVT.isVector() && SVT != MVT::i1 &&
40041       if (!Subtarget.hasVLX() && !InVT.is512BitVector()) {
40042         unsigned NumConcats = 512 / InVT.getSizeInBits();
40044         SmallVector<SDValue, 4> ConcatOps(NumConcats, DAG.getUNDEF(InVT));
40046         InVT = EVT::getVectorVT(*DAG.getContext(), InSVT,
40047                                 NumConcats * InVT.getVectorNumElements());
40048         SatVal = DAG.getNode(ISD::CONCAT_VECTORS, DL, InVT, ConcatOps);