Searched refs:CCVT (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp185 using CCVT = ComparisonCategoryResult;
187 case CCVT::Equal:
189 case CCVT::Equivalent:
191 case CCVT::Less:
193 case CCVT::Greater:
195 case CCVT::Unordered:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6304 EVT CCVT = MVT::i1; local
6306 CCVT = EVT::getVectorVT(*Context, CCVT, VT.getVectorNumElements());
6310 SDValue IsZeroShift = DAG.getSetCC(sdl, CCVT, ShAmt, Zero, ISD::SETEQ);
6914 EVT CCVT = MVT::i1; local
6915 CCVT = EVT::getVectorVT(I.getContext(), CCVT, VecWidth);
6921 ISD::UADDO, DL, DAG.getVTList(VecTy, CCVT), VectorIndex, VectorStep);
6923 SDValue SetCC = DAG.getSetCC(DL, CCVT, VectorInduction.getValue(0),
6925 setValue(&I, DAG.getNode(ISD::AND, DL, CCVT,
[all...]
H A DDAGCombiner.cpp3839 EVT CCVT = getSetCCResultType(VT); local
3859 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ),
3902 EVT CCVT = getSetCCResultType(VT); local
3952 SDValue IsOne = DAG.getSetCC(DL, CCVT, N1, One, ISD::SETEQ);
3953 SDValue IsAllOnes = DAG.getSetCC(DL, CCVT, N1, AllOnes, ISD::SETEQ);
3954 SDValue IsOneOrAllOnes = DAG.getNode(ISD::OR, DL, CCVT, IsOne, IsAllOnes);
3963 SDValue IsNeg = DAG.getSetCC(DL, CCVT, N1, Zero, ISD::SETLT);
3984 EVT CCVT = getSetCCResultType(VT); local
4000 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ),
4084 EVT CCVT local
5237 EVT CCVT = TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); local
21690 EVT CCVT = getSetCCResultType(VT); local
[all...]
H A DLegalizeDAG.cpp3741 EVT CCVT = getSetCCResultType(CmpVT);
3742 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC, Node->getFlags());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6515 EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), local
6518 SDValue Eq = DAG.getSetCC(DL, CCVT, Operand, FPZero, ISD::SETEQ);
13302 EVT CCVT = N0.getValueType(); local
13304 if (N0.getOpcode() != ISD::SETCC || CCVT.getVectorNumElements() != 1 ||
13305 CCVT.getVectorElementType() != MVT::i1)
13359 EVT CCVT = SrcVT.changeVectorElementTypeToInteger(); local
13361 // Also bail out if the vector CCVT isn't the same size as ResVT.
13364 if (CCVT.getSizeInBits() != ResVT.getSizeInBits())
13378 SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
13381 SmallVector<int, 8> DUPMask(CCVT
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp2000 EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); local
2002 SDValue Cond = DAG.getSetCC(DL, CCVT, R, Y, ISD::SETUGE);
2009 Cond = DAG.getSetCC(DL, CCVT, R, Y, ISD::SETUGE);
H A DSIISelLowering.cpp4591 EVT CCVT = EVT::getIntegerVT(*DAG.getContext(), WavefrontSize); local
4593 SDValue SetCC = DAG.getNode(AMDGPUISD::SETCC, DL, CCVT, LHS, RHS,
4595 if (VT.bitsEq(CCVT))
4622 EVT CCVT = EVT::getIntegerVT(*DAG.getContext(), WavefrontSize); local
4623 SDValue SetCC = DAG.getNode(AMDGPUISD::SETCC, SL, CCVT, Src0,
4625 if (VT.bitsEq(CCVT))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 316 milliseconds