Searched refs:UseMVT (Results 1 – 1 of 1) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 23825 EVT UseMVT = FirstUse->getValueType(0); in tryToWidenSetCCOperands() local 23826 if (UseMVT.getScalarSizeInBits() <= Op0MVT.getScalarSizeInBits()) in tryToWidenSetCCOperands() 23828 if (any_of(Op->uses(), [&UseMVT](const SDNode *N) { in tryToWidenSetCCOperands() 23829 return N->getOpcode() != ISD::VSELECT || N->getValueType(0) != UseMVT; in tryToWidenSetCCOperands() 23843 SDNode *Op0SExt = DAG.getNodeIfExists(ISD::SIGN_EXTEND, DAG.getVTList(UseMVT), in tryToWidenSetCCOperands() 23845 SDNode *Op0ZExt = DAG.getNodeIfExists(ISD::ZERO_EXTEND, DAG.getVTList(UseMVT), in tryToWidenSetCCOperands() 23849 Op1ExtV = DAG.getNode(ISD::SIGN_EXTEND, DL, UseMVT, Op->getOperand(1)); in tryToWidenSetCCOperands() 23852 Op1ExtV = DAG.getNode(ISD::ZERO_EXTEND, DL, UseMVT, Op->getOperand(1)); in tryToWidenSetCCOperands() 23856 return DAG.getNode(ISD::SETCC, DL, UseMVT.changeVectorElementType(MVT::i1), in tryToWidenSetCCOperands()
|