2f9efeea68641cfa9224b44aa5414bd3b3e233a6
[oota-llvm.git] / lib / Target / Mips / MCTargetDesc / MipsMCTargetDesc.h
1 //===-- MipsMCTargetDesc.h - Mips 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 Mips specific target descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSMCTARGETDESC_H
15 #define MIPSMCTARGETDESC_H
16
17 namespace llvm {
18 class MCSubtargetInfo;
19 class Target;
20 class StringRef;
21
22 extern Target TheMipsTarget;
23 extern Target TheMipselTarget;
24 extern Target TheMips64Target;
25 extern Target TheMips64elTarget;
26
27 } // End llvm namespace
28
29 // Defines symbolic names for Mips registers.  This defines a mapping from
30 // register name to register number.
31 #define GET_REGINFO_ENUM
32 #include "MipsGenRegisterInfo.inc"
33
34 // Defines symbolic names for the Mips instructions.
35 #define GET_INSTRINFO_ENUM
36 #include "MipsGenInstrInfo.inc"
37
38 #define GET_SUBTARGETINFO_ENUM
39 #include "MipsGenSubtargetInfo.inc"
40
41 #endif