Home
last modified time | relevance | path

Searched refs:CondVT (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp302 EVT CondVT = Cond.getValueType(); in ScalarizeVecRes_VSELECT() local
310 Cond = DAG.getNode(ISD::AND, SDLoc(N), CondVT, in ScalarizeVecRes_VSELECT()
311 Cond, DAG.getConstant(1, CondVT)); in ScalarizeVecRes_VSELECT()
317 Cond = DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), CondVT, in ScalarizeVecRes_VSELECT()
2484 EVT CondVT = Cond1.getValueType(); in WidenVecRes_SELECT() local
2485 if (CondVT.isVector()) { in WidenVecRes_SELECT()
2486 EVT CondEltVT = CondVT.getVectorElementType(); in WidenVecRes_SELECT()
2489 if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector) in WidenVecRes_SELECT()
2497 if (getTypeAction(CondVT) == TargetLowering::TypeSplitVector) { in WidenVecRes_SELECT()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp20921 EVT CondVT = Cond.getValueType(); in PerformSELECTCombine() local
20922 if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() && in PerformSELECTCombine()
20923 CondVT.getVectorElementType() == MVT::i1) { in PerformSELECTCombine()
21155 if (N->getOpcode() == ISD::VSELECT && CondVT == VT) { in PerformSELECTCombine()
21168 TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT) { in PerformSELECTCombine()
21177 Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC); in PerformSELECTCombine()
21190 Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond, in PerformSELECTCombine()
21191 DAG.getNode(ISD::BITCAST, DL, CondVT, RHS)); in PerformSELECTCombine()
21193 Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond, in PerformSELECTCombine()
21194 DAG.getNode(ISD::BITCAST, DL, CondVT, LHS)); in PerformSELECTCombine()