blob: 24ed366dd86037b6aaf6d820dfda849f6b5cd7ab [file] [log] [blame]
Daniel Dunbar0dbe2272008-09-08 21:33:45 +00001//===----- CGCall.h - Encapsulate calling convention details ----*- 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// These classes wrap the information about a call or function
11// definition used to handle ABI compliancy.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef CLANG_CODEGEN_CGCALL_H
16#define CLANG_CODEGEN_CGCALL_H
17
Anders Carlsson31777a22009-12-24 19:08:58 +000018#include "llvm/ADT/FoldingSet.h"
19#include "llvm/Value.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000020#include "clang/AST/Type.h"
John McCallead608a2010-02-26 00:48:12 +000021#include "clang/AST/CanonicalType.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000022
Daniel Dunbar46f45b92008-09-09 01:06:48 +000023#include "CGValue.h"
24
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000025// FIXME: Restructure so we don't have to expose so much stuff.
26#include "ABIInfo.h"
27
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000028namespace llvm {
Devang Patel761d7f72008-09-25 21:02:23 +000029 struct AttributeWithIndex;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +000030 class Function;
31 class Type;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000032 class Value;
33
34 template<typename T, unsigned> class SmallVector;
35}
36
37namespace clang {
38 class ASTContext;
39 class Decl;
40 class FunctionDecl;
41 class ObjCMethodDecl;
Daniel Dunbar7c086512008-09-09 23:14:03 +000042 class VarDecl;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000043
44namespace CodeGen {
Chris Lattner686775d2011-07-20 06:58:45 +000045 typedef SmallVector<llvm::AttributeWithIndex, 8> AttributeListType;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000046
Eli Friedmanc6d07822011-05-02 18:05:27 +000047 struct CallArg {
48 RValue RV;
49 QualType Ty;
Eli Friedman55d48482011-05-26 00:10:27 +000050 bool NeedsCopy;
51 CallArg(RValue rv, QualType ty, bool needscopy)
52 : RV(rv), Ty(ty), NeedsCopy(needscopy)
Eli Friedmanc6d07822011-05-02 18:05:27 +000053 { }
54 };
55
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000056 /// CallArgList - Type for representing both the value and type of
57 /// arguments in a call.
John McCalld26bc762011-03-09 04:27:21 +000058 class CallArgList :
Chris Lattner686775d2011-07-20 06:58:45 +000059 public SmallVector<CallArg, 16> {
John McCall413ebdb2011-03-11 20:59:21 +000060 public:
John McCallf85e1932011-06-15 23:02:42 +000061 struct Writeback {
62 /// The original argument.
63 llvm::Value *Address;
64
65 /// The pointee type of the original argument.
66 QualType AddressType;
67
68 /// The temporary alloca.
69 llvm::Value *Temporary;
70 };
71
Eli Friedman55d48482011-05-26 00:10:27 +000072 void add(RValue rvalue, QualType type, bool needscopy = false) {
73 push_back(CallArg(rvalue, type, needscopy));
John McCall413ebdb2011-03-11 20:59:21 +000074 }
John McCallf85e1932011-06-15 23:02:42 +000075
76 void addFrom(const CallArgList &other) {
77 insert(end(), other.begin(), other.end());
78 Writebacks.insert(Writebacks.end(),
79 other.Writebacks.begin(), other.Writebacks.end());
80 }
81
82 void addWriteback(llvm::Value *address, QualType addressType,
83 llvm::Value *temporary) {
84 Writeback writeback;
85 writeback.Address = address;
86 writeback.AddressType = addressType;
87 writeback.Temporary = temporary;
88 Writebacks.push_back(writeback);
89 }
90
91 bool hasWritebacks() const { return !Writebacks.empty(); }
92
Chris Lattner686775d2011-07-20 06:58:45 +000093 typedef SmallVectorImpl<Writeback>::const_iterator writeback_iterator;
John McCallf85e1932011-06-15 23:02:42 +000094 writeback_iterator writeback_begin() const { return Writebacks.begin(); }
95 writeback_iterator writeback_end() const { return Writebacks.end(); }
96
97 private:
Chris Lattner686775d2011-07-20 06:58:45 +000098 SmallVector<Writeback, 1> Writebacks;
John McCalld26bc762011-03-09 04:27:21 +000099 };
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000100
Daniel Dunbar7c086512008-09-09 23:14:03 +0000101 /// FunctionArgList - Type for representing both the decl and type
102 /// of parameters to a function. The decl must be either a
103 /// ParmVarDecl or ImplicitParamDecl.
Chris Lattner686775d2011-07-20 06:58:45 +0000104 class FunctionArgList : public SmallVector<const VarDecl*, 16> {
John McCalld26bc762011-03-09 04:27:21 +0000105 };
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000107 /// CGFunctionInfo - Class to encapsulate the information about a
108 /// function definition.
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000109 class CGFunctionInfo : public llvm::FoldingSetNode {
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000110 struct ArgInfo {
John McCallead608a2010-02-26 00:48:12 +0000111 CanQualType type;
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000112 ABIArgInfo info;
113 };
114
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000115 /// The LLVM::CallingConv to use for this function (as specified by the
116 /// user).
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000117 unsigned CallingConvention;
118
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000119 /// The LLVM::CallingConv to actually use for this function, which may
120 /// depend on the ABI.
121 unsigned EffectiveCallingConvention;
122
John McCall04a67a62010-02-05 21:31:56 +0000123 /// Whether this function is noreturn.
124 bool NoReturn;
125
John McCallf85e1932011-06-15 23:02:42 +0000126 /// Whether this function is returns-retained.
127 bool ReturnsRetained;
128
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000129 unsigned NumArgs;
130 ArgInfo *Args;
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000131
Rafael Espindola425ef722010-03-30 22:15:11 +0000132 /// How many arguments to pass inreg.
Eli Friedmana49218e2011-04-09 08:18:08 +0000133 bool HasRegParm;
Rafael Espindola425ef722010-03-30 22:15:11 +0000134 unsigned RegParm;
135
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000136 public:
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000137 typedef const ArgInfo *const_arg_iterator;
138 typedef ArgInfo *arg_iterator;
Daniel Dunbara0a99e02009-02-02 23:43:58 +0000139
Chris Lattnerbb521142010-06-29 18:13:52 +0000140 CGFunctionInfo(unsigned CallingConvention, bool NoReturn,
John McCallf85e1932011-06-15 23:02:42 +0000141 bool ReturnsRetained, bool HasRegParm, unsigned RegParm,
142 CanQualType ResTy,
Chris Lattnerbb521142010-06-29 18:13:52 +0000143 const CanQualType *ArgTys, unsigned NumArgTys);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000144 ~CGFunctionInfo() { delete[] Args; }
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000145
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000146 const_arg_iterator arg_begin() const { return Args + 1; }
147 const_arg_iterator arg_end() const { return Args + 1 + NumArgs; }
148 arg_iterator arg_begin() { return Args + 1; }
149 arg_iterator arg_end() { return Args + 1 + NumArgs; }
Daniel Dunbarbb36d332009-02-02 21:43:58 +0000150
Daniel Dunbar4b5f0a42009-02-04 21:17:21 +0000151 unsigned arg_size() const { return NumArgs; }
152
John McCall04a67a62010-02-05 21:31:56 +0000153 bool isNoReturn() const { return NoReturn; }
154
John McCallf85e1932011-06-15 23:02:42 +0000155 /// In ARR, whether this function retains its return value. This
156 /// is not always reliable for call sites.
157 bool isReturnsRetained() const { return ReturnsRetained; }
158
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000159 /// getCallingConvention - Return the user specified calling
160 /// convention.
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000161 unsigned getCallingConvention() const { return CallingConvention; }
162
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000163 /// getEffectiveCallingConvention - Return the actual calling convention to
164 /// use, which may depend on the ABI.
165 unsigned getEffectiveCallingConvention() const {
166 return EffectiveCallingConvention;
167 }
168 void setEffectiveCallingConvention(unsigned Value) {
169 EffectiveCallingConvention = Value;
170 }
171
Eli Friedmana49218e2011-04-09 08:18:08 +0000172 bool getHasRegParm() const { return HasRegParm; }
Rafael Espindola425ef722010-03-30 22:15:11 +0000173 unsigned getRegParm() const { return RegParm; }
174
John McCallead608a2010-02-26 00:48:12 +0000175 CanQualType getReturnType() const { return Args[0].type; }
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000176
177 ABIArgInfo &getReturnInfo() { return Args[0].info; }
178 const ABIArgInfo &getReturnInfo() const { return Args[0].info; }
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000179
180 void Profile(llvm::FoldingSetNodeID &ID) {
Daniel Dunbarbac7c252009-09-11 22:24:53 +0000181 ID.AddInteger(getCallingConvention());
John McCall04a67a62010-02-05 21:31:56 +0000182 ID.AddBoolean(NoReturn);
John McCallf85e1932011-06-15 23:02:42 +0000183 ID.AddBoolean(ReturnsRetained);
Eli Friedmana49218e2011-04-09 08:18:08 +0000184 ID.AddBoolean(HasRegParm);
Rafael Espindola425ef722010-03-30 22:15:11 +0000185 ID.AddInteger(RegParm);
Daniel Dunbar35e67d42009-02-05 00:00:23 +0000186 getReturnType().Profile(ID);
Daniel Dunbar88c2fa92009-02-03 05:31:23 +0000187 for (arg_iterator it = arg_begin(), ie = arg_end(); it != ie; ++it)
188 it->type.Profile(ID);
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000189 }
190 template<class Iterator>
Mike Stump1eb44332009-09-09 15:08:12 +0000191 static void Profile(llvm::FoldingSetNodeID &ID,
Rafael Espindola264ba482010-03-30 20:24:48 +0000192 const FunctionType::ExtInfo &Info,
John McCallead608a2010-02-26 00:48:12 +0000193 CanQualType ResTy,
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000194 Iterator begin,
195 Iterator end) {
Rafael Espindola264ba482010-03-30 20:24:48 +0000196 ID.AddInteger(Info.getCC());
197 ID.AddBoolean(Info.getNoReturn());
John McCallf85e1932011-06-15 23:02:42 +0000198 ID.AddBoolean(Info.getProducesResult());
Eli Friedmana49218e2011-04-09 08:18:08 +0000199 ID.AddBoolean(Info.getHasRegParm());
Rafael Espindola425ef722010-03-30 22:15:11 +0000200 ID.AddInteger(Info.getRegParm());
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000201 ResTy.Profile(ID);
John McCallead608a2010-02-26 00:48:12 +0000202 for (; begin != end; ++begin) {
203 CanQualType T = *begin; // force iterator to be over canonical types
204 T.Profile(ID);
205 }
Daniel Dunbar40a6be62009-02-03 00:07:12 +0000206 }
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000207 };
Anders Carlsson31777a22009-12-24 19:08:58 +0000208
Anders Carlssond2490a92009-12-24 20:40:36 +0000209 /// ReturnValueSlot - Contains the address where the return value of a
210 /// function can be stored, and whether the address is volatile or not.
Anders Carlsson31777a22009-12-24 19:08:58 +0000211 class ReturnValueSlot {
212 llvm::PointerIntPair<llvm::Value *, 1, bool> Value;
213
214 public:
215 ReturnValueSlot() {}
216 ReturnValueSlot(llvm::Value *Value, bool IsVolatile)
217 : Value(Value, IsVolatile) {}
218
219 bool isNull() const { return !getValue(); }
220
221 bool isVolatile() const { return Value.getInt(); }
222 llvm::Value *getValue() const { return Value.getPointer(); }
223 };
224
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000225} // end namespace CodeGen
226} // end namespace clang
227
228#endif