1 //===-- MipsMCTargetDesc.h - Mips Target Descriptions -----------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file provides Mips specific target descriptions.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSMCTARGETDESC_H
14 #define LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSMCTARGETDESC_H
16 #include "llvm/Support/DataTypes.h"
25 class MCObjectTargetWriter
;
27 class MCSubtargetInfo
;
28 class MCTargetOptions
;
33 class raw_pwrite_stream
;
35 MCCodeEmitter
*createMipsMCCodeEmitterEB(const MCInstrInfo
&MCII
,
36 const MCRegisterInfo
&MRI
,
38 MCCodeEmitter
*createMipsMCCodeEmitterEL(const MCInstrInfo
&MCII
,
39 const MCRegisterInfo
&MRI
,
42 MCAsmBackend
*createMipsAsmBackend(const Target
&T
, const MCSubtargetInfo
&STI
,
43 const MCRegisterInfo
&MRI
,
44 const MCTargetOptions
&Options
);
46 std::unique_ptr
<MCObjectTargetWriter
>
47 createMipsELFObjectWriter(const Triple
&TT
, bool IsN32
);
50 StringRef
selectMipsCPU(const Triple
&TT
, StringRef CPU
);
53 } // End llvm namespace
55 // Defines symbolic names for Mips registers. This defines a mapping from
56 // register name to register number.
57 #define GET_REGINFO_ENUM
58 #include "MipsGenRegisterInfo.inc"
60 // Defines symbolic names for the Mips instructions.
61 #define GET_INSTRINFO_ENUM
62 #include "MipsGenInstrInfo.inc"
64 #define GET_SUBTARGETINFO_ENUM
65 #include "MipsGenSubtargetInfo.inc"