Variable cleanup. Based on past patch submittals variable names have
[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 MCAsmBackend;
19 class MCCodeEmitter;
20 class MCContext;
21 class MCInstrInfo;
22 class MCObjectWriter;
23 class MCSubtargetInfo;
24 class StringRef;
25 class Target;
26 class raw_ostream;
27
28 extern Target TheMipsTarget;
29 extern Target TheMipselTarget;
30 extern Target TheMips64Target;
31 extern Target TheMips64elTarget;
32
33 MCCodeEmitter *createMipsMCCodeEmitter(const MCInstrInfo &MCII,
34                                        const MCSubtargetInfo &STI,
35                                        MCContext &Ctx);
36
37 MCAsmBackend *createMipsAsmBackend(const Target &T, StringRef TT);
38
39 } // End llvm namespace
40
41 // Defines symbolic names for Mips registers.  This defines a mapping from
42 // register name to register number.
43 #define GET_REGINFO_ENUM
44 #include "MipsGenRegisterInfo.inc"
45
46 // Defines symbolic names for the Mips instructions.
47 #define GET_INSTRINFO_ENUM
48 #include "MipsGenInstrInfo.inc"
49
50 #define GET_SUBTARGETINFO_ENUM
51 #include "MipsGenSubtargetInfo.inc"
52
53 #endif