blob: 045b375dd888dabda1ac89a7ab615cf4d2124f45 [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
14#ifndef PPC_MACHINE_FUNCTION_INFO_H
15#define PPC_MACHINE_FUNCTION_INFO_H
16
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
Dale Johannesen3863f8e2008-10-24 21:24:23 +000035 /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current
36 /// function. This is only valid after the initial scan of the function by
37 /// PEI.
38 bool MustSaveLR;
Jim Laskey48850c12006-11-16 22:43:37 +000039
Bill Wendling632ea652008-03-03 22:19:16 +000040 /// SpillsCR - Indicates whether CR is spilled in the current function.
41 bool SpillsCR;
42
Chris Lattnerf6a81562007-12-08 06:59:59 +000043 /// LRStoreRequired - The bool indicates whether there is some explicit use of
44 /// the LR/LR8 stack slot that is not obvious from scanning the code. This
45 /// requires that the code generator produce a store of LR to the stack on
46 /// entry, even though LR may otherwise apparently not be used.
47 bool LRStoreRequired;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000048
49 /// MinReservedArea - This is the frame size that is at least reserved in a
50 /// potential caller (parameter+linkage area).
51 unsigned MinReservedArea;
52
53 /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum
54 /// amount the stack pointer is adjusted to make the frame bigger for tail
55 /// calls. Used for creating an area before the register spill area.
56 int TailCallSPDelta;
57
58 /// HasFastCall - Does this function contain a fast call. Used to determine
59 /// how the caller's stack pointer should be calculated (epilog/dynamicalloc).
60 bool HasFastCall;
61
Dan Gohman31ae5862010-04-17 14:41:14 +000062 /// VarArgsFrameIndex - FrameIndex for start of varargs area.
63 int VarArgsFrameIndex;
64 /// VarArgsStackOffset - StackOffset for start of stack
65 /// arguments.
66 int VarArgsStackOffset;
67 /// VarArgsNumGPR - Index of the first unused integer
68 /// register for parameter passing.
69 unsigned VarArgsNumGPR;
70 /// VarArgsNumFPR - Index of the first unused double
71 /// register for parameter passing.
72 unsigned VarArgsNumFPR;
73
Bill Schmidtc68c6df2013-02-24 17:34:50 +000074 /// CRSpillFrameIndex - FrameIndex for CR spill slot for 32-bit SVR4.
75 int CRSpillFrameIndex;
76
Jim Laskey48850c12006-11-16 22:43:37 +000077public:
Dan Gohmand185a7a2009-06-05 23:05:51 +000078 explicit PPCFunctionInfo(MachineFunction &MF)
Bill Wendling632ea652008-03-03 22:19:16 +000079 : FramePointerSaveIndex(0),
80 ReturnAddrSaveIndex(0),
81 SpillsCR(false),
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000082 LRStoreRequired(false),
83 MinReservedArea(0),
84 TailCallSPDelta(0),
Dan Gohman31ae5862010-04-17 14:41:14 +000085 HasFastCall(false),
86 VarArgsFrameIndex(0),
87 VarArgsStackOffset(0),
88 VarArgsNumGPR(0),
Bill Schmidtc68c6df2013-02-24 17:34:50 +000089 VarArgsNumFPR(0),
90 CRSpillFrameIndex(0) {}
Jim Laskey48850c12006-11-16 22:43:37 +000091
92 int getFramePointerSaveIndex() const { return FramePointerSaveIndex; }
93 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
Jim Laskeyb6e200b2007-02-27 11:55:45 +000094
Chris Lattnerf6a81562007-12-08 06:59:59 +000095 int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; }
96 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +000097
98 unsigned getMinReservedArea() const { return MinReservedArea; }
99 void setMinReservedArea(unsigned size) { MinReservedArea = size; }
100
101 int getTailCallSPDelta() const { return TailCallSPDelta; }
102 void setTailCallSPDelta(int size) { TailCallSPDelta = size; }
103
Dale Johannesen3863f8e2008-10-24 21:24:23 +0000104 /// MustSaveLR - This is set when the prolog/epilog inserter does its initial
105 /// scan of the function. It is true if the LR/LR8 register is ever explicitly
106 /// defined/clobbered in the machine function (e.g. by calls and movpctolr,
107 /// which is used in PIC generation), or if the LR stack slot is explicitly
108 /// referenced by builtin_return_address.
109 void setMustSaveLR(bool U) { MustSaveLR = U; }
110 bool mustSaveLR() const { return MustSaveLR; }
Jim Laskey48850c12006-11-16 22:43:37 +0000111
Bill Wendling632ea652008-03-03 22:19:16 +0000112 void setSpillsCR() { SpillsCR = true; }
113 bool isCRSpilled() const { return SpillsCR; }
114
Chris Lattnerf6a81562007-12-08 06:59:59 +0000115 void setLRStoreRequired() { LRStoreRequired = true; }
116 bool isLRStoreRequired() const { return LRStoreRequired; }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +0000117
118 void setHasFastCall() { HasFastCall = true; }
119 bool hasFastCall() const { return HasFastCall;}
Dan Gohman31ae5862010-04-17 14:41:14 +0000120
121 int getVarArgsFrameIndex() const { return VarArgsFrameIndex; }
122 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
123
124 int getVarArgsStackOffset() const { return VarArgsStackOffset; }
125 void setVarArgsStackOffset(int Offset) { VarArgsStackOffset = Offset; }
126
127 unsigned getVarArgsNumGPR() const { return VarArgsNumGPR; }
128 void setVarArgsNumGPR(unsigned Num) { VarArgsNumGPR = Num; }
129
130 unsigned getVarArgsNumFPR() const { return VarArgsNumFPR; }
131 void setVarArgsNumFPR(unsigned Num) { VarArgsNumFPR = Num; }
Bill Schmidtc68c6df2013-02-24 17:34:50 +0000132
133 int getCRSpillFrameIndex() const { return CRSpillFrameIndex; }
134 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; }
Jim Laskey48850c12006-11-16 22:43:37 +0000135};
136
137} // end of namespace llvm
138
139
Reid Spencer6968c492006-11-25 05:41:02 +0000140#endif