Add new CC lowering rule: provide a list of registers, which can be 'shadowed',
[oota-llvm.git] / include / llvm / CodeGen / CallingConvLower.h
1 //===-- llvm/CallingConvLower.h - Calling Conventions -----------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the CCState and CCValAssign classes, used for lowering
11 // and implementing calling conventions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CODEGEN_CALLINGCONVLOWER_H
16 #define LLVM_CODEGEN_CALLINGCONVLOWER_H
17
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/CodeGen/ValueTypes.h"
20 #include "llvm/CodeGen/SelectionDAGNodes.h"
21
22 namespace llvm {
23   class TargetRegisterInfo;
24   class TargetMachine;
25   class CCState;
26   class SDNode;
27
28 /// CCValAssign - Represent assignment of one arg/retval to a location.
29 class CCValAssign {
30 public:
31   enum LocInfo {
32     Full,   // The value fills the full location.
33     SExt,   // The value is sign extended in the location.
34     ZExt,   // The value is zero extended in the location.
35     AExt    // The value is extended with undefined upper bits.
36     // TODO: a subset of the value is in the location.
37   };
38 private:
39   /// ValNo - This is the value number begin assigned (e.g. an argument number).
40   unsigned ValNo;
41   
42   /// Loc is either a stack offset or a register number.
43   unsigned Loc;
44   
45   /// isMem - True if this is a memory loc, false if it is a register loc.
46   bool isMem : 1;
47   
48   /// Information about how the value is assigned.
49   LocInfo HTP : 7;
50   
51   /// ValVT - The type of the value being assigned.
52   MVT::ValueType ValVT;
53
54   /// LocVT - The type of the location being assigned to.
55   MVT::ValueType LocVT;
56 public:
57     
58   static CCValAssign getReg(unsigned ValNo, MVT::ValueType ValVT,
59                             unsigned RegNo, MVT::ValueType LocVT,
60                             LocInfo HTP) {
61     CCValAssign Ret;
62     Ret.ValNo = ValNo;
63     Ret.Loc = RegNo;
64     Ret.isMem = false;
65     Ret.HTP = HTP;
66     Ret.ValVT = ValVT;
67     Ret.LocVT = LocVT;
68     return Ret;
69   }
70   static CCValAssign getMem(unsigned ValNo, MVT::ValueType ValVT,
71                             unsigned Offset, MVT::ValueType LocVT,
72                             LocInfo HTP) {
73     CCValAssign Ret;
74     Ret.ValNo = ValNo;
75     Ret.Loc = Offset;
76     Ret.isMem = true;
77     Ret.HTP = HTP;
78     Ret.ValVT = ValVT;
79     Ret.LocVT = LocVT;
80     return Ret;
81   }
82   
83   unsigned getValNo() const { return ValNo; }
84   MVT::ValueType getValVT() const { return ValVT; }
85
86   bool isRegLoc() const { return !isMem; }
87   bool isMemLoc() const { return isMem; }
88   
89   unsigned getLocReg() const { assert(isRegLoc()); return Loc; }
90   unsigned getLocMemOffset() const { assert(isMemLoc()); return Loc; }
91   MVT::ValueType getLocVT() const { return LocVT; }
92   
93   LocInfo getLocInfo() const { return HTP; }
94 };
95
96
97 /// CCAssignFn - This function assigns a location for Val, updating State to
98 /// reflect the change.
99 typedef bool CCAssignFn(unsigned ValNo, MVT::ValueType ValVT,
100                         MVT::ValueType LocVT, CCValAssign::LocInfo LocInfo,
101                         ISD::ArgFlagsTy ArgFlags, CCState &State);
102
103   
104 /// CCState - This class holds information needed while lowering arguments and
105 /// return values.  It captures which registers are already assigned and which
106 /// stack slots are used.  It provides accessors to allocate these values.
107 class CCState {
108   unsigned CallingConv;
109   bool IsVarArg;
110   const TargetMachine &TM;
111   const TargetRegisterInfo &TRI;
112   SmallVector<CCValAssign, 16> &Locs;
113   
114   unsigned StackOffset;
115   SmallVector<uint32_t, 16> UsedRegs;
116 public:
117   CCState(unsigned CC, bool isVarArg, const TargetMachine &TM,
118           SmallVector<CCValAssign, 16> &locs);
119   
120   void addLoc(const CCValAssign &V) {
121     Locs.push_back(V);
122   }
123   
124   const TargetMachine &getTarget() const { return TM; }
125   unsigned getCallingConv() const { return CallingConv; }
126   bool isVarArg() const { return IsVarArg; }
127   
128   unsigned getNextStackOffset() const { return StackOffset; }
129
130   /// isAllocated - Return true if the specified register (or an alias) is
131   /// allocated.
132   bool isAllocated(unsigned Reg) const {
133     return UsedRegs[Reg/32] & (1 << (Reg&31));
134   }
135   
136   /// AnalyzeFormalArguments - Analyze an ISD::FORMAL_ARGUMENTS node,
137   /// incorporating info about the formals into this state.
138   void AnalyzeFormalArguments(SDNode *TheArgs, CCAssignFn Fn);
139   
140   /// AnalyzeReturn - Analyze the returned values of an ISD::RET node,
141   /// incorporating info about the result values into this state.
142   void AnalyzeReturn(SDNode *TheRet, CCAssignFn Fn);
143   
144   /// AnalyzeCallOperands - Analyze an ISD::CALL node, incorporating info
145   /// about the passed values into this state.
146   void AnalyzeCallOperands(SDNode *TheCall, CCAssignFn Fn);
147
148   /// AnalyzeCallResult - Analyze the return values of an ISD::CALL node,
149   /// incorporating info about the passed values into this state.
150   void AnalyzeCallResult(SDNode *TheCall, CCAssignFn Fn);
151   
152
153   /// getFirstUnallocated - Return the first unallocated register in the set, or
154   /// NumRegs if they are all allocated.
155   unsigned getFirstUnallocated(const unsigned *Regs, unsigned NumRegs) const {
156     for (unsigned i = 0; i != NumRegs; ++i)
157       if (!isAllocated(Regs[i]))
158         return i;
159     return NumRegs;
160   }
161   
162   /// AllocateReg - Attempt to allocate one register.  If it is not available,
163   /// return zero.  Otherwise, return the register, marking it and any aliases
164   /// as allocated.
165   unsigned AllocateReg(unsigned Reg) {
166     if (isAllocated(Reg)) return 0;
167     MarkAllocated(Reg);
168     return Reg;
169   }
170
171   /// Version of AllocateReg with extra register to be shadowed.
172   unsigned AllocateReg(unsigned Reg, unsigned ShadowReg) {
173     if (isAllocated(Reg)) return 0;
174     MarkAllocated(Reg);
175     MarkAllocated(ShadowReg);
176     return Reg;
177   }
178
179   /// AllocateReg - Attempt to allocate one of the specified registers.  If none
180   /// are available, return zero.  Otherwise, return the first one available,
181   /// marking it and any aliases as allocated.
182   unsigned AllocateReg(const unsigned *Regs, unsigned NumRegs) {
183     unsigned FirstUnalloc = getFirstUnallocated(Regs, NumRegs);
184     if (FirstUnalloc == NumRegs)
185       return 0;    // Didn't find the reg.
186
187     // Mark the register and any aliases as allocated.
188     unsigned Reg = Regs[FirstUnalloc];
189     MarkAllocated(Reg);
190     return Reg;
191   }
192
193   /// Version of AllocateReg with list of registers to be shadowed.
194   unsigned AllocateReg(const unsigned *Regs, const unsigned *ShadowRegs,
195                        unsigned NumRegs) {
196     unsigned FirstUnalloc = getFirstUnallocated(Regs, NumRegs);
197     if (FirstUnalloc == NumRegs)
198       return 0;    // Didn't find the reg.
199
200     // Mark the register and any aliases as allocated.
201     unsigned Reg = Regs[FirstUnalloc], ShadowReg = ShadowRegs[FirstUnalloc];
202     MarkAllocated(Reg);
203     MarkAllocated(ShadowReg);
204     return Reg;
205   }
206
207   /// AllocateStack - Allocate a chunk of stack space with the specified size
208   /// and alignment.
209   unsigned AllocateStack(unsigned Size, unsigned Align) {
210     assert(Align && ((Align-1) & Align) == 0); // Align is power of 2.
211     StackOffset = ((StackOffset + Align-1) & ~(Align-1));
212     unsigned Result = StackOffset;
213     StackOffset += Size;
214     return Result;
215   }
216
217   // HandleByVal - Allocate a stack slot large enough to pass an argument by
218   // value. The size and alignment information of the argument is encoded in its
219   // parameter attribute.
220   void HandleByVal(unsigned ValNo, MVT::ValueType ValVT,
221                    MVT::ValueType LocVT, CCValAssign::LocInfo LocInfo,
222                    int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
223
224 private:
225   /// MarkAllocated - Mark a register and all of its aliases as allocated.
226   void MarkAllocated(unsigned Reg);
227 };
228
229
230
231 } // end namespace llvm
232
233 #endif