Home
last modified time | relevance | path

Searched refs:LHSVT (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp91 MVT LHSVT = LT.getNumTypes() != 0 ? LT.getSimpleType(0) : MVT::Other; in operator ()() local
93 if (LHSVT.isVector() != RHSVT.isVector()) in operator ()()
96 if (LHSVT.isFloatingPoint() != RHSVT.isFloatingPoint()) in operator ()()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.cpp2848 EVT LHSVT = LHS.getValueType(); in combineSelectCC() local
2849 assert(LHSVT == RHS.getValueType()); in combineSelectCC()
2850 switch (LHSVT.getSimpleVT().SimpleTy) { in combineSelectCC()
2876 CC = getSetCCInverse(CC, LHSVT); in combineSelectCC()
2883 SDValue CompNode = generateComparison(LHSVT, LHS, RHS, CC, WithCMov, DL, DAG); in combineSelectCC()
2886 if (LHSVT.isFloatingPoint()) { in combineSelectCC()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp6658 const auto *LHSVT = LHSType->getAs<VectorType>(); in CheckVectorConditionalTypes() local
6665 if (LHSVT && RHSVT) { in CheckVectorConditionalTypes()
6666 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { in CheckVectorConditionalTypes()
6679 } else if (LHSVT || RHSVT) { in CheckVectorConditionalTypes()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3733 EVT LHSVT = LHS.getValueType(); in LowerSETCC() local
3737 if (LHSVT == MVT::f128) { in LowerSETCC()
3740 softenSetCCOperands(DAG, LHSVT, LHS, RHS, CC, dl, LHS, RHS, Chain, in LowerSETCC()
3794 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { in LowerSETCC()
3796 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, LHS, RHS); in LowerSETCC()
3797 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, dl, LHSVT), CC); in LowerSETCC()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp22532 EVT LHSVT = LHS.getValueType(); in MatchVectorAllEqualTest() local
22535 llvm::has_single_bit<uint32_t>(LHSVT.getSizeInBits())) { in MatchVectorAllEqualTest()
22536 APInt SrcMask = APInt::getAllOnes(LHSVT.getScalarSizeInBits()); in MatchVectorAllEqualTest()