blob: 096c67d32478f4162fe6d7ad76d11214f7a07c9a [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"
17#include "llvm/Module.h"
18#include "llvm/PassManager.h"
19#include "llvm/Target/TargetMachineRegistry.h"
20using namespace llvm;
21
Oscar Fuentes92adc192008-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 Gohman844731a2008-05-13 00:00:25 +000030// Register the target.
Daniel Dunbar51b198a2009-07-15 20:24:03 +000031extern Target TheMipsTarget;
32static RegisterTarget<MipsTargetMachine> X(TheMipsTarget, "mips", "Mips");
33
34extern Target TheMipselTarget;
35static RegisterTarget<MipselTargetMachine> Y(TheMipselTarget, "mipsel",
36 "Mipsel");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000037
Bob Wilsona96751f2009-06-23 23:59:40 +000038// Force static initialization.
39extern "C" void LLVMInitializeMipsTarget() { }
Douglas Gregor1555a232009-06-16 20:12:29 +000040
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000041const TargetAsmInfo *MipsTargetMachine::
42createTargetAsmInfo() const
43{
44 return new MipsTargetAsmInfo(*this);
45}
46
47// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
Bruno Cardoso Lopes51195af2007-08-28 05:13:42 +000048// The stack is always 8 byte aligned
49// On function prologue, the stack is created by decrementing
50// its pointer. Once decremented, all references are done with positive
Bruno Cardoso Lopesbbe51362008-08-06 06:14:43 +000051// offset from the stack/frame pointer, using StackGrowsUp enables
52// an easier handling.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000053// Using CodeModel::Large enables different CALL behavior.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000054MipsTargetMachine::
Daniel Dunbar51b198a2009-07-15 20:24:03 +000055MipsTargetMachine(const Target &T, const Module &M, const std::string &FS,
56 bool isLittle=false):
57 LLVMTargetMachine(T),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000058 Subtarget(*this, M, FS, isLittle),
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +000059 DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
60 std::string("E-p:32:32:32-i8:8:32-i16:16:32")),
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000061 InstrInfo(*this),
62 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000063 TLInfo(*this)
64{
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000065 // Abicall enables PIC by default
Bruno Cardoso Lopesb3d72992008-09-15 21:06:55 +000066 if (Subtarget.hasABICall())
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000067 setRelocationModel(Reloc::PIC_);
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000068
69 // TODO: create an option to enable long calls, like -mlong-calls,
70 // that would be our CodeModel::Large. It must not work with Abicall.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000071 if (getCodeModel() == CodeModel::Default)
72 setCodeModel(CodeModel::Small);
Bruno Cardoso Lopes0a604002007-10-09 03:01:19 +000073}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000074
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000075MipselTargetMachine::
Daniel Dunbar51b198a2009-07-15 20:24:03 +000076MipselTargetMachine(const Target &T, const Module &M, const std::string &FS) :
77 MipsTargetMachine(T, M, FS, true) {}
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +000078
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000079// Install an instruction selector pass using
80// the ISelDag to gen Mips code.
81bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +000082addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000083{
84 PM.add(createMipsISelDag(*this));
85 return false;
86}
87
88// Implemented by targets that want to run passes immediately before
89// machine code is emitted. return true if -print-machineinstrs should
90// print out the code after the passes.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000091bool MipsTargetMachine::
Bill Wendling98a366d2009-04-29 23:29:43 +000092addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000093{
Bruno Cardoso Lopesaff42dc2007-08-18 01:58:15 +000094 PM.add(createMipsDelaySlotFillerPass(*this));
95 return true;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000096}