blob: 2ebd09b9eb57c4db172c70515d3f3966d4513a01 [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"
Anders Carlsson0435ed52009-12-24 19:08:58 +000022#include "llvm/ADT/FoldingSet.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000023#include "llvm/IR/Value.h"
Daniel Dunbar41cf9de2008-09-09 01:06:48 +000024
Daniel Dunbar313321e2009-02-03 05:31:23 +000025// FIXME: Restructure so we don't have to expose so much stuff.
26#include "ABIInfo.h"
27
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000028namespace llvm {
Bill Wendling290d9522013-01-27 02:46:53 +000029 class AttributeSet;
Daniel Dunbar313321e2009-02-03 05:31:23 +000030 class Function;
31 class Type;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000032 class Value;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000033}
34
35namespace clang {
36 class ASTContext;
37 class Decl;
38 class FunctionDecl;
39 class ObjCMethodDecl;
Daniel Dunbarbc915f42008-09-09 23:14:03 +000040 class VarDecl;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000041
42namespace CodeGen {
Bill Wendling290d9522013-01-27 02:46:53 +000043 typedef SmallVector<llvm::AttributeSet, 8> AttributeListType;
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000044
Eli Friedmanf4258eb2011-05-02 18:05:27 +000045 struct CallArg {
46 RValue RV;
47 QualType Ty;
Eli Friedmandf968192011-05-26 00:10:27 +000048 bool NeedsCopy;
49 CallArg(RValue rv, QualType ty, bool needscopy)
50 : RV(rv), Ty(ty), NeedsCopy(needscopy)
Eli Friedmanf4258eb2011-05-02 18:05:27 +000051 { }
52 };
53
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +000054 /// CallArgList - Type for representing both the value and type of
55 /// arguments in a call.
John McCalla738c252011-03-09 04:27:21 +000056 class CallArgList :
Chris Lattner01cf8db2011-07-20 06:58:45 +000057 public SmallVector<CallArg, 16> {
John McCall32ea9692011-03-11 20:59:21 +000058 public:
Reid Kleckner7c2f9e82015-10-08 00:17:45 +000059 CallArgList() : StackBase(nullptr) {}
Reid Kleckner314ef7b2014-02-01 00:04:45 +000060
John McCall31168b02011-06-15 23:02:42 +000061 struct Writeback {
John McCalleff18842013-03-23 02:35:54 +000062 /// The original argument. Note that the argument l-value
63 /// is potentially null.
64 LValue Source;
John McCall31168b02011-06-15 23:02:42 +000065
66 /// The temporary alloca.
John McCall7f416cc2015-09-08 08:05:57 +000067 Address Temporary;
John McCalleff18842013-03-23 02:35:54 +000068
69 /// A value to "use" after the writeback, or null.
70 llvm::Value *ToUse;
John McCall31168b02011-06-15 23:02:42 +000071 };
72
Reid Kleckner23f4c4b2013-06-21 12:45:15 +000073 struct CallArgCleanup {
74 EHScopeStack::stable_iterator Cleanup;
75
76 /// The "is active" insertion point. This instruction is temporary and
77 /// will be removed after insertion.
78 llvm::Instruction *IsActiveIP;
79 };
80
Eli Friedmandf968192011-05-26 00:10:27 +000081 void add(RValue rvalue, QualType type, bool needscopy = false) {
82 push_back(CallArg(rvalue, type, needscopy));
John McCall32ea9692011-03-11 20:59:21 +000083 }
John McCall31168b02011-06-15 23:02:42 +000084
85 void addFrom(const CallArgList &other) {
86 insert(end(), other.begin(), other.end());
87 Writebacks.insert(Writebacks.end(),
88 other.Writebacks.begin(), other.Writebacks.end());
89 }
90
John McCall7f416cc2015-09-08 08:05:57 +000091 void addWriteback(LValue srcLV, Address temporary,
John McCalleff18842013-03-23 02:35:54 +000092 llvm::Value *toUse) {
John McCall7f416cc2015-09-08 08:05:57 +000093 Writeback writeback = { srcLV, temporary, toUse };
John McCall31168b02011-06-15 23:02:42 +000094 Writebacks.push_back(writeback);
95 }
96
97 bool hasWritebacks() const { return !Writebacks.empty(); }
98
Aaron Ballman36a7fa82014-03-17 17:22:27 +000099 typedef llvm::iterator_range<SmallVectorImpl<Writeback>::const_iterator>
100 writeback_const_range;
101
102 writeback_const_range writebacks() const {
103 return writeback_const_range(Writebacks.begin(), Writebacks.end());
104 }
John McCall31168b02011-06-15 23:02:42 +0000105
Reid Kleckner23f4c4b2013-06-21 12:45:15 +0000106 void addArgCleanupDeactivation(EHScopeStack::stable_iterator Cleanup,
107 llvm::Instruction *IsActiveIP) {
108 CallArgCleanup ArgCleanup;
109 ArgCleanup.Cleanup = Cleanup;
110 ArgCleanup.IsActiveIP = IsActiveIP;
111 CleanupsToDeactivate.push_back(ArgCleanup);
112 }
113
114 ArrayRef<CallArgCleanup> getCleanupsToDeactivate() const {
115 return CleanupsToDeactivate;
116 }
117
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000118 void allocateArgumentMemory(CodeGenFunction &CGF);
119 llvm::Instruction *getStackBase() const { return StackBase; }
Nico Weber8cdb3f92015-08-25 18:43:32 +0000120 void freeArgumentMemory(CodeGenFunction &CGF) const;
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000121
122 /// \brief Returns if we're using an inalloca struct to pass arguments in
123 /// memory.
124 bool isUsingInAlloca() const { return StackBase; }
125
John McCall31168b02011-06-15 23:02:42 +0000126 private:
Chris Lattner01cf8db2011-07-20 06:58:45 +0000127 SmallVector<Writeback, 1> Writebacks;
Reid Kleckner23f4c4b2013-06-21 12:45:15 +0000128
129 /// Deactivate these cleanups immediately before making the call. This
130 /// is used to cleanup objects that are owned by the callee once the call
131 /// occurs.
132 SmallVector<CallArgCleanup, 1> CleanupsToDeactivate;
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000133
134 /// The stacksave call. It dominates all of the argument evaluation.
135 llvm::CallInst *StackBase;
136
Reid Kleckner314ef7b2014-02-01 00:04:45 +0000137 /// The iterator pointing to the stack restore cleanup. We manually run and
138 /// deactivate this cleanup after the call in the unexceptional case because
139 /// it doesn't run in the normal order.
140 EHScopeStack::stable_iterator StackCleanup;
John McCalla738c252011-03-09 04:27:21 +0000141 };
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000142
Daniel Dunbarbc915f42008-09-09 23:14:03 +0000143 /// FunctionArgList - Type for representing both the decl and type
144 /// of parameters to a function. The decl must be either a
145 /// ParmVarDecl or ImplicitParamDecl.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000146 class FunctionArgList : public SmallVector<const VarDecl*, 16> {
John McCalla738c252011-03-09 04:27:21 +0000147 };
Mike Stump11289f42009-09-09 15:08:12 +0000148
Anders Carlsson17490832009-12-24 20:40:36 +0000149 /// ReturnValueSlot - Contains the address where the return value of a
150 /// function can be stored, and whether the address is volatile or not.
Anders Carlsson0435ed52009-12-24 19:08:58 +0000151 class ReturnValueSlot {
Leny Kholodov6aab1112015-06-08 10:23:49 +0000152 llvm::PointerIntPair<llvm::Value *, 2, unsigned int> Value;
John McCall7f416cc2015-09-08 08:05:57 +0000153 CharUnits Alignment;
Leny Kholodov6aab1112015-06-08 10:23:49 +0000154
155 // Return value slot flags
156 enum Flags {
157 IS_VOLATILE = 0x1,
158 IS_UNUSED = 0x2,
159 };
Anders Carlsson0435ed52009-12-24 19:08:58 +0000160
161 public:
162 ReturnValueSlot() {}
John McCall7f416cc2015-09-08 08:05:57 +0000163 ReturnValueSlot(Address Addr, bool IsVolatile, bool IsUnused = false)
164 : Value(Addr.isValid() ? Addr.getPointer() : nullptr,
165 (IsVolatile ? IS_VOLATILE : 0) | (IsUnused ? IS_UNUSED : 0)),
166 Alignment(Addr.isValid() ? Addr.getAlignment() : CharUnits::Zero()) {}
Anders Carlsson0435ed52009-12-24 19:08:58 +0000167
John McCall7f416cc2015-09-08 08:05:57 +0000168 bool isNull() const { return !getValue().isValid(); }
Leny Kholodov6aab1112015-06-08 10:23:49 +0000169
170 bool isVolatile() const { return Value.getInt() & IS_VOLATILE; }
John McCall7f416cc2015-09-08 08:05:57 +0000171 Address getValue() const { return Address(Value.getPointer(), Alignment); }
Leny Kholodov6aab1112015-06-08 10:23:49 +0000172 bool isUnused() const { return Value.getInt() & IS_UNUSED; }
Anders Carlsson0435ed52009-12-24 19:08:58 +0000173 };
174
Daniel Dunbar3d7c90b2008-09-08 21:33:45 +0000175} // end namespace CodeGen
176} // end namespace clang
177
178#endif