Searched defs:Incr (Results 1 - 3 of 3) sorted by relevance

/external/openfst/src/include/fst/
H A Dlock.h81 int Incr() const { return ++count_; } function in class:fst::RefCounter
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp989 unsigned Incr = MI->getOperand(2).getReg(); local
1026 BuildMI(BB, DL, TII->get(AND), AndRes).addReg(OldVal).addReg(Incr);
1030 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
1032 StoreVal = Incr;
1086 unsigned Incr = MI->getOperand(2).getReg(); local
1156 BuildMI(BB, DL, TII->get(Mips::SLLV), Incr2).addReg(Incr).addReg(ShiftAmt);
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1885 BinaryOperator *Incr = local
1887 if (!Incr) continue;
1888 if (Incr->getOpcode() != Instruction::Add
1889 && Incr->getOpcode() != Instruction::Sub)
1894 if (Incr->getOperand(0) == PH)
1895 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1896 else if (Incr->getOperand(1) == PH)
1897 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1913 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1915 NewPH, CFP, "IV.S.next.", Incr);
[all...]

Completed in 147 milliseconds