1//===- NewPMDriver.h - Function to drive llc with the new PM ----*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8/// \file
9///
10/// A single function which is called to drive the llc behavior for the new
11/// PassManager.
12///
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
16/// llc.cpp.
17///
18//===----------------------------------------------------------------------===//
19#ifndef LLVM_TOOLS_LLC_NEWPMDRIVER_H
20#define LLVM_TOOLS_LLC_NEWPMDRIVER_H
21
22#include "llvm/ADT/ArrayRef.h"
23#include "llvm/IR/DiagnosticHandler.h"
24#include "llvm/Support/CodeGen.h"
25#include <memory>
26
27namespace llvm {
28class Module;
29class PassPlugin;
30class TargetLibraryInfoImpl;
31class TargetMachine;
32class ToolOutputFile;
33class LLVMContext;
34class MIRParser;
35
36enum class VerifierKind { None, InputOutput, EachPass };
37
38struct LLCDiagnosticHandler : public DiagnosticHandler {
39 bool handleDiagnostics(const DiagnosticInfo &DI) override;
40};
41
42int compileModuleWithNewPM(
43 StringRef Arg0, std::unique_ptr<Module> M, std::unique_ptr<MIRParser> MIR,
44 std::unique_ptr<TargetMachine> Target, std::unique_ptr<ToolOutputFile> Out,
45 std::unique_ptr<ToolOutputFile> DwoOut, LLVMContext &Context,
46 const TargetLibraryInfoImpl &TLII, VerifierKind VK, StringRef PassPipeline,
47 ArrayRef<PassPlugin> PassPlugins, CodeGenFileType FileType);
48} // namespace llvm
49
50#endif
51