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

  /art/runtime/gc/collector/
iteration.h 31 // A information related single garbage collector iteration. Since we only ever have one GC running
32 // at any given time, we can have a single iteration info.
33 class Iteration {
35 Iteration();
66 // Returns the estimated throughput of the iteration.
93 DISALLOW_COPY_AND_ASSIGN(Iteration);
garbage_collector.cc 43 Iteration::Iteration()
44 : duration_ns_(0), timings_("GC iteration timing logger", true, VLOG_IS_ON(heap)) {
48 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) {
59 uint64_t Iteration::GetEstimatedThroughput() const {
91 Iteration* current_iteration = GetCurrentIteration();
99 // Update cumulative statistics with how many bytes the GC iteration freed.
191 // Returns the current GC iteration and assocated info.
192 Iteration* GarbageCollector::GetCurrentIteration() {
195 const Iteration* GarbageCollector::GetCurrentIteration() const
    [all...]
  /external/llvm/lib/Analysis/
CallGraphSCCPass.cpp 464 // Because of this, we allow iteration up to a specified iteration count.
467 // iteration count limit in case there is crazy code.
468 unsigned Iteration = 0;
471 DEBUG(if (Iteration)
472 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
473 << Iteration << '\n');
476 } while (Iteration++ < MaxIterations && DevirtualizedCall);
479 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/swiftshader/third_party/LLVM/lib/Analysis/IPA/
CallGraphSCCPass.cpp 444 // Because of this, we allow iteration up to a specified iteration count.
447 // iteration count limit in case there is crazy code.
448 unsigned Iteration = 0;
451 DEBUG(if (Iteration)
452 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
453 << Iteration << '\n');
456 } while (Iteration++ < MaxIterations && DevirtualizedCall);
459 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 60 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
178 /// each iteration.
185 int Iteration : 30;
201 return PairInfo::getHashValue({S.I, S.Iteration});
205 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
229 /// given iteration its condition would be resolved to true, we won't add up the
270 // We track the simplification of each instruction in each iteration. We use
284 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
285 assert(Iteration >= 0 && "Cannot have a negative iteration!")
    [all...]
GVN.cpp     [all...]
  /external/v8/src/full-codegen/
full-codegen.h 85 class Iteration;
105 virtual Iteration* AsIteration() { return nullptr; }
152 // An iteration statement such as a while, for, or do loop.
153 class Iteration : public Breakable {
155 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
159 Iteration* AsIteration() override { return this; }
534 // This is used in loop headers where we want to break for each iteration.
    [all...]
  /external/deqp/modules/egl/
teglWideColorTests.cpp 522 struct Iteration
527 Iteration(float s, float i, int c)
539 const std::vector<Iteration>& iterations);
567 const std::vector<struct Iteration> m_iterations;
571 WideColorSurfaceTest::WideColorSurfaceTest (EglTestContext& eglTestCtx, const char* name, const char* description, const EGLint* attribList, EGLint colorSpace, const std::vector<struct Iteration>& iterations)
1065 std::vector<Iteration>::const_iterator it; // declare an Iterator to a vector of strings
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
GVN.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 251 milliseconds