blob: c5f117bccb984b1f24506f88c8d606d276745db3 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Fuentes4f012352008-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 Gohman089efff2008-05-13 00:00:25 +000030// Register the target.
Dan Gohman669b9bf2008-10-14 20:25:08 +000031static RegisterTarget<MipsTargetMachine> X("mips", "Mips");
32static RegisterTarget<MipselTargetMachine> Y("mipsel", "Mipsel");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
Chris Lattner46f85e52009-06-16 22:38:04 +000034MipsTargetMachine::AsmPrinterCtorFn MipsTargetMachine::AsmPrinterCtor = 0;
35
36
Bob Wilsonebbc1c42009-06-23 23:59:40 +000037// Force static initialization.
38extern "C" void LLVMInitializeMipsTarget() { }
Douglas Gregor1dc5ff42009-06-16 20:12:29 +000039
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040const TargetAsmInfo *MipsTargetMachine::
41createTargetAsmInfo() const
42{
43 return new MipsTargetAsmInfo(*this);
44}
45
46// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes4f0f93f2007-08-28 05:13:42 +000047// The stack is always 8 byte aligned
48// On function prologue, the stack is created by decrementing
49// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesf046f872008-08-06 06:14:43 +000050// offset from the stack/frame pointer, using StackGrowsUp enables
51// an easier handling.
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000052// Using CodeModel::Large enables different CALL behavior.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053MipsTargetMachine::
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000054MipsTargetMachine(const Module &M, const std::string &FS, bool isLittle=false):
55 Subtarget(*this, M, FS, isLittle),
Bruno Cardoso Lopesf2e9be62008-07-15 02:03:36 +000056 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
57 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000058 InstrInfo(*this),
59 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000060 TLInfo(*this)
61{
Bruno Cardoso Lopes29c15352008-07-14 14:42:54 +000062 // Abicall enables PIC by default
Bruno Cardoso Lopesc690c7c2008-09-15 21:06:55 +000063 if (Subtarget.hasABICall())
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000064 setRelocationModel(Reloc::PIC_);
Bruno Cardoso Lopes29c15352008-07-14 14:42:54 +000065
66 // TODO: create an option to enable long calls, like -mlong-calls,
67 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopes218d5822007-11-05 03:02:32 +000068 if (getCodeModel() == CodeModel::Default)
69 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000070}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000072MipselTargetMachine::
73MipselTargetMachine(const Module &M, const std::string &FS) :
74 MipsTargetMachine(M, FS, true) {}
75
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076// return 0 and must specify -march to gen MIPS code.
77unsigned MipsTargetMachine::
78getModuleMatchQuality(const Module &M)
79{
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000080 // We strongly match "mips*-*".
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 std::string TT = M.getTargetTriple();
82 if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-")
83 return 20;
84
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000085 if (TT.size() >= 13 && std::string(TT.begin(),
86 TT.begin()+13) == "mipsallegrex-")
87 return 20;
88
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 return 0;
90}
91
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000092// return 0 and must specify -march to gen MIPSEL code.
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000093unsigned MipselTargetMachine::
94getModuleMatchQuality(const Module &M)
95{
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000096 // We strongly match "mips*el-*".
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000097 std::string TT = M.getTargetTriple();
98 if (TT.size() >= 7 && std::string(TT.begin(), TT.begin()+7) == "mipsel-")
99 return 20;
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +0000100
101 if (TT.size() >= 15 && std::string(TT.begin(),
102 TT.begin()+15) == "mipsallegrexel-")
103 return 20;
104
105 if (TT.size() == 3 && std::string(TT.begin(), TT.begin()+3) == "psp")
106 return 20;
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +0000107
108 return 0;
109}
110
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111// Install an instruction selector pass using
112// the ISelDag to gen Mips code.
113bool MipsTargetMachine::
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000114addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115{
116 PM.add(createMipsISelDag(*this));
117 return false;
118}
119
120// Implemented by targets that want to run passes immediately before
121// machine code is emitted. return true if -print-machineinstrs should
122// print out the code after the passes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123bool MipsTargetMachine::
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000124addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125{
Bruno Cardoso Lopes65afc472007-08-18 01:58:15 +0000126 PM.add(createMipsDelaySlotFillerPass(*this));
127 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128}
129
130// Implements the AssemblyEmitter for the target. Must return
131// true if AssemblyEmitter is supported
132bool MipsTargetMachine::
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000133addAssemblyEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Chris Lattner46f85e52009-06-16 22:38:04 +0000134 bool Verbose, raw_ostream &Out) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 // Output assembly language.
Chris Lattner46f85e52009-06-16 22:38:04 +0000136 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
137 PM.add(AsmPrinterCtor(Out, *this, OptLevel, Verbose));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 return false;
139}