blob: 5478455ed49e9509b97a6f9fbe1b2ca33cd46e1e [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
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 Laskeyd313a9b2007-02-27 11:55:45 +000036 bool UsesLR;
Jim Laskey2f616bf2006-11-16 22:43:37 +000037
Bill Wendling7194aaf2008-03-03 22:19:16 +000038 /// SpillsCR - Indicates whether CR is spilled in the current function.
39 bool SpillsCR;
40
Chris Lattner3fc027d2007-12-08 06:59:59 +000041 /// 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;
Jim Laskey2f616bf2006-11-16 22:43:37 +000046public:
Chris Lattner3fc027d2007-12-08 06:59:59 +000047 PPCFunctionInfo(MachineFunction &MF)
Bill Wendling7194aaf2008-03-03 22:19:16 +000048 : FramePointerSaveIndex(0),
49 ReturnAddrSaveIndex(0),
50 SpillsCR(false),
51 LRStoreRequired(false) {}
Jim Laskey2f616bf2006-11-16 22:43:37 +000052
53 int getFramePointerSaveIndex() const { return FramePointerSaveIndex; }
54 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
Jim Laskeyd313a9b2007-02-27 11:55:45 +000055
Chris Lattner3fc027d2007-12-08 06:59:59 +000056 int getReturnAddrSaveIndex() const { return ReturnAddrSaveIndex; }
57 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }
58
Chris Lattner73944fb2007-12-08 06:39:11 +000059 /// UsesLR - This is set when the prolog/epilog inserter does its initial scan
60 /// of the function, it is true if the LR/LR8 register is ever explicitly
61 /// accessed/clobbered in the machine function (e.g. by calls and movpctolr,
62 /// which is used in PIC generation).
Jim Laskeyd313a9b2007-02-27 11:55:45 +000063 void setUsesLR(bool U) { UsesLR = U; }
Chris Lattner73944fb2007-12-08 06:39:11 +000064 bool usesLR() const { return UsesLR; }
Jim Laskey2f616bf2006-11-16 22:43:37 +000065
Bill Wendling7194aaf2008-03-03 22:19:16 +000066 void setSpillsCR() { SpillsCR = true; }
67 bool isCRSpilled() const { return SpillsCR; }
68
Chris Lattner3fc027d2007-12-08 06:59:59 +000069 void setLRStoreRequired() { LRStoreRequired = true; }
70 bool isLRStoreRequired() const { return LRStoreRequired; }
Jim Laskey2f616bf2006-11-16 22:43:37 +000071};
72
73} // end of namespace llvm
74
75
Reid Spencer24652d12006-11-25 05:41:02 +000076#endif