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.cpp92 MVT LHSVT = LT.getNumTypes() != 0 ? LT.getSimpleType(0) : MVT::Other; in operator ()() local
94 if (LHSVT.isVector() != RHSVT.isVector()) in operator ()()
97 if (LHSVT.isFloatingPoint() != RHSVT.isFloatingPoint()) in operator ()()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.cpp2832 EVT LHSVT = LHS.getValueType(); in combineSelectCC() local
2833 assert(LHSVT == RHS.getValueType()); in combineSelectCC()
2834 switch (LHSVT.getSimpleVT().SimpleTy) { in combineSelectCC()
2860 CC = getSetCCInverse(CC, LHSVT); in combineSelectCC()
2867 SDValue CompNode = generateComparison(LHSVT, LHS, RHS, CC, WithCMov, DL, DAG); in combineSelectCC()
2870 if (LHSVT.isFloatingPoint()) { in combineSelectCC()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp5664 const auto *LHSVT = LHSType->getAs<VectorType>(); in CheckVectorConditionalTypes() local
5671 if (LHSVT && RHSVT) { in CheckVectorConditionalTypes()
5672 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { in CheckVectorConditionalTypes()
5685 } else if (LHSVT || RHSVT) { in CheckVectorConditionalTypes()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3748 EVT LHSVT = LHS.getValueType(); in LowerSETCC() local
3752 if (LHSVT == MVT::f128) { in LowerSETCC()
3755 softenSetCCOperands(DAG, LHSVT, LHS, RHS, CC, dl, LHS, RHS, Chain, in LowerSETCC()
3809 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { in LowerSETCC()
3811 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, LHS, RHS); in LowerSETCC()
3812 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.cpp23268 EVT LHSVT = LHS.getValueType(); in MatchVectorAllEqualTest() local
23271 llvm::has_single_bit<uint32_t>(LHSVT.getSizeInBits())) { in MatchVectorAllEqualTest()
23272 APInt SrcMask = APInt::getAllOnes(LHSVT.getScalarSizeInBits()); in MatchVectorAllEqualTest()