096c67d32478f4162fe6d7ad76d11214f7a07c9a
[oota-llvm.git] / lib / Target / Mips / MipsTargetMachine.cpp
1 //===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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"
20 using namespace llvm;
21
22 /// 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.
27 extern "C" int MipsTargetMachineModule;
28 int MipsTargetMachineModule = 0;
29
30 // Register the target.
31 extern Target TheMipsTarget;
32 static RegisterTarget<MipsTargetMachine>    X(TheMipsTarget, "mips", "Mips");
33
34 extern Target TheMipselTarget;
35 static RegisterTarget<MipselTargetMachine>  Y(TheMipselTarget, "mipsel", 
36                                               "Mipsel");
37
38 // Force static initialization.
39 extern "C" void LLVMInitializeMipsTarget() { }
40
41 const TargetAsmInfo *MipsTargetMachine::
42 createTargetAsmInfo() const 
43 {
44   return new MipsTargetAsmInfo(*this);
45 }
46
47 // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
48 // 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
51 // offset from the stack/frame pointer, using StackGrowsUp enables 
52 // an easier handling.
53 // Using CodeModel::Large enables different CALL behavior.
54 MipsTargetMachine::
55 MipsTargetMachine(const Target &T, const Module &M, const std::string &FS, 
56                   bool isLittle=false):
57   LLVMTargetMachine(T),
58   Subtarget(*this, M, FS, isLittle), 
59   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")), 
61   InstrInfo(*this), 
62   FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
63   TLInfo(*this) 
64 {
65   // Abicall enables PIC by default
66   if (Subtarget.hasABICall())
67     setRelocationModel(Reloc::PIC_);  
68
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.
71   if (getCodeModel() == CodeModel::Default)
72     setCodeModel(CodeModel::Small);
73 }
74
75 MipselTargetMachine::
76 MipselTargetMachine(const Target &T, const Module &M, const std::string &FS) :
77   MipsTargetMachine(T, M, FS, true) {}
78
79 // Install an instruction selector pass using 
80 // the ISelDag to gen Mips code.
81 bool MipsTargetMachine::
82 addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel) 
83 {
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.
91 bool MipsTargetMachine::
92 addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel) 
93 {
94   PM.add(createMipsDelaySlotFillerPass(*this));
95   return true;
96 }