| 1 | //===- DXILOpLowering.h - Lowering to DXIL operations -----------*- 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 | // \file Pass for lowering llvm intrinsics into DXIL operations. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_LIB_TARGET_DIRECTX_DXILOPLOWERING_H |
| 14 | #define LLVM_LIB_TARGET_DIRECTX_DXILOPLOWERING_H |
| 15 | |
| 16 | #include "llvm/IR/PassManager.h" |
| 17 | |
| 18 | namespace llvm { |
| 19 | |
| 20 | class DXILOpLowering : public OptionalPassInfoMixin<DXILOpLowering> { |
| 21 | public: |
| 22 | PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM); |
| 23 | }; |
| 24 | |
| 25 | } // namespace llvm |
| 26 | |
| 27 | #endif // LLVM_LIB_TARGET_DIRECTX_DXILOPLOWERING_H |
| 28 | |