blob: ad3eb9e77da771f45de5e1b131f16a350578bd21 [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"
Chris Lattner621c44d2009-08-22 20:48:53 +000015#include "MipsMCAsmInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016#include "MipsTargetMachine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#include "llvm/PassManager.h"
Daniel Dunbarc680b012009-07-25 06:49:55 +000018#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019using namespace llvm;
20
Daniel Dunbarc680b012009-07-25 06:49:55 +000021extern "C" void LLVMInitializeMipsTarget() {
22 // Register the target.
Eli Friedman532ba1e2009-08-03 02:22:28 +000023 RegisterTargetMachine<MipsTargetMachine> X(TheMipsTarget);
24 RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
Chris Lattner50f82ef2010-01-20 06:34:14 +000025 RegisterAsmInfo<MipsMCAsmInfo> A(TheMipsTarget);
26 RegisterAsmInfo<MipsMCAsmInfo> B(TheMipselTarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027}
28
29// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes4f0f93f2007-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
Bruno Cardoso Lopesf046f872008-08-06 06:14:43 +000033// offset from the stack/frame pointer, using StackGrowsUp enables
34// an easier handling.
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000035// Using CodeModel::Large enables different CALL behavior.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036MipsTargetMachine::
Eli Friedman532ba1e2009-08-03 02:22:28 +000037MipsTargetMachine(const Target &T, const std::string &TT, const std::string &FS,
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000038 bool isLittle=false):
Chris Lattnerd9236ec2009-08-11 20:42:37 +000039 LLVMTargetMachine(T, TT),
Eli Friedman532ba1e2009-08-03 02:22:28 +000040 Subtarget(TT, FS, isLittle),
Chris Lattner1b60b162009-11-07 19:07:32 +000041 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32-n32") :
42 std::string("E-p:32:32:32-i8:8:32-i16:16:32-n32")),
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000043 InstrInfo(*this),
44 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Dan Gohmancfbb3232010-05-11 17:31:57 +000045 TLInfo(*this), TSInfo(*this) {
Bruno Cardoso Lopes29c15352008-07-14 14:42:54 +000046 // Abicall enables PIC by default
Eli Friedman532ba1e2009-08-03 02:22:28 +000047 if (getRelocationModel() == Reloc::Default) {
48 if (Subtarget.isABI_O32())
49 setRelocationModel(Reloc::PIC_);
50 else
51 setRelocationModel(Reloc::Static);
52 }
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000053}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000055MipselTargetMachine::
Eli Friedman532ba1e2009-08-03 02:22:28 +000056MipselTargetMachine(const Target &T, const std::string &TT,
57 const std::string &FS) :
58 MipsTargetMachine(T, TT, FS, true) {}
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000059
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060// Install an instruction selector pass using
61// the ISelDag to gen Mips code.
62bool MipsTargetMachine::
Chris Lattner50f82ef2010-01-20 06:34:14 +000063addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
64{
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 PM.add(createMipsISelDag(*this));
66 return false;
67}
68
69// Implemented by targets that want to run passes immediately before
70// machine code is emitted. return true if -print-machineinstrs should
71// print out the code after the passes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072bool MipsTargetMachine::
Bill Wendling5ed22ac2009-04-29 23:29:43 +000073addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074{
Bruno Cardoso Lopes65afc472007-08-18 01:58:15 +000075 PM.add(createMipsDelaySlotFillerPass(*this));
76 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077}