1 //===-- SPIRV.h - Top-level interface for SPIR-V representation -*- 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 
9 #ifndef LLVM_LIB_TARGET_SPIRV_SPIRV_H
10 #define LLVM_LIB_TARGET_SPIRV_SPIRV_H
11 
12 #include "MCTargetDesc/SPIRVMCTargetDesc.h"
13 #include "llvm/CodeGen/MachineFunctionPass.h"
14 #include "llvm/Target/TargetMachine.h"
15 
16 namespace llvm {
17 class SPIRVTargetMachine;
18 class SPIRVSubtarget;
19 class InstructionSelector;
20 class RegisterBankInfo;
21 
22 ModulePass *createSPIRVPrepareFunctionsPass();
23 FunctionPass *createSPIRVRegularizerPass();
24 FunctionPass *createSPIRVPreLegalizerPass();
25 FunctionPass *createSPIRVEmitIntrinsicsPass(SPIRVTargetMachine *TM);
26 InstructionSelector *
27 createSPIRVInstructionSelector(const SPIRVTargetMachine &TM,
28                                const SPIRVSubtarget &Subtarget,
29                                const RegisterBankInfo &RBI);
30 
31 void initializeSPIRVModuleAnalysisPass(PassRegistry &);
32 void initializeSPIRVPreLegalizerPass(PassRegistry &);
33 void initializeSPIRVEmitIntrinsicsPass(PassRegistry &);
34 } // namespace llvm
35 
36 #endif // LLVM_LIB_TARGET_SPIRV_SPIRV_H
37