[PM] Add (very skeletal) support to opt for running the new pass
[oota-llvm.git] / tools / opt / NewPMDriver.cpp
1 //===- NewPMDriver.cpp - Driver for opt with new PM -----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 /// \file
10 ///
11 /// This file is just a split of the code that logically belongs in opt.cpp but
12 /// that includes the new pass manager headers.
13 ///
14 //===----------------------------------------------------------------------===//
15
16 #include "NewPMDriver.h"
17 #include "Passes.h"
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/IR/LLVMContext.h"
20 #include "llvm/IR/Module.h"
21 #include "llvm/IR/PassManager.h"
22 #include "llvm/Support/CommandLine.h"
23 #include "llvm/Support/ToolOutputFile.h"
24
25 using namespace llvm;
26
27 bool llvm::runPassPipeline(StringRef Arg0, LLVMContext &Context, Module &M,
28                            tool_output_file *Out, StringRef PassPipeline,
29                            bool NoOutput) {
30   // Before executing passes, print the final values of the LLVM options.
31   cl::PrintOptionValues();
32
33   ModulePassManager MPM;
34   if (!parsePassPipeline(MPM, PassPipeline)) {
35     errs() << Arg0 << ": unable to parse pass pipeline description.\n";
36     return false;
37   }
38
39   // Now that we have all of the passes ready, run them.
40   MPM.run(&M);
41
42   // Declare success.
43   if (!NoOutput)
44     Out->keep();
45   return true;
46 }