blob: 83b9b62e8ee86c6060ae383f75a88f1cc1a6a431 [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.
Dan Gohmanb8cab922008-10-14 20:25:08 +000031static RegisterTarget<MipsTargetMachine> X("mips", "Mips");
32static RegisterTarget<MipselTargetMachine> Y("mipsel", "Mipsel");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000033
Chris Lattnere8f10182009-06-16 22:38:04 +000034MipsTargetMachine::AsmPrinterCtorFn MipsTargetMachine::AsmPrinterCtor = 0;
35
36
Douglas Gregor1555a232009-06-16 20:12:29 +000037// Force static initialization when called from llvm/InitializeAllTargets.h
38namespace llvm {
39 void InitializeMipsTarget() { }
40}
41
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000042const TargetAsmInfo *MipsTargetMachine::
43createTargetAsmInfo() const
44{
45 return new MipsTargetAsmInfo(*this);
46}
47
48// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes51195af2007-08-28 05:13:42 +000049// The stack is always 8 byte aligned
50// On function prologue, the stack is created by decrementing
51// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesbbe51362008-08-06 06:14:43 +000052// offset from the stack/frame pointer, using StackGrowsUp enables
53// an easier handling.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000054// Using CodeModel::Large enables different CALL behavior.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000055MipsTargetMachine::
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000056MipsTargetMachine(const Module &M, const std::string &FS, bool isLittle=false):
57 Subtarget(*this, M, FS, isLittle),
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +000058 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
59 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000060 InstrInfo(*this),
61 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000062 TLInfo(*this)
63{
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000064 // Abicall enables PIC by default
Bruno Cardoso Lopesb3d72992008-09-15 21:06:55 +000065 if (Subtarget.hasABICall())
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000066 setRelocationModel(Reloc::PIC_);
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000067
68 // TODO: create an option to enable long calls, like -mlong-calls,
69 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000070 if (getCodeModel() == CodeModel::Default)
71 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000072}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000073
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000074MipselTargetMachine::
75MipselTargetMachine(const Module &M, const std::string &FS) :
76 MipsTargetMachine(M, FS, true) {}
77
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000078// return 0 and must specify -march to gen MIPS code.
79unsigned MipsTargetMachine::
Bruno Cardoso Lopes758dcca2007-07-11 23:17:41 +000080getModuleMatchQuality(const Module &M)
81{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000082 // We strongly match "mips*-*".
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000083 std::string TT = M.getTargetTriple();
84 if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-")
85 return 20;
Bruno Cardoso Lopes758dcca2007-07-11 23:17:41 +000086
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000087 if (TT.size() >= 13 && std::string(TT.begin(),
88 TT.begin()+13) == "mipsallegrex-")
89 return 20;
90
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000091 return 0;
92}
93
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000094// return 0 and must specify -march to gen MIPSEL code.
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000095unsigned MipselTargetMachine::
96getModuleMatchQuality(const Module &M)
97{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000098 // We strongly match "mips*el-*".
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000099 std::string TT = M.getTargetTriple();
100 if (TT.size() >= 7 && std::string(TT.begin(), TT.begin()+7) == "mipsel-")
101 return 20;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000102
103 if (TT.size() >= 15 && std::string(TT.begin(),
104 TT.begin()+15) == "mipsallegrexel-")
105 return 20;
106
107 if (TT.size() == 3 && std::string(TT.begin(), TT.begin()+3) == "psp")
108 return 20;
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000109
110 return 0;
111}
112
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000113// Install an instruction selector pass using
114// the ISelDag to gen Mips code.
115bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +0000116addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000117{
118 PM.add(createMipsISelDag(*this));
119 return false;
120}
121
122// Implemented by targets that want to run passes immediately before
123// machine code is emitted. return true if -print-machineinstrs should
124// print out the code after the passes.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000125bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +0000126addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000127{
Bruno Cardoso Lopesaff42dc2007-08-18 01:58:15 +0000128 PM.add(createMipsDelaySlotFillerPass(*this));
129 return true;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000130}
131
132// Implements the AssemblyEmitter for the target. Must return
133// true if AssemblyEmitter is supported
134bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +0000135addAssemblyEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Chris Lattnere8f10182009-06-16 22:38:04 +0000136 bool Verbose, raw_ostream &Out) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000137 // Output assembly language.
Chris Lattnere8f10182009-06-16 22:38:04 +0000138 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
139 PM.add(AsmPrinterCtor(Out, *this, OptLevel, Verbose));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000140 return false;
141}