blob: 11c427e503a6f73a5902fcbdf7e5dbd6a17ceaae [file] [log] [blame]
Daniel Dunbar3d7c90b2008-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
Benjamin Kramer2f5db8b2014-08-13 16:25:19 +000015#ifndef LLVM_CLANG_LIB_CODEGEN_CGCALL_H
16#define LLVM_CLANG_LIB_CODEGEN_CGCALL_H
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000017
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "CGValue.h"
Reid Kleckner23f4c4b2013-06-21 12:45:15 +000019#include "EHScopeStack.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/AST/CanonicalType.h"
21#include "clang/AST/Type.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000022#include "llvm/IR/Value.h"
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000023
Daniel Dunbar313321e2009-02-03 05:31:23 +000024// FIXME: Restructure so we don't have to expose so much stuff.
25#include "ABIInfo.h"
26
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000027namespace llvm {
Bill Wendling290d9522013-01-27 02:46:53 +000028 class AttributeSet;
Daniel Dunbar313321e2009-02-03 05:31:23 +000029 class Function;
30 class Type;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000031 class Value;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000032}
33
34namespace clang {
35 class ASTContext;
36 class Decl;
37 class FunctionDecl;
38 class ObjCMethodDecl;
Daniel Dunbarbc915f42008-09-09 23:14:03 +000039 class VarDecl;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000040
41namespace CodeGen {
Bill Wendling290d9522013-01-27 02:46:53 +000042 typedef SmallVector<llvm::AttributeSet, 8> AttributeListType;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000043
John McCallb92ab1a2016-10-26 23:46:34 +000044 /// Abstract information about a function or function prototype.
45 class CGCalleeInfo {
46 /// \brief The function prototype of the callee.
47 const FunctionProtoType *CalleeProtoTy;
48 /// \brief The function declaration of the callee.
49 const Decl *CalleeDecl;
50
51 public:
52 explicit CGCalleeInfo() : CalleeProtoTy(nullptr), CalleeDecl(nullptr) {}
53 CGCalleeInfo(const FunctionProtoType *calleeProtoTy, const Decl *calleeDecl)
54 : CalleeProtoTy(calleeProtoTy), CalleeDecl(calleeDecl) {}
55 CGCalleeInfo(const FunctionProtoType *calleeProtoTy)
56 : CalleeProtoTy(calleeProtoTy), CalleeDecl(nullptr) {}
57 CGCalleeInfo(const Decl *calleeDecl)
58 : CalleeProtoTy(nullptr), CalleeDecl(calleeDecl) {}
59
60 const FunctionProtoType *getCalleeFunctionProtoType() const {
61 return CalleeProtoTy;
62 }
63 const Decl *getCalleeDecl() const { return CalleeDecl; }
64 };
65
66 /// All available information about a concrete callee.
67 class CGCallee {
68 enum class SpecialKind : uintptr_t {
69 Invalid,
70 Builtin,
71 PseudoDestructor,
72
73 Last = PseudoDestructor
74 };
75
76 SpecialKind KindOrFunctionPointer;
77 union {
78 CGCalleeInfo AbstractInfo;
79 struct {
80 const FunctionDecl *Decl;
81 unsigned ID;
82 } BuiltinInfo;
83 struct {
84 const CXXPseudoDestructorExpr *Expr;
85 } PseudoDestructorInfo;
86 };
87
88 explicit CGCallee(SpecialKind kind) : KindOrFunctionPointer(kind) {}
89
90 CGCallee(const FunctionDecl *builtinDecl, unsigned builtinID)
91 : KindOrFunctionPointer(SpecialKind::Builtin) {
92 BuiltinInfo.Decl = builtinDecl;
93 BuiltinInfo.ID = builtinID;
94 }
95
96 public:
97 CGCallee() : KindOrFunctionPointer(SpecialKind::Invalid) {}
98
99 /// Construct a callee. Call this constructor directly when this
100 /// isn't a direct call.
101 CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr)
102 : KindOrFunctionPointer(SpecialKind(uintptr_t(functionPtr))) {
103 AbstractInfo = abstractInfo;
104 assert(functionPtr && "configuring callee without function pointer");
105 assert(functionPtr->getType()->isPointerTy());
106 assert(functionPtr->getType()->getPointerElementType()->isFunctionTy());
107 }
108
109 static CGCallee forBuiltin(unsigned builtinID,
110 const FunctionDecl *builtinDecl) {
111 CGCallee result(SpecialKind::Builtin);
112 result.BuiltinInfo.Decl = builtinDecl;
113 result.BuiltinInfo.ID = builtinID;
114 return result;
115 }
116
117 static CGCallee forPseudoDestructor(const CXXPseudoDestructorExpr *E) {
118 CGCallee result(SpecialKind::PseudoDestructor);
119 result.PseudoDestructorInfo.Expr = E;
120 return result;
121 }
122
123 static CGCallee forDirect(llvm::Constant *functionPtr,
124 const CGCalleeInfo &abstractInfo = CGCalleeInfo()) {
125 return CGCallee(abstractInfo, functionPtr);
126 }
127
128 bool isBuiltin() const {
129 return KindOrFunctionPointer == SpecialKind::Builtin;
130 }
131 const FunctionDecl *getBuiltinDecl() const {
132 assert(isBuiltin());
133 return BuiltinInfo.Decl;
134 }
135 unsigned getBuiltinID() const {
136 assert(isBuiltin());
137 return BuiltinInfo.ID;
138 }
139
140 bool isPseudoDestructor() const {
141 return KindOrFunctionPointer == SpecialKind::PseudoDestructor;
142 }
143 const CXXPseudoDestructorExpr *getPseudoDestructorExpr() const {
144 assert(isPseudoDestructor());
145 return PseudoDestructorInfo.Expr;
146 }
147
148 bool isOrdinary() const {
149 return uintptr_t(KindOrFunctionPointer) > uintptr_t(SpecialKind::Last);
150 }
151 const CGCalleeInfo &getAbstractInfo() const {
152 assert(isOrdinary());
153 return AbstractInfo;
154 }
155 llvm::Value *getFunctionPointer() const {
156 assert(isOrdinary());
157 return reinterpret_cast<llvm::Value*>(uintptr_t(KindOrFunctionPointer));
158 }
159 llvm::FunctionType *getFunctionType() const {
160 return cast<llvm::FunctionType>(
161 getFunctionPointer()->getType()->getPointerElementType());
162 }
163 void setFunctionPointer(llvm::Value *functionPtr) {
164 assert(isOrdinary());
165 KindOrFunctionPointer = SpecialKind(uintptr_t(functionPtr));
166 }
167 };
168
Eli Friedmanf4258eb2011-05-02 18:05:27 +0000169 struct CallArg {
170 RValue RV;
171 QualType Ty;
Eli Friedmandf968192011-05-26 00:10:27 +0000172 bool NeedsCopy;
173 CallArg(RValue rv, QualType ty, bool needscopy)
174 : RV(rv), Ty(ty), NeedsCopy(needscopy)
Eli Friedmanf4258eb2011-05-02 18:05:27 +0000175 { }
176 };
177
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000178 /// CallArgList - Type for representing both the value and type of
179 /// arguments in a call.
John McCalla738c252011-03-09 04:27:21 +0000180 class CallArgList :
Chris Lattner01cf8db2011-07-20 06:58:45 +0000181 public SmallVector<CallArg, 16> {
John McCall32ea9692011-03-11 20:59:21 +0000182 public:
Reid Kleckner7c2f9e82015-10-08 00:17:45 +0000183 CallArgList() : StackBase(nullptr) {}
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000184
John McCall31168b02011-06-15 23:02:42 +0000185 struct Writeback {
John McCalleff18842013-03-23 02:35:54 +0000186 /// The original argument. Note that the argument l-value
187 /// is potentially null.
188 LValue Source;
John McCall31168b02011-06-15 23:02:42 +0000189
190 /// The temporary alloca.
John McCall7f416cc2015-09-08 08:05:57 +0000191 Address Temporary;
John McCalleff18842013-03-23 02:35:54 +0000192
193 /// A value to "use" after the writeback, or null.
194 llvm::Value *ToUse;
John McCall31168b02011-06-15 23:02:42 +0000195 };
196
Reid Kleckner23f4c4b2013-06-21 12:45:15 +0000197 struct CallArgCleanup {
198 EHScopeStack::stable_iterator Cleanup;
199
200 /// The "is active" insertion point. This instruction is temporary and
201 /// will be removed after insertion.
202 llvm::Instruction *IsActiveIP;
203 };
204
Eli Friedmandf968192011-05-26 00:10:27 +0000205 void add(RValue rvalue, QualType type, bool needscopy = false) {
206 push_back(CallArg(rvalue, type, needscopy));
John McCall32ea9692011-03-11 20:59:21 +0000207 }
John McCall31168b02011-06-15 23:02:42 +0000208
Richard Smith762672a2016-09-28 19:09:10 +0000209 /// Add all the arguments from another CallArgList to this one. After doing
210 /// this, the old CallArgList retains its list of arguments, but must not
211 /// be used to emit a call.
John McCall31168b02011-06-15 23:02:42 +0000212 void addFrom(const CallArgList &other) {
213 insert(end(), other.begin(), other.end());
214 Writebacks.insert(Writebacks.end(),
215 other.Writebacks.begin(), other.Writebacks.end());
Richard Smith762672a2016-09-28 19:09:10 +0000216 CleanupsToDeactivate.insert(CleanupsToDeactivate.end(),
217 other.CleanupsToDeactivate.begin(),
218 other.CleanupsToDeactivate.end());
219 assert(!(StackBase && other.StackBase) && "can't merge stackbases");
220 if (!StackBase)
221 StackBase = other.StackBase;
John McCall31168b02011-06-15 23:02:42 +0000222 }
223
John McCall7f416cc2015-09-08 08:05:57 +0000224 void addWriteback(LValue srcLV, Address temporary,
John McCalleff18842013-03-23 02:35:54 +0000225 llvm::Value *toUse) {
John McCall7f416cc2015-09-08 08:05:57 +0000226 Writeback writeback = { srcLV, temporary, toUse };
John McCall31168b02011-06-15 23:02:42 +0000227 Writebacks.push_back(writeback);
228 }
229
230 bool hasWritebacks() const { return !Writebacks.empty(); }
231
Aaron Ballman36a7fa82014-03-17 17:22:27 +0000232 typedef llvm::iterator_range<SmallVectorImpl<Writeback>::const_iterator>
233 writeback_const_range;
234
235 writeback_const_range writebacks() const {
236 return writeback_const_range(Writebacks.begin(), Writebacks.end());
237 }
John McCall31168b02011-06-15 23:02:42 +0000238
Reid Kleckner23f4c4b2013-06-21 12:45:15 +0000239 void addArgCleanupDeactivation(EHScopeStack::stable_iterator Cleanup,
240 llvm::Instruction *IsActiveIP) {
241 CallArgCleanup ArgCleanup;
242 ArgCleanup.Cleanup = Cleanup;
243 ArgCleanup.IsActiveIP = IsActiveIP;
244 CleanupsToDeactivate.push_back(ArgCleanup);
245 }
246
247 ArrayRef<CallArgCleanup> getCleanupsToDeactivate() const {
248 return CleanupsToDeactivate;
249 }
250
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000251 void allocateArgumentMemory(CodeGenFunction &CGF);
252 llvm::Instruction *getStackBase() const { return StackBase; }
Nico Weber8cdb3f92015-08-25 18:43:32 +0000253 void freeArgumentMemory(CodeGenFunction &CGF) const;
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000254
255 /// \brief Returns if we're using an inalloca struct to pass arguments in
256 /// memory.
257 bool isUsingInAlloca() const { return StackBase; }
258
John McCall31168b02011-06-15 23:02:42 +0000259 private:
Chris Lattner01cf8db2011-07-20 06:58:45 +0000260 SmallVector<Writeback, 1> Writebacks;
Reid Kleckner23f4c4b2013-06-21 12:45:15 +0000261
262 /// Deactivate these cleanups immediately before making the call. This
263 /// is used to cleanup objects that are owned by the callee once the call
264 /// occurs.
265 SmallVector<CallArgCleanup, 1> CleanupsToDeactivate;
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000266
267 /// The stacksave call. It dominates all of the argument evaluation.
268 llvm::CallInst *StackBase;
John McCalla738c252011-03-09 04:27:21 +0000269 };
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000270
Daniel Dunbarbc915f42008-09-09 23:14:03 +0000271 /// FunctionArgList - Type for representing both the decl and type
272 /// of parameters to a function. The decl must be either a
273 /// ParmVarDecl or ImplicitParamDecl.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000274 class FunctionArgList : public SmallVector<const VarDecl*, 16> {
John McCalla738c252011-03-09 04:27:21 +0000275 };
Mike Stump11289f42009-09-09 15:08:12 +0000276
Anders Carlsson17490832009-12-24 20:40:36 +0000277 /// ReturnValueSlot - Contains the address where the return value of a
278 /// function can be stored, and whether the address is volatile or not.
Anders Carlsson0435ed52009-12-24 19:08:58 +0000279 class ReturnValueSlot {
Leny Kholodov6aab1112015-06-08 10:23:49 +0000280 llvm::PointerIntPair<llvm::Value *, 2, unsigned int> Value;
John McCall7f416cc2015-09-08 08:05:57 +0000281 CharUnits Alignment;
Leny Kholodov6aab1112015-06-08 10:23:49 +0000282
283 // Return value slot flags
284 enum Flags {
285 IS_VOLATILE = 0x1,
286 IS_UNUSED = 0x2,
287 };
Anders Carlsson0435ed52009-12-24 19:08:58 +0000288
289 public:
290 ReturnValueSlot() {}
John McCall7f416cc2015-09-08 08:05:57 +0000291 ReturnValueSlot(Address Addr, bool IsVolatile, bool IsUnused = false)
292 : Value(Addr.isValid() ? Addr.getPointer() : nullptr,
293 (IsVolatile ? IS_VOLATILE : 0) | (IsUnused ? IS_UNUSED : 0)),
294 Alignment(Addr.isValid() ? Addr.getAlignment() : CharUnits::Zero()) {}
Anders Carlsson0435ed52009-12-24 19:08:58 +0000295
John McCall7f416cc2015-09-08 08:05:57 +0000296 bool isNull() const { return !getValue().isValid(); }
Leny Kholodov6aab1112015-06-08 10:23:49 +0000297
298 bool isVolatile() const { return Value.getInt() & IS_VOLATILE; }
John McCall7f416cc2015-09-08 08:05:57 +0000299 Address getValue() const { return Address(Value.getPointer(), Alignment); }
Leny Kholodov6aab1112015-06-08 10:23:49 +0000300 bool isUnused() const { return Value.getInt() & IS_UNUSED; }
Anders Carlsson0435ed52009-12-24 19:08:58 +0000301 };
302
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000303} // end namespace CodeGen
304} // end namespace clang
305
306#endif