Lines Matching refs:XVT
3840 EVT XVT = X.getValueType(); in hoistLogicOpWithSameOpcodeHands() local
3849 if (XVT != Y.getValueType()) in hoistLogicOpWithSameOpcodeHands()
3854 !TLI.isOperationLegalOrCustom(LogicOpcode, XVT)) in hoistLogicOpWithSameOpcodeHands()
3859 !TLI.isTypeDesirableForOp(LogicOpcode, XVT)) in hoistLogicOpWithSameOpcodeHands()
3862 SDValue Logic = DAG.getNode(LogicOpcode, DL, XVT, X, Y); in hoistLogicOpWithSameOpcodeHands()
3873 if (XVT != Y.getValueType()) in hoistLogicOpWithSameOpcodeHands()
3876 if (LegalOperations && !TLI.isOperationLegal(LogicOpcode, XVT)) in hoistLogicOpWithSameOpcodeHands()
3880 if (TLI.isZExtFree(VT, XVT) && TLI.isTruncateFree(XVT, VT)) in hoistLogicOpWithSameOpcodeHands()
3882 if (!TLI.isTypeLegal(XVT)) in hoistLogicOpWithSameOpcodeHands()
3884 SDValue Logic = DAG.getNode(LogicOpcode, DL, XVT, X, Y); in hoistLogicOpWithSameOpcodeHands()
3896 SDValue Logic = DAG.getNode(LogicOpcode, DL, XVT, X, Y); in hoistLogicOpWithSameOpcodeHands()
3905 SDValue Logic = DAG.getNode(LogicOpcode, DL, XVT, X, Y); in hoistLogicOpWithSameOpcodeHands()
3919 if (XVT.isInteger() && XVT == Y.getValueType()) { in hoistLogicOpWithSameOpcodeHands()
3920 SDValue Logic = DAG.getNode(LogicOpcode, DL, XVT, X, Y); in hoistLogicOpWithSameOpcodeHands()
8584 EVT XVT = X.getValueType(); in foldExtendedSignBitTest() local
8588 if (CC == ISD::SETGT && isAllOnesConstant(Ones) && VT == XVT) { in foldExtendedSignBitTest()