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 38 Iteration::Iteration()
39 : duration_ns_(0), timings_("GC iteration timing logger", true, VLOG_IS_ON(heap)) {
43 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) {
54 uint64_t Iteration::GetEstimatedThroughput() const {
85 Iteration* current_iteration = GetCurrentIteration();
90 // Update cumulative statistics with how many bytes the GC iteration freed.
167 // Returns the current GC iteration and assocated info.
168 Iteration* GarbageCollector::GetCurrentIteration() {
171 const Iteration* GarbageCollector::GetCurrentIteration() const
    [all...]
garbage_collector.h 60 // A information related single garbage collector iteration. Since we only ever have one GC running
61 // at any given time, we can have a single iteration info.
62 class Iteration {
64 Iteration();
95 // Returns the estimated throughput of the iteration.
122 DISALLOW_COPY_AND_ASSIGN(Iteration);
174 // Returns the current GC iteration and assocated info.
175 Iteration* GetCurrentIteration();
176 const Iteration* GetCurrentIteration() const;
  /external/llvm/lib/Analysis/
CallGraphSCCPass.cpp 463 // Because of this, we allow iteration up to a specified iteration count.
466 // iteration count limit in case there is crazy code.
467 unsigned Iteration = 0;
470 DEBUG(if (Iteration)
471 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
472 << Iteration << '\n');
475 } while (Iteration++ < MaxIterations && DevirtualizedCall);
478 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 270 bool Iteration = true;
295 Iteration = false;
300 } while (Iteration);
  /external/v8/src/full-codegen/
full-codegen.h 101 class Iteration;
119 virtual Iteration* AsIteration() { return NULL; }
169 // An iteration statement such as a while, for, or do loop.
170 class Iteration : public Breakable {
172 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
176 Iteration* AsIteration() override { return this; }
257 class ForIn : public Iteration {
262 : Iteration(codegen, statement) {
655 // This is used in loop headers where we want to break for each iteration.
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]

Completed in 3366 milliseconds