Jim Laskey | 2f616bf | 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 | 4ee451d | 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 | 2f616bf | 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 | |
| 14 | #ifndef PPC_MACHINE_FUNCTION_INFO_H |
| 15 | #define PPC_MACHINE_FUNCTION_INFO_H |
| 16 | |
| 17 | #include "llvm/CodeGen/MachineFunction.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | |
| 21 | /// PPCFunctionInfo - This class is derived from MachineFunction private |
| 22 | /// PowerPC target-specific information for each MachineFunction. |
| 23 | class PPCFunctionInfo : public MachineFunctionInfo { |
David Blaikie | 2d24e2a | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 24 | virtual void anchor(); |
| 25 | |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 26 | /// 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 Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 30 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 31 | /// ReturnAddrSaveIndex - Frame index of where the return address is stored. |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 32 | /// |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 33 | int ReturnAddrSaveIndex; |
| 34 | |
Hal Finkel | fe47bf8 | 2013-07-17 00:45:52 +0000 | [diff] [blame^] | 35 | /// Frame index where the old base pointer is stored. |
| 36 | int BasePointerSaveIndex; |
| 37 | |
Dale Johannesen | c12e581 | 2008-10-24 21:24:23 +0000 | [diff] [blame] | 38 | /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current |
| 39 | /// function. This is only valid after the initial scan of the function by |
| 40 | /// PEI. |
| 41 | bool MustSaveLR; |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 42 | |
Hal Finkel | 0cfb42a | 2013-03-15 05:06:04 +0000 | [diff] [blame] | 43 | /// Does this function have any stack spills. |
| 44 | bool HasSpills; |
| 45 | |
Hal Finkel | 3249729 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 46 | /// Does this function spill using instructions with only r+r (not r+i) |
| 47 | /// forms. |
| 48 | bool HasNonRISpills; |
| 49 | |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 50 | /// SpillsCR - Indicates whether CR is spilled in the current function. |
| 51 | bool SpillsCR; |
| 52 | |
Hal Finkel | 3f2c047 | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 53 | /// Indicates whether VRSAVE is spilled in the current function. |
| 54 | bool SpillsVRSAVE; |
| 55 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 56 | /// LRStoreRequired - The bool indicates whether there is some explicit use of |
| 57 | /// the LR/LR8 stack slot that is not obvious from scanning the code. This |
| 58 | /// requires that the code generator produce a store of LR to the stack on |
| 59 | /// entry, even though LR may otherwise apparently not be used. |
| 60 | bool LRStoreRequired; |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 61 | |
| 62 | /// MinReservedArea - This is the frame size that is at least reserved in a |
| 63 | /// potential caller (parameter+linkage area). |
| 64 | unsigned MinReservedArea; |
| 65 | |
| 66 | /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum |
| 67 | /// amount the stack pointer is adjusted to make the frame bigger for tail |
| 68 | /// calls. Used for creating an area before the register spill area. |
| 69 | int TailCallSPDelta; |
| 70 | |
| 71 | /// HasFastCall - Does this function contain a fast call. Used to determine |
| 72 | /// how the caller's stack pointer should be calculated (epilog/dynamicalloc). |
| 73 | bool HasFastCall; |
| 74 | |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 75 | /// VarArgsFrameIndex - FrameIndex for start of varargs area. |
| 76 | int VarArgsFrameIndex; |
| 77 | /// VarArgsStackOffset - StackOffset for start of stack |
| 78 | /// arguments. |
| 79 | int VarArgsStackOffset; |
| 80 | /// VarArgsNumGPR - Index of the first unused integer |
| 81 | /// register for parameter passing. |
| 82 | unsigned VarArgsNumGPR; |
| 83 | /// VarArgsNumFPR - Index of the first unused double |
| 84 | /// register for parameter passing. |
| 85 | unsigned VarArgsNumFPR; |
| 86 | |
Bill Schmidt | 4edd84d | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 87 | /// CRSpillFrameIndex - FrameIndex for CR spill slot for 32-bit SVR4. |
| 88 | int CRSpillFrameIndex; |
| 89 | |
Hal Finkel | fb6fe0a | 2013-04-15 02:07:05 +0000 | [diff] [blame] | 90 | /// If any of CR[2-4] need to be saved in the prologue and restored in the |
| 91 | /// epilogue then they are added to this array. This is used for the |
| 92 | /// 64-bit SVR4 ABI. |
| 93 | SmallVector<unsigned, 3> MustSaveCRs; |
| 94 | |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 95 | public: |
Dan Gohman | 2392efe | 2009-06-05 23:05:51 +0000 | [diff] [blame] | 96 | explicit PPCFunctionInfo(MachineFunction &MF) |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 97 | : FramePointerSaveIndex(0), |
| 98 | ReturnAddrSaveIndex(0), |
Hal Finkel | fe47bf8 | 2013-07-17 00:45:52 +0000 | [diff] [blame^] | 99 | BasePointerSaveIndex(0), |
Hal Finkel | 0cfb42a | 2013-03-15 05:06:04 +0000 | [diff] [blame] | 100 | HasSpills(false), |
Hal Finkel | 3249729 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 101 | HasNonRISpills(false), |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 102 | SpillsCR(false), |
Hal Finkel | 3f2c047 | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 103 | SpillsVRSAVE(false), |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 104 | LRStoreRequired(false), |
| 105 | MinReservedArea(0), |
| 106 | TailCallSPDelta(0), |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 107 | HasFastCall(false), |
| 108 | VarArgsFrameIndex(0), |
| 109 | VarArgsStackOffset(0), |
| 110 | VarArgsNumGPR(0), |
Bill Schmidt | 4edd84d | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 111 | VarArgsNumFPR(0), |
| 112 | CRSpillFrameIndex(0) {} |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 113 | |
| 114 | int getFramePointerSaveIndex() const { return FramePointerSaveIndex; } |
| 115 | void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; } |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 116 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 117 | int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; } |
| 118 | void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; } |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 119 | |
Hal Finkel | fe47bf8 | 2013-07-17 00:45:52 +0000 | [diff] [blame^] | 120 | int getBasePointerSaveIndex() const { return BasePointerSaveIndex; } |
| 121 | void setBasePointerSaveIndex(int Idx) { BasePointerSaveIndex = Idx; } |
| 122 | |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 123 | unsigned getMinReservedArea() const { return MinReservedArea; } |
| 124 | void setMinReservedArea(unsigned size) { MinReservedArea = size; } |
| 125 | |
| 126 | int getTailCallSPDelta() const { return TailCallSPDelta; } |
| 127 | void setTailCallSPDelta(int size) { TailCallSPDelta = size; } |
| 128 | |
Dale Johannesen | c12e581 | 2008-10-24 21:24:23 +0000 | [diff] [blame] | 129 | /// MustSaveLR - This is set when the prolog/epilog inserter does its initial |
| 130 | /// scan of the function. It is true if the LR/LR8 register is ever explicitly |
| 131 | /// defined/clobbered in the machine function (e.g. by calls and movpctolr, |
| 132 | /// which is used in PIC generation), or if the LR stack slot is explicitly |
| 133 | /// referenced by builtin_return_address. |
| 134 | void setMustSaveLR(bool U) { MustSaveLR = U; } |
| 135 | bool mustSaveLR() const { return MustSaveLR; } |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 136 | |
Hal Finkel | 0cfb42a | 2013-03-15 05:06:04 +0000 | [diff] [blame] | 137 | void setHasSpills() { HasSpills = true; } |
| 138 | bool hasSpills() const { return HasSpills; } |
| 139 | |
Hal Finkel | 3249729 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 140 | void setHasNonRISpills() { HasNonRISpills = true; } |
| 141 | bool hasNonRISpills() const { return HasNonRISpills; } |
| 142 | |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 143 | void setSpillsCR() { SpillsCR = true; } |
| 144 | bool isCRSpilled() const { return SpillsCR; } |
| 145 | |
Hal Finkel | 3f2c047 | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 146 | void setSpillsVRSAVE() { SpillsVRSAVE = true; } |
| 147 | bool isVRSAVESpilled() const { return SpillsVRSAVE; } |
| 148 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 149 | void setLRStoreRequired() { LRStoreRequired = true; } |
| 150 | bool isLRStoreRequired() const { return LRStoreRequired; } |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 151 | |
| 152 | void setHasFastCall() { HasFastCall = true; } |
| 153 | bool hasFastCall() const { return HasFastCall;} |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 154 | |
| 155 | int getVarArgsFrameIndex() const { return VarArgsFrameIndex; } |
| 156 | void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } |
| 157 | |
| 158 | int getVarArgsStackOffset() const { return VarArgsStackOffset; } |
| 159 | void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; } |
| 160 | |
| 161 | unsigned getVarArgsNumGPR() const { return VarArgsNumGPR; } |
| 162 | void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; } |
| 163 | |
| 164 | unsigned getVarArgsNumFPR() const { return VarArgsNumFPR; } |
| 165 | void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; } |
Bill Schmidt | 4edd84d | 2013-02-24 17:34:50 +0000 | [diff] [blame] | 166 | |
| 167 | int getCRSpillFrameIndex() const { return CRSpillFrameIndex; } |
| 168 | void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; } |
Hal Finkel | fb6fe0a | 2013-04-15 02:07:05 +0000 | [diff] [blame] | 169 | |
Craig Topper | a0ec3f9 | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 170 | const SmallVectorImpl<unsigned> & |
Hal Finkel | fb6fe0a | 2013-04-15 02:07:05 +0000 | [diff] [blame] | 171 | getMustSaveCRs() const { return MustSaveCRs; } |
| 172 | void addMustSaveCR(unsigned Reg) { MustSaveCRs.push_back(Reg); } |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | } // end of namespace llvm |
| 176 | |
| 177 | |
Reid Spencer | 24652d1 | 2006-11-25 05:41:02 +0000 | [diff] [blame] | 178 | #endif |