xref: /freebsd/contrib/llvm-project/clang/lib/CodeGen/CGCall.h (revision d5b0e70f7e04d971691517ce1304d86a1e367e2e)
1 //===----- CGCall.h - Encapsulate calling convention details ----*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // These classes wrap the information about a call or function
10 // definition used to handle ABI compliancy.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_CLANG_LIB_CODEGEN_CGCALL_H
15 #define LLVM_CLANG_LIB_CODEGEN_CGCALL_H
16 
17 #include "CGValue.h"
18 #include "EHScopeStack.h"
19 #include "clang/AST/ASTFwd.h"
20 #include "clang/AST/CanonicalType.h"
21 #include "clang/AST/GlobalDecl.h"
22 #include "clang/AST/Type.h"
23 #include "llvm/IR/Value.h"
24 
25 // FIXME: Restructure so we don't have to expose so much stuff.
26 #include "ABIInfo.h"
27 
28 namespace llvm {
29 class Type;
30 class Value;
31 } // namespace llvm
32 
33 namespace clang {
34 class Decl;
35 class FunctionDecl;
36 class VarDecl;
37 
38 namespace CodeGen {
39 
40 /// Abstract information about a function or function prototype.
41 class CGCalleeInfo {
42   /// The function prototype of the callee.
43   const FunctionProtoType *CalleeProtoTy;
44   /// The function declaration of the callee.
45   GlobalDecl CalleeDecl;
46 
47 public:
48   explicit CGCalleeInfo() : CalleeProtoTy(nullptr) {}
49   CGCalleeInfo(const FunctionProtoType *calleeProtoTy, GlobalDecl calleeDecl)
50       : CalleeProtoTy(calleeProtoTy), CalleeDecl(calleeDecl) {}
51   CGCalleeInfo(const FunctionProtoType *calleeProtoTy)
52       : CalleeProtoTy(calleeProtoTy) {}
53   CGCalleeInfo(GlobalDecl calleeDecl)
54       : CalleeProtoTy(nullptr), CalleeDecl(calleeDecl) {}
55 
56   const FunctionProtoType *getCalleeFunctionProtoType() const {
57     return CalleeProtoTy;
58   }
59   const GlobalDecl getCalleeDecl() const { return CalleeDecl; }
60 };
61 
62 /// All available information about a concrete callee.
63 class CGCallee {
64   enum class SpecialKind : uintptr_t {
65     Invalid,
66     Builtin,
67     PseudoDestructor,
68     Virtual,
69 
70     Last = Virtual
71   };
72 
73   struct BuiltinInfoStorage {
74     const FunctionDecl *Decl;
75     unsigned ID;
76   };
77   struct PseudoDestructorInfoStorage {
78     const CXXPseudoDestructorExpr *Expr;
79   };
80   struct VirtualInfoStorage {
81     const CallExpr *CE;
82     GlobalDecl MD;
83     Address Addr;
84     llvm::FunctionType *FTy;
85   };
86 
87   SpecialKind KindOrFunctionPointer;
88   union {
89     CGCalleeInfo AbstractInfo;
90     BuiltinInfoStorage BuiltinInfo;
91     PseudoDestructorInfoStorage PseudoDestructorInfo;
92     VirtualInfoStorage VirtualInfo;
93   };
94 
95   explicit CGCallee(SpecialKind kind) : KindOrFunctionPointer(kind) {}
96 
97   CGCallee(const FunctionDecl *builtinDecl, unsigned builtinID)
98       : KindOrFunctionPointer(SpecialKind::Builtin) {
99     BuiltinInfo.Decl = builtinDecl;
100     BuiltinInfo.ID = builtinID;
101   }
102 
103 public:
104   CGCallee() : KindOrFunctionPointer(SpecialKind::Invalid) {}
105 
106   /// Construct a callee.  Call this constructor directly when this
107   /// isn't a direct call.
108   CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr)
109       : KindOrFunctionPointer(
110             SpecialKind(reinterpret_cast<uintptr_t>(functionPtr))) {
111     AbstractInfo = abstractInfo;
112     assert(functionPtr && "configuring callee without function pointer");
113     assert(functionPtr->getType()->isPointerTy());
114     assert(functionPtr->getType()->isOpaquePointerTy() ||
115            functionPtr->getType()->getNonOpaquePointerElementType()
116                ->isFunctionTy());
117   }
118 
119   static CGCallee forBuiltin(unsigned builtinID,
120                              const FunctionDecl *builtinDecl) {
121     CGCallee result(SpecialKind::Builtin);
122     result.BuiltinInfo.Decl = builtinDecl;
123     result.BuiltinInfo.ID = builtinID;
124     return result;
125   }
126 
127   static CGCallee forPseudoDestructor(const CXXPseudoDestructorExpr *E) {
128     CGCallee result(SpecialKind::PseudoDestructor);
129     result.PseudoDestructorInfo.Expr = E;
130     return result;
131   }
132 
133   static CGCallee forDirect(llvm::Constant *functionPtr,
134                             const CGCalleeInfo &abstractInfo = CGCalleeInfo()) {
135     return CGCallee(abstractInfo, functionPtr);
136   }
137 
138   static CGCallee forDirect(llvm::FunctionCallee functionPtr,
139                             const CGCalleeInfo &abstractInfo = CGCalleeInfo()) {
140     return CGCallee(abstractInfo, functionPtr.getCallee());
141   }
142 
143   static CGCallee forVirtual(const CallExpr *CE, GlobalDecl MD, Address Addr,
144                              llvm::FunctionType *FTy) {
145     CGCallee result(SpecialKind::Virtual);
146     result.VirtualInfo.CE = CE;
147     result.VirtualInfo.MD = MD;
148     result.VirtualInfo.Addr = Addr;
149     result.VirtualInfo.FTy = FTy;
150     return result;
151   }
152 
153   bool isBuiltin() const {
154     return KindOrFunctionPointer == SpecialKind::Builtin;
155   }
156   const FunctionDecl *getBuiltinDecl() const {
157     assert(isBuiltin());
158     return BuiltinInfo.Decl;
159   }
160   unsigned getBuiltinID() const {
161     assert(isBuiltin());
162     return BuiltinInfo.ID;
163   }
164 
165   bool isPseudoDestructor() const {
166     return KindOrFunctionPointer == SpecialKind::PseudoDestructor;
167   }
168   const CXXPseudoDestructorExpr *getPseudoDestructorExpr() const {
169     assert(isPseudoDestructor());
170     return PseudoDestructorInfo.Expr;
171   }
172 
173   bool isOrdinary() const {
174     return uintptr_t(KindOrFunctionPointer) > uintptr_t(SpecialKind::Last);
175   }
176   CGCalleeInfo getAbstractInfo() const {
177     if (isVirtual())
178       return VirtualInfo.MD;
179     assert(isOrdinary());
180     return AbstractInfo;
181   }
182   llvm::Value *getFunctionPointer() const {
183     assert(isOrdinary());
184     return reinterpret_cast<llvm::Value *>(uintptr_t(KindOrFunctionPointer));
185   }
186   void setFunctionPointer(llvm::Value *functionPtr) {
187     assert(isOrdinary());
188     KindOrFunctionPointer =
189         SpecialKind(reinterpret_cast<uintptr_t>(functionPtr));
190   }
191 
192   bool isVirtual() const {
193     return KindOrFunctionPointer == SpecialKind::Virtual;
194   }
195   const CallExpr *getVirtualCallExpr() const {
196     assert(isVirtual());
197     return VirtualInfo.CE;
198   }
199   GlobalDecl getVirtualMethodDecl() const {
200     assert(isVirtual());
201     return VirtualInfo.MD;
202   }
203   Address getThisAddress() const {
204     assert(isVirtual());
205     return VirtualInfo.Addr;
206   }
207   llvm::FunctionType *getVirtualFunctionType() const {
208     assert(isVirtual());
209     return VirtualInfo.FTy;
210   }
211 
212   /// If this is a delayed callee computation of some sort, prepare
213   /// a concrete callee.
214   CGCallee prepareConcreteCallee(CodeGenFunction &CGF) const;
215 };
216 
217 struct CallArg {
218 private:
219   union {
220     RValue RV;
221     LValue LV; /// The argument is semantically a load from this l-value.
222   };
223   bool HasLV;
224 
225   /// A data-flow flag to make sure getRValue and/or copyInto are not
226   /// called twice for duplicated IR emission.
227   mutable bool IsUsed;
228 
229 public:
230   QualType Ty;
231   CallArg(RValue rv, QualType ty)
232       : RV(rv), HasLV(false), IsUsed(false), Ty(ty) {}
233   CallArg(LValue lv, QualType ty)
234       : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {}
235   bool hasLValue() const { return HasLV; }
236   QualType getType() const { return Ty; }
237 
238   /// \returns an independent RValue. If the CallArg contains an LValue,
239   /// a temporary copy is returned.
240   RValue getRValue(CodeGenFunction &CGF) const;
241 
242   LValue getKnownLValue() const {
243     assert(HasLV && !IsUsed);
244     return LV;
245   }
246   RValue getKnownRValue() const {
247     assert(!HasLV && !IsUsed);
248     return RV;
249   }
250   void setRValue(RValue _RV) {
251     assert(!HasLV);
252     RV = _RV;
253   }
254 
255   bool isAggregate() const { return HasLV || RV.isAggregate(); }
256 
257   void copyInto(CodeGenFunction &CGF, Address A) const;
258 };
259 
260 /// CallArgList - Type for representing both the value and type of
261 /// arguments in a call.
262 class CallArgList : public SmallVector<CallArg, 8> {
263 public:
264   CallArgList() : StackBase(nullptr) {}
265 
266   struct Writeback {
267     /// The original argument.  Note that the argument l-value
268     /// is potentially null.
269     LValue Source;
270 
271     /// The temporary alloca.
272     Address Temporary;
273 
274     /// A value to "use" after the writeback, or null.
275     llvm::Value *ToUse;
276   };
277 
278   struct CallArgCleanup {
279     EHScopeStack::stable_iterator Cleanup;
280 
281     /// The "is active" insertion point.  This instruction is temporary and
282     /// will be removed after insertion.
283     llvm::Instruction *IsActiveIP;
284   };
285 
286   void add(RValue rvalue, QualType type) { push_back(CallArg(rvalue, type)); }
287 
288   void addUncopiedAggregate(LValue LV, QualType type) {
289     push_back(CallArg(LV, type));
290   }
291 
292   /// Add all the arguments from another CallArgList to this one. After doing
293   /// this, the old CallArgList retains its list of arguments, but must not
294   /// be used to emit a call.
295   void addFrom(const CallArgList &other) {
296     insert(end(), other.begin(), other.end());
297     Writebacks.insert(Writebacks.end(), other.Writebacks.begin(),
298                       other.Writebacks.end());
299     CleanupsToDeactivate.insert(CleanupsToDeactivate.end(),
300                                 other.CleanupsToDeactivate.begin(),
301                                 other.CleanupsToDeactivate.end());
302     assert(!(StackBase && other.StackBase) && "can't merge stackbases");
303     if (!StackBase)
304       StackBase = other.StackBase;
305   }
306 
307   void addWriteback(LValue srcLV, Address temporary, llvm::Value *toUse) {
308     Writeback writeback = {srcLV, temporary, toUse};
309     Writebacks.push_back(writeback);
310   }
311 
312   bool hasWritebacks() const { return !Writebacks.empty(); }
313 
314   typedef llvm::iterator_range<SmallVectorImpl<Writeback>::const_iterator>
315       writeback_const_range;
316 
317   writeback_const_range writebacks() const {
318     return writeback_const_range(Writebacks.begin(), Writebacks.end());
319   }
320 
321   void addArgCleanupDeactivation(EHScopeStack::stable_iterator Cleanup,
322                                  llvm::Instruction *IsActiveIP) {
323     CallArgCleanup ArgCleanup;
324     ArgCleanup.Cleanup = Cleanup;
325     ArgCleanup.IsActiveIP = IsActiveIP;
326     CleanupsToDeactivate.push_back(ArgCleanup);
327   }
328 
329   ArrayRef<CallArgCleanup> getCleanupsToDeactivate() const {
330     return CleanupsToDeactivate;
331   }
332 
333   void allocateArgumentMemory(CodeGenFunction &CGF);
334   llvm::Instruction *getStackBase() const { return StackBase; }
335   void freeArgumentMemory(CodeGenFunction &CGF) const;
336 
337   /// Returns if we're using an inalloca struct to pass arguments in
338   /// memory.
339   bool isUsingInAlloca() const { return StackBase; }
340 
341 private:
342   SmallVector<Writeback, 1> Writebacks;
343 
344   /// Deactivate these cleanups immediately before making the call.  This
345   /// is used to cleanup objects that are owned by the callee once the call
346   /// occurs.
347   SmallVector<CallArgCleanup, 1> CleanupsToDeactivate;
348 
349   /// The stacksave call.  It dominates all of the argument evaluation.
350   llvm::CallInst *StackBase;
351 };
352 
353 /// FunctionArgList - Type for representing both the decl and type
354 /// of parameters to a function. The decl must be either a
355 /// ParmVarDecl or ImplicitParamDecl.
356 class FunctionArgList : public SmallVector<const VarDecl *, 16> {};
357 
358 /// ReturnValueSlot - Contains the address where the return value of a
359 /// function can be stored, and whether the address is volatile or not.
360 class ReturnValueSlot {
361   Address Addr = Address::invalid();
362 
363   // Return value slot flags
364   unsigned IsVolatile : 1;
365   unsigned IsUnused : 1;
366   unsigned IsExternallyDestructed : 1;
367 
368 public:
369   ReturnValueSlot()
370       : IsVolatile(false), IsUnused(false), IsExternallyDestructed(false) {}
371   ReturnValueSlot(Address Addr, bool IsVolatile, bool IsUnused = false,
372                   bool IsExternallyDestructed = false)
373       : Addr(Addr), IsVolatile(IsVolatile), IsUnused(IsUnused),
374         IsExternallyDestructed(IsExternallyDestructed) {}
375 
376   bool isNull() const { return !Addr.isValid(); }
377   bool isVolatile() const { return IsVolatile; }
378   Address getValue() const { return Addr; }
379   bool isUnused() const { return IsUnused; }
380   bool isExternallyDestructed() const { return IsExternallyDestructed; }
381 };
382 
383 } // end namespace CodeGen
384 } // end namespace clang
385 
386 #endif
387