]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm-project / llvm / lib / Target / NVPTX / MCTargetDesc / NVPTXMCTargetDesc.h
1 //===-- NVPTXMCTargetDesc.h - NVPTX Target Descriptions ---------*- 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 // This file provides NVPTX specific target descriptions.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #ifndef LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCTARGETDESC_H
14 #define LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCTARGETDESC_H
15
16 #include <stdint.h>
17
18 namespace llvm {
19 class Target;
20
21 } // End llvm namespace
22
23 // Defines symbolic names for PTX registers.
24 #define GET_REGINFO_ENUM
25 #include "NVPTXGenRegisterInfo.inc"
26
27 // Defines symbolic names for the PTX instructions.
28 #define GET_INSTRINFO_ENUM
29 #include "NVPTXGenInstrInfo.inc"
30
31 #define GET_SUBTARGETINFO_ENUM
32 #include "NVPTXGenSubtargetInfo.inc"
33
34 #endif