Lines Matching refs:CondVT

16195   MVT CondVT = Cond.getSimpleValueType();  in LowerVSELECT()  local
16216 DAG.getConstant(0, dl, CondVT), in LowerVSELECT()
33830 EVT CondVT = Cond.getValueType(); in combineVSelectWithAllOnesOrZeros() local
33837 assert(CondVT.isVector() && "Vector select expects a vector selector!"); in combineVSelectWithAllOnesOrZeros()
33843 CondVT.getVectorElementType() == MVT::i1) { in combineVSelectWithAllOnesOrZeros()
33845 SDValue CondNew = DAG.getNOT(DL, Cond, CondVT); in combineVSelectWithAllOnesOrZeros()
33855 if (CondVT.getScalarSizeInBits() != VT.getScalarSizeInBits()) in combineVSelectWithAllOnesOrZeros()
33868 CondVT) { in combineVSelectWithAllOnesOrZeros()
33876 Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), in combineVSelectWithAllOnesOrZeros()
33885 if (DAG.ComputeNumSignBits(Cond) != CondVT.getScalarSizeInBits()) in combineVSelectWithAllOnesOrZeros()
33892 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(CondVT)) in combineVSelectWithAllOnesOrZeros()
33897 SDValue CastRHS = DAG.getBitcast(CondVT, RHS); in combineVSelectWithAllOnesOrZeros()
33898 SDValue Or = DAG.getNode(ISD::OR, DL, CondVT, Cond, CastRHS); in combineVSelectWithAllOnesOrZeros()
33904 SDValue CastLHS = DAG.getBitcast(CondVT, LHS); in combineVSelectWithAllOnesOrZeros()
33905 SDValue And = DAG.getNode(ISD::AND, DL, CondVT, Cond, CastLHS); in combineVSelectWithAllOnesOrZeros()
33911 MVT AndNVT = MVT::getVectorVT(MVT::i64, CondVT.getSizeInBits() / 64); in combineVSelectWithAllOnesOrZeros()
34081 EVT CondVT = Cond.getValueType(); in combineSelect() local
34272 if (Subtarget.hasAVX512() && !Subtarget.hasBWI() && CondVT.isVector() && in combineSelect()
34273 CondVT.getVectorElementType() == MVT::i1 && in combineSelect()