1 //===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // Implements the info about Mips target spec.
12 //===----------------------------------------------------------------------===//
15 #include "MipsTargetAsmInfo.h"
16 #include "MipsTargetMachine.h"
17 #include "llvm/Module.h"
18 #include "llvm/PassManager.h"
19 #include "llvm/Target/TargetMachineRegistry.h"
22 /// MipsTargetMachineModule - Note that this is used on hosts that
23 /// cannot link in a library unless there are references into the
24 /// library. In particular, it seems that it is not possible to get
25 /// things to work on Win32 without this. Though it is unused, do not
27 extern "C" int MipsTargetMachineModule
;
28 int MipsTargetMachineModule
= 0;
30 // Register the target.
31 static RegisterTarget
<MipsTargetMachine
> X("mips", "Mips");
32 static RegisterTarget
<MipselTargetMachine
> Y("mipsel", "Mipsel");
34 const TargetAsmInfo
*MipsTargetMachine::
35 createTargetAsmInfo() const
37 return new MipsTargetAsmInfo(*this);
40 // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
41 // The stack is always 8 byte aligned
42 // On function prologue, the stack is created by decrementing
43 // its pointer. Once decremented, all references are done with positive
44 // offset from the stack/frame pointer, using StackGrowsUp enables
45 // an easier handling.
46 // Using CodeModel::Large enables different CALL behavior.
48 MipsTargetMachine(const Module
&M
, const std::string
&FS
, bool isLittle
=false):
49 Subtarget(*this, M
, FS
, isLittle
),
50 DataLayout(isLittle
? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
51 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
53 FrameInfo(TargetFrameInfo::StackGrowsUp
, 8, 0),
56 // Abicall enables PIC by default
57 if (Subtarget
.hasABICall())
58 setRelocationModel(Reloc::PIC_
);
60 // TODO: create an option to enable long calls, like -mlong-calls,
61 // that would be our CodeModel::Large. It must not work with Abicall.
62 if (getCodeModel() == CodeModel::Default
)
63 setCodeModel(CodeModel::Small
);
67 MipselTargetMachine(const Module
&M
, const std::string
&FS
) :
68 MipsTargetMachine(M
, FS
, true) {}
70 // return 0 and must specify -march to gen MIPS code.
71 unsigned MipsTargetMachine::
72 getModuleMatchQuality(const Module
&M
)
74 // We strongly match "mips*-*".
75 std::string TT
= M
.getTargetTriple();
76 if (TT
.size() >= 5 && std::string(TT
.begin(), TT
.begin()+5) == "mips-")
79 if (TT
.size() >= 13 && std::string(TT
.begin(),
80 TT
.begin()+13) == "mipsallegrex-")
86 // return 0 and must specify -march to gen MIPSEL code.
87 unsigned MipselTargetMachine::
88 getModuleMatchQuality(const Module
&M
)
90 // We strongly match "mips*el-*".
91 std::string TT
= M
.getTargetTriple();
92 if (TT
.size() >= 7 && std::string(TT
.begin(), TT
.begin()+7) == "mipsel-")
95 if (TT
.size() >= 15 && std::string(TT
.begin(),
96 TT
.begin()+15) == "mipsallegrexel-")
99 if (TT
.size() == 3 && std::string(TT
.begin(), TT
.begin()+3) == "psp")
105 // Install an instruction selector pass using
106 // the ISelDag to gen Mips code.
107 bool MipsTargetMachine::
108 addInstSelector(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
)
110 PM
.add(createMipsISelDag(*this));
114 // Implemented by targets that want to run passes immediately before
115 // machine code is emitted. return true if -print-machineinstrs should
116 // print out the code after the passes.
117 bool MipsTargetMachine::
118 addPreEmitPass(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
)
120 PM
.add(createMipsDelaySlotFillerPass(*this));
124 // Implements the AssemblyEmitter for the target. Must return
125 // true if AssemblyEmitter is supported
126 bool MipsTargetMachine::
127 addAssemblyEmitter(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
,
128 bool Verbose
, raw_ostream
&Out
)
130 // Output assembly language.
131 PM
.add(createMipsCodePrinterPass(Out
, *this, OptLevel
, Verbose
));