HomeSort by relevance Sort by last modified time
    Searched defs:Iteration (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 449 // Because of this, we allow iteration up to a specified iteration count.
452 // iteration count limit in case there is crazy code.
453 unsigned Iteration = 0;
456 DEBUG(if (Iteration)
457 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
458 << Iteration << '\n');
461 } while (Iteration++ < MaxIterations && DevirtualizedCall);
464 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 268 bool Iteration = true;
294 Iteration = false;
299 } while (Iteration);
  /external/chromium_org/v8/src/
full-codegen.h 144 class Iteration;
162 virtual Iteration* AsIteration() { return NULL; }
208 // An iteration statement such as a while, for, or do loop.
209 class Iteration : public Breakable {
211 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
214 virtual ~Iteration() {}
216 virtual Iteration* AsIteration() { return this; }
282 class ForIn : public Iteration {
287 : Iteration(codegen, statement) {
    [all...]
  /external/v8/src/
full-codegen.h 118 class Iteration;
136 virtual Iteration* AsIteration() { return NULL; }
182 // An iteration statement such as a while, for, or do loop.
183 class Iteration : public Breakable {
185 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
188 virtual ~Iteration() {}
190 virtual Iteration* AsIteration() { return this; }
256 class ForIn : public Iteration {
261 : Iteration(codegen, statement) {
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]

Completed in 467 milliseconds