a888423a1524f7fc4fb62845f40b3013224aea88
[oota-llvm.git] / lib / Target / Sparc / SparcTargetMachine.cpp
1 //===-- SparcV8TargetMachine.cpp - Define TargetMachine for SparcV8 -------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 // 
10 //
11 //===----------------------------------------------------------------------===//
12
13 #include "SparcV8TargetMachine.h"
14 #include "SparcV8.h"
15 #include "llvm/Module.h"
16 #include "llvm/PassManager.h"
17 #include "llvm/Target/TargetMachineImpls.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/CodeGen/Passes.h"
20 #include "llvm/Transforms/Scalar.h"
21 using namespace llvm;
22
23 // allocateSparcV8TargetMachine - Allocate and return a subclass of 
24 // TargetMachine that implements the SparcV8 backend.
25 //
26 TargetMachine *llvm::allocateSparcV8TargetMachine(const Module &M,
27                                                   IntrinsicLowering *IL) {
28   return new SparcV8TargetMachine(M, IL);
29 }
30
31 /// SparcV8TargetMachine ctor - Create an ILP32 architecture model
32 ///
33 SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
34                                            IntrinsicLowering *IL)
35   : TargetMachine("SparcV8", IL, true, 4, 4, 4, 4, 4),
36     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
37 }
38
39 /// addPassesToEmitAssembly - Add passes to the specified pass manager
40 /// to implement a static compiler for this target.
41 ///
42 bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
43                                                std::ostream &Out) {
44   // FIXME: Implement efficient support for garbage collection intrinsics.
45   PM.add(createLowerGCPass());
46
47   // Replace malloc and free instructions with library calls.
48   PM.add(createLowerAllocationsPass());
49   
50   // FIXME: implement the switch instruction in the instruction selector.
51   PM.add(createLowerSwitchPass());
52
53   // FIXME: implement the invoke/unwind instructions!
54   PM.add(createLowerInvokePass());
55
56   PM.add(createSparcV8SimpleInstructionSelector(*this));
57
58   // Print machine instructions as they were initially generated.
59   if (PrintMachineCode)
60     PM.add(createMachineFunctionPrinterPass(&std::cerr));
61
62   PM.add(createRegisterAllocator());
63   PM.add(createPrologEpilogCodeInserter());
64
65   // Print machine instructions after register allocation and prolog/epilog
66   // insertion.
67   if (PrintMachineCode)
68     PM.add(createMachineFunctionPrinterPass(&std::cerr));
69
70   PM.add(createSparcV8DelaySlotFillerPass(*this));
71
72   // Print machine instructions after filling delay slots.
73   if (PrintMachineCode)
74     PM.add(createMachineFunctionPrinterPass(&std::cerr));
75
76   // Output assembly language.
77   PM.add(createSparcV8CodePrinterPass(Out, *this));
78
79   // Delete the MachineInstrs we generated, since they're no longer needed.
80   PM.add(createMachineCodeDeleter());
81   return false;
82 }
83
84 /// addPassesToJITCompile - Add passes to the specified pass manager to
85 /// implement a fast dynamic compiler for this target.
86 ///
87 void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
88   // FIXME: Implement efficient support for garbage collection intrinsics.
89   PM.add(createLowerGCPass());
90
91   // Replace malloc and free instructions with library calls.
92   PM.add(createLowerAllocationsPass());
93   
94   // FIXME: implement the switch instruction in the instruction selector.
95   PM.add(createLowerSwitchPass());
96
97   // FIXME: implement the invoke/unwind instructions!
98   PM.add(createLowerInvokePass());
99   
100   PM.add(createSparcV8SimpleInstructionSelector(TM));
101
102   // Print machine instructions as they were initially generated.
103   if (PrintMachineCode)
104     PM.add(createMachineFunctionPrinterPass(&std::cerr));
105
106   PM.add(createRegisterAllocator());
107   PM.add(createPrologEpilogCodeInserter());
108
109   // Print machine instructions after register allocation and prolog/epilog
110   // insertion.
111   if (PrintMachineCode)
112     PM.add(createMachineFunctionPrinterPass(&std::cerr));
113
114   PM.add(createSparcV8DelaySlotFillerPass(TM));
115
116   // Print machine instructions after filling delay slots.
117   if (PrintMachineCode)
118     PM.add(createMachineFunctionPrinterPass(&std::cerr));
119 }