blob: 37b2ff83c45f8a6711e46cb76896c21108666435 [file] [log] [blame]
Jim Laskey48850c12006-11-16 22:43:37 +00001//===-- PPCMachineFunctionInfo.h - Private data used for PowerPC --*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Laskey48850c12006-11-16 22:43:37 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the PowerPC specific subclass of MachineFunctionInfo.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_POWERPC_PPCMACHINEFUNCTIONINFO_H
15#define LLVM_LIB_TARGET_POWERPC_PPCMACHINEFUNCTIONINFO_H
Jim Laskey48850c12006-11-16 22:43:37 +000016
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 Blaikiea379b1812011-12-20 02:50:00 +000024 virtual void anchor();
25
Jim Laskey48850c12006-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 Laskeyb6e200b2007-02-27 11:55:45 +000030
Chris Lattnerf6a81562007-12-08 06:59:59 +000031 /// ReturnAddrSaveIndex - Frame index of where the return address is stored.
Jim Laskeyb6e200b2007-02-27 11:55:45 +000032 ///
Chris Lattnerf6a81562007-12-08 06:59:59 +000033 int ReturnAddrSaveIndex;
34
Hal Finkela7c54e82013-07-17 00:45:52 +000035 /// Frame index where the old base pointer is stored.
36 int BasePointerSaveIndex;
37
Justin Hibbits654346e2015-01-10 01:57:21 +000038 /// Frame index where the old PIC base pointer is stored.
39 int PICBasePointerSaveIndex;
40
Dale Johannesen3863f8e2008-10-24 21:24:23 +000041 /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current
42 /// function. This is only valid after the initial scan of the function by
43 /// PEI.
44 bool MustSaveLR;
Jim Laskey48850c12006-11-16 22:43:37 +000045
Hal Finkelbb420f12013-03-15 05:06:04 +000046 /// Does this function have any stack spills.
47 bool HasSpills;
48
Hal Finkelfcc51d42013-03-17 04:43:44 +000049 /// Does this function spill using instructions with only r+r (not r+i)
50 /// forms.
51 bool HasNonRISpills;
52
Bill Wendling632ea652008-03-03 22:19:16 +000053 /// SpillsCR - Indicates whether CR is spilled in the current function.
54 bool SpillsCR;
55
Hal Finkelcc1eeda2013-03-23 22:06:03 +000056 /// Indicates whether VRSAVE is spilled in the current function.
57 bool SpillsVRSAVE;
58
Chris Lattnerf6a81562007-12-08 06:59:59 +000059 /// LRStoreRequired - The bool indicates whether there is some explicit use of
60 /// the LR/LR8 stack slot that is not obvious from scanning the code. This
61 /// requires that the code generator produce a store of LR to the stack on
62 /// entry, even though LR may otherwise apparently not be used.
63 bool LRStoreRequired;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000064
65 /// MinReservedArea - This is the frame size that is at least reserved in a
66 /// potential caller (parameter+linkage area).
67 unsigned MinReservedArea;
68
69 /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum
70 /// amount the stack pointer is adjusted to make the frame bigger for tail
71 /// calls. Used for creating an area before the register spill area.
72 int TailCallSPDelta;
73
74 /// HasFastCall - Does this function contain a fast call. Used to determine
75 /// how the caller's stack pointer should be calculated (epilog/dynamicalloc).
76 bool HasFastCall;
77
Dan Gohman31ae5862010-04-17 14:41:14 +000078 /// VarArgsFrameIndex - FrameIndex for start of varargs area.
79 int VarArgsFrameIndex;
80 /// VarArgsStackOffset - StackOffset for start of stack
81 /// arguments.
82 int VarArgsStackOffset;
83 /// VarArgsNumGPR - Index of the first unused integer
84 /// register for parameter passing.
85 unsigned VarArgsNumGPR;
86 /// VarArgsNumFPR - Index of the first unused double
87 /// register for parameter passing.
88 unsigned VarArgsNumFPR;
89
Bill Schmidtc68c6df2013-02-24 17:34:50 +000090 /// CRSpillFrameIndex - FrameIndex for CR spill slot for 32-bit SVR4.
91 int CRSpillFrameIndex;
92
Hal Finkel67369882013-04-15 02:07:05 +000093 /// If any of CR[2-4] need to be saved in the prologue and restored in the
94 /// epilogue then they are added to this array. This is used for the
95 /// 64-bit SVR4 ABI.
96 SmallVector<unsigned, 3> MustSaveCRs;
97
Hal Finkel3ee2af72014-07-18 23:29:49 +000098 /// Hold onto our MachineFunction context.
99 MachineFunction &MF;
100
101 /// Whether this uses the PIC Base register or not.
102 bool UsesPICBase;
103
Jim Laskey48850c12006-11-16 22:43:37 +0000104public:
Dan Gohmand185a7a2009-06-05 23:05:51 +0000105 explicit PPCFunctionInfo(MachineFunction &MF)
Bill Wendling632ea652008-03-03 22:19:16 +0000106 : FramePointerSaveIndex(0),
107 ReturnAddrSaveIndex(0),
Hal Finkela7c54e82013-07-17 00:45:52 +0000108 BasePointerSaveIndex(0),
Justin Hibbits654346e2015-01-10 01:57:21 +0000109 PICBasePointerSaveIndex(0),
Hal Finkelbb420f12013-03-15 05:06:04 +0000110 HasSpills(false),
Hal Finkelfcc51d42013-03-17 04:43:44 +0000111 HasNonRISpills(false),
Bill Wendling632ea652008-03-03 22:19:16 +0000112 SpillsCR(false),
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000113 SpillsVRSAVE(false),
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000114 LRStoreRequired(false),
115 MinReservedArea(0),
116 TailCallSPDelta(0),
Dan Gohman31ae5862010-04-17 14:41:14 +0000117 HasFastCall(false),
118 VarArgsFrameIndex(0),
119 VarArgsStackOffset(0),
120 VarArgsNumGPR(0),
Bill Schmidtc68c6df2013-02-24 17:34:50 +0000121 VarArgsNumFPR(0),
Hal Finkel3ee2af72014-07-18 23:29:49 +0000122 CRSpillFrameIndex(0),
123 MF(MF),
124 UsesPICBase(0) {}
Jim Laskey48850c12006-11-16 22:43:37 +0000125
126 int getFramePointerSaveIndex() const { return FramePointerSaveIndex; }
127 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
Jim Laskeyb6e200b2007-02-27 11:55:45 +0000128
Chris Lattnerf6a81562007-12-08 06:59:59 +0000129 int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; }
130 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000131
Hal Finkela7c54e82013-07-17 00:45:52 +0000132 int getBasePointerSaveIndex() const { return BasePointerSaveIndex; }
133 void setBasePointerSaveIndex(int Idx) { BasePointerSaveIndex = Idx; }
134
Justin Hibbits654346e2015-01-10 01:57:21 +0000135 int getPICBasePointerSaveIndex() const { return PICBasePointerSaveIndex; }
136 void setPICBasePointerSaveIndex(int Idx) { PICBasePointerSaveIndex = Idx; }
137
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000138 unsigned getMinReservedArea() const { return MinReservedArea; }
139 void setMinReservedArea(unsigned size) { MinReservedArea = size; }
140
141 int getTailCallSPDelta() const { return TailCallSPDelta; }
142 void setTailCallSPDelta(int size) { TailCallSPDelta = size; }
143
Dale Johannesen3863f8e2008-10-24 21:24:23 +0000144 /// MustSaveLR - This is set when the prolog/epilog inserter does its initial
145 /// scan of the function. It is true if the LR/LR8 register is ever explicitly
146 /// defined/clobbered in the machine function (e.g. by calls and movpctolr,
147 /// which is used in PIC generation), or if the LR stack slot is explicitly
148 /// referenced by builtin_return_address.
149 void setMustSaveLR(bool U) { MustSaveLR = U; }
150 bool mustSaveLR() const { return MustSaveLR; }
Jim Laskey48850c12006-11-16 22:43:37 +0000151
Hal Finkelbb420f12013-03-15 05:06:04 +0000152 void setHasSpills() { HasSpills = true; }
153 bool hasSpills() const { return HasSpills; }
154
Hal Finkelfcc51d42013-03-17 04:43:44 +0000155 void setHasNonRISpills() { HasNonRISpills = true; }
156 bool hasNonRISpills() const { return HasNonRISpills; }
157
Bill Wendling632ea652008-03-03 22:19:16 +0000158 void setSpillsCR() { SpillsCR = true; }
159 bool isCRSpilled() const { return SpillsCR; }
160
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000161 void setSpillsVRSAVE() { SpillsVRSAVE = true; }
162 bool isVRSAVESpilled() const { return SpillsVRSAVE; }
163
Chris Lattnerf6a81562007-12-08 06:59:59 +0000164 void setLRStoreRequired() { LRStoreRequired = true; }
165 bool isLRStoreRequired() const { return LRStoreRequired; }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000166
167 void setHasFastCall() { HasFastCall = true; }
168 bool hasFastCall() const { return HasFastCall;}
Dan Gohman31ae5862010-04-17 14:41:14 +0000169
170 int getVarArgsFrameIndex() const { return VarArgsFrameIndex; }
171 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
172
173 int getVarArgsStackOffset() const { return VarArgsStackOffset; }
174 void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; }
175
176 unsigned getVarArgsNumGPR() const { return VarArgsNumGPR; }
177 void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; }
178
179 unsigned getVarArgsNumFPR() const { return VarArgsNumFPR; }
180 void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; }
Bill Schmidtc68c6df2013-02-24 17:34:50 +0000181
182 int getCRSpillFrameIndex() const { return CRSpillFrameIndex; }
183 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; }
Hal Finkel67369882013-04-15 02:07:05 +0000184
Craig Topperb94011f2013-07-14 04:42:23 +0000185 const SmallVectorImpl<unsigned> &
Hal Finkel67369882013-04-15 02:07:05 +0000186 getMustSaveCRs() const { return MustSaveCRs; }
187 void addMustSaveCR(unsigned Reg) { MustSaveCRs.push_back(Reg); }
Hal Finkel3ee2af72014-07-18 23:29:49 +0000188
189 void setUsesPICBase(bool uses) { UsesPICBase = uses; }
190 bool usesPICBase() const { return UsesPICBase; }
191
192 MCSymbol *getPICOffsetSymbol() const;
Jim Laskey48850c12006-11-16 22:43:37 +0000193};
194
195} // end of namespace llvm
196
197
Reid Spencer6968c492006-11-25 05:41:02 +0000198#endif