Searched refs:Incr (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp257 BinaryOperator *Incr =
259 if (Incr == 0 || Incr->getOpcode() != Instruction::FAdd) return;
263 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
265 if (IncValueVal == 0 || Incr->getOperand(0) != PN ||
269 // Check Incr uses. One user is PN and the other user is an exit condition
271 Value::use_iterator IncrUse = Incr->use_begin();
273 if (IncrUse == Incr->use_end()) return;
275 if (IncrUse != Incr->use_end()) return;
404 Incr
[all...]
H A DLoopStrengthReduce.cpp1722 BinaryOperator *Incr = local
1724 if (!Incr) continue;
1725 if (Incr->getOpcode() != Instruction::Add
1726 && Incr->getOpcode() != Instruction::Sub)
1731 if (Incr->getOperand(0) == PH)
1732 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1733 else if (Incr->getOperand(1) == PH)
1734 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1750 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1752 NewPH, CFP, "IV.S.next.", Incr);
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/examples/
H A Dtkxmllint.tcl130 Init [toplevel .top[Incr counter]]
309 # Incr -- utility to increment a variable, handling non-existance
311 proc Incr var { procedure
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/page/
H A Dcompiler_peg_mecpu.tcl1444 foreach b $blocks {Incr bl($b)}
1455 Incr ps([lrange $b $s $e]) $bl($b)
1475 Incr si($name)
1489 proc ::page::compiler::peg::mecpu::Incr {v {n 1}} {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Mips/
H A DMipsISelLowering.cpp1192 unsigned Incr = MI->getOperand(2).getReg(); local
1230 BuildMI(BB, dl, TII->get(AND), AndRes).addReg(OldVal).addReg(Incr);
1234 BuildMI(BB, dl, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
1236 StoreVal = Incr;
1264 unsigned Incr = MI->getOperand(2).getReg(); local
1328 BuildMI(BB, dl, TII->get(Mips::SLLV), Incr2).addReg(ShiftAmt).addReg(Incr);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp514 int Incr = (LittleEndian ? 1 : -1); local
519 for (; Start != Stop; Start += Incr)

Completed in 231 milliseconds