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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp283 EVT CondVT = Cond.getValueType(); local
291 Cond = DAG.getNode(ISD::AND, SDLoc(N), CondVT,
292 Cond, DAG.getConstant(1, CondVT));
298 Cond = DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), CondVT,
2268 EVT CondVT = Cond1.getValueType(); local
2269 if (CondVT.isVector()) {
2270 EVT CondEltVT = CondVT.getVectorElementType();
2273 if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector)
2281 if (getTypeAction(CondVT) == TargetLowering::TypeSplitVector) {
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp19366 EVT CondVT = Cond.getValueType();
19367 if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
19368 CondVT.getVectorElementType() == MVT::i1) {
19599 TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
19601 CondVT == VT) {
19620 Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
19633 Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
19634 DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
19636 Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
19637 DAG.getNode(ISD::BITCAST, DL, CondVT, LH
[all...]

Completed in 123 milliseconds