]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / contrib / llvm / lib / Target / MBlaze / MCTargetDesc / MBlazeMCTargetDesc.h
1 //===-- MBlazeMCTargetDesc.h - MBlaze 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 MBlaze specific target descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MBLAZEMCTARGETDESC_H
15 #define MBLAZEMCTARGETDESC_H
16
17 namespace llvm {
18 class MCSubtargetInfo;
19 class Target;
20 class StringRef;
21
22 extern Target TheMBlazeTarget;
23
24 } // End llvm namespace
25
26 // Defines symbolic names for MBlaze registers.  This defines a mapping from
27 // register name to register number.
28 #define GET_REGINFO_ENUM
29 #include "MBlazeGenRegisterInfo.inc"
30
31 // Defines symbolic names for the MBlaze instructions.
32 #define GET_INSTRINFO_ENUM
33 #include "MBlazeGenInstrInfo.inc"
34
35 #define GET_SUBTARGETINFO_ENUM
36 #include "MBlazeGenSubtargetInfo.inc"
37
38 #endif