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 { |
| 24 | private: |
| 25 | /// FramePointerSaveIndex - Frame index of where the old frame pointer is |
| 26 | /// stored. Also used as an anchor for instructions that need to be altered |
| 27 | /// when using frame pointers (dyna_add, dyna_sub.) |
| 28 | int FramePointerSaveIndex; |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 29 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 30 | /// ReturnAddrSaveIndex - Frame index of where the return address is stored. |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 31 | /// |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 32 | int ReturnAddrSaveIndex; |
| 33 | |
| 34 | /// UsesLR - Indicates whether LR is used in the current function. This is |
| 35 | /// only valid after the initial scan of the function by PEI. |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 36 | bool UsesLR; |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 37 | |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 38 | /// SpillsCR - Indicates whether CR is spilled in the current function. |
| 39 | bool SpillsCR; |
| 40 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 41 | /// LRStoreRequired - The bool indicates whether there is some explicit use of |
| 42 | /// the LR/LR8 stack slot that is not obvious from scanning the code. This |
| 43 | /// requires that the code generator produce a store of LR to the stack on |
| 44 | /// entry, even though LR may otherwise apparently not be used. |
| 45 | bool LRStoreRequired; |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 46 | |
| 47 | /// MinReservedArea - This is the frame size that is at least reserved in a |
| 48 | /// potential caller (parameter+linkage area). |
| 49 | unsigned MinReservedArea; |
| 50 | |
| 51 | /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum |
| 52 | /// amount the stack pointer is adjusted to make the frame bigger for tail |
| 53 | /// calls. Used for creating an area before the register spill area. |
| 54 | int TailCallSPDelta; |
| 55 | |
| 56 | /// HasFastCall - Does this function contain a fast call. Used to determine |
| 57 | /// how the caller's stack pointer should be calculated (epilog/dynamicalloc). |
| 58 | bool HasFastCall; |
| 59 | |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 60 | public: |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 61 | PPCFunctionInfo(MachineFunction &MF) |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 62 | : FramePointerSaveIndex(0), |
| 63 | ReturnAddrSaveIndex(0), |
| 64 | SpillsCR(false), |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 65 | LRStoreRequired(false), |
| 66 | MinReservedArea(0), |
| 67 | TailCallSPDelta(0), |
| 68 | HasFastCall(false) {} |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 69 | |
| 70 | int getFramePointerSaveIndex() const { return FramePointerSaveIndex; } |
| 71 | void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; } |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 73 | int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; } |
| 74 | void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; } |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 75 | |
| 76 | unsigned getMinReservedArea() const { return MinReservedArea; } |
| 77 | void setMinReservedArea(unsigned size) { MinReservedArea = size; } |
| 78 | |
| 79 | int getTailCallSPDelta() const { return TailCallSPDelta; } |
| 80 | void setTailCallSPDelta(int size) { TailCallSPDelta = size; } |
| 81 | |
Chris Lattner | 73944fb | 2007-12-08 06:39:11 +0000 | [diff] [blame] | 82 | /// UsesLR - This is set when the prolog/epilog inserter does its initial scan |
| 83 | /// of the function, it is true if the LR/LR8 register is ever explicitly |
| 84 | /// accessed/clobbered in the machine function (e.g. by calls and movpctolr, |
| 85 | /// which is used in PIC generation). |
Jim Laskey | d313a9b | 2007-02-27 11:55:45 +0000 | [diff] [blame] | 86 | void setUsesLR(bool U) { UsesLR = U; } |
Chris Lattner | 73944fb | 2007-12-08 06:39:11 +0000 | [diff] [blame] | 87 | bool usesLR() const { return UsesLR; } |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 88 | |
Bill Wendling | 7194aaf | 2008-03-03 22:19:16 +0000 | [diff] [blame] | 89 | void setSpillsCR() { SpillsCR = true; } |
| 90 | bool isCRSpilled() const { return SpillsCR; } |
| 91 | |
Chris Lattner | 3fc027d | 2007-12-08 06:59:59 +0000 | [diff] [blame] | 92 | void setLRStoreRequired() { LRStoreRequired = true; } |
| 93 | bool isLRStoreRequired() const { return LRStoreRequired; } |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 94 | |
| 95 | void setHasFastCall() { HasFastCall = true; } |
| 96 | bool hasFastCall() const { return HasFastCall;} |
Jim Laskey | 2f616bf | 2006-11-16 22:43:37 +0000 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | } // end of namespace llvm |
| 100 | |
| 101 | |
Reid Spencer | 24652d1 | 2006-11-25 05:41:02 +0000 | [diff] [blame] | 102 | #endif |