Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp88 MVT LHSVT = LT->getNumTypes() != 0 ? LT->getSimpleType(0) : MVT::Other; in operator ()() local
90 if (LHSVT.isVector() != RHSVT.isVector()) in operator ()()
93 if (LHSVT.isFloatingPoint() != RHSVT.isFloatingPoint()) in operator ()()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.cpp2850 EVT LHSVT = LHS.getValueType(); in combineSelectCC() local
2851 assert(LHSVT == RHS.getValueType()); in combineSelectCC()
2852 switch (LHSVT.getSimpleVT().SimpleTy) { in combineSelectCC()
2878 CC = getSetCCInverse(CC, LHSVT); in combineSelectCC()
2885 SDValue CompNode = generateComparison(LHSVT, LHS, RHS, CC, WithCMov, DL, DAG); in combineSelectCC()
2888 if (LHSVT.isFloatingPoint()) { in combineSelectCC()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp6410 const auto *LHSVT = LHSType->getAs<VectorType>(); in CheckVectorConditionalTypes() local
6417 if (LHSVT && RHSVT) { in CheckVectorConditionalTypes()
6418 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { in CheckVectorConditionalTypes()
6431 } else if (LHSVT || RHSVT) { in CheckVectorConditionalTypes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3619 EVT LHSVT = LHS.getValueType(); in LowerSETCC() local
3623 if (LHSVT == MVT::f128) { in LowerSETCC()
3626 softenSetCCOperands(DAG, LHSVT, LHS, RHS, CC, dl, LHS, RHS, Chain, in LowerSETCC()
3680 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { in LowerSETCC()
3682 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, LHS, RHS); in LowerSETCC()
3683 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, dl, LHSVT), CC); in LowerSETCC()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp22356 EVT LHSVT = LHS.getValueType(); in MatchVectorAllEqualTest() local
22359 llvm::has_single_bit<uint32_t>(LHSVT.getSizeInBits())) { in MatchVectorAllEqualTest()
22360 APInt SrcMask = APInt::getAllOnes(LHSVT.getScalarSizeInBits()); in MatchVectorAllEqualTest()