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

  /frameworks/compile/llvm-ndk-cc/
llvm-ndk-link.cpp 44 llvm::PassManager Passes;
49 Passes.add(TD);
51 Passes.add(llvm::createInternalizePass(true/* AllButMain*/));
54 createStandardLTOPasses(&Passes,
60 PMBuilder.populateLTOPassManager(Passes, false, true);
61 Passes.run(*M);
  /gdk/sources/llvm-ndk-cc/
llvm-ndk-link.cpp 43 llvm::PassManager Passes;
48 Passes.add(TD);
50 Passes.add(llvm::createInternalizePass(true/* AllButMain*/));
53 createStandardLTOPasses(&Passes,
59 PMBuilder.populateLTOPassManager(Passes, false, true);
60 Passes.run(*M);
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 208 PassManager Passes;
209 Passes.add(new TargetData(M.get())); // Use correct TargetData
213 Passes.add(createGVExtractionPass(Gvs, DeleteFn));
215 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
216 Passes.add(createStripDeadDebugInfoPass()); // Remove dead debug info
217 Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls
228 Passes.add(createPrintModulePass(&Out.os()));
230 Passes.add(createBitcodeWriterPass(Out.os()));
232 Passes.run(*M.get());
  /frameworks/compile/slang/
llvm-rs-link.cpp 219 llvm::PassManager Passes;
224 Passes.add(TD);
236 Passes.add(llvm::createInternalizePass(ExportList));
238 // TODO(sliao): Do we need to run all LTO passes?
240 PMBuilder.populateLTOPassManager(Passes,
243 Passes.run(*M);
  /external/llvm/unittests/VMCore/
DominatorTreeTest.cpp 186 PassManager Passes;
187 Passes.add(P);
188 Passes.run(*M);
PassManagerTest.cpp 294 PassManager Passes;
295 Passes.add(new TargetData(&M));
296 Passes.add(mNDM2);
297 Passes.add(mNDM);
298 Passes.add(mNDNM);
299 Passes.add(mDNM);
301 Passes.run(M);
318 PassManager Passes;
319 Passes.add(new TargetData(&M));
320 Passes.add(mNDM)
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 51 // doTest - Return true iff running the "removed" passes succeeds, and
52 // running the "Kept" passes fail when run on the output of the "removed"
53 // passes. If we return true, we update the current module of bugpoint.
68 outs() << "Checking to see if these passes crash: "
86 outs() << "Checking to see if these passes crash: "
323 std::vector<std::string> Passes;
324 Passes.push_back("simplifycfg");
325 Passes.push_back("verify");
326 Module *New = BD.runPassesOn(M, Passes);
413 PassManager Passes;
    [all...]
ExtractFunction.cpp 86 /// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
116 std::vector<std::string> Passes;
120 Passes.push_back("dce");
122 Passes.push_back("simplifycfg"); // Delete dead control flow
124 Passes.push_back("verify");
125 Module *New = runPassesOn(Clone, Passes);
  /external/llvm/tools/opt/
opt.cpp 47 // The OptimizationList is automatically populated with registered Passes by the
91 cl::desc("Do not run any optimization passes"));
155 // ---------- Define Printers for module and function passes ------------
414 /// AddOptimizationPasses - This routine adds optimization passes
458 // -std-compile-opts adds the same module passes as -O3.
495 // Initialize passes
558 // Create a PassManager to hold and optimize the collection of passes we are
561 PassManager Passes;
569 Passes.add(TLI);
580 Passes.add(TD)
    [all...]
  /external/valgrind/main/perf/
ffbench.c 18 This benchmark executes a specified number of passes (default
35 follows: Float = double, Asize = 256, Passes = 20, CAPOUT not
153 #define Passes 20 /* Number of FFT/Inverse passes */
240 int i, j, k, l, m, npasses = Passes, faedge;
322 fprintf(stdout, "%d passes. No errors in results.\n", npasses);
324 fprintf(stdout, "%d passes. %d errors in results.\n",
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 709 PassManager Passes;
710 Passes.add(createVerifierPass());
711 Passes.add(createPrintModulePass(&Out->os()));
712 Passes.run(*M.get());

Completed in 603 milliseconds