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 *createSPIRVPreLegalizerPass(); 24 FunctionPass *createSPIRVEmitIntrinsicsPass(SPIRVTargetMachine *TM); 25 InstructionSelector * 26 createSPIRVInstructionSelector(const SPIRVTargetMachine &TM, 27 const SPIRVSubtarget &Subtarget, 28 const RegisterBankInfo &RBI); 29 30 void initializeSPIRVModuleAnalysisPass(PassRegistry &); 31 void initializeSPIRVPreLegalizerPass(PassRegistry &); 32 void initializeSPIRVEmitIntrinsicsPass(PassRegistry &); 33 } // namespace llvm 34 35 #endif // LLVM_LIB_TARGET_SPIRV_SPIRV_H 36