* Frame & const pool info is no longer directly in MachineFunction
[oota-llvm.git] / lib / Target / SparcV9 / SparcV9TargetMachine.cpp
1 //===-- Sparc.cpp - General implementation file for the Sparc Target ------===//
2 //
3 // This file contains the code for the Sparc Target that does not fit in any of
4 // the other files in this directory.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #include "SparcInternals.h"
9 #include "llvm/Target/TargetMachineImpls.h"
10 #include "llvm/Function.h"
11 #include "llvm/PassManager.h"
12 #include "llvm/Transforms/Scalar.h"
13 #include "llvm/CodeGen/MachineFunction.h"
14 #include "llvm/CodeGen/MachineFunctionInfo.h"
15 #include "llvm/CodeGen/PreSelection.h"
16 #include "llvm/CodeGen/StackSlots.h"
17 #include "llvm/CodeGen/PeepholeOpts.h"
18 #include "llvm/CodeGen/InstrSelection.h"
19 #include "llvm/CodeGen/InstrScheduling.h"
20 #include "llvm/CodeGen/RegisterAllocation.h"
21 #include "llvm/CodeGen/MachineCodeForInstruction.h"
22 #include "llvm/Reoptimizer/Mapping/MappingInfo.h" 
23 #include "llvm/Reoptimizer/Mapping/FInfo.h" 
24 #include "Support/CommandLine.h"
25 using std::cerr;
26
27 static const unsigned ImplicitRegUseList[] = { 0 }; /* not used yet */
28 // Build the MachineInstruction Description Array...
29 const MachineInstrDescriptor SparcMachineInstrDesc[] = {
30 #define I(ENUM, OPCODESTRING, NUMOPERANDS, RESULTPOS, MAXIMM, IMMSE, \
31           NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS)             \
32   { OPCODESTRING, NUMOPERANDS, RESULTPOS, MAXIMM, IMMSE,             \
33           NUMDELAYSLOTS, LATENCY, SCHEDCLASS, INSTFLAGS, 0,          \
34           ImplicitRegUseList, ImplicitRegUseList },
35 #include "SparcInstr.def"
36 };
37
38 //---------------------------------------------------------------------------
39 // Command line options to control choice of code generation passes.
40 //---------------------------------------------------------------------------
41
42 static cl::opt<bool> DisablePreSelect("nopreselect",
43                                       cl::desc("Disable preselection pass"));
44
45 static cl::opt<bool> DisableSched("nosched",
46                                   cl::desc("Disable local scheduling pass"));
47
48 static cl::opt<bool> DisablePeephole("nopeephole",
49                                 cl::desc("Disable peephole optimization pass"));
50
51 //----------------------------------------------------------------------------
52 // allocateSparcTargetMachine - Allocate and return a subclass of TargetMachine
53 // that implements the Sparc backend. (the llvm/CodeGen/Sparc.h interface)
54 //----------------------------------------------------------------------------
55
56 TargetMachine *allocateSparcTargetMachine() { return new UltraSparc(); }
57
58
59
60 //---------------------------------------------------------------------------
61 // class UltraSparcFrameInfo 
62 // 
63 //   Interface to stack frame layout info for the UltraSPARC.
64 //   Starting offsets for each area of the stack frame are aligned at
65 //   a multiple of getStackFrameSizeAlignment().
66 //---------------------------------------------------------------------------
67
68 int
69 UltraSparcFrameInfo::getFirstAutomaticVarOffset(MachineFunction& ,
70                                                 bool& pos) const
71 {
72   pos = false;                          // static stack area grows downwards
73   return StaticAreaOffsetFromFP;
74 }
75
76 int
77 UltraSparcFrameInfo::getRegSpillAreaOffset(MachineFunction& mcInfo,
78                                            bool& pos) const
79 {
80   // ensure no more auto vars are added
81   mcInfo.getInfo()->freezeAutomaticVarsArea();
82   
83   pos = false;                          // static stack area grows downwards
84   unsigned autoVarsSize = mcInfo.getInfo()->getAutomaticVarsSize();
85   return StaticAreaOffsetFromFP - autoVarsSize; 
86 }
87
88 int
89 UltraSparcFrameInfo::getTmpAreaOffset(MachineFunction& mcInfo,
90                                       bool& pos) const
91 {
92   MachineFunctionInfo *MFI = mcInfo.getInfo();
93   MFI->freezeAutomaticVarsArea();     // ensure no more auto vars are added
94   MFI->freezeSpillsArea();            // ensure no more spill slots are added
95   
96   pos = false;                          // static stack area grows downwards
97   unsigned autoVarsSize = MFI->getAutomaticVarsSize();
98   unsigned spillAreaSize = MFI->getRegSpillsSize();
99   int offset = autoVarsSize + spillAreaSize;
100   return StaticAreaOffsetFromFP - offset;
101 }
102
103 int
104 UltraSparcFrameInfo::getDynamicAreaOffset(MachineFunction& mcInfo,
105                                           bool& pos) const
106 {
107   // Dynamic stack area grows downwards starting at top of opt-args area.
108   // The opt-args, required-args, and register-save areas are empty except
109   // during calls and traps, so they are shifted downwards on each
110   // dynamic-size alloca.
111   pos = false;
112   unsigned optArgsSize = mcInfo.getInfo()->getMaxOptionalArgsSize();
113   if (int extra = optArgsSize % getStackFrameSizeAlignment())
114     optArgsSize += (getStackFrameSizeAlignment() - extra);
115   int offset = optArgsSize + FirstOptionalOutgoingArgOffsetFromSP;
116   assert((offset - OFFSET) % getStackFrameSizeAlignment() == 0);
117   return offset;
118 }
119
120 //---------------------------------------------------------------------------
121 // class UltraSparcMachine 
122 // 
123 // Purpose:
124 //   Primary interface to machine description for the UltraSPARC.
125 //   Primarily just initializes machine-dependent parameters in
126 //   class TargetMachine, and creates machine-dependent subclasses
127 //   for classes such as MachineInstrInfo. 
128 // 
129 //---------------------------------------------------------------------------
130
131 UltraSparc::UltraSparc()
132   : TargetMachine("UltraSparc-Native", false, 4),
133     schedInfo(*this),
134     regInfo(*this),
135     frameInfo(*this),
136     cacheInfo(*this),
137     optInfo(*this) {
138 }
139
140
141 // addPassesToEmitAssembly - This method controls the entire code generation
142 // process for the ultra sparc.
143 //
144 bool UltraSparc::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out)
145 {
146   // Construct and initialize the MachineFunction object for this fn.
147   PM.add(createMachineCodeConstructionPass(*this));
148
149   //Insert empty stackslots in the stack frame of each function
150   //so %fp+offset-8 and %fp+offset-16 are empty slots now!
151   PM.add(createStackSlotsPass(*this));
152
153   // Specialize LLVM code for this target machine and then
154   // run basic dataflow optimizations on LLVM code.
155   if (!DisablePreSelect)
156     {
157       PM.add(createPreSelectionPass(*this));
158       PM.add(createReassociatePass());
159       PM.add(createLICMPass());
160       PM.add(createGCSEPass());
161     }
162
163   PM.add(createInstructionSelectionPass(*this));
164
165   if (!DisableSched)
166     PM.add(createInstructionSchedulingWithSSAPass(*this));
167
168   PM.add(getRegisterAllocator(*this));
169
170   PM.add(getPrologEpilogInsertionPass());
171
172   if (!DisablePeephole)
173     PM.add(createPeepholeOptsPass(*this));
174
175   PM.add(MappingInfoForFunction(Out));  
176
177   // Output assembly language to the .s file.  Assembly emission is split into
178   // two parts: Function output and Global value output.  This is because
179   // function output is pipelined with all of the rest of code generation stuff,
180   // allowing machine code representations for functions to be free'd after the
181   // function has been emitted.
182   //
183   PM.add(getFunctionAsmPrinterPass(Out));
184   PM.add(createMachineCodeDestructionPass()); // Free stuff no longer needed
185
186   // Emit Module level assembly after all of the functions have been processed.
187   PM.add(getModuleAsmPrinterPass(Out));
188
189   // Emit bytecode to the assembly file into its special section next
190   PM.add(getEmitBytecodeToAsmPass(Out));
191   PM.add(getFunctionInfo(Out)); 
192   return false;
193 }