Searched refs:Incr (Results 1 - 7 of 7) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
H A D | IndVarSimplify.cpp | 293 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge)); 294 if (Incr == nullptr || Incr->getOpcode() != Instruction::FAdd) return; 298 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1)); 300 if (IncValueVal == nullptr || Incr->getOperand(0) != PN || 304 // Check Incr uses. One user is PN and the other user is an exit condition 306 Value::user_iterator IncrUse = Incr->user_begin(); 308 if (IncrUse == Incr->user_end()) return; 310 if (IncrUse != Incr->user_end()) return; 439 Incr [all...] |
H A D | LoopStrengthReduce.cpp | 1867 BinaryOperator *Incr = local 1869 if (!Incr) continue; 1870 if (Incr->getOpcode() != Instruction::Add 1871 && Incr->getOpcode() != Instruction::Sub) 1876 if (Incr->getOperand(0) == PH) 1877 C = dyn_cast<ConstantInt>(Incr->getOperand(1)); 1878 else if (Incr->getOperand(1) == PH) 1879 C = dyn_cast<ConstantInt>(Incr->getOperand(0)); 1895 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ? 1897 NewPH, CFP, "IV.S.next.", Incr); [all...] |
/external/llvm/lib/Target/Mips/ |
H A D | MipsISelLowering.cpp | 1091 unsigned Incr = MI->getOperand(2).getReg(); local 1127 BuildMI(BB, DL, TII->get(AND), AndRes).addReg(OldVal).addReg(Incr); 1131 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); 1133 StoreVal = Incr; 1187 unsigned Incr = MI->getOperand(2).getReg(); local 1256 BuildMI(BB, DL, TII->get(Mips::SLLV), Incr2).addReg(Incr).addReg(ShiftAmt);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfUnit.cpp | 601 int Incr = (LittleEndian ? 1 : -1); local 606 for (; Start != Stop; Start += Incr)
|
/external/webrtc/webrtc/p2p/base/ |
H A D | pseudotcp.cc | 186 inline void Incr(Stat s) { ++g_stats[s]; }
|
/external/llvm/lib/Target/AArch64/ |
H A D | AArch64InstrInfo.cpp | 1534 int SubReg = 0, End = NumRegs, Incr = 1; local 1538 Incr = -1; 1541 for (; SubReg != End; SubReg += Incr) {
|
/external/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 640 int incrementUnscheduledDeps(int Incr) { argument 641 UnscheduledDeps += Incr; 642 return FirstInBundle->UnscheduledDepsInBundle += Incr;
|
Completed in 176 milliseconds