Enable LSR by default for SPARC: it is a clear win.
[oota-llvm.git] / lib / Target / Sparc / SparcTargetMachine.cpp
1 //===-- SparcTargetMachine.cpp - Define TargetMachine for Sparc -----------===//
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 "SparcTargetMachine.h"
14 #include "Sparc.h"
15 #include "llvm/Assembly/PrintModulePass.h"
16 #include "llvm/Module.h"
17 #include "llvm/PassManager.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/CodeGen/Passes.h"
20 #include "llvm/Target/TargetOptions.h"
21 #include "llvm/Target/TargetMachineRegistry.h"
22 #include "llvm/Transforms/Scalar.h"
23 #include <iostream>
24 using namespace llvm;
25
26 namespace {
27   // Register the target.
28   RegisterTarget<SparcTargetMachine> X("sparc", "  SPARC");
29 }
30
31 /// SparcTargetMachine ctor - Create an ILP32 architecture model
32 ///
33 SparcTargetMachine::SparcTargetMachine(const Module &M, IntrinsicLowering *IL,
34                                        const std::string &FS)
35   : TargetMachine("Sparc", IL, false, 4, 4),
36     Subtarget(M, FS), InstrInfo(Subtarget),
37     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0) {
38 }
39
40 unsigned SparcTargetMachine::getModuleMatchQuality(const Module &M) {
41   std::string TT = M.getTargetTriple();
42   if (TT.size() >= 6 && std::string(TT.begin(), TT.begin()+6) == "sparc-")
43     return 20;
44
45   if (M.getEndianness()  == Module::BigEndian &&
46       M.getPointerSize() == Module::Pointer32)
47 #ifdef __sparc__
48     return 20;   // BE/32 ==> Prefer sparc on sparc
49 #else
50     return 5;    // BE/32 ==> Prefer ppc elsewhere
51 #endif
52   else if (M.getEndianness() != Module::AnyEndianness ||
53            M.getPointerSize() != Module::AnyPointerSize)
54     return 0;                                    // Match for some other target
55
56   return 0;
57 }
58
59 /// addPassesToEmitFile - Add passes to the specified pass manager
60 /// to implement a static compiler for this target.
61 ///
62 bool SparcTargetMachine::addPassesToEmitFile(PassManager &PM, std::ostream &Out,
63                                              CodeGenFileType FileType,
64                                              bool Fast) {
65   if (FileType != TargetMachine::AssemblyFile) return true;
66
67   // Run loop strength reduction before anything else.
68   if (!Fast) PM.add(createLoopStrengthReducePass());
69
70   // FIXME: Implement efficient support for garbage collection intrinsics.
71   PM.add(createLowerGCPass());
72
73   // FIXME: implement the invoke/unwind instructions!
74   PM.add(createLowerInvokePass());
75
76   // FIXME: implement the switch instruction in the instruction selector.
77   PM.add(createLowerSwitchPass());
78   
79   // Print LLVM code input to instruction selector:
80   if (PrintMachineCode)
81     PM.add(new PrintFunctionPass());
82
83   // Make sure that no unreachable blocks are instruction selected.
84   PM.add(createUnreachableBlockEliminationPass());
85   
86   PM.add(createSparcISelDag(*this));
87
88   // Print machine instructions as they were initially generated.
89   if (PrintMachineCode)
90     PM.add(createMachineFunctionPrinterPass(&std::cerr));
91
92   PM.add(createRegisterAllocator());
93   PM.add(createPrologEpilogCodeInserter());
94
95   // Print machine instructions after register allocation and prolog/epilog
96   // insertion.
97   if (PrintMachineCode)
98     PM.add(createMachineFunctionPrinterPass(&std::cerr));
99
100   PM.add(createSparcFPMoverPass(*this));
101
102   PM.add(createSparcDelaySlotFillerPass(*this));
103
104   // Print machine instructions after filling delay slots.
105   if (PrintMachineCode)
106     PM.add(createMachineFunctionPrinterPass(&std::cerr));
107
108   // Output assembly language.
109   PM.add(createSparcCodePrinterPass(Out, *this));
110
111   // Delete the MachineInstrs we generated, since they're no longer needed.
112   PM.add(createMachineCodeDeleter());
113   return false;
114 }
115