1 //===- MipsTargetMachine.h - Define TargetMachine for Mips ------*- 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 declares the Mips specific subclass of TargetMachine.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
14 #define LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
16 #include "MCTargetDesc/MipsABIInfo.h"
17 #include "MipsSubtarget.h"
18 #include "llvm/ADT/StringMap.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Support/CodeGen.h"
21 #include "llvm/Target/TargetMachine.h"
27 class MipsTargetMachine
: public LLVMTargetMachine
{
29 std::unique_ptr
<TargetLoweringObjectFile
> TLOF
;
32 const MipsSubtarget
*Subtarget
;
33 MipsSubtarget DefaultSubtarget
;
34 MipsSubtarget NoMips16Subtarget
;
35 MipsSubtarget Mips16Subtarget
;
37 mutable StringMap
<std::unique_ptr
<MipsSubtarget
>> SubtargetMap
;
40 MipsTargetMachine(const Target
&T
, const Triple
&TT
, StringRef CPU
,
41 StringRef FS
, const TargetOptions
&Options
,
42 std::optional
<Reloc::Model
> RM
,
43 std::optional
<CodeModel::Model
> CM
, CodeGenOptLevel OL
,
44 bool JIT
, bool isLittle
);
45 ~MipsTargetMachine() override
;
47 TargetTransformInfo
getTargetTransformInfo(const Function
&F
) const override
;
49 const MipsSubtarget
*getSubtargetImpl() const {
52 return &DefaultSubtarget
;
55 const MipsSubtarget
*getSubtargetImpl(const Function
&F
) const override
;
57 /// Reset the subtarget for the Mips target.
58 void resetSubtarget(MachineFunction
*MF
);
60 // Pass Pipeline Configuration
61 TargetPassConfig
*createPassConfig(PassManagerBase
&PM
) override
;
63 TargetLoweringObjectFile
*getObjFileLowering() const override
{
68 createMachineFunctionInfo(BumpPtrAllocator
&Allocator
, const Function
&F
,
69 const TargetSubtargetInfo
*STI
) const override
;
71 /// Returns true if a cast between SrcAS and DestAS is a noop.
72 bool isNoopAddrSpaceCast(unsigned SrcAS
, unsigned DestAS
) const override
{
73 // Mips doesn't have any special address spaces so we just reserve
74 // the first 256 for software use (e.g. OpenCL) and treat casts
75 // between them as noops.
76 return SrcAS
< 256 && DestAS
< 256;
79 bool isLittleEndian() const { return isLittle
; }
80 const MipsABIInfo
&getABI() const { return ABI
; }
83 /// Mips32/64 big endian target machine.
85 class MipsebTargetMachine
: public MipsTargetMachine
{
86 virtual void anchor();
89 MipsebTargetMachine(const Target
&T
, const Triple
&TT
, StringRef CPU
,
90 StringRef FS
, const TargetOptions
&Options
,
91 std::optional
<Reloc::Model
> RM
,
92 std::optional
<CodeModel::Model
> CM
, CodeGenOptLevel OL
,
96 /// Mips32/64 little endian target machine.
98 class MipselTargetMachine
: public MipsTargetMachine
{
99 virtual void anchor();
102 MipselTargetMachine(const Target
&T
, const Triple
&TT
, StringRef CPU
,
103 StringRef FS
, const TargetOptions
&Options
,
104 std::optional
<Reloc::Model
> RM
,
105 std::optional
<CodeModel::Model
> CM
, CodeGenOptLevel OL
,
109 } // end namespace llvm
111 #endif // LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H