blob: 6a04e48e533ce548173eb991e8e5025b8c6844d2 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- MIRParser.h - MIR serialization format parser ------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// 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
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8//
9// This MIR serialization library is currently a work in progress. It can't
10// serialize machine functions at this time.
11//
12// This file declares the functions that parse the MIR serialization format
13// files.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef LLVM_CODEGEN_MIRPARSER_MIRPARSER_H
18#define LLVM_CODEGEN_MIRPARSER_MIRPARSER_H
19
20#include "llvm/IR/Module.h"
21#include "llvm/Support/MemoryBuffer.h"
22#include <memory>
23
24namespace llvm {
25
26class StringRef;
27class MIRParserImpl;
28class MachineModuleInfo;
29class SMDiagnostic;
30
31/// This class initializes machine functions by applying the state loaded from
32/// a MIR file.
33class MIRParser {
34 std::unique_ptr<MIRParserImpl> Impl;
35
36public:
37 MIRParser(std::unique_ptr<MIRParserImpl> Impl);
38 MIRParser(const MIRParser &) = delete;
39 ~MIRParser();
40
41 /// Parses the optional LLVM IR module in the MIR file.
42 ///
43 /// A new, empty module is created if the LLVM IR isn't present.
44 /// \returns nullptr if a parsing error occurred.
45 std::unique_ptr<Module> parseIRModule();
46
Andrew Scullcdfcccc2018-10-05 20:58:37 +010047 /// Parses MachineFunctions in the MIR file and add them to the given
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010048 /// MachineModuleInfo \p MMI.
49 ///
50 /// \returns true if an error occurred.
51 bool parseMachineFunctions(Module &M, MachineModuleInfo &MMI);
52};
53
54/// This function is the main interface to the MIR serialization format parser.
55///
56/// It reads in a MIR file and returns a MIR parser that can parse the embedded
57/// LLVM IR module and initialize the machine functions by parsing the machine
58/// function's state.
59///
60/// \param Filename - The name of the file to parse.
61/// \param Error - Error result info.
62/// \param Context - Context which will be used for the parsed LLVM IR module.
63std::unique_ptr<MIRParser> createMIRParserFromFile(StringRef Filename,
64 SMDiagnostic &Error,
65 LLVMContext &Context);
66
67/// This function is another interface to the MIR serialization format parser.
68///
69/// It returns a MIR parser that works with the given memory buffer and that can
70/// parse the embedded LLVM IR module and initialize the machine functions by
71/// parsing the machine function's state.
72///
73/// \param Contents - The MemoryBuffer containing the machine level IR.
74/// \param Context - Context which will be used for the parsed LLVM IR module.
75std::unique_ptr<MIRParser>
76createMIRParser(std::unique_ptr<MemoryBuffer> Contents, LLVMContext &Context);
77
78} // end namespace llvm
79
80#endif // LLVM_CODEGEN_MIRPARSER_MIRPARSER_H