Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 1 | //===-- PPCMachineFunctionInfo.h - Private data used for PowerPC --*- C++ -*-=// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file declares the PowerPC specific subclass of MachineFunctionInfo. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_POWERPC_PPCMACHINEFUNCTIONINFO_H |
| 15 | #define LLVM_LIB_TARGET_POWERPC_PPCMACHINEFUNCTIONINFO_H |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 16 | |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallVector.h" |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunction.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/TargetCallingConv.h" |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 20 | |
| 21 | namespace llvm { |
| 22 | |
| 23 | /// PPCFunctionInfo - This class is derived from MachineFunction private |
| 24 | /// PowerPC target-specific information for each MachineFunction. |
| 25 | class PPCFunctionInfo : public MachineFunctionInfo { |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 26 | virtual void anchor(); |
| 27 | |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 28 | /// FramePointerSaveIndex - Frame index of where the old frame pointer is |
| 29 | /// stored. Also used as an anchor for instructions that need to be altered |
| 30 | /// when using frame pointers (dyna_add, dyna_sub.) |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 31 | int FramePointerSaveIndex = 0; |
Jim Laskey | b6e200b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 32 | |
Chris Lattner | f6a8156 | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 33 | /// ReturnAddrSaveIndex - Frame index of where the return address is stored. |
Jim Laskey | b6e200b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 34 | /// |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 35 | int ReturnAddrSaveIndex = 0; |
Chris Lattner | f6a8156 | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 36 | |
Hal Finkel | a7c54e8 | 2013-07-17 00:45:52 +0000 | [diff] [blame] | 37 | /// Frame index where the old base pointer is stored. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 38 | int BasePointerSaveIndex = 0; |
Hal Finkel | a7c54e8 | 2013-07-17 00:45:52 +0000 | [diff] [blame] | 39 | |
Justin Hibbits | 654346e | 2015-01-10 01:57:21 +0000 | [diff] [blame] | 40 | /// Frame index where the old PIC base pointer is stored. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 41 | int PICBasePointerSaveIndex = 0; |
Justin Hibbits | 654346e | 2015-01-10 01:57:21 +0000 | [diff] [blame] | 42 | |
Dale Johannesen | 3863f8e | 2008-10-24 21:24:23 +0000 | [diff] [blame] | 43 | /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current |
| 44 | /// function. This is only valid after the initial scan of the function by |
| 45 | /// PEI. |
| 46 | bool MustSaveLR; |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 47 | |
Hal Finkel | bb420f1 | 2013-03-15 05:06:04 +0000 | [diff] [blame] | 48 | /// Does this function have any stack spills. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 49 | bool HasSpills = false; |
Hal Finkel | bb420f1 | 2013-03-15 05:06:04 +0000 | [diff] [blame] | 50 | |
Hal Finkel | fcc51d4 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 51 | /// Does this function spill using instructions with only r+r (not r+i) |
| 52 | /// forms. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 53 | bool HasNonRISpills = false; |
Hal Finkel | fcc51d4 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 54 | |
Bill Wendling | 632ea65 | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 55 | /// SpillsCR - Indicates whether CR is spilled in the current function. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 56 | bool SpillsCR = false; |
Bill Wendling | 632ea65 | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 57 | |
Hal Finkel | cc1eeda | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 58 | /// Indicates whether VRSAVE is spilled in the current function. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 59 | bool SpillsVRSAVE = false; |
Hal Finkel | cc1eeda | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 60 | |
Chris Lattner | f6a8156 | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 61 | /// LRStoreRequired - The bool indicates whether there is some explicit use of |
| 62 | /// the LR/LR8 stack slot that is not obvious from scanning the code. This |
| 63 | /// requires that the code generator produce a store of LR to the stack on |
| 64 | /// entry, even though LR may otherwise apparently not be used. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 65 | bool LRStoreRequired = false; |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 66 | |
Hal Finkel | e6698d5 | 2015-02-01 15:03:28 +0000 | [diff] [blame] | 67 | /// This function makes use of the PPC64 ELF TOC base pointer (register r2). |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 68 | bool UsesTOCBasePtr = false; |
Hal Finkel | e6698d5 | 2015-02-01 15:03:28 +0000 | [diff] [blame] | 69 | |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 70 | /// MinReservedArea - This is the frame size that is at least reserved in a |
| 71 | /// potential caller (parameter+linkage area). |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 72 | unsigned MinReservedArea = 0; |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 73 | |
| 74 | /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum |
| 75 | /// amount the stack pointer is adjusted to make the frame bigger for tail |
| 76 | /// calls. Used for creating an area before the register spill area. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 77 | int TailCallSPDelta = 0; |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 78 | |
| 79 | /// HasFastCall - Does this function contain a fast call. Used to determine |
| 80 | /// how the caller's stack pointer should be calculated (epilog/dynamicalloc). |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 81 | bool HasFastCall = false; |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 82 | |
Dan Gohman | 31ae586 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 83 | /// VarArgsFrameIndex - FrameIndex for start of varargs area. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 84 | int VarArgsFrameIndex = 0; |
| 85 | |
Dan Gohman | 31ae586 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 86 | /// VarArgsStackOffset - StackOffset for start of stack |
| 87 | /// arguments. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 88 | |
| 89 | int VarArgsStackOffset = 0; |
| 90 | |
Dan Gohman | 31ae586 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 91 | /// VarArgsNumGPR - Index of the first unused integer |
| 92 | /// register for parameter passing. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 93 | unsigned VarArgsNumGPR = 0; |
| 94 | |
Dan Gohman | 31ae586 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 95 | /// VarArgsNumFPR - Index of the first unused double |
| 96 | /// register for parameter passing. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 97 | unsigned VarArgsNumFPR = 0; |
Dan Gohman | 31ae586 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 98 | |
Bill Schmidt | c68c6df | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 99 | /// CRSpillFrameIndex - FrameIndex for CR spill slot for 32-bit SVR4. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 100 | int CRSpillFrameIndex = 0; |
Bill Schmidt | c68c6df | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 101 | |
Hal Finkel | 6736988 | 2013-04-15 02:07:05 +0000 | [diff] [blame] | 102 | /// If any of CR[2-4] need to be saved in the prologue and restored in the |
| 103 | /// epilogue then they are added to this array. This is used for the |
| 104 | /// 64-bit SVR4 ABI. |
| 105 | SmallVector<unsigned, 3> MustSaveCRs; |
| 106 | |
Hal Finkel | 3ee2af7 | 2014-07-18 23:29:49 +0000 | [diff] [blame] | 107 | /// Hold onto our MachineFunction context. |
| 108 | MachineFunction &MF; |
| 109 | |
| 110 | /// Whether this uses the PIC Base register or not. |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 111 | bool UsesPICBase = false; |
Hal Finkel | 3ee2af7 | 2014-07-18 23:29:49 +0000 | [diff] [blame] | 112 | |
Chuang-Yu Cheng | 98c1894 | 2016-04-08 12:04:32 +0000 | [diff] [blame] | 113 | /// True if this function has a subset of CSRs that is handled explicitly via |
| 114 | /// copies |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 115 | bool IsSplitCSR = false; |
Chuang-Yu Cheng | 98c1894 | 2016-04-08 12:04:32 +0000 | [diff] [blame] | 116 | |
Hiroshi Inoue | e3a3e3c | 2017-10-16 04:12:57 +0000 | [diff] [blame] | 117 | /// We keep track attributes for each live-in virtual registers |
| 118 | /// to use SExt/ZExt flags in later optimization. |
| 119 | std::vector<std::pair<unsigned, ISD::ArgFlagsTy>> LiveInAttrs; |
| 120 | |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 121 | public: |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 122 | explicit PPCFunctionInfo(MachineFunction &MF) : MF(MF) {} |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 123 | |
| 124 | int getFramePointerSaveIndex() const { return FramePointerSaveIndex; } |
| 125 | void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; } |
Jim Laskey | b6e200b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 126 | |
Chris Lattner | f6a8156 | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 127 | int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; } |
| 128 | void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; } |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 129 | |
Hal Finkel | a7c54e8 | 2013-07-17 00:45:52 +0000 | [diff] [blame] | 130 | int getBasePointerSaveIndex() const { return BasePointerSaveIndex; } |
| 131 | void setBasePointerSaveIndex(int Idx) { BasePointerSaveIndex = Idx; } |
| 132 | |
Justin Hibbits | 654346e | 2015-01-10 01:57:21 +0000 | [diff] [blame] | 133 | int getPICBasePointerSaveIndex() const { return PICBasePointerSaveIndex; } |
| 134 | void setPICBasePointerSaveIndex(int Idx) { PICBasePointerSaveIndex = Idx; } |
| 135 | |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 136 | unsigned getMinReservedArea() const { return MinReservedArea; } |
| 137 | void setMinReservedArea(unsigned size) { MinReservedArea = size; } |
| 138 | |
| 139 | int getTailCallSPDelta() const { return TailCallSPDelta; } |
| 140 | void setTailCallSPDelta(int size) { TailCallSPDelta = size; } |
| 141 | |
Dale Johannesen | 3863f8e | 2008-10-24 21:24:23 +0000 | [diff] [blame] | 142 | /// MustSaveLR - This is set when the prolog/epilog inserter does its initial |
| 143 | /// scan of the function. It is true if the LR/LR8 register is ever explicitly |
| 144 | /// defined/clobbered in the machine function (e.g. by calls and movpctolr, |
| 145 | /// which is used in PIC generation), or if the LR stack slot is explicitly |
| 146 | /// referenced by builtin_return_address. |
| 147 | void setMustSaveLR(bool U) { MustSaveLR = U; } |
| 148 | bool mustSaveLR() const { return MustSaveLR; } |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 149 | |
Hal Finkel | bb420f1 | 2013-03-15 05:06:04 +0000 | [diff] [blame] | 150 | void setHasSpills() { HasSpills = true; } |
| 151 | bool hasSpills() const { return HasSpills; } |
| 152 | |
Hal Finkel | fcc51d4 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 153 | void setHasNonRISpills() { HasNonRISpills = true; } |
| 154 | bool hasNonRISpills() const { return HasNonRISpills; } |
| 155 | |
Bill Wendling | 632ea65 | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 156 | void setSpillsCR() { SpillsCR = true; } |
| 157 | bool isCRSpilled() const { return SpillsCR; } |
| 158 | |
Hal Finkel | cc1eeda | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 159 | void setSpillsVRSAVE() { SpillsVRSAVE = true; } |
| 160 | bool isVRSAVESpilled() const { return SpillsVRSAVE; } |
| 161 | |
Chris Lattner | f6a8156 | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 162 | void setLRStoreRequired() { LRStoreRequired = true; } |
| 163 | bool isLRStoreRequired() const { return LRStoreRequired; } |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 164 | |
Hal Finkel | e6698d5 | 2015-02-01 15:03:28 +0000 | [diff] [blame] | 165 | void setUsesTOCBasePtr() { UsesTOCBasePtr = true; } |
| 166 | bool usesTOCBasePtr() const { return UsesTOCBasePtr; } |
| 167 | |
Arnold Schwaighofer | be0de34 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 168 | void setHasFastCall() { HasFastCall = true; } |
| 169 | bool hasFastCall() const { return HasFastCall;} |
Dan Gohman | 31ae586 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 170 | |
| 171 | int getVarArgsFrameIndex() const { return VarArgsFrameIndex; } |
| 172 | void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } |
| 173 | |
| 174 | int getVarArgsStackOffset() const { return VarArgsStackOffset; } |
| 175 | void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; } |
| 176 | |
| 177 | unsigned getVarArgsNumGPR() const { return VarArgsNumGPR; } |
| 178 | void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; } |
| 179 | |
| 180 | unsigned getVarArgsNumFPR() const { return VarArgsNumFPR; } |
| 181 | void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; } |
Bill Schmidt | c68c6df | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 182 | |
Hiroshi Inoue | e3a3e3c | 2017-10-16 04:12:57 +0000 | [diff] [blame] | 183 | /// This function associates attributes for each live-in virtual register. |
| 184 | void addLiveInAttr(unsigned VReg, ISD::ArgFlagsTy Flags) { |
| 185 | LiveInAttrs.push_back(std::make_pair(VReg, Flags)); |
| 186 | } |
| 187 | |
| 188 | /// This function returns true if the spesified vreg is |
| 189 | /// a live-in register and sign-extended. |
| 190 | bool isLiveInSExt(unsigned VReg) const; |
| 191 | |
| 192 | /// This function returns true if the spesified vreg is |
| 193 | /// a live-in register and zero-extended. |
| 194 | bool isLiveInZExt(unsigned VReg) const; |
| 195 | |
Bill Schmidt | c68c6df | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 196 | int getCRSpillFrameIndex() const { return CRSpillFrameIndex; } |
| 197 | void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; } |
Hal Finkel | 6736988 | 2013-04-15 02:07:05 +0000 | [diff] [blame] | 198 | |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 199 | const SmallVectorImpl<unsigned> & |
Hal Finkel | 6736988 | 2013-04-15 02:07:05 +0000 | [diff] [blame] | 200 | getMustSaveCRs() const { return MustSaveCRs; } |
| 201 | void addMustSaveCR(unsigned Reg) { MustSaveCRs.push_back(Reg); } |
Hal Finkel | 3ee2af7 | 2014-07-18 23:29:49 +0000 | [diff] [blame] | 202 | |
| 203 | void setUsesPICBase(bool uses) { UsesPICBase = uses; } |
| 204 | bool usesPICBase() const { return UsesPICBase; } |
| 205 | |
Chuang-Yu Cheng | 98c1894 | 2016-04-08 12:04:32 +0000 | [diff] [blame] | 206 | bool isSplitCSR() const { return IsSplitCSR; } |
| 207 | void setIsSplitCSR(bool s) { IsSplitCSR = s; } |
| 208 | |
Hal Finkel | 3ee2af7 | 2014-07-18 23:29:49 +0000 | [diff] [blame] | 209 | MCSymbol *getPICOffsetSymbol() const; |
Ulrich Weigand | 46ff7ec | 2016-01-13 13:12:23 +0000 | [diff] [blame] | 210 | |
| 211 | MCSymbol *getGlobalEPSymbol() const; |
| 212 | MCSymbol *getLocalEPSymbol() const; |
| 213 | MCSymbol *getTOCOffsetSymbol() const; |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 214 | }; |
| 215 | |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 216 | } // end namespace llvm |
Jim Laskey | 48850c1 | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 217 | |
Eugene Zelenko | 8187c19 | 2017-01-13 00:58:58 +0000 | [diff] [blame] | 218 | #endif // LLVM_LIB_TARGET_POWERPC_PPCMACHINEFUNCTIONINFO_H |