blob: ed445f15d48d926ee1b844607445d76b83d88f8f [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Implements the info about Mips target spec.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Mips.h"
15#include "MipsTargetAsmInfo.h"
16#include "MipsTargetMachine.h"
17#include "llvm/Module.h"
18#include "llvm/PassManager.h"
19#include "llvm/Target/TargetMachineRegistry.h"
20using namespace llvm;
21
Oscar Fuentes92adc192008-11-15 21:36:30 +000022/// 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
26/// remove it.
27extern "C" int MipsTargetMachineModule;
28int MipsTargetMachineModule = 0;
29
Dan Gohman844731a2008-05-13 00:00:25 +000030// Register the target.
Daniel Dunbar42467902009-07-15 09:22:31 +000031extern Target TheMipsTarget;
32static RegisterTarget<MipsTargetMachine> X(TheMipsTarget, "mips", "Mips");
33
34extern Target TheMipselTarget;
35static RegisterTarget<MipselTargetMachine> Y(TheMipselTarget, "mipsel",
36 "Mipsel");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000037
Chris Lattnere8f10182009-06-16 22:38:04 +000038MipsTargetMachine::AsmPrinterCtorFn MipsTargetMachine::AsmPrinterCtor = 0;
39
40
Bob Wilsona96751f2009-06-23 23:59:40 +000041// Force static initialization.
42extern "C" void LLVMInitializeMipsTarget() { }
Douglas Gregor1555a232009-06-16 20:12:29 +000043
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000044const TargetAsmInfo *MipsTargetMachine::
45createTargetAsmInfo() const
46{
47 return new MipsTargetAsmInfo(*this);
48}
49
50// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes51195af2007-08-28 05:13:42 +000051// The stack is always 8 byte aligned
52// On function prologue, the stack is created by decrementing
53// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesbbe51362008-08-06 06:14:43 +000054// offset from the stack/frame pointer, using StackGrowsUp enables
55// an easier handling.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000056// Using CodeModel::Large enables different CALL behavior.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000057MipsTargetMachine::
Daniel Dunbar03f4bc52009-07-15 12:11:05 +000058MipsTargetMachine(const Target &T, const Module &M, const std::string &FS,
59 bool isLittle=false):
60 LLVMTargetMachine(T),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000061 Subtarget(*this, M, FS, isLittle),
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +000062 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
63 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000064 InstrInfo(*this),
65 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000066 TLInfo(*this)
67{
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000068 // Abicall enables PIC by default
Bruno Cardoso Lopesb3d72992008-09-15 21:06:55 +000069 if (Subtarget.hasABICall())
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000070 setRelocationModel(Reloc::PIC_);
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000071
72 // TODO: create an option to enable long calls, like -mlong-calls,
73 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000074 if (getCodeModel() == CodeModel::Default)
75 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000076}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000077
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000078MipselTargetMachine::
Daniel Dunbar03f4bc52009-07-15 12:11:05 +000079MipselTargetMachine(const Target &T, const Module &M, const std::string &FS) :
80 MipsTargetMachine(T, M, FS, true) {}
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000081
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000082// return 0 and must specify -march to gen MIPS code.
83unsigned MipsTargetMachine::
Bruno Cardoso Lopes758dcca2007-07-11 23:17:41 +000084getModuleMatchQuality(const Module &M)
85{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000086 // We strongly match "mips*-*".
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000087 std::string TT = M.getTargetTriple();
88 if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-")
89 return 20;
Bruno Cardoso Lopes758dcca2007-07-11 23:17:41 +000090
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000091 if (TT.size() >= 13 && std::string(TT.begin(),
92 TT.begin()+13) == "mipsallegrex-")
93 return 20;
94
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000095 return 0;
96}
97
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000098// return 0 and must specify -march to gen MIPSEL code.
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000099unsigned MipselTargetMachine::
100getModuleMatchQuality(const Module &M)
101{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000102 // We strongly match "mips*el-*".
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000103 std::string TT = M.getTargetTriple();
104 if (TT.size() >= 7 && std::string(TT.begin(), TT.begin()+7) == "mipsel-")
105 return 20;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000106
107 if (TT.size() >= 15 && std::string(TT.begin(),
108 TT.begin()+15) == "mipsallegrexel-")
109 return 20;
110
111 if (TT.size() == 3 && std::string(TT.begin(), TT.begin()+3) == "psp")
112 return 20;
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000113
114 return 0;
115}
116
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000117// Install an instruction selector pass using
118// the ISelDag to gen Mips code.
119bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +0000120addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000121{
122 PM.add(createMipsISelDag(*this));
123 return false;
124}
125
126// Implemented by targets that want to run passes immediately before
127// machine code is emitted. return true if -print-machineinstrs should
128// print out the code after the passes.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000129bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +0000130addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000131{
Bruno Cardoso Lopesaff42dc2007-08-18 01:58:15 +0000132 PM.add(createMipsDelaySlotFillerPass(*this));
133 return true;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000134}
135
136// Implements the AssemblyEmitter for the target. Must return
137// true if AssemblyEmitter is supported
138bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +0000139addAssemblyEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
David Greene71847812009-07-14 20:18:05 +0000140 bool Verbose, formatted_raw_ostream &Out) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000141 // Output assembly language.
Chris Lattnere8f10182009-06-16 22:38:04 +0000142 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000143 PM.add(AsmPrinterCtor(Out, *this, Verbose));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000144 return false;
145}