Allow itineraries to be passed through the Target Machine.
[oota-llvm.git] / lib / Target / PowerPC / PPCTargetMachine.cpp
1 //===-- PPCTargetMachine.cpp - Define TargetMachine for PowerPC -----------===//
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 // Top-level implementation for the PowerPC target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPC.h"
15 #include "PPCFrameInfo.h"
16 #include "PPCTargetMachine.h"
17 #include "PPCJITInfo.h"
18 #include "llvm/Module.h"
19 #include "llvm/PassManager.h"
20 #include "llvm/Analysis/Verifier.h"
21 #include "llvm/CodeGen/IntrinsicLowering.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/Passes.h"
24 #include "llvm/Target/TargetOptions.h"
25 #include "llvm/Target/TargetMachineRegistry.h"
26 #include "llvm/Transforms/Scalar.h"
27 #include "llvm/Support/CommandLine.h"
28 #include <iostream>
29 using namespace llvm;
30
31 namespace {
32   static cl::opt<bool> DisablePPCDAGDAG("disable-ppc-dag-isel", cl::Hidden,
33                              cl::desc("Disable DAG-to-DAG isel for PPC"));
34   
35   // Register the targets
36   RegisterTarget<PPCTargetMachine>
37   X("ppc32", "  PowerPC");
38 }
39
40 unsigned PPCTargetMachine::getJITMatchQuality() {
41 #if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)
42   return 10;
43 #else
44   return 0;
45 #endif
46 }
47
48 unsigned PPCTargetMachine::getModuleMatchQuality(const Module &M) {
49   // We strongly match "powerpc-*".
50   std::string TT = M.getTargetTriple();
51   if (TT.size() >= 8 && std::string(TT.begin(), TT.begin()+8) == "powerpc-")
52     return 20;
53   
54   if (M.getEndianness()  == Module::BigEndian &&
55       M.getPointerSize() == Module::Pointer32)
56     return 10;                                   // Weak match
57   else if (M.getEndianness() != Module::AnyEndianness ||
58            M.getPointerSize() != Module::AnyPointerSize)
59     return 0;                                    // Match for some other target
60   
61   return getJITMatchQuality()/2;
62 }
63
64 PPCTargetMachine::PPCTargetMachine(const Module &M, IntrinsicLowering *IL,
65                                    const std::string &FS)
66 : TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 2, 1, 1),
67   Subtarget(M, FS), FrameInfo(*this, false), JITInfo(*this),
68   InstrItins(Subtarget.getInstrItineraryData()) {
69   if (TargetDefault == PPCTarget) {
70     if (Subtarget.isAIX()) PPCTarget = TargetAIX;
71     if (Subtarget.isDarwin()) PPCTarget = TargetDarwin;
72   }
73 }
74
75 /// addPassesToEmitFile - Add passes to the specified pass manager to implement
76 /// a static compiler for this target.
77 ///
78 bool PPCTargetMachine::addPassesToEmitFile(PassManager &PM,
79                                            std::ostream &Out,
80                                            CodeGenFileType FileType) {
81   if (FileType != TargetMachine::AssemblyFile) return true;
82
83   // Run loop strength reduction before anything else.
84   PM.add(createLoopStrengthReducePass());
85
86   // FIXME: Implement efficient support for garbage collection intrinsics.
87   PM.add(createLowerGCPass());
88
89   // FIXME: Implement the invoke/unwind instructions!
90   PM.add(createLowerInvokePass());
91   
92   // Clean up after other passes, e.g. merging critical edges.
93   PM.add(createCFGSimplificationPass());
94
95   // FIXME: Implement the switch instruction in the instruction selector!
96   PM.add(createLowerSwitchPass());
97
98   // Make sure that no unreachable blocks are instruction selected.
99   PM.add(createUnreachableBlockEliminationPass());
100
101   // Install an instruction selector.
102   if (!DisablePPCDAGDAG)
103     PM.add(createPPCISelDag(*this));
104   else
105     PM.add(createPPCISelPattern(*this));
106
107   if (PrintMachineCode)
108     PM.add(createMachineFunctionPrinterPass(&std::cerr));
109
110   PM.add(createRegisterAllocator());
111
112   if (PrintMachineCode)
113     PM.add(createMachineFunctionPrinterPass(&std::cerr));
114
115   PM.add(createPrologEpilogCodeInserter());
116
117   // Must run branch selection immediately preceding the asm printer
118   PM.add(createPPCBranchSelectionPass());
119
120   // Decide which asm printer to use.  If the user has not specified one on
121   // the command line, choose whichever one matches the default (current host).
122   switch (PPCTarget) {
123   case TargetAIX:
124     PM.add(createAIXAsmPrinter(Out, *this));
125     break;
126   case TargetDefault:
127   case TargetDarwin:
128     PM.add(createDarwinAsmPrinter(Out, *this));
129     break;
130   }
131
132   PM.add(createMachineCodeDeleter());
133   return false;
134 }
135
136 void PPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
137   // The JIT does not support or need PIC.
138   PICEnabled = false;
139
140   // Run loop strength reduction before anything else.
141   PM.add(createLoopStrengthReducePass());
142
143   // FIXME: Implement efficient support for garbage collection intrinsics.
144   PM.add(createLowerGCPass());
145
146   // FIXME: Implement the invoke/unwind instructions!
147   PM.add(createLowerInvokePass());
148
149   // Clean up after other passes, e.g. merging critical edges.
150   PM.add(createCFGSimplificationPass());
151
152   // FIXME: Implement the switch instruction in the instruction selector!
153   PM.add(createLowerSwitchPass());
154
155   // Make sure that no unreachable blocks are instruction selected.
156   PM.add(createUnreachableBlockEliminationPass());
157
158   // Install an instruction selector.
159   if (!DisablePPCDAGDAG)
160     PM.add(createPPCISelDag(TM));
161   else
162     PM.add(createPPCISelPattern(TM));
163
164   PM.add(createRegisterAllocator());
165   PM.add(createPrologEpilogCodeInserter());
166
167   // Must run branch selection immediately preceding the asm printer
168   PM.add(createPPCBranchSelectionPass());
169
170   if (PrintMachineCode)
171     PM.add(createMachineFunctionPrinterPass(&std::cerr));
172 }
173