Remove tabs.
[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/MachineFunction.h"
20 #include "llvm/CodeGen/ValueTypes.h"
21 #include "llvm/Target/TargetCallingConv.h"
22 #include "llvm/CallingConv.h"
23
24 namespace llvm {
25   class TargetRegisterInfo;
26   class TargetMachine;
27   class CCState;
28
29 /// CCValAssign - Represent assignment of one arg/retval to a location.
30 class CCValAssign {
31 public:
32   enum LocInfo {
33     Full,   // The value fills the full location.
34     SExt,   // The value is sign extended in the location.
35     ZExt,   // The value is zero extended in the location.
36     AExt,   // The value is extended with undefined upper bits.
37     BCvt,   // The value is bit-converted in the location.
38     VExt,   // The value is vector-widened in the location.
39             // FIXME: Not implemented yet. Code that uses AExt to mean
40             // vector-widen should be fixed to use VExt instead.
41     Indirect // The location contains pointer to the value.
42     // TODO: a subset of the value is in the location.
43   };
44 private:
45   /// ValNo - This is the value number begin assigned (e.g. an argument number).
46   unsigned ValNo;
47
48   /// Loc is either a stack offset or a register number.
49   unsigned Loc;
50
51   /// isMem - True if this is a memory loc, false if it is a register loc.
52   bool isMem : 1;
53
54   /// isCustom - True if this arg/retval requires special handling.
55   bool isCustom : 1;
56
57   /// Information about how the value is assigned.
58   LocInfo HTP : 6;
59
60   /// ValVT - The type of the value being assigned.
61   MVT ValVT;
62
63   /// LocVT - The type of the location being assigned to.
64   MVT LocVT;
65 public:
66
67   static CCValAssign getReg(unsigned ValNo, MVT ValVT,
68                             unsigned RegNo, MVT LocVT,
69                             LocInfo HTP) {
70     CCValAssign Ret;
71     Ret.ValNo = ValNo;
72     Ret.Loc = RegNo;
73     Ret.isMem = false;
74     Ret.isCustom = false;
75     Ret.HTP = HTP;
76     Ret.ValVT = ValVT;
77     Ret.LocVT = LocVT;
78     return Ret;
79   }
80
81   static CCValAssign getCustomReg(unsigned ValNo, MVT ValVT,
82                                   unsigned RegNo, MVT LocVT,
83                                   LocInfo HTP) {
84     CCValAssign Ret;
85     Ret = getReg(ValNo, ValVT, RegNo, LocVT, HTP);
86     Ret.isCustom = true;
87     return Ret;
88   }
89
90   static CCValAssign getMem(unsigned ValNo, MVT ValVT,
91                             unsigned Offset, MVT LocVT,
92                             LocInfo HTP) {
93     CCValAssign Ret;
94     Ret.ValNo = ValNo;
95     Ret.Loc = Offset;
96     Ret.isMem = true;
97     Ret.isCustom = false;
98     Ret.HTP = HTP;
99     Ret.ValVT = ValVT;
100     Ret.LocVT = LocVT;
101     return Ret;
102   }
103
104   static CCValAssign getCustomMem(unsigned ValNo, MVT ValVT,
105                                   unsigned Offset, MVT LocVT,
106                                   LocInfo HTP) {
107     CCValAssign Ret;
108     Ret = getMem(ValNo, ValVT, Offset, LocVT, HTP);
109     Ret.isCustom = true;
110     return Ret;
111   }
112
113   unsigned getValNo() const { return ValNo; }
114   MVT getValVT() const { return ValVT; }
115
116   bool isRegLoc() const { return !isMem; }
117   bool isMemLoc() const { return isMem; }
118
119   bool needsCustom() const { return isCustom; }
120
121   unsigned getLocReg() const { assert(isRegLoc()); return Loc; }
122   unsigned getLocMemOffset() const { assert(isMemLoc()); return Loc; }
123   MVT getLocVT() const { return LocVT; }
124
125   LocInfo getLocInfo() const { return HTP; }
126   bool isExtInLoc() const {
127     return (HTP == AExt || HTP == SExt || HTP == ZExt);
128   }
129
130 };
131
132 /// CCAssignFn - This function assigns a location for Val, updating State to
133 /// reflect the change.  It returns 'true' if it failed to handle Val.
134 typedef bool CCAssignFn(unsigned ValNo, MVT ValVT,
135                         MVT LocVT, CCValAssign::LocInfo LocInfo,
136                         ISD::ArgFlagsTy ArgFlags, CCState &State);
137
138 /// CCCustomFn - This function assigns a location for Val, possibly updating
139 /// all args to reflect changes and indicates if it handled it. It must set
140 /// isCustom if it handles the arg and returns true.
141 typedef bool CCCustomFn(unsigned &ValNo, MVT &ValVT,
142                         MVT &LocVT, CCValAssign::LocInfo &LocInfo,
143                         ISD::ArgFlagsTy &ArgFlags, CCState &State);
144
145 typedef enum { Invalid, Prologue, Call } ParmContext;
146
147 /// CCState - This class holds information needed while lowering arguments and
148 /// return values.  It captures which registers are already assigned and which
149 /// stack slots are used.  It provides accessors to allocate these values.
150 class CCState {
151   CallingConv::ID CallingConv;
152   bool IsVarArg;
153   MachineFunction &MF;
154   const TargetMachine &TM;
155   const TargetRegisterInfo &TRI;
156   SmallVector<CCValAssign, 16> &Locs;
157   LLVMContext &Context;
158
159   unsigned StackOffset;
160   SmallVector<uint32_t, 16> UsedRegs;
161   unsigned FirstByValReg;
162   bool FirstByValRegValid;
163   ParmContext CallOrPrologue;
164 public:
165   CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
166           const TargetMachine &TM, SmallVector<CCValAssign, 16> &locs,
167           LLVMContext &C);
168
169   void addLoc(const CCValAssign &V) {
170     Locs.push_back(V);
171   }
172
173   LLVMContext &getContext() const { return Context; }
174   const TargetMachine &getTarget() const { return TM; }
175   MachineFunction &getMachineFunction() const { return MF; }
176   CallingConv::ID getCallingConv() const { return CallingConv; }
177   bool isVarArg() const { return IsVarArg; }
178
179   unsigned getNextStackOffset() const { return StackOffset; }
180
181   /// isAllocated - Return true if the specified register (or an alias) is
182   /// allocated.
183   bool isAllocated(unsigned Reg) const {
184     return UsedRegs[Reg/32] & (1 << (Reg&31));
185   }
186
187   /// AnalyzeFormalArguments - Analyze an array of argument values,
188   /// incorporating info about the formals into this state.
189   void AnalyzeFormalArguments(const SmallVectorImpl<ISD::InputArg> &Ins,
190                               CCAssignFn Fn);
191
192   /// AnalyzeReturn - Analyze the returned values of a return,
193   /// incorporating info about the result values into this state.
194   void AnalyzeReturn(const SmallVectorImpl<ISD::OutputArg> &Outs,
195                      CCAssignFn Fn);
196
197   /// CheckReturn - Analyze the return values of a function, returning
198   /// true if the return can be performed without sret-demotion, and
199   /// false otherwise.
200   bool CheckReturn(const SmallVectorImpl<ISD::OutputArg> &ArgsFlags,
201                    CCAssignFn Fn);
202
203   /// AnalyzeCallOperands - Analyze the outgoing arguments to a call,
204   /// incorporating info about the passed values into this state.
205   void AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
206                            CCAssignFn Fn);
207
208   /// AnalyzeCallOperands - Same as above except it takes vectors of types
209   /// and argument flags.
210   void AnalyzeCallOperands(SmallVectorImpl<MVT> &ArgVTs,
211                            SmallVectorImpl<ISD::ArgFlagsTy> &Flags,
212                            CCAssignFn Fn);
213
214   /// AnalyzeCallResult - Analyze the return values of a call,
215   /// incorporating info about the passed values into this state.
216   void AnalyzeCallResult(const SmallVectorImpl<ISD::InputArg> &Ins,
217                          CCAssignFn Fn);
218
219   /// AnalyzeCallResult - Same as above except it's specialized for calls which
220   /// produce a single value.
221   void AnalyzeCallResult(MVT VT, CCAssignFn Fn);
222
223   /// getFirstUnallocated - Return the first unallocated register in the set, or
224   /// NumRegs if they are all allocated.
225   unsigned getFirstUnallocated(const unsigned *Regs, unsigned NumRegs) const {
226     for (unsigned i = 0; i != NumRegs; ++i)
227       if (!isAllocated(Regs[i]))
228         return i;
229     return NumRegs;
230   }
231
232   /// AllocateReg - Attempt to allocate one register.  If it is not available,
233   /// return zero.  Otherwise, return the register, marking it and any aliases
234   /// as allocated.
235   unsigned AllocateReg(unsigned Reg) {
236     if (isAllocated(Reg)) return 0;
237     MarkAllocated(Reg);
238     return Reg;
239   }
240
241   /// Version of AllocateReg with extra register to be shadowed.
242   unsigned AllocateReg(unsigned Reg, unsigned ShadowReg) {
243     if (isAllocated(Reg)) return 0;
244     MarkAllocated(Reg);
245     MarkAllocated(ShadowReg);
246     return Reg;
247   }
248
249   /// AllocateReg - Attempt to allocate one of the specified registers.  If none
250   /// are available, return zero.  Otherwise, return the first one available,
251   /// marking it and any aliases as allocated.
252   unsigned AllocateReg(const unsigned *Regs, unsigned NumRegs) {
253     unsigned FirstUnalloc = getFirstUnallocated(Regs, NumRegs);
254     if (FirstUnalloc == NumRegs)
255       return 0;    // Didn't find the reg.
256
257     // Mark the register and any aliases as allocated.
258     unsigned Reg = Regs[FirstUnalloc];
259     MarkAllocated(Reg);
260     return Reg;
261   }
262
263   /// Version of AllocateReg with list of registers to be shadowed.
264   unsigned AllocateReg(const unsigned *Regs, const unsigned *ShadowRegs,
265                        unsigned NumRegs) {
266     unsigned FirstUnalloc = getFirstUnallocated(Regs, NumRegs);
267     if (FirstUnalloc == NumRegs)
268       return 0;    // Didn't find the reg.
269
270     // Mark the register and any aliases as allocated.
271     unsigned Reg = Regs[FirstUnalloc], ShadowReg = ShadowRegs[FirstUnalloc];
272     MarkAllocated(Reg);
273     MarkAllocated(ShadowReg);
274     return Reg;
275   }
276
277   /// AllocateStack - Allocate a chunk of stack space with the specified size
278   /// and alignment.
279   unsigned AllocateStack(unsigned Size, unsigned Align) {
280     assert(Align && ((Align-1) & Align) == 0); // Align is power of 2.
281     StackOffset = ((StackOffset + Align-1) & ~(Align-1));
282     unsigned Result = StackOffset;
283     StackOffset += Size;
284     return Result;
285   }
286
287   /// Version of AllocateStack with extra register to be shadowed.
288   unsigned AllocateStack(unsigned Size, unsigned Align, unsigned ShadowReg) {
289     MarkAllocated(ShadowReg);
290     return AllocateStack(Size, Align);
291   }
292
293   // HandleByVal - Allocate a stack slot large enough to pass an argument by
294   // value. The size and alignment information of the argument is encoded in its
295   // parameter attribute.
296   void HandleByVal(unsigned ValNo, MVT ValVT,
297                    MVT LocVT, CCValAssign::LocInfo LocInfo,
298                    int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
299
300   // First GPR that carries part of a byval aggregate that's split
301   // between registers and memory.
302   unsigned getFirstByValReg() { return FirstByValRegValid ? FirstByValReg : 0; }
303   void setFirstByValReg(unsigned r) { FirstByValReg = r; FirstByValRegValid = true; }
304   void clearFirstByValReg() { FirstByValReg = 0; FirstByValRegValid = false; }
305   bool isFirstByValRegValid() { return FirstByValRegValid; }
306
307   ParmContext getCallOrPrologue() { return CallOrPrologue; }
308   void setCallOrPrologue(ParmContext pc) { CallOrPrologue = pc; }
309
310 private:
311   /// MarkAllocated - Mark a register and all of its aliases as allocated.
312   void MarkAllocated(unsigned Reg);
313 };
314
315
316
317 } // end namespace llvm
318
319 #endif