Searched refs:LHSVT (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelEmitter.cpp | 91 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 D | VEISelLowering.cpp | 2848 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 D | SemaExprCXX.cpp | 6658 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 D | PPCISelLowering.cpp | 3733 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 D | X86ISelLowering.cpp | 22532 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()
|