[InstCombine] Signed saturation patterns
[llvm-core.git] / lib / Target / NVPTX / MCTargetDesc / NVPTXMCTargetDesc.h
blobe1691d2384e6fbc47d27de65fad3692e2c6a98b4
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.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCTARGETDESC_H
14 #define LLVM_LIB_TARGET_NVPTX_MCTARGETDESC_NVPTXMCTARGETDESC_H
16 #include <stdint.h>
18 namespace llvm {
19 class Target;
21 } // End llvm namespace
23 // Defines symbolic names for PTX registers.
24 #define GET_REGINFO_ENUM
25 #include "NVPTXGenRegisterInfo.inc"
27 // Defines symbolic names for the PTX instructions.
28 #define GET_INSTRINFO_ENUM
29 #include "NVPTXGenInstrInfo.inc"
31 #define GET_SUBTARGETINFO_ENUM
32 #include "NVPTXGenSubtargetInfo.inc"
34 #endif