blob: b359dd33bd0e64c72f80257e22a40de37276327d [file] [log] [blame]
Jim Laskey2f616bf2006-11-16 22:43:37 +00001//===-- PPCMachineFunctionInfo.h - Private data used for PowerPC --*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Laskey2f616bf2006-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 {
24private:
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 Laskeyd313a9b2007-02-27 11:55:45 +000029
Chris Lattner3fc027d2007-12-08 06:59:59 +000030 /// ReturnAddrSaveIndex - Frame index of where the return address is stored.
Jim Laskeyd313a9b2007-02-27 11:55:45 +000031 ///
Chris Lattner3fc027d2007-12-08 06:59:59 +000032 int ReturnAddrSaveIndex;
33
Dale Johannesenc12e5812008-10-24 21:24:23 +000034 /// MustSaveLR - Indicates whether LR is defined (or clobbered) in the current
35 /// function. This is only valid after the initial scan of the function by
36 /// PEI.
37 bool MustSaveLR;
Jim Laskey2f616bf2006-11-16 22:43:37 +000038
Bill Wendling7194aaf2008-03-03 22:19:16 +000039 /// SpillsCR - Indicates whether CR is spilled in the current function.
40 bool SpillsCR;
41
Chris Lattner3fc027d2007-12-08 06:59:59 +000042 /// LRStoreRequired - The bool indicates whether there is some explicit use of
43 /// the LR/LR8 stack slot that is not obvious from scanning the code. This
44 /// requires that the code generator produce a store of LR to the stack on
45 /// entry, even though LR may otherwise apparently not be used.
46 bool LRStoreRequired;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000047
48 /// MinReservedArea - This is the frame size that is at least reserved in a
49 /// potential caller (parameter+linkage area).
50 unsigned MinReservedArea;
51
52 /// TailCallSPDelta - Stack pointer delta used when tail calling. Maximum
53 /// amount the stack pointer is adjusted to make the frame bigger for tail
54 /// calls. Used for creating an area before the register spill area.
55 int TailCallSPDelta;
56
57 /// HasFastCall - Does this function contain a fast call. Used to determine
58 /// how the caller's stack pointer should be calculated (epilog/dynamicalloc).
59 bool HasFastCall;
60
Jim Laskey2f616bf2006-11-16 22:43:37 +000061public:
Dan Gohman2392efe2009-06-05 23:05:51 +000062 explicit PPCFunctionInfo(MachineFunction &MF)
Bill Wendling7194aaf2008-03-03 22:19:16 +000063 : FramePointerSaveIndex(0),
64 ReturnAddrSaveIndex(0),
65 SpillsCR(false),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000066 LRStoreRequired(false),
67 MinReservedArea(0),
68 TailCallSPDelta(0),
69 HasFastCall(false) {}
Jim Laskey2f616bf2006-11-16 22:43:37 +000070
71 int getFramePointerSaveIndex() const { return FramePointerSaveIndex; }
72 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
Jim Laskeyd313a9b2007-02-27 11:55:45 +000073
Chris Lattner3fc027d2007-12-08 06:59:59 +000074 int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; }
75 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000076
77 unsigned getMinReservedArea() const { return MinReservedArea; }
78 void setMinReservedArea(unsigned size) { MinReservedArea = size; }
79
80 int getTailCallSPDelta() const { return TailCallSPDelta; }
81 void setTailCallSPDelta(int size) { TailCallSPDelta = size; }
82
Dale Johannesenc12e5812008-10-24 21:24:23 +000083 /// MustSaveLR - This is set when the prolog/epilog inserter does its initial
84 /// scan of the function. It is true if the LR/LR8 register is ever explicitly
85 /// defined/clobbered in the machine function (e.g. by calls and movpctolr,
86 /// which is used in PIC generation), or if the LR stack slot is explicitly
87 /// referenced by builtin_return_address.
88 void setMustSaveLR(bool U) { MustSaveLR = U; }
89 bool mustSaveLR() const { return MustSaveLR; }
Jim Laskey2f616bf2006-11-16 22:43:37 +000090
Bill Wendling7194aaf2008-03-03 22:19:16 +000091 void setSpillsCR() { SpillsCR = true; }
92 bool isCRSpilled() const { return SpillsCR; }
93
Chris Lattner3fc027d2007-12-08 06:59:59 +000094 void setLRStoreRequired() { LRStoreRequired = true; }
95 bool isLRStoreRequired() const { return LRStoreRequired; }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000096
97 void setHasFastCall() { HasFastCall = true; }
98 bool hasFastCall() const { return HasFastCall;}
Jim Laskey2f616bf2006-11-16 22:43:37 +000099};
100
101} // end of namespace llvm
102
103
Reid Spencer24652d12006-11-25 05:41:02 +0000104#endif