Searched refs:Passes (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/unittests/VMCore/
H A DPassManagerTest.cpp294 PassManager Passes; local
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; local
319 Passes.add(new TargetData(&M));
320 Passes
340 PassManager Passes; local
351 PassManager Passes; local
389 PassManager Passes; local
[all...]
H A DDominatorTreeTest.cpp186 PassManager Passes; local
187 Passes.add(P);
188 Passes.run(*M);
/macosx-10.10.1/llvmCore-3425.0.34/tools/opt/
H A Dopt.cpp47 // The OptimizationList is automatically populated with registered Passes by the
561 PassManager Passes; local
569 Passes.add(TLI);
580 Passes.add(TD);
603 Passes.add(new BreakpointPrinter(Out->os()));
610 addPass(Passes, createStripSymbolsPass(true));
618 AddStandardCompilePasses(Passes);
624 AddStandardLinkPasses(Passes);
629 AddOptimizationPasses(Passes, *FPasses, 1, 0);
634 AddOptimizationPasses(Passes, *FPasse
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-extract/
H A Dllvm-extract.cpp208 PassManager Passes; local
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());
/macosx-10.10.1/llvmCore-3425.0.34/tools/bugpoint/
H A DOptimizerDriver.cpp111 const std::vector<std::string> &Passes,
180 for (std::vector<std::string>::const_iterator I = Passes.begin(),
181 E = Passes.end(); I != E; ++I )
243 const std::vector<std::string> &Passes,
247 if (runPasses(M, Passes, BitcodeResult, false/*delete*/, true/*quiet*/,
110 runPasses(Module *Program, const std::vector<std::string> &Passes, std::string &OutputFilename, bool DeleteOutput, bool Quiet, unsigned NumExtraArgs, const char * const *ExtraArgs) const argument
242 runPassesOn(Module *M, const std::vector<std::string> &Passes, bool AutoDebugCrashes, unsigned NumExtraArgs, const char * const *ExtraArgs) argument
H A DBugDriver.cpp59 std::string llvm::getPassesString(const std::vector<std::string> &Passes) { argument
61 for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
64 Result += Passes[i];
H A DExtractFunction.cpp116 std::vector<std::string> Passes; local
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);
H A DCrashDebugger.cpp323 std::vector<std::string> Passes; local
324 Passes.push_back("simplifycfg");
325 Passes.push_back("verify");
326 Module *New = BD.runPassesOn(M, Passes);
413 PassManager Passes; local
414 Passes.add(createVerifierPass());
415 Passes.run(*M);
H A DBugDriver.h245 Module *runPassesOn(Module *M, const std::vector<std::string> &Passes,
307 std::string getPassesString(const std::vector<std::string> &Passes);
/macosx-10.10.1/CPANInternal-159.1/JSON-RPC-0.96/lib/JSON/RPC/Server/
H A DApache2.pm177 Passes the server object and the object decoded from the JSON data to your procedure (method).
H A DCGI.pm128 Passes the server object and the object decoded from the JSON data to your procedure (method).
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-stress/
H A Dllvm-stress.cpp713 PassManager Passes; local
714 Passes.add(createVerifierPass());
715 Passes.add(createPrintModulePass(&Out->os()));
716 Passes.run(*M.get());
/macosx-10.10.1/CPANInternal-159.1/JSON-RPC-0.96/lib/JSON/RPC/
H A DServer.pm517 Passes the server object and the object decoded from the JSON data to your procedure (method).

Completed in 217 milliseconds