blob: 88ce3b881944f8f830f09b3d17054bf6f945746b [file] [log] [blame]
Akira Hatanaka4552c9a2011-04-15 21:51:11 +00001//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00002//
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//
Akira Hatanaka4552c9a2011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00009//
10// Implements the info about Mips target spec.
11//
Akira Hatanaka4552c9a2011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000013
14#include "Mips.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000015#include "MipsMCAsmInfo.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000016#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);
Chris Lattner8eeba352010-01-20 06:34:14 +000025 RegisterAsmInfo<MipsMCAsmInfo> A(TheMipsTarget);
26 RegisterAsmInfo<MipsMCAsmInfo> B(TheMipselTarget);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000027}
28
29// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes51195af2007-08-28 05:13:42 +000030// The stack is always 8 byte aligned
31// On function prologue, the stack is created by decrementing
32// its pointer. Once decremented, all references are done with positive
Anton Korobeynikov33464912010-11-15 00:06:54 +000033// offset from the stack/frame pointer, using StackGrowsUp enables
Bruno Cardoso Lopesbbe51362008-08-06 06:14:43 +000034// an easier handling.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000035// Using CodeModel::Large enables different CALL behavior.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000036MipsTargetMachine::
Evan Cheng276365d2011-06-30 01:53:36 +000037MipsTargetMachine(const Target &T, const std::string &TT,
38 const std::string &CPU, const std::string &FS,
Akira Hatanaka4552c9a2011-04-15 21:51:11 +000039 bool isLittle=false):
Chris Lattner0a31d2f2009-08-11 20:42:37 +000040 LLVMTargetMachine(T, TT),
Evan Cheng276365d2011-06-30 01:53:36 +000041 Subtarget(TT, CPU, FS, isLittle),
Akira Hatanakad48cfae2011-05-19 17:21:09 +000042 DataLayout(isLittle ?
43 std::string("e-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32") :
44 std::string("E-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32")),
Anton Korobeynikov33464912010-11-15 00:06:54 +000045 InstrInfo(*this),
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000046 FrameLowering(Subtarget),
Dan Gohmanff7a5622010-05-11 17:31:57 +000047 TLInfo(*this), TSInfo(*this) {
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000048 // Abicall enables PIC by default
Eli Friedmane2c74082009-08-03 02:22:28 +000049 if (getRelocationModel() == Reloc::Default) {
50 if (Subtarget.isABI_O32())
51 setRelocationModel(Reloc::PIC_);
52 else
53 setRelocationModel(Reloc::Static);
54 }
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000055}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000056
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000057MipselTargetMachine::
Eli Friedmane2c74082009-08-03 02:22:28 +000058MipselTargetMachine(const Target &T, const std::string &TT,
Evan Cheng276365d2011-06-30 01:53:36 +000059 const std::string &CPU, const std::string &FS) :
60 MipsTargetMachine(T, TT, CPU, FS, true) {}
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000061
Anton Korobeynikov33464912010-11-15 00:06:54 +000062// Install an instruction selector pass using
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000063// the ISelDag to gen Mips code.
64bool MipsTargetMachine::
Anton Korobeynikov33464912010-11-15 00:06:54 +000065addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Chris Lattner8eeba352010-01-20 06:34:14 +000066{
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000067 PM.add(createMipsISelDag(*this));
68 return false;
69}
70
Anton Korobeynikov33464912010-11-15 00:06:54 +000071// Implemented by targets that want to run passes immediately before
72// machine code is emitted. return true if -print-machineinstrs should
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000073// print out the code after the passes.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000074bool MipsTargetMachine::
Anton Korobeynikov33464912010-11-15 00:06:54 +000075addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000076{
Bruno Cardoso Lopesaff42dc2007-08-18 01:58:15 +000077 PM.add(createMipsDelaySlotFillerPass(*this));
78 return true;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000079}
Akira Hatanaka99a2e982011-04-15 19:52:08 +000080
81bool MipsTargetMachine::
Akira Hatanaka6b7588e2011-05-04 17:54:27 +000082addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel) {
83 PM.add(createMipsEmitGPRestorePass(*this));
84 return true;
85}
86
87bool MipsTargetMachine::
Akira Hatanaka99a2e982011-04-15 19:52:08 +000088addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel) {
89 PM.add(createMipsExpandPseudoPass(*this));
90 return true;
91}