1 //===- NewPMDriver.h - Function to drive opt with the new PM ----*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// A single function which is called to drive the opt behavior for the new
13 /// This is only in a separate TU with a header to avoid including all of the
14 /// old pass manager headers and the new pass manager headers into the same
15 /// file. Eventually all of the routines here will get folded back into
18 //===----------------------------------------------------------------------===//
20 #ifndef LLVM_TOOLS_OPT_NEWPMDRIVER_H
21 #define LLVM_TOOLS_OPT_NEWPMDRIVER_H
35 OK_OutputThinLTOBitcode
,
48 enum CSPGOKind
{ NoCSPGO
, CSInstrGen
, CSInstrUse
};
51 /// Driver function to run the new pass manager over a module.
53 /// This function only exists factored away from opt.cpp in order to prevent
54 /// inclusion of the new pass manager headers and the old headers into the same
55 /// file. It's interface is consequentially somewhat ad-hoc, but will go away
56 /// when the transition finishes.
58 /// ThinLTOLinkOut is only used when OK is OK_OutputThinLTOBitcode, and can be
60 bool runPassPipeline(StringRef Arg0
, Module
&M
, TargetMachine
*TM
,
61 ToolOutputFile
*Out
, ToolOutputFile
*ThinLinkOut
,
62 ToolOutputFile
*OptRemarkFile
, StringRef PassPipeline
,
63 opt_tool::OutputKind OK
, opt_tool::VerifierKind VK
,
64 bool ShouldPreserveAssemblyUseListOrder
,
65 bool ShouldPreserveBitcodeUseListOrder
,
66 bool EmitSummaryIndex
, bool EmitModuleHash
,