createMipsDelaySlotFillerPass added to mips codegen runtime
[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 was developed by Bruno Cardoso Lopes and is distributed under the
6 // University of Illinois Open Source 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 namespace {
23   // Register the target.
24   RegisterTarget<MipsTargetMachine> X("mips", "  Mips");
25 }
26
27 const TargetAsmInfo *MipsTargetMachine::
28 createTargetAsmInfo() const 
29 {
30   return new MipsTargetAsmInfo(*this);
31 }
32
33 // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
34 //
35 // FrameInfo  --> StackGrowsDown, 8 bytes aligned, 
36 //                LOA : 0
37 MipsTargetMachine::
38 MipsTargetMachine(const Module &M, const std::string &FS): 
39   Subtarget(*this, M, FS), DataLayout("E-p:32:32:32"), 
40   InstrInfo(*this), FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0),
41   TLInfo(*this) {}
42
43 // return 0 and must specify -march to gen MIPS code.
44 unsigned MipsTargetMachine::
45 getModuleMatchQuality(const Module &M) 
46 {
47   // We strongly match "mips-*".
48   std::string TT = M.getTargetTriple();
49   if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-")
50     return 20;
51   
52   return 0;
53 }
54
55 // Install an instruction selector pass using 
56 // the ISelDag to gen Mips code.
57 bool MipsTargetMachine::
58 addInstSelector(FunctionPassManager &PM, bool Fast) 
59 {
60   PM.add(createMipsISelDag(*this));
61   return false;
62 }
63
64 // Implemented by targets that want to run passes immediately before 
65 // machine code is emitted. return true if -print-machineinstrs should 
66 // print out the code after the passes.
67 bool MipsTargetMachine::
68 addPreEmitPass(FunctionPassManager &PM, bool Fast) 
69 {
70   PM.add(createMipsDelaySlotFillerPass(*this));
71   return true;
72 }
73
74 // Implements the AssemblyEmitter for the target. Must return
75 // true if AssemblyEmitter is supported
76 bool MipsTargetMachine::
77 addAssemblyEmitter(FunctionPassManager &PM, bool Fast, 
78                    std::ostream &Out) 
79 {
80   // Output assembly language.
81   PM.add(createMipsCodePrinterPass(Out, *this));
82   return false;
83 }