blob: ee18eadf6e5fc5c6848daa78e6a471f653b101c5 [file] [log] [blame]
Jim Laskey2f616bf2006-11-16 22:43:37 +00001//===-- PPCMachineFunctionInfo.h - Private data used for PowerPC --*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskey2f616bf2006-11-16 22:43:37 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the PowerPC specific subclass of MachineFunctionInfo.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef PPC_MACHINE_FUNCTION_INFO_H
15#define PPC_MACHINE_FUNCTION_INFO_H
16
17#include "llvm/CodeGen/MachineFunction.h"
18
19namespace llvm {
20
21/// PPCFunctionInfo - This class is derived from MachineFunction private
22/// PowerPC target-specific information for each MachineFunction.
23class PPCFunctionInfo : public MachineFunctionInfo {
David Blaikie2d24e2a2011-12-20 02:50:00 +000024 virtual void anchor();
25
Jim Laskey2f616bf2006-11-16 22:43:37 +000026 /// FramePointerSaveIndex - Frame index of where the old frame pointer is
27 /// stored. Also used as an anchor for instructions that need to be altered
28 /// when using frame pointers (dyna_add, dyna_sub.)
29 int FramePointerSaveIndex;
Jim Laskeyd313a9b2007-02-27 11:55:45 +000030
Chris Lattner3fc027d2007-12-08 06:59:59 +000031 /// ReturnAddrSaveIndex - Frame index of where the return address is stored.
Jim Laskeyd313a9b2007-02-27 11:55:45 +000032 ///
Chris Lattner3fc027d2007-12-08 06:59:59 +000033 int ReturnAddrSaveIndex;
34
Dale Johannesenc12e5812008-10-24 21:24:23 +000035 /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current
36 /// function. This is only valid after the initial scan of the function by
37 /// PEI.
38 bool MustSaveLR;
Jim Laskey2f616bf2006-11-16 22:43:37 +000039
Hal Finkel0cfb42a2013-03-15 05:06:04 +000040 /// Does this function have any stack spills.
41 bool HasSpills;
42
Hal Finkel32497292013-03-17 04:43:44 +000043 /// Does this function spill using instructions with only r+r (not r+i)
44 /// forms.
45 bool HasNonRISpills;
46
Bill Wendling7194aaf2008-03-03 22:19:16 +000047 /// SpillsCR - Indicates whether CR is spilled in the current function.
48 bool SpillsCR;
49
Hal Finkel3f2c0472013-03-23 22:06:03 +000050 /// Indicates whether VRSAVE is spilled in the current function.
51 bool SpillsVRSAVE;
52
Chris Lattner3fc027d2007-12-08 06:59:59 +000053 /// LRStoreRequired - The bool indicates whether there is some explicit use of
54 /// the LR/LR8 stack slot that is not obvious from scanning the code. This
55 /// requires that the code generator produce a store of LR to the stack on
56 /// entry, even though LR may otherwise apparently not be used.
57 bool LRStoreRequired;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000058
59 /// MinReservedArea - This is the frame size that is at least reserved in a
60 /// potential caller (parameter+linkage area).
61 unsigned MinReservedArea;
62
63 /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum
64 /// amount the stack pointer is adjusted to make the frame bigger for tail
65 /// calls. Used for creating an area before the register spill area.
66 int TailCallSPDelta;
67
68 /// HasFastCall - Does this function contain a fast call. Used to determine
69 /// how the caller's stack pointer should be calculated (epilog/dynamicalloc).
70 bool HasFastCall;
71
Dan Gohman1e93df62010-04-17 14:41:14 +000072 /// VarArgsFrameIndex - FrameIndex for start of varargs area.
73 int VarArgsFrameIndex;
74 /// VarArgsStackOffset - StackOffset for start of stack
75 /// arguments.
76 int VarArgsStackOffset;
77 /// VarArgsNumGPR - Index of the first unused integer
78 /// register for parameter passing.
79 unsigned VarArgsNumGPR;
80 /// VarArgsNumFPR - Index of the first unused double
81 /// register for parameter passing.
82 unsigned VarArgsNumFPR;
83
Bill Schmidt4edd84d2013-02-24 17:34:50 +000084 /// CRSpillFrameIndex - FrameIndex for CR spill slot for 32-bit SVR4.
85 int CRSpillFrameIndex;
86
Jim Laskey2f616bf2006-11-16 22:43:37 +000087public:
Dan Gohman2392efe2009-06-05 23:05:51 +000088 explicit PPCFunctionInfo(MachineFunction &MF)
Bill Wendling7194aaf2008-03-03 22:19:16 +000089 : FramePointerSaveIndex(0),
90 ReturnAddrSaveIndex(0),
Hal Finkel0cfb42a2013-03-15 05:06:04 +000091 HasSpills(false),
Hal Finkel32497292013-03-17 04:43:44 +000092 HasNonRISpills(false),
Bill Wendling7194aaf2008-03-03 22:19:16 +000093 SpillsCR(false),
Hal Finkel3f2c0472013-03-23 22:06:03 +000094 SpillsVRSAVE(false),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000095 LRStoreRequired(false),
96 MinReservedArea(0),
97 TailCallSPDelta(0),
Dan Gohman1e93df62010-04-17 14:41:14 +000098 HasFastCall(false),
99 VarArgsFrameIndex(0),
100 VarArgsStackOffset(0),
101 VarArgsNumGPR(0),
Bill Schmidt4edd84d2013-02-24 17:34:50 +0000102 VarArgsNumFPR(0),
103 CRSpillFrameIndex(0) {}
Jim Laskey2f616bf2006-11-16 22:43:37 +0000104
105 int getFramePointerSaveIndex() const { return FramePointerSaveIndex; }
106 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
Jim Laskeyd313a9b2007-02-27 11:55:45 +0000107
Chris Lattner3fc027d2007-12-08 06:59:59 +0000108 int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; }
109 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000110
111 unsigned getMinReservedArea() const { return MinReservedArea; }
112 void setMinReservedArea(unsigned size) { MinReservedArea = size; }
113
114 int getTailCallSPDelta() const { return TailCallSPDelta; }
115 void setTailCallSPDelta(int size) { TailCallSPDelta = size; }
116
Dale Johannesenc12e5812008-10-24 21:24:23 +0000117 /// MustSaveLR - This is set when the prolog/epilog inserter does its initial
118 /// scan of the function. It is true if the LR/LR8 register is ever explicitly
119 /// defined/clobbered in the machine function (e.g. by calls and movpctolr,
120 /// which is used in PIC generation), or if the LR stack slot is explicitly
121 /// referenced by builtin_return_address.
122 void setMustSaveLR(bool U) { MustSaveLR = U; }
123 bool mustSaveLR() const { return MustSaveLR; }
Jim Laskey2f616bf2006-11-16 22:43:37 +0000124
Hal Finkel0cfb42a2013-03-15 05:06:04 +0000125 void setHasSpills() { HasSpills = true; }
126 bool hasSpills() const { return HasSpills; }
127
Hal Finkel32497292013-03-17 04:43:44 +0000128 void setHasNonRISpills() { HasNonRISpills = true; }
129 bool hasNonRISpills() const { return HasNonRISpills; }
130
Bill Wendling7194aaf2008-03-03 22:19:16 +0000131 void setSpillsCR() { SpillsCR = true; }
132 bool isCRSpilled() const { return SpillsCR; }
133
Hal Finkel3f2c0472013-03-23 22:06:03 +0000134 void setSpillsVRSAVE() { SpillsVRSAVE = true; }
135 bool isVRSAVESpilled() const { return SpillsVRSAVE; }
136
Chris Lattner3fc027d2007-12-08 06:59:59 +0000137 void setLRStoreRequired() { LRStoreRequired = true; }
138 bool isLRStoreRequired() const { return LRStoreRequired; }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000139
140 void setHasFastCall() { HasFastCall = true; }
141 bool hasFastCall() const { return HasFastCall;}
Dan Gohman1e93df62010-04-17 14:41:14 +0000142
143 int getVarArgsFrameIndex() const { return VarArgsFrameIndex; }
144 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
145
146 int getVarArgsStackOffset() const { return VarArgsStackOffset; }
147 void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; }
148
149 unsigned getVarArgsNumGPR() const { return VarArgsNumGPR; }
150 void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; }
151
152 unsigned getVarArgsNumFPR() const { return VarArgsNumFPR; }
153 void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; }
Bill Schmidt4edd84d2013-02-24 17:34:50 +0000154
155 int getCRSpillFrameIndex() const { return CRSpillFrameIndex; }
156 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; }
Jim Laskey2f616bf2006-11-16 22:43:37 +0000157};
158
159} // end of namespace llvm
160
161
Reid Spencer24652d12006-11-25 05:41:02 +0000162#endif