Home
last modified time | relevance | path

Searched refs:CarryIn (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Support/
H A DKnownBits.cpp22 bool CarryIn = false; in computeForAddSub() local
26 CarryIn = true; in computeForAddSub()
29 APInt PossibleSumZero = ~LHS.Zero + ~RHS.Zero + CarryIn; in computeForAddSub()
30 APInt PossibleSumOne = LHS.One + RHS.One + CarryIn; in computeForAddSub()
/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp330 unsigned CarryIn = MRI.createGenericVirtualRegister(LLT::scalar(1)); in narrowScalar() local
331 MIRBuilder.buildConstant(CarryIn, 0); in narrowScalar()
338 Src2Regs[i], CarryIn); in narrowScalar()
341 CarryIn = CarryOut; in narrowScalar()
1150 unsigned CarryIn = MI.getOperand(4).getReg(); in lower() local
1156 MIRBuilder.buildZExt(ZExtCarryIn, CarryIn); in lower()
H A DMachineIRBuilder.cpp327 const SrcOp &CarryIn) { in buildUAdde() argument
329 {Op0, Op1, CarryIn}); in buildUAdde()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DSIPeepholeSDWA.cpp900 MachineOperand *CarryIn = TII->getNamedOperand(MISucc, AMDGPU::OpName::src2); in pseudoOpConvertToVOP2() local
901 if (!CarryIn) in pseudoOpConvertToVOP2()
906 if (!MRI->hasOneUse(CarryIn->getReg()) || !MRI->use_empty(CarryOut->getReg())) in pseudoOpConvertToVOP2()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/GlobalISel/
H A DMachineIRBuilder.h429 const SrcOp &CarryIn);
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2452 SDValue CarryIn = N->getOperand(2); in visitADDE() local
2459 N1, N0, CarryIn); in visitADDE()
2462 if (CarryIn.getOpcode() == ISD::CARRY_FALSE) in visitADDE()
2471 SDValue CarryIn = N->getOperand(2); in visitADDCARRY() local
2481 if (isNullConstant(CarryIn)) { in visitADDCARRY()
2487 EVT CarryVT = CarryIn.getValueType(); in visitADDCARRY()
2501 isBooleanFlip(CarryIn, CarryVT, TLI)) { in visitADDCARRY()
2549 CarryIn.getResNo() == 1 && in visitADDCARRYLike()
2884 SDValue CarryIn = N->getOperand(2); in visitSUBE() local
2896 SDValue CarryIn = N->getOperand(2); in visitSUBCARRY() local
[all …]
H A DLegalizeDAG.cpp3338 SDValue CarryIn = DAG.getConstant(0, dl, Node->getValueType(1)); in ExpandNode() local
3340 { LHS, RHS, CarryIn }); in ExpandNode()