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

References

lib/Target/X86/X86ISelLowering.cpp
11548   Lo = DAG.getBitcast(ByteVT, Lo);
11549   Hi = DAG.getBitcast(ByteVT, Hi);
11555     return DAG.getBitcast(
11556         VT, DAG.getNode(X86ISD::PALIGNR, DL, ByteVT, Lo, Hi,
11557                         DAG.getTargetConstant(ByteRotation, DL, MVT::i8)));
11572       DAG.getNode(X86ISD::VSHLDQ, DL, MVT::v16i8, Lo,
11573                   DAG.getTargetConstant(LoByteShift, DL, MVT::i8));
11575       DAG.getNode(X86ISD::VSRLDQ, DL, MVT::v16i8, Hi,
11576                   DAG.getTargetConstant(HiByteShift, DL, MVT::i8));
11577   return DAG.getBitcast(VT,
11578                         DAG.getNode(ISD::OR, DL, MVT::v16i8, LoShift, HiShift));