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

  /art/runtime/gc/collector/
garbage_collector.cc 40 Iteration::Iteration()
41 : duration_ns_(0), timings_("GC iteration timing logger", true, VLOG_IS_ON(heap)) {
45 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) {
56 uint64_t Iteration::GetEstimatedThroughput() const {
87 Iteration* current_iteration = GetCurrentIteration();
92 // Update cumulative statistics with how many bytes the GC iteration freed.
170 // Returns the current GC iteration and assocated info.
171 Iteration* GarbageCollector::GetCurrentIteration() {
174 const Iteration* GarbageCollector::GetCurrentIteration() const
    [all...]
garbage_collector.h 51 // A information related single garbage collector iteration. Since we only ever have one GC running
52 // at any given time, we can have a single iteration info.
53 class Iteration {
55 Iteration();
86 // Returns the estimated throughput of the iteration.
113 DISALLOW_COPY_AND_ASSIGN(Iteration);
163 // Returns the current GC iteration and assocated info.
164 Iteration* GetCurrentIteration();
165 const Iteration* GetCurrentIteration() const;
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 461 // Because of this, we allow iteration up to a specified iteration count.
464 // iteration count limit in case there is crazy code.
465 unsigned Iteration = 0;
468 DEBUG(if (Iteration)
469 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
470 << Iteration << '\n');
473 } while (Iteration++ < MaxIterations && DevirtualizedCall);
476 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 271 bool Iteration = true;
296 Iteration = false;
301 } while (Iteration);
  /external/v8/src/
full-codegen.h 127 class Iteration;
145 virtual Iteration* AsIteration() { return NULL; }
191 // An iteration statement such as a while, for, or do loop.
192 class Iteration : public Breakable {
194 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
197 virtual ~Iteration() {}
199 virtual Iteration* AsIteration() { return this; }
265 class ForIn : public Iteration {
270 : Iteration(codegen, statement) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]

Completed in 210 milliseconds