Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:Passes

1 //===- OptimizerDriver.cpp - Allow BugPoint to run passes safely ----------===//
10 // This file defines an interface that allows bugpoint to run various passes
109 cl::opt<bool> SilencePasses("silence-passes",
110 cl::desc("Suppress output of running passes (both stdout and stderr)"));
116 /// runPasses - Run the specified passes on Program, outputting a bitcode file
125 const std::vector<std::string> &Passes,
190 for (std::vector<std::string>::const_iterator I = Passes.begin(),
191 E = Passes.end(); I != E; ++I )
222 // If we are supposed to delete the bitcode file or if the passes crashed,
254 const std::vector<std::string> &Passes,
258 if (runPasses(M, Passes, BitcodeResult, false/*delete*/, true/*quiet*/,
261 errs() << " Error running this sequence of passes"