Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp1376 SDValue LHSLo, LHSHi; in SplitVecRes_BinOp()
1377 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_BinOp()
1385 Lo = DAG.getNode(Opcode, dl, LHSLo.getValueType(), LHSLo, RHSLo, Flags); in SplitVecRes_BinOp()
1400 Lo = DAG.getNode(Opcode, dl, LHSLo.getValueType(), in SplitVecRes_BinOp()
1401 {LHSLo, RHSLo, MaskLo, EVLLo}, Flags);
1447 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in SplitVecRes_CMP()
1449 GetSplitVector(LHS, LHSLo, LHSHi); in SplitVecRes_CMP()
1452 std::tie(LHSLo, LHSHi) = DAG.SplitVector(LHS, dl); in SplitVecRes_CMP()
1457 Lo = DAG.getNode(N->getOpcode(), dl, SplitResVT, LHSLo, RHSL
1372 SDValue LHSLo, LHSHi; SplitVecRes_BinOp() local
1443 SDValue LHSLo, LHSHi, RHSLo, RHSHi; SplitVecRes_CMP() local
1458 SDValue LHSLo, LHSHi; SplitVecRes_FIX() local
1659 SDValue LHSLo, LHSHi; SplitVecRes_FPOp_MultiType() local
1699 SDValue LHSLo, LHSHi; SplitVecRes_InregOp() local
4201 SDValue LHSLo, LHSHi; SplitVecOp_FPOpDifferentTypes() local
4218 SDValue LHSLo, LHSHi, RHSLo, RHSHi; SplitVecOp_CMP() local
[all...]
H A DLegalizeIntegerTypes.cpp5324 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in IntegerExpandSetCCOperands() local
5325 GetExpandedInteger(NewLHS, LHSLo, LHSHi); in IntegerExpandSetCCOperands()
5331 NewLHS = DAG.getNode(ISD::AND, dl, LHSLo.getValueType(), LHSLo, LHSHi); in IntegerExpandSetCCOperands()
5336 NewLHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo); in IntegerExpandSetCCOperands()
5337 NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi); in IntegerExpandSetCCOperands()
5376 if (TLI.isTypeLegal(LHSLo.getValueType()) && in IntegerExpandSetCCOperands()
5378 LoCmp = TLI.SimplifySetCC(getSetCCResultType(LHSLo.getValueType()), LHSLo, in IntegerExpandSetCCOperands()
5381 LoCmp = DAG.getSetCC(dl, getSetCCResultType(LHSLo.getValueType()), LHSLo, in IntegerExpandSetCCOperands()
5435 std::swap(LHSLo, RHSLo); in IntegerExpandSetCCOperands()
5442 EVT LoVT = LHSLo.getValueType(); in IntegerExpandSetCCOperands()
[all …]
H A DLegalizeFloatTypes.cpp2117 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in FloatExpandSetCCOperands() local
2118 GetExpandedFloat(NewLHS, LHSLo, LHSHi); in FloatExpandSetCCOperands()
2132 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(LHSLo.getValueType()), LHSLo, in FloatExpandSetCCOperands()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp599 auto *LHSLo = Builder.CreateShuffleVector(Arg0, LoMask); in simplifyX86pmadd() local
606 LHSLo = Builder.CreateCast(LHSCast, LHSLo, ResTy); in simplifyX86pmadd()
610 Value *Lo = Builder.CreateMul(LHSLo, RHSLo); in simplifyX86pmadd()
H A DX86ISelLowering.cpp28831 SDValue LHSLo, LHSHi; in LowerMULO() local
28832 std::tie(LHSLo, LHSHi) = splitVector(A, DAG, dl); in LowerMULO()
28840 SDVTList LoVTs = DAG.getVTList(LHSLo.getValueType(), LoOvfVT); in LowerMULO()
28844 SDValue Lo = DAG.getNode(Op.getOpcode(), dl, LoVTs, LHSLo, RHSLo); in LowerMULO()
37138 KnownBits LHSLo = DAG.computeKnownBits(LHS, DemandedLoElts, Depth + 1); in computeKnownBitsForPMADDWD() local
37142 KnownBits Lo = KnownBits::mul(LHSLo.sext(32), RHSLo.sext(32)); in computeKnownBitsForPMADDWD()
37162 KnownBits LHSLo = DAG.computeKnownBits(LHS, DemandedLoElts, Depth + 1); in computeKnownBitsForPMADDUBSW() local
37166 KnownBits Lo = KnownBits::mul(LHSLo.zext(16), RHSLo.sext(16)); in computeKnownBitsForPMADDUBSW()
57362 APInt LHSLo = LHSBits[I + 0], LHSHi = LHSBits[I + 1]; in combineVPMADD() local
57364 LHSLo = IsPMADDWD ? LHSLo.sext(DstEltBits) : LHSLo.zext(DstEltBits); in combineVPMADD()
[all …]