HomeSort by relevance Sort by last modified time
    Searched refs:CarryIn (Results 1 - 10 of 10) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
KnownBits.cpp 22 bool CarryIn = false;
26 CarryIn = true;
29 APInt PossibleSumZero = ~LHS.Zero + ~RHS.Zero + CarryIn;
30 APInt PossibleSumOne = LHS.One + RHS.One + CarryIn;
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelLowering.cpp 432 SDNode* CarryIn = DAG.getMachineNode(BF::MOVE_cc_ac0, dl, MVT::i32,
434 CarryIn = DAG.getMachineNode(BF::MOVECC_zext, dl, MVT::i32,
435 SDValue(CarryIn, 0));
447 SDValue(Sum, 0), SDValue(CarryIn, 0));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 308 unsigned CarryIn = MRI.createGenericVirtualRegister(LLT::scalar(1));
309 MIRBuilder.buildConstant(CarryIn, 0);
316 Src2Regs[i], CarryIn);
319 CarryIn = CarryOut;
    [all...]
MachineIRBuilder.cpp 315 unsigned CarryIn) {
320 assert(getMRI()->getType(CarryOut) == getMRI()->getType(CarryIn) &&
328 .addUse(CarryIn);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
MachineIRBuilder.h 286 /// \p Op1, \p CarryIn
288 /// G_UADDE sets \p Res to \p Op0 + \p Op1 + \p CarryIn (truncated to the bit
295 /// \pre \p CarryOut and \p CarryIn must be generic virtual
300 unsigned Op1, unsigned CarryIn);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 295 SDValue visitADDCARRYLike(SDValue N0, SDValue N1, SDValue CarryIn, SDNode *N);
    [all...]
LegalizeDAG.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 272 APInt CarryIn(BitWidth, 0);
276 CarryIn.setBit(0);
279 APInt PossibleSumZero = ~LHSKnownZero + ~KnownZero2 + CarryIn;
280 APInt PossibleSumOne = LHSKnownOne + KnownOne2 + CarryIn;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 207 milliseconds