blob: 9e10ec068e094fb1eb479d6871e49cd813b8ce85 [file] [log] [blame]
Charles Davis3a811f12010-05-25 19:52:27 +00001//===----- CGCXXABI.h - Interface to C++ ABIs -------------------*- 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 provides an abstract class for C++ code generation. Concrete subclasses
11// of this implement code generation for specific C++ ABIs.
12//
13//===----------------------------------------------------------------------===//
14
Stephen Hines176edba2014-12-01 14:53:08 -080015#ifndef LLVM_CLANG_LIB_CODEGEN_CGCXXABI_H
16#define LLVM_CLANG_LIB_CODEGEN_CGCXXABI_H
Charles Davis3a811f12010-05-25 19:52:27 +000017
John McCall4c40d982010-08-31 07:33:07 +000018#include "CodeGenFunction.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/Basic/LLVM.h"
John McCall4c40d982010-08-31 07:33:07 +000020
John McCall93d557b2010-08-22 00:05:51 +000021namespace llvm {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070022class Constant;
23class Type;
24class Value;
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070025class CallInst;
John McCall93d557b2010-08-22 00:05:51 +000026}
27
Charles Davis3a811f12010-05-25 19:52:27 +000028namespace clang {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070029class CastExpr;
30class CXXConstructorDecl;
31class CXXDestructorDecl;
32class CXXMethodDecl;
33class CXXRecordDecl;
34class FieldDecl;
35class MangleContext;
John McCall93d557b2010-08-22 00:05:51 +000036
Charles Davis3a811f12010-05-25 19:52:27 +000037namespace CodeGen {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070038class CodeGenFunction;
39class CodeGenModule;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080040struct CatchTypeInfo;
Charles Davis3a811f12010-05-25 19:52:27 +000041
James Dennett3b2adf22012-06-15 07:35:42 +000042/// \brief Implements C++ ABI-specific code generation functions.
Charles Davis071cc7d2010-08-16 03:33:14 +000043class CGCXXABI {
John McCalld608cdb2010-08-22 10:59:02 +000044protected:
45 CodeGenModule &CGM;
Stephen Hines651f13c2014-04-23 16:59:28 -070046 std::unique_ptr<MangleContext> MangleCtx;
John McCalld608cdb2010-08-22 10:59:02 +000047
Peter Collingbourne14110472011-01-13 18:57:25 +000048 CGCXXABI(CodeGenModule &CGM)
49 : CGM(CGM), MangleCtx(CGM.getContext().createMangleContext()) {}
John McCalld608cdb2010-08-22 10:59:02 +000050
John McCall4c40d982010-08-31 07:33:07 +000051protected:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080052 ImplicitParamDecl *getThisDecl(CodeGenFunction &CGF) {
Eli Friedmancec5ebd2012-02-11 02:57:39 +000053 return CGF.CXXABIThisDecl;
John McCall4c40d982010-08-31 07:33:07 +000054 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080055 llvm::Value *getThisValue(CodeGenFunction &CGF) {
Eli Friedmancec5ebd2012-02-11 02:57:39 +000056 return CGF.CXXABIThisValue;
John McCall4c40d982010-08-31 07:33:07 +000057 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080058 Address getThisAddress(CodeGenFunction &CGF) {
59 return Address(CGF.CXXABIThisValue, CGF.CXXABIThisAlignment);
60 }
John McCall4c40d982010-08-31 07:33:07 +000061
Reid Klecknera8a0f762013-03-22 19:02:54 +000062 /// Issue a diagnostic about unsupported features in the ABI.
63 void ErrorUnsupportedABI(CodeGenFunction &CGF, StringRef S);
64
65 /// Get a null value for unsupported member pointers.
66 llvm::Constant *GetBogusMemberPointer(QualType T);
67
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +000068 ImplicitParamDecl *&getStructorImplicitParamDecl(CodeGenFunction &CGF) {
69 return CGF.CXXStructorImplicitParamDecl;
70 }
71 llvm::Value *&getStructorImplicitParamValue(CodeGenFunction &CGF) {
72 return CGF.CXXStructorImplicitParamValue;
John McCall4c40d982010-08-31 07:33:07 +000073 }
74
John McCall4c40d982010-08-31 07:33:07 +000075 /// Perform prolog initialization of the parameter variable suitable
Stephen Hines651f13c2014-04-23 16:59:28 -070076 /// for 'this' emitted by buildThisParam.
John McCall4c40d982010-08-31 07:33:07 +000077 void EmitThisParam(CodeGenFunction &CGF);
78
John McCall1e7fe752010-09-02 09:58:18 +000079 ASTContext &getContext() const { return CGM.getContext(); }
80
John McCalle2b45e22012-05-01 05:23:51 +000081 virtual bool requiresArrayCookie(const CXXDeleteExpr *E, QualType eltType);
82 virtual bool requiresArrayCookie(const CXXNewExpr *E);
83
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080084 /// Determine whether there's something special about the rules of
85 /// the ABI tell us that 'this' is a complete object within the
86 /// given function. Obvious common logic like being defined on a
87 /// final class will have been taken care of by the caller.
88 virtual bool isThisCompleteObject(GlobalDecl GD) const = 0;
89
Charles Davis3a811f12010-05-25 19:52:27 +000090public:
John McCalld608cdb2010-08-22 10:59:02 +000091
Anders Carlsson1af610f2010-11-28 17:50:09 +000092 virtual ~CGCXXABI();
Charles Davis3a811f12010-05-25 19:52:27 +000093
94 /// Gets the mangle context.
Peter Collingbourne14110472011-01-13 18:57:25 +000095 MangleContext &getMangleContext() {
96 return *MangleCtx;
97 }
John McCall93d557b2010-08-22 00:05:51 +000098
Stephen Lin3b50e8d2013-06-30 20:40:16 +000099 /// Returns true if the given constructor or destructor is one of the
100 /// kinds that the ABI says returns 'this' (only applies when called
101 /// non-virtually for destructors).
102 ///
103 /// There currently is no way to indicate if a destructor returns 'this'
104 /// when called virtually, and code generation does not support the case.
Manman Ren63fd4082013-03-20 16:59:38 +0000105 virtual bool HasThisReturn(GlobalDecl GD) const { return false; }
106
Stephen Hines176edba2014-12-01 14:53:08 -0800107 virtual bool hasMostDerivedReturn(GlobalDecl GD) const { return false; }
108
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700109 /// Returns true if the target allows calling a function through a pointer
110 /// with a different signature than the actual function (or equivalently,
111 /// bitcasting a function or function pointer to a different function type).
112 /// In principle in the most general case this could depend on the target, the
113 /// calling convention, and the actual types of the arguments and return
114 /// value. Here it just means whether the signature mismatch could *ever* be
115 /// allowed; in other words, does the target do strict checking of signatures
116 /// for all calls.
117 virtual bool canCallMismatchedFunctionType() const { return true; }
118
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700119 /// If the C++ ABI requires the given type be returned in a particular way,
120 /// this method sets RetAI and returns true.
121 virtual bool classifyReturnType(CGFunctionInfo &FI) const = 0;
Timur Iskhodzhanoved23bdf2013-04-17 12:54:10 +0000122
123 /// Specify how one should pass an argument of a record type.
124 enum RecordArgABI {
125 /// Pass it using the normal C aggregate rules for the ABI, potentially
126 /// introducing extra copies and passing some or all of it in registers.
127 RAA_Default = 0,
128
129 /// Pass it on the stack using its defined layout. The argument must be
130 /// evaluated directly into the correct stack position in the arguments area,
131 /// and the call machinery must not move it or introduce extra copies.
132 RAA_DirectInMemory,
133
134 /// Pass it as a pointer to temporary memory.
135 RAA_Indirect
136 };
137
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700138 /// Returns true if C++ allows us to copy the memory of an object of type RD
139 /// when it is passed as an argument.
140 bool canCopyArgument(const CXXRecordDecl *RD) const;
141
Timur Iskhodzhanoved23bdf2013-04-17 12:54:10 +0000142 /// Returns how an argument of the given record type should be passed.
143 virtual RecordArgABI getRecordArgABI(const CXXRecordDecl *RD) const = 0;
144
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700145 /// Returns true if the implicit 'sret' parameter comes after the implicit
146 /// 'this' parameter of C++ instance methods.
147 virtual bool isSRetParameterAfterThis() const { return false; }
148
John McCall0bab0cd2010-08-23 01:21:21 +0000149 /// Find the LLVM type used to represent the given member pointer
150 /// type.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000151 virtual llvm::Type *
John McCall0bab0cd2010-08-23 01:21:21 +0000152 ConvertMemberPointerType(const MemberPointerType *MPT);
153
154 /// Load a member function from an object and a member function
155 /// pointer. Apply the this-adjustment and set 'This' to the
156 /// adjusted value.
Stephen Hines651f13c2014-04-23 16:59:28 -0700157 virtual llvm::Value *EmitLoadOfMemberFunctionPointer(
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800158 CodeGenFunction &CGF, const Expr *E, Address This,
159 llvm::Value *&ThisPtrForCall, llvm::Value *MemPtr,
160 const MemberPointerType *MPT);
John McCall3023def2010-08-22 03:04:22 +0000161
John McCall6c2ab1d2010-08-31 21:07:20 +0000162 /// Calculate an l-value from an object and a data member pointer.
Stephen Hines651f13c2014-04-23 16:59:28 -0700163 virtual llvm::Value *
164 EmitMemberDataPointerAddress(CodeGenFunction &CGF, const Expr *E,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800165 Address Base, llvm::Value *MemPtr,
Stephen Hines651f13c2014-04-23 16:59:28 -0700166 const MemberPointerType *MPT);
John McCall6c2ab1d2010-08-31 21:07:20 +0000167
John McCall4d4e5c12012-02-15 01:22:51 +0000168 /// Perform a derived-to-base, base-to-derived, or bitcast member
169 /// pointer conversion.
John McCall0bab0cd2010-08-23 01:21:21 +0000170 virtual llvm::Value *EmitMemberPointerConversion(CodeGenFunction &CGF,
171 const CastExpr *E,
172 llvm::Value *Src);
John McCallcf2c85e2010-08-22 04:16:24 +0000173
John McCall4d4e5c12012-02-15 01:22:51 +0000174 /// Perform a derived-to-base, base-to-derived, or bitcast member
175 /// pointer conversion on a constant value.
176 virtual llvm::Constant *EmitMemberPointerConversion(const CastExpr *E,
177 llvm::Constant *Src);
178
John McCall0bab0cd2010-08-23 01:21:21 +0000179 /// Return true if the given member pointer can be zero-initialized
180 /// (in the C++ sense) with an LLVM zeroinitializer.
John McCallf16aa102010-08-22 21:01:12 +0000181 virtual bool isZeroInitializable(const MemberPointerType *MPT);
John McCallcf2c85e2010-08-22 04:16:24 +0000182
Stephen Hines176edba2014-12-01 14:53:08 -0800183 /// Return whether or not a member pointers type is convertible to an IR type.
184 virtual bool isMemberPointerConvertible(const MemberPointerType *MPT) const {
185 return true;
186 }
187
John McCall0bab0cd2010-08-23 01:21:21 +0000188 /// Create a null member pointer of the given type.
189 virtual llvm::Constant *EmitNullMemberPointer(const MemberPointerType *MPT);
John McCallcf2c85e2010-08-22 04:16:24 +0000190
John McCall0bab0cd2010-08-23 01:21:21 +0000191 /// Create a member pointer for the given method.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800192 virtual llvm::Constant *EmitMemberFunctionPointer(const CXXMethodDecl *MD);
John McCall875ab102010-08-22 06:43:33 +0000193
John McCall0bab0cd2010-08-23 01:21:21 +0000194 /// Create a member pointer for the given field.
John McCall5808ce42011-02-03 08:15:49 +0000195 virtual llvm::Constant *EmitMemberDataPointer(const MemberPointerType *MPT,
196 CharUnits offset);
John McCalle9fd7eb2010-08-22 08:30:07 +0000197
Richard Smith2d6a5672012-01-14 04:30:29 +0000198 /// Create a member pointer for the given member pointer constant.
199 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
200
John McCall0bab0cd2010-08-23 01:21:21 +0000201 /// Emit a comparison between two member pointers. Returns an i1.
John McCalle9fd7eb2010-08-22 08:30:07 +0000202 virtual llvm::Value *
John McCall0bab0cd2010-08-23 01:21:21 +0000203 EmitMemberPointerComparison(CodeGenFunction &CGF,
204 llvm::Value *L,
205 llvm::Value *R,
206 const MemberPointerType *MPT,
207 bool Inequality);
John McCalle9fd7eb2010-08-22 08:30:07 +0000208
John McCall0bab0cd2010-08-23 01:21:21 +0000209 /// Determine if a member pointer is non-null. Returns an i1.
John McCalle9fd7eb2010-08-22 08:30:07 +0000210 virtual llvm::Value *
John McCall0bab0cd2010-08-23 01:21:21 +0000211 EmitMemberPointerIsNotNull(CodeGenFunction &CGF,
212 llvm::Value *MemPtr,
213 const MemberPointerType *MPT);
John McCall4c40d982010-08-31 07:33:07 +0000214
John McCall4d4e5c12012-02-15 01:22:51 +0000215protected:
216 /// A utility method for computing the offset required for the given
217 /// base-to-derived or derived-to-base member-pointer conversion.
218 /// Does not handle virtual conversions (in case we ever fully
219 /// support an ABI that allows this). Returns null if no adjustment
220 /// is required.
221 llvm::Constant *getMemberPointerAdjustment(const CastExpr *E);
222
Reid Klecknerf6327302013-05-09 21:01:17 +0000223 /// \brief Computes the non-virtual adjustment needed for a member pointer
224 /// conversion along an inheritance path stored in an APValue. Unlike
225 /// getMemberPointerAdjustment(), the adjustment can be negative if the path
226 /// is from a derived type to a base type.
227 CharUnits getMemberPointerPathAdjustment(const APValue &MP);
228
John McCall4d4e5c12012-02-15 01:22:51 +0000229public:
Stephen Hines176edba2014-12-01 14:53:08 -0800230 virtual void emitVirtualObjectDelete(CodeGenFunction &CGF,
231 const CXXDeleteExpr *DE,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800232 Address Ptr, QualType ElementType,
Stephen Hines176edba2014-12-01 14:53:08 -0800233 const CXXDestructorDecl *Dtor) = 0;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700234 virtual void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) = 0;
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700235 virtual void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) = 0;
236 virtual llvm::GlobalVariable *getThrowInfo(QualType T) { return nullptr; }
237
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800238 /// \brief Determine whether it's possible to emit a vtable for \p RD, even
239 /// though we do not know that the vtable has been marked as used by semantic
240 /// analysis.
241 virtual bool canSpeculativelyEmitVTable(const CXXRecordDecl *RD) const = 0;
242
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700243 virtual void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) = 0;
244
245 virtual llvm::CallInst *
246 emitTerminateForUnexpectedException(CodeGenFunction &CGF,
247 llvm::Value *Exn);
John McCallecd03b42012-09-25 10:10:39 +0000248
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700249 virtual llvm::Constant *getAddrOfRTTIDescriptor(QualType Ty) = 0;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800250 virtual CatchTypeInfo
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700251 getAddrOfCXXCatchHandlerType(QualType Ty, QualType CatchHandlerType) = 0;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800252 virtual CatchTypeInfo getCatchAllTypeInfo();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700253
254 virtual bool shouldTypeidBeNullChecked(bool IsDeref,
255 QualType SrcRecordTy) = 0;
256 virtual void EmitBadTypeidCall(CodeGenFunction &CGF) = 0;
257 virtual llvm::Value *EmitTypeid(CodeGenFunction &CGF, QualType SrcRecordTy,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800258 Address ThisPtr,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700259 llvm::Type *StdTypeInfoPtrTy) = 0;
260
261 virtual bool shouldDynamicCastCallBeNullChecked(bool SrcIsPtr,
262 QualType SrcRecordTy) = 0;
263
264 virtual llvm::Value *
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800265 EmitDynamicCastCall(CodeGenFunction &CGF, Address Value,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700266 QualType SrcRecordTy, QualType DestTy,
267 QualType DestRecordTy, llvm::BasicBlock *CastEnd) = 0;
268
269 virtual llvm::Value *EmitDynamicCastToVoid(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800270 Address Value,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700271 QualType SrcRecordTy,
272 QualType DestTy) = 0;
273
274 virtual bool EmitBadCastCall(CodeGenFunction &CGF) = 0;
275
Reid Klecknerb0f533e2013-05-29 18:02:47 +0000276 virtual llvm::Value *GetVirtualBaseClassOffset(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800277 Address This,
Reid Klecknerb0f533e2013-05-29 18:02:47 +0000278 const CXXRecordDecl *ClassDecl,
279 const CXXRecordDecl *BaseClassDecl) = 0;
280
Reid Kleckner90633022013-06-19 15:20:38 +0000281 virtual llvm::BasicBlock *EmitCtorCompleteObjectHandler(CodeGenFunction &CGF,
282 const CXXRecordDecl *RD);
Timur Iskhodzhanov1d4fff52013-02-27 13:46:31 +0000283
Timur Iskhodzhanov5bd0d442013-10-09 18:16:58 +0000284 /// Emit the code to initialize hidden members required
285 /// to handle virtual inheritance, if needed by the ABI.
286 virtual void
287 initializeHiddenVirtualInheritanceMembers(CodeGenFunction &CGF,
288 const CXXRecordDecl *RD) {}
289
Timur Iskhodzhanovbb1b7972013-08-04 17:30:04 +0000290 /// Emit constructor variants required by this ABI.
291 virtual void EmitCXXConstructors(const CXXConstructorDecl *D) = 0;
292
Stephen Hines176edba2014-12-01 14:53:08 -0800293 /// Build the signature of the given constructor or destructor variant by
294 /// adding any required parameters. For convenience, ArgTys has been
295 /// initialized with the type of 'this'.
296 virtual void buildStructorSignature(const CXXMethodDecl *MD, StructorType T,
297 SmallVectorImpl<CanQualType> &ArgTys) = 0;
John McCall4c40d982010-08-31 07:33:07 +0000298
Reid Klecknera4130ba2013-07-22 13:51:44 +0000299 /// Returns true if the given destructor type should be emitted as a linkonce
300 /// delegating thunk, regardless of whether the dtor is defined in this TU or
301 /// not.
302 virtual bool useThunkForDtorVariant(const CXXDestructorDecl *Dtor,
303 CXXDtorType DT) const = 0;
304
305 /// Emit destructor variants required by this ABI.
306 virtual void EmitCXXDestructors(const CXXDestructorDecl *D) = 0;
307
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000308 /// Get the type of the implicit "this" parameter used by a method. May return
309 /// zero if no specific type is applicable, e.g. if the ABI expects the "this"
310 /// parameter to point to some artificial offset in a complete object due to
311 /// vbases being reordered.
312 virtual const CXXRecordDecl *
313 getThisArgumentTypeForMethod(const CXXMethodDecl *MD) {
314 return MD->getParent();
315 }
316
317 /// Perform ABI-specific "this" argument adjustment required prior to
Stephen Hines651f13c2014-04-23 16:59:28 -0700318 /// a call of a virtual function.
319 /// The "VirtualCall" argument is true iff the call itself is virtual.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800320 virtual Address
Stephen Hines651f13c2014-04-23 16:59:28 -0700321 adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800322 Address This, bool VirtualCall) {
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000323 return This;
324 }
325
Stephen Hines651f13c2014-04-23 16:59:28 -0700326 /// Build a parameter variable suitable for 'this'.
327 void buildThisParam(CodeGenFunction &CGF, FunctionArgList &Params);
328
329 /// Insert any ABI-specific implicit parameters into the parameter list for a
330 /// function. This generally involves extra data for constructors and
331 /// destructors.
John McCall4c40d982010-08-31 07:33:07 +0000332 ///
333 /// ABIs may also choose to override the return type, which has been
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000334 /// initialized with the type of 'this' if HasThisReturn(CGF.CurGD) is true or
335 /// the formal return type of the function otherwise.
Stephen Hines651f13c2014-04-23 16:59:28 -0700336 virtual void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy,
337 FunctionArgList &Params) = 0;
John McCall4c40d982010-08-31 07:33:07 +0000338
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700339 /// Get the ABI-specific "this" parameter adjustment to apply in the prologue
340 /// of a virtual function.
341 virtual CharUnits getVirtualFunctionPrologueThisAdjustment(GlobalDecl GD) {
342 return CharUnits::Zero();
343 }
344
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000345 /// Perform ABI-specific "this" parameter adjustment in a virtual function
346 /// prologue.
347 virtual llvm::Value *adjustThisParameterInVirtualFunctionPrologue(
348 CodeGenFunction &CGF, GlobalDecl GD, llvm::Value *This) {
349 return This;
350 }
351
John McCall4c40d982010-08-31 07:33:07 +0000352 /// Emit the ABI-specific prolog for the function.
353 virtual void EmitInstanceFunctionProlog(CodeGenFunction &CGF) = 0;
354
Stephen Hines651f13c2014-04-23 16:59:28 -0700355 /// Add any ABI-specific implicit arguments needed to call a constructor.
356 ///
357 /// \return The number of args added to the call, which is typically zero or
358 /// one.
359 virtual unsigned
360 addImplicitConstructorArgs(CodeGenFunction &CGF, const CXXConstructorDecl *D,
361 CXXCtorType Type, bool ForVirtualBase,
362 bool Delegating, CallArgList &Args) = 0;
363
364 /// Emit the destructor call.
365 virtual void EmitDestructorCall(CodeGenFunction &CGF,
366 const CXXDestructorDecl *DD, CXXDtorType Type,
367 bool ForVirtualBase, bool Delegating,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800368 Address This) = 0;
Timur Iskhodzhanov1d4fff52013-02-27 13:46:31 +0000369
Timur Iskhodzhanova53d7a02013-09-27 14:48:01 +0000370 /// Emits the VTable definitions required for the given record type.
371 virtual void emitVTableDefinitions(CodeGenVTables &CGVT,
372 const CXXRecordDecl *RD) = 0;
373
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800374 /// Checks if ABI requires extra virtual offset for vtable field.
375 virtual bool
376 isVirtualOffsetNeededForVTableField(CodeGenFunction &CGF,
377 CodeGenFunction::VPtr Vptr) = 0;
378
379 /// Checks if ABI requires to initilize vptrs for given dynamic class.
380 virtual bool doStructorsInitializeVPtrs(const CXXRecordDecl *VTableClass) = 0;
381
382 /// Get the address point of the vtable for the given base subobject.
383 virtual llvm::Constant *
384 getVTableAddressPoint(BaseSubobject Base,
385 const CXXRecordDecl *VTableClass) = 0;
386
Timur Iskhodzhanova53d7a02013-09-27 14:48:01 +0000387 /// Get the address point of the vtable for the given base subobject while
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800388 /// building a constructor or a destructor.
389 virtual llvm::Value *
390 getVTableAddressPointInStructor(CodeGenFunction &CGF, const CXXRecordDecl *RD,
391 BaseSubobject Base,
392 const CXXRecordDecl *NearestVBase) = 0;
Timur Iskhodzhanova53d7a02013-09-27 14:48:01 +0000393
394 /// Get the address point of the vtable for the given base subobject while
395 /// building a constexpr.
396 virtual llvm::Constant *
397 getVTableAddressPointForConstExpr(BaseSubobject Base,
398 const CXXRecordDecl *VTableClass) = 0;
399
400 /// Get the address of the vtable for the given record decl which should be
401 /// used for the vptr at the given offset in RD.
402 virtual llvm::GlobalVariable *getAddrOfVTable(const CXXRecordDecl *RD,
403 CharUnits VPtrOffset) = 0;
404
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000405 /// Build a virtual function pointer in the ABI-specific way.
406 virtual llvm::Value *getVirtualFunctionPointer(CodeGenFunction &CGF,
407 GlobalDecl GD,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800408 Address This,
409 llvm::Type *Ty,
410 SourceLocation Loc) = 0;
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000411
Timur Iskhodzhanov0f9827f2013-02-15 14:45:22 +0000412 /// Emit the ABI-specific virtual destructor call.
Stephen Hines176edba2014-12-01 14:53:08 -0800413 virtual llvm::Value *
414 EmitVirtualDestructorCall(CodeGenFunction &CGF, const CXXDestructorDecl *Dtor,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800415 CXXDtorType DtorType, Address This,
Stephen Hines176edba2014-12-01 14:53:08 -0800416 const CXXMemberCallExpr *CE) = 0;
Timur Iskhodzhanov0f9827f2013-02-15 14:45:22 +0000417
Timur Iskhodzhanov2cb17a02013-10-09 09:23:58 +0000418 virtual void adjustCallArgsForDestructorThunk(CodeGenFunction &CGF,
419 GlobalDecl GD,
420 CallArgList &CallArgs) {}
421
Reid Kleckner90633022013-06-19 15:20:38 +0000422 /// Emit any tables needed to implement virtual inheritance. For Itanium,
423 /// this emits virtual table tables. For the MSVC++ ABI, this emits virtual
424 /// base tables.
Timur Iskhodzhanova53d7a02013-09-27 14:48:01 +0000425 virtual void emitVirtualInheritanceTables(const CXXRecordDecl *RD) = 0;
Reid Kleckner90633022013-06-19 15:20:38 +0000426
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700427 virtual void setThunkLinkage(llvm::Function *Thunk, bool ForVTable,
428 GlobalDecl GD, bool ReturnAdjustment) = 0;
Timur Iskhodzhanov2cb17a02013-10-09 09:23:58 +0000429
Timur Iskhodzhanovc70cc5d2013-10-30 11:55:43 +0000430 virtual llvm::Value *performThisAdjustment(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800431 Address This,
Timur Iskhodzhanovc70cc5d2013-10-30 11:55:43 +0000432 const ThisAdjustment &TA) = 0;
433
434 virtual llvm::Value *performReturnAdjustment(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800435 Address Ret,
Timur Iskhodzhanovc70cc5d2013-10-30 11:55:43 +0000436 const ReturnAdjustment &RA) = 0;
437
John McCall4c40d982010-08-31 07:33:07 +0000438 virtual void EmitReturnFromThunk(CodeGenFunction &CGF,
439 RValue RV, QualType ResultType);
John McCall1e7fe752010-09-02 09:58:18 +0000440
Stephen Hines176edba2014-12-01 14:53:08 -0800441 virtual size_t getSrcArgforCopyCtor(const CXXConstructorDecl *,
442 FunctionArgList &Args) const = 0;
443
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800444 /// Gets the offsets of all the virtual base pointers in a given class.
445 virtual std::vector<CharUnits> getVBPtrOffsets(const CXXRecordDecl *RD);
446
Joao Matos285baac2012-07-17 17:10:11 +0000447 /// Gets the pure virtual member call function.
448 virtual StringRef GetPureVirtualCallName() = 0;
449
David Blaikie2eb9a952012-10-16 22:56:05 +0000450 /// Gets the deleted virtual member call name.
451 virtual StringRef GetDeletedVirtualCallName() = 0;
452
John McCall1e7fe752010-09-02 09:58:18 +0000453 /**************************** Array cookies ******************************/
454
455 /// Returns the extra size required in order to store the array
James Dennett16ae9de2012-06-22 10:16:05 +0000456 /// cookie for the given new-expression. May return 0 to indicate that no
John McCall1e7fe752010-09-02 09:58:18 +0000457 /// array cookie is required.
458 ///
459 /// Several cases are filtered out before this method is called:
460 /// - non-array allocations never need a cookie
James Dennett59001032012-06-20 00:57:15 +0000461 /// - calls to \::operator new(size_t, void*) never need a cookie
John McCall1e7fe752010-09-02 09:58:18 +0000462 ///
James Dennett16ae9de2012-06-22 10:16:05 +0000463 /// \param expr - the new-expression being allocated.
John McCall6ec278d2011-01-27 09:37:56 +0000464 virtual CharUnits GetArrayCookieSize(const CXXNewExpr *expr);
John McCall1e7fe752010-09-02 09:58:18 +0000465
466 /// Initialize the array cookie for the given allocation.
467 ///
468 /// \param NewPtr - a char* which is the presumed-non-null
469 /// return value of the allocation function
470 /// \param NumElements - the computed number of elements,
John McCalle2b45e22012-05-01 05:23:51 +0000471 /// potentially collapsed from the multidimensional array case;
472 /// always a size_t
John McCall1e7fe752010-09-02 09:58:18 +0000473 /// \param ElementType - the base element allocated type,
474 /// i.e. the allocated type after stripping all array types
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800475 virtual Address InitializeArrayCookie(CodeGenFunction &CGF,
476 Address NewPtr,
477 llvm::Value *NumElements,
478 const CXXNewExpr *expr,
479 QualType ElementType);
John McCall1e7fe752010-09-02 09:58:18 +0000480
481 /// Reads the array cookie associated with the given pointer,
482 /// if it has one.
483 ///
484 /// \param Ptr - a pointer to the first element in the array
485 /// \param ElementType - the base element type of elements of the array
486 /// \param NumElements - an out parameter which will be initialized
487 /// with the number of elements allocated, or zero if there is no
488 /// cookie
489 /// \param AllocPtr - an out parameter which will be initialized
490 /// with a char* pointing to the address returned by the allocation
491 /// function
492 /// \param CookieSize - an out parameter which will be initialized
493 /// with the size of the cookie, or zero if there is no cookie
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800494 virtual void ReadArrayCookie(CodeGenFunction &CGF, Address Ptr,
John McCall6ec278d2011-01-27 09:37:56 +0000495 const CXXDeleteExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000496 QualType ElementType, llvm::Value *&NumElements,
497 llvm::Value *&AllocPtr, CharUnits &CookieSize);
498
Peter Collingbournee1e35f72013-06-28 20:45:28 +0000499 /// Return whether the given global decl needs a VTT parameter.
500 virtual bool NeedsVTTParameter(GlobalDecl GD);
501
John McCalle2b45e22012-05-01 05:23:51 +0000502protected:
503 /// Returns the extra size required in order to store the array
504 /// cookie for the given type. Assumes that an array cookie is
505 /// required.
506 virtual CharUnits getArrayCookieSizeImpl(QualType elementType);
507
508 /// Reads the array cookie for an allocation which is known to have one.
509 /// This is called by the standard implementation of ReadArrayCookie.
510 ///
511 /// \param ptr - a pointer to the allocation made for an array, as a char*
512 /// \param cookieSize - the computed cookie size of an array
James Dennett3b2adf22012-06-15 07:35:42 +0000513 ///
John McCalle2b45e22012-05-01 05:23:51 +0000514 /// Other parameters are as above.
James Dennett3b2adf22012-06-15 07:35:42 +0000515 ///
John McCalle2b45e22012-05-01 05:23:51 +0000516 /// \return a size_t
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800517 virtual llvm::Value *readArrayCookieImpl(CodeGenFunction &IGF, Address ptr,
John McCalle2b45e22012-05-01 05:23:51 +0000518 CharUnits cookieSize);
519
520public:
521
John McCall5cd91b52010-09-08 01:44:27 +0000522 /*************************** Static local guards ****************************/
523
John McCall3030eb82010-11-06 09:44:32 +0000524 /// Emits the guarded initializer and destructor setup for the given
525 /// variable, given that it couldn't be emitted as a constant.
Richard Smith7ca48502012-02-13 22:16:19 +0000526 /// If \p PerformInit is false, the initialization has been folded to a
527 /// constant and should not be performed.
John McCall3030eb82010-11-06 09:44:32 +0000528 ///
529 /// The variable may be:
530 /// - a static local variable
531 /// - a static data member of a class template instantiation
532 virtual void EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D,
Reid Kleckner942f9fe2013-09-10 20:14:30 +0000533 llvm::GlobalVariable *DeclPtr,
534 bool PerformInit) = 0;
John McCall5cd91b52010-09-08 01:44:27 +0000535
John McCall20bb1752012-05-01 06:13:13 +0000536 /// Emit code to force the execution of a destructor during global
537 /// teardown. The default implementation of this uses atexit.
538 ///
Stephen Hines176edba2014-12-01 14:53:08 -0800539 /// \param Dtor - a function taking a single pointer argument
540 /// \param Addr - a pointer to pass to the destructor function.
Richard Smith04e51762013-04-14 23:01:42 +0000541 virtual void registerGlobalDtor(CodeGenFunction &CGF, const VarDecl &D,
Stephen Hines176edba2014-12-01 14:53:08 -0800542 llvm::Constant *Dtor,
543 llvm::Constant *Addr) = 0;
Richard Smithb80a16e2013-04-19 16:42:07 +0000544
545 /*************************** thread_local initialization ********************/
546
547 /// Emits ABI-required functions necessary to initialize thread_local
548 /// variables in this translation unit.
549 ///
Stephen Hines176edba2014-12-01 14:53:08 -0800550 /// \param CXXThreadLocals - The thread_local declarations in this translation
551 /// unit.
552 /// \param CXXThreadLocalInits - If this translation unit contains any
553 /// non-constant initialization or non-trivial destruction for
554 /// thread_local variables, a list of functions to perform the
555 /// initialization.
Richard Smithb80a16e2013-04-19 16:42:07 +0000556 virtual void EmitThreadLocalInitFuncs(
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800557 CodeGenModule &CGM, ArrayRef<const VarDecl *> CXXThreadLocals,
Stephen Hines176edba2014-12-01 14:53:08 -0800558 ArrayRef<llvm::Function *> CXXThreadLocalInits,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800559 ArrayRef<const VarDecl *> CXXThreadLocalInitVars) = 0;
Stephen Hines176edba2014-12-01 14:53:08 -0800560
561 // Determine if references to thread_local global variables can be made
562 // directly or require access through a thread wrapper function.
563 virtual bool usesThreadWrapperFunction() const = 0;
Richard Smithb80a16e2013-04-19 16:42:07 +0000564
565 /// Emit a reference to a non-local thread_local variable (including
566 /// triggering the initialization of all thread_local variables in its
567 /// translation unit).
Stephen Hines651f13c2014-04-23 16:59:28 -0700568 virtual LValue EmitThreadLocalVarDeclLValue(CodeGenFunction &CGF,
569 const VarDecl *VD,
Stephen Hines176edba2014-12-01 14:53:08 -0800570 QualType LValType) = 0;
571
572 /// Emit a single constructor/destructor with the given type from a C++
573 /// constructor Decl.
574 virtual void emitCXXStructor(const CXXMethodDecl *MD, StructorType Type) = 0;
Charles Davis3a811f12010-05-25 19:52:27 +0000575};
576
John McCall96fcde02013-01-25 23:36:14 +0000577// Create an instance of a C++ ABI class:
578
579/// Creates an Itanium-family ABI.
Charles Davis071cc7d2010-08-16 03:33:14 +0000580CGCXXABI *CreateItaniumCXXABI(CodeGenModule &CGM);
John McCall96fcde02013-01-25 23:36:14 +0000581
582/// Creates a Microsoft-family ABI.
Charles Davis071cc7d2010-08-16 03:33:14 +0000583CGCXXABI *CreateMicrosoftCXXABI(CodeGenModule &CGM);
John McCall93d557b2010-08-22 00:05:51 +0000584
Charles Davis3a811f12010-05-25 19:52:27 +0000585}
586}
587
588#endif