Remove dead methods
[oota-llvm.git] / lib / Target / SparcV9 / SparcV9FrameInfo.h
1 //===-- SparcV9FrameInfo.h - Define TargetFrameInfo for SparcV9 -*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // Interface to stack frame layout info for the UltraSPARC.
11 // Starting offsets for each area of the stack frame are aligned at
12 // a multiple of getStackFrameSizeAlignment().
13 //
14 //----------------------------------------------------------------------------
15
16 #ifndef SPARC_FRAMEINFO_H
17 #define SPARC_FRAMEINFO_H
18
19 #include "llvm/Target/TargetFrameInfo.h"
20 #include "llvm/Target/TargetMachine.h"
21 #include "SparcV9RegInfo.h"
22
23 namespace llvm {
24
25 class SparcV9FrameInfo: public TargetFrameInfo {
26   const TargetMachine ⌖
27 public:
28   SparcV9FrameInfo(const TargetMachine &TM)
29     : TargetFrameInfo(StackGrowsDown, StackFrameSizeAlignment, 0), target(TM) {}
30   
31 public:
32   // These methods provide constant parameters of the frame layout.
33   // 
34   int  getStackFrameSizeAlignment() const { return StackFrameSizeAlignment;}
35   int  getMinStackFrameSize()       const { return MinStackFrameSize; }
36   int  getNumFixedOutgoingArgs()    const { return NumFixedOutgoingArgs; }
37   int  getSizeOfEachArgOnStack()    const { return SizeOfEachArgOnStack; }
38   bool argsOnStackHaveFixedSize()   const { return true; }
39
40   // This method adjusts a stack offset to meet alignment rules of target.
41   // The fixed OFFSET (0x7ff) must be subtracted and the result aligned.
42   virtual int  adjustAlignment(int unalignedOffset, bool growUp,
43                                unsigned int align) const {
44     return unalignedOffset + (growUp? +1:-1)*((unalignedOffset-OFFSET) % align);
45   }
46
47   // These methods compute offsets using the frame contents for a
48   // particular function.  The frame contents are obtained from the
49   // MachineCodeInfoForMethod object for the given function.
50   // 
51   int getFirstIncomingArgOffset(MachineFunction& mcInfo, bool& growUp) const {
52     growUp = true;                         // arguments area grows upwards
53     return FirstIncomingArgOffsetFromFP;
54   }
55   int getFirstOutgoingArgOffset(MachineFunction& mcInfo, bool& growUp) const {
56     growUp = true;                         // arguments area grows upwards
57     return FirstOutgoingArgOffsetFromSP;
58   }
59   int getFirstOptionalOutgoingArgOffset(MachineFunction& mcInfo,
60                                         bool& growUp) const {
61     growUp = true;                         // arguments area grows upwards
62     return FirstOptionalOutgoingArgOffsetFromSP;
63   }
64   
65   int getFirstAutomaticVarOffset(MachineFunction& mcInfo, bool& growUp) const;
66   int getRegSpillAreaOffset(MachineFunction& mcInfo, bool& growUp) const;
67   int getTmpAreaOffset(MachineFunction& mcInfo, bool& growUp) const;
68   int getDynamicAreaOffset(MachineFunction& mcInfo, bool& growUp) const;
69
70   virtual int getIncomingArgOffset(MachineFunction& mcInfo, 
71                                    unsigned argNum) const {
72     assert(argsOnStackHaveFixedSize()); 
73   
74     unsigned relativeOffset = argNum * getSizeOfEachArgOnStack();
75     bool growUp;                          // do args grow up or down
76     int firstArg = getFirstIncomingArgOffset(mcInfo, growUp);
77     return growUp ? firstArg + relativeOffset : firstArg - relativeOffset; 
78   }
79
80   virtual int getOutgoingArgOffset(MachineFunction& mcInfo,
81                                    unsigned argNum) const {
82     assert(argsOnStackHaveFixedSize()); 
83     //assert(((int) argNum - this->getNumFixedOutgoingArgs())
84     //     <= (int) mcInfo.getInfo()->getMaxOptionalNumArgs());
85     
86     unsigned relativeOffset = argNum * getSizeOfEachArgOnStack();
87     bool growUp;                          // do args grow up or down
88     int firstArg = getFirstOutgoingArgOffset(mcInfo, growUp);
89     return growUp ? firstArg + relativeOffset : firstArg - relativeOffset; 
90   }
91   
92   /*----------------------------------------------------------------------
93     This diagram shows the stack frame layout used by llc on SparcV9 V9.
94     Note that only the location of automatic variables, spill area,
95     temporary storage, and dynamically allocated stack area are chosen
96     by us.  The rest conform to the SparcV9 V9 ABI.
97     All stack addresses are offset by OFFSET = 0x7ff (2047).
98
99     Alignment assumptions and other invariants:
100     (1) %sp+OFFSET and %fp+OFFSET are always aligned on 16-byte boundary
101     (2) Variables in automatic, spill, temporary, or dynamic regions
102         are aligned according to their size as in all memory accesses.
103     (3) Everything below the dynamically allocated stack area is only used
104         during a call to another function, so it is never needed when
105         the current function is active.  This is why space can be allocated
106         dynamically by incrementing %sp any time within the function.
107     
108     STACK FRAME LAYOUT:
109
110        ...
111        %fp+OFFSET+176      Optional extra incoming arguments# 1..N
112        %fp+OFFSET+168      Incoming argument #6
113        ...                 ...
114        %fp+OFFSET+128      Incoming argument #1
115        ...                 ...
116     ---%fp+OFFSET-0--------Bottom of caller's stack frame--------------------
117        %fp+OFFSET-8        Automatic variables <-- ****TOP OF STACK FRAME****
118                            Spill area
119                            Temporary storage
120        ...
121
122        %sp+OFFSET+176+8N   Bottom of dynamically allocated stack area
123        %sp+OFFSET+168+8N   Optional extra outgoing argument# N
124        ...                 ...
125        %sp+OFFSET+176      Optional extra outgoing argument# 1
126        %sp+OFFSET+168      Outgoing argument #6
127        ...                 ...
128        %sp+OFFSET+128      Outgoing argument #1
129        %sp+OFFSET+120      Save area for %i7
130        ...                 ...
131        %sp+OFFSET+0        Save area for %l0 <-- ****BOTTOM OF STACK FRAME****
132
133    *----------------------------------------------------------------------*/
134
135   // All stack addresses must be offset by 0x7ff (2047) on SparcV9 V9.
136   static const int OFFSET                                  = (int) 0x7ff;
137   static const int StackFrameSizeAlignment                 =  16;
138   static const int MinStackFrameSize                       = 176;
139   static const int NumFixedOutgoingArgs                    =   6;
140   static const int SizeOfEachArgOnStack                    =   8;
141   static const int FirstIncomingArgOffsetFromFP            = 128 + OFFSET;
142   static const int FirstOptionalIncomingArgOffsetFromFP    = 176 + OFFSET;
143   static const int StaticAreaOffsetFromFP                  =   0 + OFFSET;
144   static const int FirstOutgoingArgOffsetFromSP            = 128 + OFFSET;
145   static const int FirstOptionalOutgoingArgOffsetFromSP    = 176 + OFFSET;
146 };
147
148 } // End llvm namespace
149
150 #endif