Searched refs:CondVT (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 310 EVT CondVT = Cond.getValueType(); in ScalarizeVecRes_VSELECT() local 318 Cond = DAG.getNode(ISD::AND, SDLoc(N), CondVT, in ScalarizeVecRes_VSELECT() 319 Cond, DAG.getConstant(1, SDLoc(N), CondVT)); in ScalarizeVecRes_VSELECT() 325 Cond = DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), CondVT, in ScalarizeVecRes_VSELECT() 2823 EVT CondVT = Cond1.getValueType(); in WidenVecRes_SELECT() local 2824 if (CondVT.isVector()) { in WidenVecRes_SELECT() 2825 EVT CondEltVT = CondVT.getVectorElementType(); in WidenVecRes_SELECT() 2828 if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector) in WidenVecRes_SELECT() 2836 if (getTypeAction(CondVT) == TargetLowering::TypeSplitVector) { in WidenVecRes_SELECT()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 24117 EVT CondVT = Cond.getValueType(); in PerformSELECTCombine() local 24118 if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() && in PerformSELECTCombine() 24119 CondVT.getVectorElementType() == MVT::i1) { in PerformSELECTCombine() 24326 if (N->getOpcode() == ISD::VSELECT && CondVT == VT) { in PerformSELECTCombine() 24340 CondVT) { in PerformSELECTCombine() 24349 Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC); in PerformSELECTCombine() 24363 DAG.getNode(ISD::OR, DL, CondVT, Cond, DAG.getBitcast(CondVT, RHS)); in PerformSELECTCombine() 24365 Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond, in PerformSELECTCombine() 24366 DAG.getBitcast(CondVT, LHS)); in PerformSELECTCombine()
|