blob: a397756087822743d84c93c8b04cea24ce5a1af1 [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"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000017#include "llvm/PassManager.h"
Daniel Dunbar0c795d62009-07-25 06:49:55 +000018#include "llvm/Target/TargetRegistry.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000019using namespace llvm;
20
Daniel Dunbar0c795d62009-07-25 06:49:55 +000021extern "C" void LLVMInitializeMipsTarget() {
22 // Register the target.
Eli Friedmane2c74082009-08-03 02:22:28 +000023 RegisterTargetMachine<MipsTargetMachine> X(TheMipsTarget);
24 RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
Daniel Dunbar0c795d62009-07-25 06:49:55 +000025}
Douglas Gregor1555a232009-06-16 20:12:29 +000026
Chris Lattner92319e22009-08-11 20:32:51 +000027const TargetAsmInfo *MipsTargetMachine::createTargetAsmInfo() const {
28 return new MipsTargetAsmInfo();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000029}
30
31// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes51195af2007-08-28 05:13:42 +000032// The stack is always 8 byte aligned
33// On function prologue, the stack is created by decrementing
34// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesbbe51362008-08-06 06:14:43 +000035// offset from the stack/frame pointer, using StackGrowsUp enables
36// an easier handling.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000037// Using CodeModel::Large enables different CALL behavior.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000038MipsTargetMachine::
Eli Friedmane2c74082009-08-03 02:22:28 +000039MipsTargetMachine(const Target &T, const std::string &TT, const std::string &FS,
Daniel Dunbar51b198a2009-07-15 20:24:03 +000040 bool isLittle=false):
41 LLVMTargetMachine(T),
Eli Friedmane2c74082009-08-03 02:22:28 +000042 Subtarget(TT, FS, isLittle),
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +000043 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
44 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000045 InstrInfo(*this),
46 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000047 TLInfo(*this)
48{
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000049 // Abicall enables PIC by default
Eli Friedmane2c74082009-08-03 02:22:28 +000050 if (getRelocationModel() == Reloc::Default) {
51 if (Subtarget.isABI_O32())
52 setRelocationModel(Reloc::PIC_);
53 else
54 setRelocationModel(Reloc::Static);
55 }
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000056
57 // TODO: create an option to enable long calls, like -mlong-calls,
58 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000059 if (getCodeModel() == CodeModel::Default)
60 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000061}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000062
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000063MipselTargetMachine::
Eli Friedmane2c74082009-08-03 02:22:28 +000064MipselTargetMachine(const Target &T, const std::string &TT,
65 const std::string &FS) :
66 MipsTargetMachine(T, TT, FS, true) {}
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000067
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000068// Install an instruction selector pass using
69// the ISelDag to gen Mips code.
70bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +000071addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000072{
73 PM.add(createMipsISelDag(*this));
74 return false;
75}
76
77// Implemented by targets that want to run passes immediately before
78// machine code is emitted. return true if -print-machineinstrs should
79// print out the code after the passes.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000080bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +000081addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000082{
Bruno Cardoso Lopesaff42dc2007-08-18 01:58:15 +000083 PM.add(createMipsDelaySlotFillerPass(*this));
84 return true;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000085}