1//===----------------------------------------------------------------------===//
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
9#ifndef LLVM_LIB_TARGET_RISCV_RISCVASMPRINTER_H
10#define LLVM_LIB_TARGET_RISCV_RISCVASMPRINTER_H
11
12#include "llvm/CodeGen/MachineFunctionAnalysisManager.h"
13#include "llvm/IR/Analysis.h"
14#include "llvm/IR/Module.h"
15#include "llvm/IR/PassManager.h"
16
17namespace llvm {
18
19class RISCVAsmPrinterBeginPass
20 : public RequiredPassInfoMixin<RISCVAsmPrinterBeginPass> {
21public:
22 PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM);
23};
24
25class RISCVAsmPrinterPass : public RequiredPassInfoMixin<RISCVAsmPrinterPass> {
26public:
27 PreservedAnalyses run(MachineFunction &MF,
28 MachineFunctionAnalysisManager &MFAM);
29};
30
31class RISCVAsmPrinterEndPass
32 : public RequiredPassInfoMixin<RISCVAsmPrinterEndPass> {
33public:
34 PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM);
35};
36
37} // namespace llvm
38
39#endif // LLVM_LIB_TARGET_RISCV_RISCVASMPRINTER_H
40