blob: bc2f281fed09b01f30af48606ad00e15e3d8d4d3 [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
Dan Gohman844731a2008-05-13 00:00:25 +000022// Register the target.
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000023static RegisterTarget<MipsTargetMachine> X("mips", " Mips");
24static RegisterTarget<MipselTargetMachine> Y("mipsel", " Mipsel");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000025
26const TargetAsmInfo *MipsTargetMachine::
27createTargetAsmInfo() const
28{
29 return new MipsTargetAsmInfo(*this);
30}
31
32// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes51195af2007-08-28 05:13:42 +000033// The stack is always 8 byte aligned
34// On function prologue, the stack is created by decrementing
35// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesbbe51362008-08-06 06:14:43 +000036// offset from the stack/frame pointer, using StackGrowsUp enables
37// an easier handling.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000038// Using CodeModel::Large enables different CALL behavior.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000039MipsTargetMachine::
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000040MipsTargetMachine(const Module &M, const std::string &FS, bool isLittle=false):
41 Subtarget(*this, M, FS, isLittle),
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +000042 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
43 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000044 InstrInfo(*this),
45 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000046 TLInfo(*this)
47{
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000048 // Abicall enables PIC by default
49 if (Subtarget.hasABICall() && (getRelocationModel() != Reloc::Static))
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000050 setRelocationModel(Reloc::PIC_);
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000051
52 // TODO: create an option to enable long calls, like -mlong-calls,
53 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000054 if (getCodeModel() == CodeModel::Default)
55 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000056}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000057
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000058MipselTargetMachine::
59MipselTargetMachine(const Module &M, const std::string &FS) :
60 MipsTargetMachine(M, FS, true) {}
61
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000062// return 0 and must specify -march to gen MIPS code.
63unsigned MipsTargetMachine::
Bruno Cardoso Lopes758dcca2007-07-11 23:17:41 +000064getModuleMatchQuality(const Module &M)
65{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000066 // We strongly match "mips*-*".
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000067 std::string TT = M.getTargetTriple();
68 if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-")
69 return 20;
Bruno Cardoso Lopes758dcca2007-07-11 23:17:41 +000070
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000071 if (TT.size() >= 13 && std::string(TT.begin(),
72 TT.begin()+13) == "mipsallegrex-")
73 return 20;
74
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000075 return 0;
76}
77
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000078// return 0 and must specify -march to gen MIPSEL code.
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000079unsigned MipselTargetMachine::
80getModuleMatchQuality(const Module &M)
81{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000082 // We strongly match "mips*el-*".
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000083 std::string TT = M.getTargetTriple();
84 if (TT.size() >= 7 && std::string(TT.begin(), TT.begin()+7) == "mipsel-")
85 return 20;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000086
87 if (TT.size() >= 15 && std::string(TT.begin(),
88 TT.begin()+15) == "mipsallegrexel-")
89 return 20;
90
91 if (TT.size() == 3 && std::string(TT.begin(), TT.begin()+3) == "psp")
92 return 20;
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000093
94 return 0;
95}
96
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000097// Install an instruction selector pass using
98// the ISelDag to gen Mips code.
99bool MipsTargetMachine::
Dan Gohmanbfae8312008-03-11 22:29:46 +0000100addInstSelector(PassManagerBase &PM, bool Fast)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000101{
102 PM.add(createMipsISelDag(*this));
103 return false;
104}
105
106// Implemented by targets that want to run passes immediately before
107// machine code is emitted. return true if -print-machineinstrs should
108// print out the code after the passes.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000109bool MipsTargetMachine::
Dan Gohmanbfae8312008-03-11 22:29:46 +0000110addPreEmitPass(PassManagerBase &PM, bool Fast)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000111{
Bruno Cardoso Lopesaff42dc2007-08-18 01:58:15 +0000112 PM.add(createMipsDelaySlotFillerPass(*this));
113 return true;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000114}
115
116// Implements the AssemblyEmitter for the target. Must return
117// true if AssemblyEmitter is supported
118bool MipsTargetMachine::
Dan Gohmanbfae8312008-03-11 22:29:46 +0000119addAssemblyEmitter(PassManagerBase &PM, bool Fast,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000120 std::ostream &Out)
121{
122 // Output assembly language.
123 PM.add(createMipsCodePrinterPass(Out, *this));
124 return false;
125}