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

/external/llvm/include/llvm/Analysis/
H A DLoopUnrollAnalyzer.h49 UnrolledInstAnalyzer(unsigned Iteration, argument
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
/external/llvm/lib/Analysis/
H A DCallGraphSCCPass.cpp468 unsigned Iteration = 0; local
471 DEBUG(if (Iteration)
473 << Iteration << '\n');
476 } while (Iteration++ < MaxIterations && DevirtualizedCall);
479 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
482 if (Iteration > MaxSCCIterations)
483 MaxSCCIterations = Iteration;
/external/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp270 bool Iteration = true; local
295 Iteration = false;
300 } while (Iteration);
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp448 unsigned Iteration = 0; local
451 DEBUG(if (Iteration)
453 << Iteration << '\n');
456 } while (Iteration++ < MaxIterations && DevirtualizedCall);
459 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
462 if (Iteration > MaxSCCIterations)
463 MaxSCCIterations = Iteration;
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp185 int Iteration : 30; member in struct:__anon13507::UnrolledInstState
201 return PairInfo::getHashValue({S.I, S.Iteration});
205 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
284 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
285 assert(Iteration >= 0 && "Cannot have a negative iteration!");
289 for (;; --Iteration) {
293 // InstCostMap only uses I and Iteration as a key, the other two values
295 auto CostIter = InstCostMap.find({I, Iteration, 0, 0});
314 if (Iteration
[all...]
H A DGVN.cpp2213 unsigned Iteration = 0; local
2215 DEBUG(dbgs() << "GVN iteration: " << Iteration << "\n");
2218 ++Iteration;
/external/deqp/modules/egl/
H A DteglWideColorTests.cpp522 struct Iteration struct in namespace:deqp::egl::__anon4356
527 Iteration(float s, float i, int c) function in struct:deqp::egl::__anon4356::Iteration
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
1240 std::vector<Iteration> fp16Iterations;
1242 fp16Iterations.push_back(Iteration(-0.333251953125f, fp16Increment1, 10));
1244 fp16Iterations.push_back( Iteration(-fp16Increment1 * 5.0f, fp16Increment1, 10));
1246 fp16Iterations.push_back( Iteration(1.
[all...]
/external/v8/src/full-codegen/
H A Dfull-codegen.h85 class Iteration;
105 virtual Iteration* AsIteration() { return nullptr; }
153 class Iteration : public Breakable { class in class:v8::internal::final
155 Iteration(FullCodeGenerator* codegen, IterationStatement* statement) function in class:v8::internal::final::Iteration
159 Iteration* AsIteration() override { return this; }
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1898 bool InstCombiner::DoOneIteration(Function &F, unsigned Iteration) { argument
1901 DEBUG(errs() << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on "
2078 unsigned Iteration = 0; local
2079 while (DoOneIteration(F, Iteration++))
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DGVN.cpp2150 unsigned Iteration = 0; local
2152 DEBUG(dbgs() << "GVN iteration: " << Iteration << "\n");
2157 ++Iteration;
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3079 int Iteration = 0; local
3081 ++Iteration;
3082 DEBUG(dbgs() << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on "
3095 return DbgDeclaresChanged || Iteration > 1;

Completed in 433 milliseconds