Searched defs:Iteration (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp465 unsigned Iteration = 0; local
468 DEBUG(if (Iteration)
470 << Iteration << '\n');
473 } while (Iteration++ < MaxIterations && DevirtualizedCall);
476 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
479 if (Iteration > MaxSCCIterations)
480 MaxSCCIterations = Iteration;
/external/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp271 bool Iteration = true; local
296 Iteration = false;
301 } while (Iteration);
/external/v8/src/
H A Dfull-codegen.h127 class Iteration;
145 virtual Iteration* AsIteration() { return NULL; }
192 class Iteration : public Breakable { class in class:v8::internal::FullCodeGenerator
194 Iteration(FullCodeGenerator* codegen, IterationStatement* statement) function in class:v8::internal::FullCodeGenerator::Iteration
197 virtual ~Iteration() {}
199 virtual Iteration* AsIteration() { return this; }
265 class ForIn : public Iteration {
270 : Iteration(codegen, statement) {
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp378 Constant *computeLoadValue(LoadInst *LI, unsigned Iteration) { argument
418 unsigned Index = (Start + Step * Iteration) / ElemSize;
458 // values for the given Iteration. Also track how many instructions become
460 unsigned estimateNumberOfOptimizedInstructions(unsigned Iteration) { argument
476 SimplifiedValues[LI] = computeLoadValue(LI, Iteration);
H A DGVN.cpp2371 unsigned Iteration = 0; local
2373 DEBUG(dbgs() << "GVN iteration: " << Iteration << "\n");
2376 ++Iteration;
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2955 int Iteration = 0; local
2957 ++Iteration;
2958 DEBUG(dbgs() << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on "
2973 return DbgDeclaresChanged || Iteration > 1;

Completed in 192 milliseconds