blob: e82dcee6362046814c035cb3ad2e959e49165c89 [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
Dan Gohman089efff2008-05-13 00:00:25 +000022// Register the target.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000023static RegisterTarget<MipsTargetMachine> X(TheMipsTarget, "mips", "Mips");
24
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000025static RegisterTarget<MipselTargetMachine> Y(TheMipselTarget, "mipsel",
26 "Mipsel");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027
Bob Wilsonebbc1c42009-06-23 23:59:40 +000028// Force static initialization.
29extern "C" void LLVMInitializeMipsTarget() { }
Douglas Gregor1dc5ff42009-06-16 20:12:29 +000030
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031const TargetAsmInfo *MipsTargetMachine::
32createTargetAsmInfo() const
33{
34 return new MipsTargetAsmInfo(*this);
35}
36
37// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes4f0f93f2007-08-28 05:13:42 +000038// The stack is always 8 byte aligned
39// On function prologue, the stack is created by decrementing
40// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesf046f872008-08-06 06:14:43 +000041// offset from the stack/frame pointer, using StackGrowsUp enables
42// an easier handling.
Bruno Cardoso Lopes4fb1f542008-07-05 19:05:21 +000043// Using CodeModel::Large enables different CALL behavior.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044MipsTargetMachine::
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000045MipsTargetMachine(const Target &T, const Module &M, const std::string &FS,
46 bool isLittle=false):
47 LLVMTargetMachine(T),
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000048 Subtarget(*this, M, FS, isLittle),
Bruno Cardoso Lopesf2e9be62008-07-15 02:03:36 +000049 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
50 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000051 InstrInfo(*this),
52 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000053 TLInfo(*this)
54{
Bruno Cardoso Lopes29c15352008-07-14 14:42:54 +000055 // Abicall enables PIC by default
Bruno Cardoso Lopesc690c7c2008-09-15 21:06:55 +000056 if (Subtarget.hasABICall())
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000057 setRelocationModel(Reloc::PIC_);
Bruno Cardoso Lopes29c15352008-07-14 14:42:54 +000058
59 // TODO: create an option to enable long calls, like -mlong-calls,
60 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopes218d5822007-11-05 03:02:32 +000061 if (getCodeModel() == CodeModel::Default)
62 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes5f8e1112007-10-09 03:01:19 +000063}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000065MipselTargetMachine::
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000066MipselTargetMachine(const Target &T, const Module &M, const std::string &FS) :
67 MipsTargetMachine(T, M, FS, true) {}
Bruno Cardoso Lopesdb260942008-06-04 01:45:25 +000068
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069// Install an instruction selector pass using
70// the ISelDag to gen Mips code.
71bool MipsTargetMachine::
Bill Wendling5ed22ac2009-04-29 23:29:43 +000072addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073{
74 PM.add(createMipsISelDag(*this));
75 return false;
76}
77
78// Implemented by targets that want to run passes immediately before
79// machine code is emitted. return true if -print-machineinstrs should
80// print out the code after the passes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081bool MipsTargetMachine::
Bill Wendling5ed22ac2009-04-29 23:29:43 +000082addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083{
Bruno Cardoso Lopes65afc472007-08-18 01:58:15 +000084 PM.add(createMipsDelaySlotFillerPass(*this));
85 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086}