• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- SystemZMCTargetDesc.h - SystemZ Target Descriptions -----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides SystemZ specific target descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef SYSTEMZMCTARGETDESC_H
15 #define SYSTEMZMCTARGETDESC_H
16 
17 namespace llvm {
18 class MCSubtargetInfo;
19 class Target;
20 class StringRef;
21 
22 extern Target TheSystemZTarget;
23 
24 } // End llvm namespace
25 
26 // Defines symbolic names for SystemZ registers.
27 // This defines a mapping from register name to register number.
28 #define GET_REGINFO_ENUM
29 #include "SystemZGenRegisterInfo.inc"
30 
31 // Defines symbolic names for the SystemZ instructions.
32 #define GET_INSTRINFO_ENUM
33 #include "SystemZGenInstrInfo.inc"
34 
35 #define GET_SUBTARGETINFO_ENUM
36 #include "SystemZGenSubtargetInfo.inc"
37 
38 #endif
39