Home
last modified time | relevance | path

Searched refs:Incr (Results 1 – 16 of 16) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp293 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge)); in handleFloatingPointIV() local
294 if (Incr == nullptr || Incr->getOpcode() != Instruction::FAdd) return; in handleFloatingPointIV()
298 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1)); in handleFloatingPointIV()
300 if (IncValueVal == nullptr || Incr->getOperand(0) != PN || in handleFloatingPointIV()
306 Value::user_iterator IncrUse = Incr->user_begin(); in handleFloatingPointIV()
308 if (IncrUse == Incr->user_end()) return; in handleFloatingPointIV()
310 if (IncrUse != Incr->user_end()) return; in handleFloatingPointIV()
439 Incr->getName()+".int", Incr); in handleFloatingPointIV()
457 Incr->replaceAllUsesWith(UndefValue::get(Incr->getType())); in handleFloatingPointIV()
458 RecursivelyDeleteTriviallyDeadInstructions(Incr, TLI); in handleFloatingPointIV()
DLoopStrengthReduce.cpp1867 BinaryOperator *Incr = in OptimizeShadowIV() local
1869 if (!Incr) continue; in OptimizeShadowIV()
1870 if (Incr->getOpcode() != Instruction::Add in OptimizeShadowIV()
1871 && Incr->getOpcode() != Instruction::Sub) in OptimizeShadowIV()
1876 if (Incr->getOperand(0) == PH) in OptimizeShadowIV()
1877 C = dyn_cast<ConstantInt>(Incr->getOperand(1)); in OptimizeShadowIV()
1878 else if (Incr->getOperand(1) == PH) in OptimizeShadowIV()
1879 C = dyn_cast<ConstantInt>(Incr->getOperand(0)); in OptimizeShadowIV()
1895 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ? in OptimizeShadowIV()
1897 NewPH, CFP, "IV.S.next.", Incr); in OptimizeShadowIV()
/external/openfst/src/include/fst/
Dlock.h81 int Incr() const { return ++count_; } in Incr() function
Dadd-on.h54 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
123 return ref_count_.Incr(); in IncrRefCount()
Daccumulator.h139 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
380 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
638 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
Dsymbol-table.h150 return ref_count_.Incr(); in IncrRefCount()
Dlabel-reachable.h96 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
Dencode.h176 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
Dedit-fst.h113 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
Dfst.h669 return ref_count_.Incr(); in IncrRefCount()
Dcompact-fst.h182 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp601 int Incr = (LittleEndian ? 1 : -1); in addConstantFPValue() local
606 for (; Start != Stop; Start += Incr) in addConstantFPValue()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp1091 unsigned Incr = MI->getOperand(2).getReg(); in emitAtomicBinary() local
1127 BuildMI(BB, DL, TII->get(AND), AndRes).addReg(OldVal).addReg(Incr); in emitAtomicBinary()
1131 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary()
1133 StoreVal = Incr; in emitAtomicBinary()
1187 unsigned Incr = MI->getOperand(2).getReg(); in emitAtomicBinaryPartword() local
1256 BuildMI(BB, DL, TII->get(Mips::SLLV), Incr2).addReg(Incr).addReg(ShiftAmt); in emitAtomicBinaryPartword()
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp1534 int SubReg = 0, End = NumRegs, Incr = 1; in copyPhysRegTuple() local
1538 Incr = -1; in copyPhysRegTuple()
1541 for (; SubReg != End; SubReg += Incr) { in copyPhysRegTuple()
/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc186 inline void Incr(Stat s) { ++g_stats[s]; }
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp640 int incrementUnscheduledDeps(int Incr) { in incrementUnscheduledDeps()
641 UnscheduledDeps += Incr; in incrementUnscheduledDeps()
642 return FirstInBundle->UnscheduledDepsInBundle += Incr; in incrementUnscheduledDeps()