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

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp184 using CCVT = ComparisonCategoryResult;
186 case CCVT::Equal:
188 case CCVT::Equivalent:
190 case CCVT::Less:
192 case CCVT::Greater:
194 case CCVT::Unordered:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3746 EVT CCVT = getSetCCResultType(VT); local
3765 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ),
3808 EVT CCVT = getSetCCResultType(VT); local
3858 SDValue IsOne = DAG.getSetCC(DL, CCVT, N1, One, ISD::SETEQ);
3859 SDValue IsAllOnes = DAG.getSetCC(DL, CCVT, N1, AllOnes, ISD::SETEQ);
3860 SDValue IsOneOrAllOnes = DAG.getNode(ISD::OR, DL, CCVT, IsOne, IsAllOnes);
3869 SDValue IsNeg = DAG.getSetCC(DL, CCVT, N1, Zero, ISD::SETLT);
3890 EVT CCVT = getSetCCResultType(VT); local
3908 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ),
3992 EVT CCVT local
5143 EVT CCVT = TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); local
20775 EVT CCVT = getSetCCResultType(VT); local
[all...]
H A DLegalizeDAG.cpp3679 EVT CCVT = getSetCCResultType(CmpVT);
3680 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC, Node->getFlags());
H A DSelectionDAGBuilder.cpp6397 EVT CCVT = MVT::i1; local
6399 CCVT = EVT::getVectorVT(*Context, CCVT, VT.getVectorNumElements());
6403 SDValue IsZeroShift = DAG.getSetCC(sdl, CCVT, ShAmt, Zero, ISD::SETEQ);
H A DTargetLowering.cpp5975 EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), ShVT);
5979 SDValue IsZeroShift = DAG.getSetCC(DL, CCVT, ShAmt, Zero, ISD::SETEQ);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6080 EVT CCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), local
6083 SDValue Eq = DAG.getSetCC(DL, CCVT, Operand, FPZero, ISD::SETEQ);
12188 EVT CCVT = N0.getValueType(); local
12190 if (N0.getOpcode() != ISD::SETCC || CCVT.getVectorNumElements() != 1 ||
12191 CCVT.getVectorElementType() != MVT::i1)
12245 EVT CCVT = SrcVT.changeVectorElementTypeToInteger(); local
12247 // Also bail out if the vector CCVT isn't the same size as ResVT.
12250 if (CCVT.getSizeInBits() != ResVT.getSizeInBits())
12264 SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
12267 SmallVector<int, 8> DUPMask(CCVT
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp4230 EVT CCVT = EVT::getIntegerVT(*DAG.getContext(), WavefrontSize); local
4232 SDValue SetCC = DAG.getNode(AMDGPUISD::SETCC, DL, CCVT, LHS, RHS,
4234 if (VT.bitsEq(CCVT))
4263 EVT CCVT = EVT::getIntegerVT(*DAG.getContext(), WavefrontSize); local
4264 SDValue SetCC = DAG.getNode(AMDGPUISD::SETCC, SL, CCVT, Src0,
4266 if (VT.bitsEq(CCVT))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 405 milliseconds