| 1 | //===- DirectXMCTargetDesc.h - DirectX Target Interface ---------*- 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 |
| 10 | /// This file contains DirectX target interface. |
| 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_DIRECTX_DIRECTXMCTARGETDESC_H |
| 15 | #define LLVM_DIRECTX_DIRECTXMCTARGETDESC_H |
| 16 | |
| 17 | // Include DirectX stub register info |
| 18 | #define GET_REGINFO_ENUM |
| 19 | #include "DirectXGenRegisterInfo.inc" |
| 20 | |
| 21 | // Include DirectX stub instruction info |
| 22 | #define GET_INSTRINFO_ENUM |
| 23 | #define GET_INSTRINFO_MC_HELPER_DECLS |
| 24 | #include "DirectXGenInstrInfo.inc" |
| 25 | |
| 26 | #define GET_SUBTARGETINFO_ENUM |
| 27 | #include "DirectXGenSubtargetInfo.inc" |
| 28 | |
| 29 | #endif // LLVM_DIRECTX_DIRECTXMCTARGETDESC_H |
| 30 | |