blob: 202e10058b7339af0754ab90d13681935f1529d1 [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
Eugene Zelenko8187c192017-01-13 00:58:58 +000017#include "llvm/ADT/SmallVector.h"
Jim Laskey48850c12006-11-16 22:43:37 +000018#include "llvm/CodeGen/MachineFunction.h"
19
20namespace llvm {
21
22/// PPCFunctionInfo - This class is derived from MachineFunction private
23/// PowerPC target-specific information for each MachineFunction.
24class PPCFunctionInfo : public MachineFunctionInfo {
David Blaikiea379b1812011-12-20 02:50:00 +000025 virtual void anchor();
26
Jim Laskey48850c12006-11-16 22:43:37 +000027 /// FramePointerSaveIndex - Frame index of where the old frame pointer is
28 /// stored. Also used as an anchor for instructions that need to be altered
29 /// when using frame pointers (dyna_add, dyna_sub.)
Eugene Zelenko8187c192017-01-13 00:58:58 +000030 int FramePointerSaveIndex = 0;
Jim Laskeyb6e200b2007-02-27 11:55:45 +000031
Chris Lattnerf6a81562007-12-08 06:59:59 +000032 /// ReturnAddrSaveIndex - Frame index of where the return address is stored.
Jim Laskeyb6e200b2007-02-27 11:55:45 +000033 ///
Eugene Zelenko8187c192017-01-13 00:58:58 +000034 int ReturnAddrSaveIndex = 0;
Chris Lattnerf6a81562007-12-08 06:59:59 +000035
Hal Finkela7c54e82013-07-17 00:45:52 +000036 /// Frame index where the old base pointer is stored.
Eugene Zelenko8187c192017-01-13 00:58:58 +000037 int BasePointerSaveIndex = 0;
Hal Finkela7c54e82013-07-17 00:45:52 +000038
Justin Hibbits654346e2015-01-10 01:57:21 +000039 /// Frame index where the old PIC base pointer is stored.
Eugene Zelenko8187c192017-01-13 00:58:58 +000040 int PICBasePointerSaveIndex = 0;
Justin Hibbits654346e2015-01-10 01:57:21 +000041
Dale Johannesen3863f8e2008-10-24 21:24:23 +000042 /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current
43 /// function. This is only valid after the initial scan of the function by
44 /// PEI.
45 bool MustSaveLR;
Jim Laskey48850c12006-11-16 22:43:37 +000046
Hal Finkelbb420f12013-03-15 05:06:04 +000047 /// Does this function have any stack spills.
Eugene Zelenko8187c192017-01-13 00:58:58 +000048 bool HasSpills = false;
Hal Finkelbb420f12013-03-15 05:06:04 +000049
Hal Finkelfcc51d42013-03-17 04:43:44 +000050 /// Does this function spill using instructions with only r+r (not r+i)
51 /// forms.
Eugene Zelenko8187c192017-01-13 00:58:58 +000052 bool HasNonRISpills = false;
Hal Finkelfcc51d42013-03-17 04:43:44 +000053
Bill Wendling632ea652008-03-03 22:19:16 +000054 /// SpillsCR - Indicates whether CR is spilled in the current function.
Eugene Zelenko8187c192017-01-13 00:58:58 +000055 bool SpillsCR = false;
Bill Wendling632ea652008-03-03 22:19:16 +000056
Hal Finkelcc1eeda2013-03-23 22:06:03 +000057 /// Indicates whether VRSAVE is spilled in the current function.
Eugene Zelenko8187c192017-01-13 00:58:58 +000058 bool SpillsVRSAVE = false;
Hal Finkelcc1eeda2013-03-23 22:06:03 +000059
Chris Lattnerf6a81562007-12-08 06:59:59 +000060 /// LRStoreRequired - The bool indicates whether there is some explicit use of
61 /// the LR/LR8 stack slot that is not obvious from scanning the code. This
62 /// requires that the code generator produce a store of LR to the stack on
63 /// entry, even though LR may otherwise apparently not be used.
Eugene Zelenko8187c192017-01-13 00:58:58 +000064 bool LRStoreRequired = false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000065
Hal Finkele6698d52015-02-01 15:03:28 +000066 /// This function makes use of the PPC64 ELF TOC base pointer (register r2).
Eugene Zelenko8187c192017-01-13 00:58:58 +000067 bool UsesTOCBasePtr = false;
Hal Finkele6698d52015-02-01 15:03:28 +000068
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000069 /// MinReservedArea - This is the frame size that is at least reserved in a
70 /// potential caller (parameter+linkage area).
Eugene Zelenko8187c192017-01-13 00:58:58 +000071 unsigned MinReservedArea = 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000072
73 /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum
74 /// amount the stack pointer is adjusted to make the frame bigger for tail
75 /// calls. Used for creating an area before the register spill area.
Eugene Zelenko8187c192017-01-13 00:58:58 +000076 int TailCallSPDelta = 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000077
78 /// HasFastCall - Does this function contain a fast call. Used to determine
79 /// how the caller's stack pointer should be calculated (epilog/dynamicalloc).
Eugene Zelenko8187c192017-01-13 00:58:58 +000080 bool HasFastCall = false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000081
Dan Gohman31ae5862010-04-17 14:41:14 +000082 /// VarArgsFrameIndex - FrameIndex for start of varargs area.
Eugene Zelenko8187c192017-01-13 00:58:58 +000083 int VarArgsFrameIndex = 0;
84
Dan Gohman31ae5862010-04-17 14:41:14 +000085 /// VarArgsStackOffset - StackOffset for start of stack
86 /// arguments.
Eugene Zelenko8187c192017-01-13 00:58:58 +000087
88 int VarArgsStackOffset = 0;
89
Dan Gohman31ae5862010-04-17 14:41:14 +000090 /// VarArgsNumGPR - Index of the first unused integer
91 /// register for parameter passing.
Eugene Zelenko8187c192017-01-13 00:58:58 +000092 unsigned VarArgsNumGPR = 0;
93
Dan Gohman31ae5862010-04-17 14:41:14 +000094 /// VarArgsNumFPR - Index of the first unused double
95 /// register for parameter passing.
Eugene Zelenko8187c192017-01-13 00:58:58 +000096 unsigned VarArgsNumFPR = 0;
Dan Gohman31ae5862010-04-17 14:41:14 +000097
Bill Schmidtc68c6df2013-02-24 17:34:50 +000098 /// CRSpillFrameIndex - FrameIndex for CR spill slot for 32-bit SVR4.
Eugene Zelenko8187c192017-01-13 00:58:58 +000099 int CRSpillFrameIndex = 0;
Bill Schmidtc68c6df2013-02-24 17:34:50 +0000100
Hal Finkel67369882013-04-15 02:07:05 +0000101 /// If any of CR[2-4] need to be saved in the prologue and restored in the
102 /// epilogue then they are added to this array. This is used for the
103 /// 64-bit SVR4 ABI.
104 SmallVector<unsigned, 3> MustSaveCRs;
105
Hal Finkel3ee2af72014-07-18 23:29:49 +0000106 /// Hold onto our MachineFunction context.
107 MachineFunction &MF;
108
109 /// Whether this uses the PIC Base register or not.
Eugene Zelenko8187c192017-01-13 00:58:58 +0000110 bool UsesPICBase = false;
Hal Finkel3ee2af72014-07-18 23:29:49 +0000111
Chuang-Yu Cheng98c18942016-04-08 12:04:32 +0000112 /// True if this function has a subset of CSRs that is handled explicitly via
113 /// copies
Eugene Zelenko8187c192017-01-13 00:58:58 +0000114 bool IsSplitCSR = false;
Chuang-Yu Cheng98c18942016-04-08 12:04:32 +0000115
Jim Laskey48850c12006-11-16 22:43:37 +0000116public:
Eugene Zelenko8187c192017-01-13 00:58:58 +0000117 explicit PPCFunctionInfo(MachineFunction &MF) : MF(MF) {}
Jim Laskey48850c12006-11-16 22:43:37 +0000118
119 int getFramePointerSaveIndex() const { return FramePointerSaveIndex; }
120 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
Jim Laskeyb6e200b2007-02-27 11:55:45 +0000121
Chris Lattnerf6a81562007-12-08 06:59:59 +0000122 int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; }
123 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000124
Hal Finkela7c54e82013-07-17 00:45:52 +0000125 int getBasePointerSaveIndex() const { return BasePointerSaveIndex; }
126 void setBasePointerSaveIndex(int Idx) { BasePointerSaveIndex = Idx; }
127
Justin Hibbits654346e2015-01-10 01:57:21 +0000128 int getPICBasePointerSaveIndex() const { return PICBasePointerSaveIndex; }
129 void setPICBasePointerSaveIndex(int Idx) { PICBasePointerSaveIndex = Idx; }
130
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000131 unsigned getMinReservedArea() const { return MinReservedArea; }
132 void setMinReservedArea(unsigned size) { MinReservedArea = size; }
133
134 int getTailCallSPDelta() const { return TailCallSPDelta; }
135 void setTailCallSPDelta(int size) { TailCallSPDelta = size; }
136
Dale Johannesen3863f8e2008-10-24 21:24:23 +0000137 /// MustSaveLR - This is set when the prolog/epilog inserter does its initial
138 /// scan of the function. It is true if the LR/LR8 register is ever explicitly
139 /// defined/clobbered in the machine function (e.g. by calls and movpctolr,
140 /// which is used in PIC generation), or if the LR stack slot is explicitly
141 /// referenced by builtin_return_address.
142 void setMustSaveLR(bool U) { MustSaveLR = U; }
143 bool mustSaveLR() const { return MustSaveLR; }
Jim Laskey48850c12006-11-16 22:43:37 +0000144
Hal Finkelbb420f12013-03-15 05:06:04 +0000145 void setHasSpills() { HasSpills = true; }
146 bool hasSpills() const { return HasSpills; }
147
Hal Finkelfcc51d42013-03-17 04:43:44 +0000148 void setHasNonRISpills() { HasNonRISpills = true; }
149 bool hasNonRISpills() const { return HasNonRISpills; }
150
Bill Wendling632ea652008-03-03 22:19:16 +0000151 void setSpillsCR() { SpillsCR = true; }
152 bool isCRSpilled() const { return SpillsCR; }
153
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000154 void setSpillsVRSAVE() { SpillsVRSAVE = true; }
155 bool isVRSAVESpilled() const { return SpillsVRSAVE; }
156
Chris Lattnerf6a81562007-12-08 06:59:59 +0000157 void setLRStoreRequired() { LRStoreRequired = true; }
158 bool isLRStoreRequired() const { return LRStoreRequired; }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000159
Hal Finkele6698d52015-02-01 15:03:28 +0000160 void setUsesTOCBasePtr() { UsesTOCBasePtr = true; }
161 bool usesTOCBasePtr() const { return UsesTOCBasePtr; }
162
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000163 void setHasFastCall() { HasFastCall = true; }
164 bool hasFastCall() const { return HasFastCall;}
Dan Gohman31ae5862010-04-17 14:41:14 +0000165
166 int getVarArgsFrameIndex() const { return VarArgsFrameIndex; }
167 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
168
169 int getVarArgsStackOffset() const { return VarArgsStackOffset; }
170 void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; }
171
172 unsigned getVarArgsNumGPR() const { return VarArgsNumGPR; }
173 void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; }
174
175 unsigned getVarArgsNumFPR() const { return VarArgsNumFPR; }
176 void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; }
Bill Schmidtc68c6df2013-02-24 17:34:50 +0000177
178 int getCRSpillFrameIndex() const { return CRSpillFrameIndex; }
179 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; }
Hal Finkel67369882013-04-15 02:07:05 +0000180
Craig Topperb94011f2013-07-14 04:42:23 +0000181 const SmallVectorImpl<unsigned> &
Hal Finkel67369882013-04-15 02:07:05 +0000182 getMustSaveCRs() const { return MustSaveCRs; }
183 void addMustSaveCR(unsigned Reg) { MustSaveCRs.push_back(Reg); }
Hal Finkel3ee2af72014-07-18 23:29:49 +0000184
185 void setUsesPICBase(bool uses) { UsesPICBase = uses; }
186 bool usesPICBase() const { return UsesPICBase; }
187
Chuang-Yu Cheng98c18942016-04-08 12:04:32 +0000188 bool isSplitCSR() const { return IsSplitCSR; }
189 void setIsSplitCSR(bool s) { IsSplitCSR = s; }
190
Hal Finkel3ee2af72014-07-18 23:29:49 +0000191 MCSymbol *getPICOffsetSymbol() const;
Ulrich Weigand46ff7ec2016-01-13 13:12:23 +0000192
193 MCSymbol *getGlobalEPSymbol() const;
194 MCSymbol *getLocalEPSymbol() const;
195 MCSymbol *getTOCOffsetSymbol() const;
Jim Laskey48850c12006-11-16 22:43:37 +0000196};
197
Eugene Zelenko8187c192017-01-13 00:58:58 +0000198} // end namespace llvm
Jim Laskey48850c12006-11-16 22:43:37 +0000199
Eugene Zelenko8187c192017-01-13 00:58:58 +0000200#endif // LLVM_LIB_TARGET_POWERPC_PPCMACHINEFUNCTIONINFO_H