now that JumpTableDirective can differentate picness itself, MIPS TAI
[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/PassManager.h"
18 #include "llvm/Target/TargetRegistry.h"
19 using namespace llvm;
20
21 extern "C" void LLVMInitializeMipsTarget() {
22   // Register the target.
23   RegisterTargetMachine<MipsTargetMachine> X(TheMipsTarget);
24   RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
25 }
26
27 const TargetAsmInfo *MipsTargetMachine::createTargetAsmInfo() const {
28   return new MipsTargetAsmInfo();
29 }
30
31 // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
32 // The stack is always 8 byte aligned
33 // On function prologue, the stack is created by decrementing
34 // its pointer. Once decremented, all references are done with positive
35 // offset from the stack/frame pointer, using StackGrowsUp enables 
36 // an easier handling.
37 // Using CodeModel::Large enables different CALL behavior.
38 MipsTargetMachine::
39 MipsTargetMachine(const Target &T, const std::string &TT, const std::string &FS,
40                   bool isLittle=false):
41   LLVMTargetMachine(T),
42   Subtarget(TT, FS, isLittle), 
43   DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") :
44                         std::string("E-p:32:32:32-i8:8:32-i16:16:32")), 
45   InstrInfo(*this), 
46   FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0),
47   TLInfo(*this) 
48 {
49   // Abicall enables PIC by default
50   if (getRelocationModel() == Reloc::Default) {
51     if (Subtarget.isABI_O32())
52       setRelocationModel(Reloc::PIC_);
53     else
54       setRelocationModel(Reloc::Static);
55   }
56
57   // TODO: create an option to enable long calls, like -mlong-calls, 
58   // that would be our CodeModel::Large. It must not work with Abicall.
59   if (getCodeModel() == CodeModel::Default)
60     setCodeModel(CodeModel::Small);
61 }
62
63 MipselTargetMachine::
64 MipselTargetMachine(const Target &T, const std::string &TT,
65                     const std::string &FS) :
66   MipsTargetMachine(T, TT, FS, true) {}
67
68 // Install an instruction selector pass using 
69 // the ISelDag to gen Mips code.
70 bool MipsTargetMachine::
71 addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel) 
72 {
73   PM.add(createMipsISelDag(*this));
74   return false;
75 }
76
77 // Implemented by targets that want to run passes immediately before 
78 // machine code is emitted. return true if -print-machineinstrs should 
79 // print out the code after the passes.
80 bool MipsTargetMachine::
81 addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel) 
82 {
83   PM.add(createMipsDelaySlotFillerPass(*this));
84   return true;
85 }