Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp1444 SDValue LHSLo, LHSHi; in SplitVecRes_BinOp() local
1445 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_BinOp()
1454 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), LHSHi, RHSHi, Flags); in SplitVecRes_BinOp()
1470 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), in SplitVecRes_BinOp()
1471 {LHSHi, RHSHi, MaskHi, EVLHi}, Flags); in SplitVecRes_BinOp()
1515 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in SplitVecRes_CMP() local
1517 GetSplitVector(LHS, LHSLo, LHSHi); in SplitVecRes_CMP()
1520 std::tie(LHSLo, LHSHi) = DAG.SplitVector(LHS, dl); in SplitVecRes_CMP()
1526 Hi = DAG.getNode(N->getOpcode(), dl, SplitResVT, LHSHi, RHSHi); in SplitVecRes_CMP()
1530 SDValue LHSLo, LHSHi; in SplitVecRes_FIX() local
[all …]
H A DLegalizeIntegerTypes.cpp5563 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in IntegerExpandSetCCOperands() local
5564 GetExpandedInteger(NewLHS, LHSLo, LHSHi); in IntegerExpandSetCCOperands()
5570 NewLHS = DAG.getNode(ISD::AND, dl, LHSLo.getValueType(), LHSLo, LHSHi); in IntegerExpandSetCCOperands()
5576 NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi); in IntegerExpandSetCCOperands()
5587 NewLHS = LHSHi; in IntegerExpandSetCCOperands()
5622 if (TLI.isTypeLegal(LHSHi.getValueType()) && in IntegerExpandSetCCOperands()
5624 HiCmp = TLI.SimplifySetCC(getSetCCResultType(LHSHi.getValueType()), LHSHi, in IntegerExpandSetCCOperands()
5628 DAG.getNode(ISD::SETCC, dl, getSetCCResultType(LHSHi.getValueType()), in IntegerExpandSetCCOperands()
5629 LHSHi, RHSHi, DAG.getCondCode(CCCode)); in IntegerExpandSetCCOperands()
5649 if (LHSHi == RHSHi) { in IntegerExpandSetCCOperands()
[all …]
H A DLegalizeFloatTypes.cpp2333 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in FloatExpandSetCCOperands() local
2334 GetExpandedFloat(NewLHS, LHSLo, LHSHi); in FloatExpandSetCCOperands()
2345 Tmp1 = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, in FloatExpandSetCCOperands()
2353 DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, RHSHi, in FloatExpandSetCCOperands()
2356 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, in FloatExpandSetCCOperands()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp594 auto *LHSHi = Builder.CreateShuffleVector(Arg0, HiMask); in simplifyX86pmadd() local
601 LHSHi = Builder.CreateCast(LHSCast, LHSHi, ResTy); in simplifyX86pmadd()
605 Value *Hi = Builder.CreateMul(LHSHi, RHSHi); in simplifyX86pmadd()
H A DX86ISelLowering.cpp29895 SDValue LHSLo, LHSHi; in LowerMULO() local
29896 std::tie(LHSLo, LHSHi) = splitVector(A, DAG, dl); in LowerMULO()
29905 SDVTList HiVTs = DAG.getVTList(LHSHi.getValueType(), HiOvfVT); in LowerMULO()
29909 SDValue Hi = DAG.getNode(Op.getOpcode(), dl, HiVTs, LHSHi, RHSHi); in LowerMULO()
38522 KnownBits LHSHi = DAG.computeKnownBits(LHS, DemandedHiElts, Depth + 1); in computeKnownBitsForPMADDWD() local
38526 KnownBits Hi = KnownBits::mul(LHSHi.sext(32), RHSHi.sext(32)); in computeKnownBitsForPMADDWD()
38545 KnownBits LHSHi = DAG.computeKnownBits(LHS, DemandedHiElts, Depth + 1); in computeKnownBitsForPMADDUBSW() local
38549 KnownBits Hi = KnownBits::mul(LHSHi.zext(16), RHSHi.sext(16)); in computeKnownBitsForPMADDUBSW()
60010 APInt LHSLo = LHSBits[I + 0], LHSHi = LHSBits[I + 1]; in combineVPMADD() local
60013 LHSHi = IsPMADDWD ? LHSHi.sext(DstEltBits) : LHSHi.zext(DstEltBits); in combineVPMADD()
[all …]