blob: 3dcbabc2a684b5c445eeeece9ff3d4b871b5f3f9 [file] [log] [blame]
Chris Lattner6b944532002-10-28 01:16:38 +00001//===-- MachineFunction.cpp -----------------------------------------------===//
Chris Lattnerf2868ce2002-02-03 07:54:50 +00002//
Chris Lattner6b944532002-10-28 01:16:38 +00003// Collect native machine code information for a function. This allows
4// target-specific information about the generated code to be stored with each
5// function.
6//
7//===----------------------------------------------------------------------===//
Chris Lattnerf2868ce2002-02-03 07:54:50 +00008
Chris Lattnerf2868ce2002-02-03 07:54:50 +00009#include "llvm/CodeGen/MachineInstr.h" // For debug output
Chris Lattner6b944532002-10-28 01:16:38 +000010#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner227c3d32002-10-28 01:12:41 +000011#include "llvm/CodeGen/MachineCodeForInstruction.h"
Chris Lattnerf2868ce2002-02-03 07:54:50 +000012#include "llvm/Target/TargetMachine.h"
13#include "llvm/Target/MachineFrameInfo.h"
14#include "llvm/Target/MachineCacheInfo.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000015#include "llvm/Function.h"
Chris Lattnerf2868ce2002-02-03 07:54:50 +000016#include "llvm/iOther.h"
Chris Lattner227c3d32002-10-28 01:12:41 +000017#include "llvm/Pass.h"
Chris Lattnerf2868ce2002-02-03 07:54:50 +000018#include <limits.h>
19
20const int INVALID_FRAME_OFFSET = INT_MAX; // std::numeric_limits<int>::max();
21
Chris Lattnere316efc2002-10-29 23:18:43 +000022static AnnotationID MF_AID(
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000023 AnnotationManager::getID("CodeGen::MachineCodeForFunction"));
Chris Lattnerf2868ce2002-02-03 07:54:50 +000024
Chris Lattner227c3d32002-10-28 01:12:41 +000025
26//===---------------------------------------------------------------------===//
27// Code generation/destruction passes
28//===---------------------------------------------------------------------===//
29
30namespace {
31 class ConstructMachineFunction : public FunctionPass {
32 TargetMachine &Target;
33 public:
34 ConstructMachineFunction(TargetMachine &T) : Target(T) {}
35
36 const char *getPassName() const {
37 return "ConstructMachineFunction";
38 }
39
40 bool runOnFunction(Function &F) {
Chris Lattner88726182002-10-29 23:40:03 +000041 MachineFunction::construct(&F, Target).CalculateArgSize();
Chris Lattner227c3d32002-10-28 01:12:41 +000042 return false;
43 }
44 };
45
46 struct DestroyMachineFunction : public FunctionPass {
47 const char *getPassName() const { return "FreeMachineFunction"; }
48
49 static void freeMachineCode(Instruction &I) {
50 MachineCodeForInstruction::destroy(&I);
51 }
52
53 bool runOnFunction(Function &F) {
54 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
55 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E; ++I)
56 MachineCodeForInstruction::get(I).dropAllReferences();
57
58 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
59 for_each(FI->begin(), FI->end(), freeMachineCode);
60
61 return false;
62 }
63 };
Chris Lattner10491642002-10-30 00:48:05 +000064
65 struct Printer : public FunctionPass {
66 const char *getPassName() const { return "MachineFunction Printer"; }
67
68 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
69 AU.setPreservesAll();
70 }
71
72 bool runOnFunction(Function &F) {
73 MachineFunction::get(&F).dump();
74 return false;
75 }
76 };
Chris Lattner227c3d32002-10-28 01:12:41 +000077}
78
79Pass *createMachineCodeConstructionPass(TargetMachine &Target) {
80 return new ConstructMachineFunction(Target);
81}
82
83Pass *createMachineCodeDestructionPass() {
84 return new DestroyMachineFunction();
85}
86
Chris Lattner10491642002-10-30 00:48:05 +000087Pass *createMachineFunctionPrinterPass() {
88 return new Printer();
89}
90
Chris Lattner227c3d32002-10-28 01:12:41 +000091
92//===---------------------------------------------------------------------===//
93// MachineFunction implementation
94//===---------------------------------------------------------------------===//
95
Chris Lattner10491642002-10-30 00:48:05 +000096MachineFunction::MachineFunction(const Function *F,
97 const TargetMachine& target)
98 : Annotation(MF_AID),
99 Fn(F), Target(target), staticStackSize(0),
100 automaticVarsSize(0), regSpillsSize(0),
101 maxOptionalArgsSize(0), maxOptionalNumArgs(0),
102 currentTmpValuesSize(0), maxTmpValuesSize(0), compiledAsLeaf(false),
103 spillsAreaFrozen(false), automaticVarsAreaFrozen(false)
104{
105}
106
107void MachineFunction::dump() const { print(std::cerr); }
108
109void MachineFunction::print(std::ostream &OS) const {
110 OS << "\n" << *(Value*)Fn->getReturnType() << " \"" << Fn->getName()<< "\"\n";
111
112 for (const_iterator BB = begin(); BB != end(); ++BB) {
113 BasicBlock *LBB = BB->getBasicBlock();
114 OS << "\n" << LBB->getName() << " ("
115 << (const void*)BB->getBasicBlock() << "):\n";
116 for (MachineBasicBlock::const_iterator I = BB->begin(); I != BB->end();++I){
117 OS << "\t";
118 (*I)->print(OS, Target);
119 }
120 }
121 OS << "\nEnd function \"" << Fn->getName() << "\"\n\n";
122}
123
124
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000125// The next two methods are used to construct and to retrieve
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000126// the MachineCodeForFunction object for the given function.
127// construct() -- Allocates and initializes for a given function and target
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000128// get() -- Returns a handle to the object.
129// This should not be called before "construct()"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000130// for a given Function.
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000131//
Misha Brukmanfce11432002-10-28 00:28:31 +0000132MachineFunction&
Chris Lattner335d5c32002-10-28 05:58:46 +0000133MachineFunction::construct(const Function *Fn, const TargetMachine &Tar)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000134{
Chris Lattnere316efc2002-10-29 23:18:43 +0000135 assert(Fn->getAnnotation(MF_AID) == 0 &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000136 "Object already exists for this function!");
Chris Lattner335d5c32002-10-28 05:58:46 +0000137 MachineFunction* mcInfo = new MachineFunction(Fn, Tar);
138 Fn->addAnnotation(mcInfo);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000139 return *mcInfo;
140}
141
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000142void
Chris Lattner335d5c32002-10-28 05:58:46 +0000143MachineFunction::destruct(const Function *Fn)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000144{
Chris Lattnere316efc2002-10-29 23:18:43 +0000145 bool Deleted = Fn->deleteAnnotation(MF_AID);
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000146 assert(Deleted && "Machine code did not exist for function!");
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000147}
148
Chris Lattner335d5c32002-10-28 05:58:46 +0000149MachineFunction& MachineFunction::get(const Function *F)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000150{
Chris Lattnere316efc2002-10-29 23:18:43 +0000151 MachineFunction *mc = (MachineFunction*)F->getAnnotation(MF_AID);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000152 assert(mc && "Call construct() method first to allocate the object");
153 return *mc;
154}
155
156static unsigned
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000157ComputeMaxOptionalArgsSize(const TargetMachine& target, const Function *F,
158 unsigned &maxOptionalNumArgs)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000159{
160 const MachineFrameInfo& frameInfo = target.getFrameInfo();
161
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000162 unsigned maxSize = 0;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000163
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000164 for (Function::const_iterator BB = F->begin(), BBE = F->end(); BB !=BBE; ++BB)
165 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
166 if (const CallInst *callInst = dyn_cast<CallInst>(&*I))
167 {
168 unsigned numOperands = callInst->getNumOperands() - 1;
169 int numExtra = (int)numOperands-frameInfo.getNumFixedOutgoingArgs();
170 if (numExtra <= 0)
171 continue;
172
173 unsigned int sizeForThisCall;
174 if (frameInfo.argsOnStackHaveFixedSize())
175 {
176 int argSize = frameInfo.getSizeOfEachArgOnStack();
177 sizeForThisCall = numExtra * (unsigned) argSize;
178 }
179 else
180 {
181 assert(0 && "UNTESTED CODE: Size per stack argument is not "
182 "fixed on this architecture: use actual arg sizes to "
183 "compute MaxOptionalArgsSize");
184 sizeForThisCall = 0;
185 for (unsigned i = 0; i < numOperands; ++i)
Vikram S. Advecde39822002-10-11 16:10:53 +0000186 sizeForThisCall += target.DataLayout.getTypeSize(callInst->
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000187 getOperand(i)->getType());
188 }
189
190 if (maxSize < sizeForThisCall)
191 maxSize = sizeForThisCall;
192
193 if ((int)maxOptionalNumArgs < numExtra)
194 maxOptionalNumArgs = (unsigned) numExtra;
195 }
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000196
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000197 return maxSize;
198}
199
200// Align data larger than one L1 cache line on L1 cache line boundaries.
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000201// Align all smaller data on the next higher 2^x boundary (4, 8, ...),
202// but not higher than the alignment of the largest type we support
203// (currently a double word). -- see class TargetData).
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000204//
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000205// This function is similar to the corresponding function in EmitAssembly.cpp
206// but they are unrelated. This one does not align at more than a
207// double-word boundary whereas that one might.
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000208//
209inline unsigned int
210SizeToAlignment(unsigned int size, const TargetMachine& target)
211{
212 unsigned short cacheLineSize = target.getCacheInfo().getCacheLineSize(1);
213 if (size > (unsigned) cacheLineSize / 2)
214 return cacheLineSize;
215 else
216 for (unsigned sz=1; /*no condition*/; sz *= 2)
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000217 if (sz >= size || sz >= target.DataLayout.getDoubleAlignment())
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000218 return sz;
219}
220
221
Chris Lattner88726182002-10-29 23:40:03 +0000222void MachineFunction::CalculateArgSize() {
223 maxOptionalArgsSize = ComputeMaxOptionalArgsSize(Target, Fn,
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000224 maxOptionalNumArgs);
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000225 staticStackSize = maxOptionalArgsSize
Chris Lattner88726182002-10-29 23:40:03 +0000226 + Target.getFrameInfo().getMinStackFrameSize();
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000227}
228
229int
Misha Brukmanfce11432002-10-28 00:28:31 +0000230MachineFunction::computeOffsetforLocalVar(const TargetMachine& target,
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000231 const Value* val,
Vikram S. Advee4e4d4e2002-03-24 03:39:26 +0000232 unsigned int& getPaddedSize,
Chris Lattner0c0edf82002-07-25 06:17:51 +0000233 unsigned int sizeToUse)
Vikram S. Adve89e2da02002-03-18 03:36:30 +0000234{
Vikram S. Advee4e4d4e2002-03-24 03:39:26 +0000235 if (sizeToUse == 0)
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000236 sizeToUse = target.findOptimalStorageSize(val->getType());
237 unsigned int align = SizeToAlignment(sizeToUse, target);
238
239 bool growUp;
240 int firstOffset = target.getFrameInfo().getFirstAutomaticVarOffset(*this,
241 growUp);
242 int offset = growUp? firstOffset + getAutomaticVarsSize()
243 : firstOffset - (getAutomaticVarsSize() + sizeToUse);
244
245 int aligned = target.getFrameInfo().adjustAlignment(offset, growUp, align);
246 getPaddedSize = sizeToUse + abs(aligned - offset);
247
248 return aligned;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000249}
250
251int
Misha Brukmanfce11432002-10-28 00:28:31 +0000252MachineFunction::allocateLocalVar(const TargetMachine& target,
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000253 const Value* val,
Chris Lattner0c0edf82002-07-25 06:17:51 +0000254 unsigned int sizeToUse)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000255{
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000256 assert(! automaticVarsAreaFrozen &&
257 "Size of auto vars area has been used to compute an offset so "
258 "no more automatic vars should be allocated!");
259
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000260 // Check if we've allocated a stack slot for this value already
261 //
262 int offset = getOffset(val);
263 if (offset == INVALID_FRAME_OFFSET)
264 {
Vikram S. Advee4e4d4e2002-03-24 03:39:26 +0000265 unsigned int getPaddedSize;
Chris Lattner6b944532002-10-28 01:16:38 +0000266 offset = computeOffsetforLocalVar(target, val, getPaddedSize, sizeToUse);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000267 offsets[val] = offset;
Vikram S. Advee4e4d4e2002-03-24 03:39:26 +0000268 incrementAutomaticVarsSize(getPaddedSize);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000269 }
270 return offset;
271}
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000272
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000273int
Misha Brukmanfce11432002-10-28 00:28:31 +0000274MachineFunction::allocateSpilledValue(const TargetMachine& target,
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000275 const Type* type)
276{
Vikram S. Adve03d33bd2002-04-25 04:30:43 +0000277 assert(! spillsAreaFrozen &&
278 "Size of reg spills area has been used to compute an offset so "
279 "no more register spill slots should be allocated!");
280
Vikram S. Advecde39822002-10-11 16:10:53 +0000281 unsigned int size = target.DataLayout.getTypeSize(type);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000282 unsigned char align = target.DataLayout.getTypeAlignment(type);
283
284 bool growUp;
285 int firstOffset = target.getFrameInfo().getRegSpillAreaOffset(*this, growUp);
286
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000287 int offset = growUp? firstOffset + getRegSpillsSize()
288 : firstOffset - (getRegSpillsSize() + size);
289
290 int aligned = target.getFrameInfo().adjustAlignment(offset, growUp, align);
291 size += abs(aligned - offset); // include alignment padding in size
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000292
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000293 incrementRegSpillsSize(size); // update size of reg. spills area
294
295 return aligned;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000296}
297
298int
Misha Brukmanfce11432002-10-28 00:28:31 +0000299MachineFunction::pushTempValue(const TargetMachine& target,
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000300 unsigned int size)
301{
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000302 unsigned int align = SizeToAlignment(size, target);
303
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000304 bool growUp;
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000305 int firstOffset = target.getFrameInfo().getTmpAreaOffset(*this, growUp);
306
307 int offset = growUp? firstOffset + currentTmpValuesSize
308 : firstOffset - (currentTmpValuesSize + size);
309
310 int aligned = target.getFrameInfo().adjustAlignment(offset, growUp, align);
311 size += abs(aligned - offset); // include alignment padding in size
312
313 incrementTmpAreaSize(size); // update "current" size of tmp area
314
315 return aligned;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000316}
317
318void
Misha Brukmanfce11432002-10-28 00:28:31 +0000319MachineFunction::popAllTempValues(const TargetMachine& target)
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000320{
Vikram S. Adve1318bed2002-09-16 15:18:16 +0000321 resetTmpAreaSize(); // clear tmp area to reuse
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000322}
323
324int
Misha Brukmanfce11432002-10-28 00:28:31 +0000325MachineFunction::getOffset(const Value* val) const
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000326{
Chris Lattner09ff1122002-07-24 21:21:32 +0000327 hash_map<const Value*, int>::const_iterator pair = offsets.find(val);
Chris Lattner6b944532002-10-28 01:16:38 +0000328 return (pair == offsets.end()) ? INVALID_FRAME_OFFSET : pair->second;
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000329}