Incremental big endian patch by Jack Carter.
[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 #include "llvm/Support/DataTypes.h"
18
19 namespace llvm {
20 class MCAsmBackend;
21 class MCCodeEmitter;
22 class MCContext;
23 class MCInstrInfo;
24 class MCObjectWriter;
25 class MCSubtargetInfo;
26 class StringRef;
27 class Target;
28 class raw_ostream;
29
30 extern Target TheMipsTarget;
31 extern Target TheMipselTarget;
32 extern Target TheMips64Target;
33 extern Target TheMips64elTarget;
34
35 MCCodeEmitter *createMipsMCCodeEmitterEB(const MCInstrInfo &MCII,
36                                          const MCSubtargetInfo &STI,
37                                          MCContext &Ctx);
38 MCCodeEmitter *createMipsMCCodeEmitterEL(const MCInstrInfo &MCII,
39                                          const MCSubtargetInfo &STI,
40                                          MCContext &Ctx);
41
42 MCAsmBackend *createMipsAsmBackendEB(const Target &T, StringRef TT);
43 MCAsmBackend *createMipsAsmBackendEL(const Target &T, StringRef TT);
44
45 MCObjectWriter *createMipsELFObjectWriter(raw_ostream &OS,
46                                           uint8_t OSABI,
47                                           bool IsLittleEndian);
48 } // End llvm namespace
49
50 // Defines symbolic names for Mips registers.  This defines a mapping from
51 // register name to register number.
52 #define GET_REGINFO_ENUM
53 #include "MipsGenRegisterInfo.inc"
54
55 // Defines symbolic names for the Mips instructions.
56 #define GET_INSTRINFO_ENUM
57 #include "MipsGenInstrInfo.inc"
58
59 #define GET_SUBTARGETINFO_ENUM
60 #include "MipsGenSubtargetInfo.inc"
61
62 #endif