2010-05-26 03:52:27 +08:00
|
|
|
//===----- CGCXXABI.h - Interface to C++ ABIs -------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This provides an abstract class for C++ code generation. Concrete subclasses
|
|
|
|
// of this implement code generation for specific C++ ABIs.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CLANG_CODEGEN_CXXABI_H
|
|
|
|
#define CLANG_CODEGEN_CXXABI_H
|
|
|
|
|
2010-08-31 15:33:07 +08:00
|
|
|
#include "CodeGenFunction.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/Basic/LLVM.h"
|
2010-08-31 15:33:07 +08:00
|
|
|
|
2010-08-22 08:05:51 +08:00
|
|
|
namespace llvm {
|
2010-08-22 12:16:24 +08:00
|
|
|
class Constant;
|
2010-08-23 09:21:21 +08:00
|
|
|
class Type;
|
2010-08-22 08:05:51 +08:00
|
|
|
class Value;
|
|
|
|
}
|
|
|
|
|
2010-05-26 03:52:27 +08:00
|
|
|
namespace clang {
|
2010-08-22 11:04:22 +08:00
|
|
|
class CastExpr;
|
2010-08-31 15:33:07 +08:00
|
|
|
class CXXConstructorDecl;
|
|
|
|
class CXXDestructorDecl;
|
2010-08-22 14:43:33 +08:00
|
|
|
class CXXMethodDecl;
|
2010-08-22 12:16:24 +08:00
|
|
|
class CXXRecordDecl;
|
2010-08-23 09:21:21 +08:00
|
|
|
class FieldDecl;
|
2011-01-14 02:57:25 +08:00
|
|
|
class MangleContext;
|
2010-08-22 08:05:51 +08:00
|
|
|
|
2010-05-26 03:52:27 +08:00
|
|
|
namespace CodeGen {
|
2010-08-22 08:05:51 +08:00
|
|
|
class CodeGenFunction;
|
2010-05-26 03:52:27 +08:00
|
|
|
class CodeGenModule;
|
|
|
|
|
2012-06-15 15:35:42 +08:00
|
|
|
/// \brief Implements C++ ABI-specific code generation functions.
|
2010-08-16 11:33:14 +08:00
|
|
|
class CGCXXABI {
|
2010-08-22 18:59:02 +08:00
|
|
|
protected:
|
|
|
|
CodeGenModule &CGM;
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<MangleContext> MangleCtx;
|
2010-08-22 18:59:02 +08:00
|
|
|
|
2011-01-14 02:57:25 +08:00
|
|
|
CGCXXABI(CodeGenModule &CGM)
|
|
|
|
: CGM(CGM), MangleCtx(CGM.getContext().createMangleContext()) {}
|
2010-08-22 18:59:02 +08:00
|
|
|
|
2010-08-31 15:33:07 +08:00
|
|
|
protected:
|
|
|
|
ImplicitParamDecl *&getThisDecl(CodeGenFunction &CGF) {
|
2012-02-11 10:57:39 +08:00
|
|
|
return CGF.CXXABIThisDecl;
|
2010-08-31 15:33:07 +08:00
|
|
|
}
|
|
|
|
llvm::Value *&getThisValue(CodeGenFunction &CGF) {
|
2012-02-11 10:57:39 +08:00
|
|
|
return CGF.CXXABIThisValue;
|
2010-08-31 15:33:07 +08:00
|
|
|
}
|
|
|
|
|
2013-03-23 03:02:54 +08:00
|
|
|
/// Issue a diagnostic about unsupported features in the ABI.
|
|
|
|
void ErrorUnsupportedABI(CodeGenFunction &CGF, StringRef S);
|
|
|
|
|
|
|
|
/// Get a null value for unsupported member pointers.
|
|
|
|
llvm::Constant *GetBogusMemberPointer(QualType T);
|
|
|
|
|
2013-02-13 16:37:51 +08:00
|
|
|
ImplicitParamDecl *&getStructorImplicitParamDecl(CodeGenFunction &CGF) {
|
|
|
|
return CGF.CXXStructorImplicitParamDecl;
|
|
|
|
}
|
|
|
|
llvm::Value *&getStructorImplicitParamValue(CodeGenFunction &CGF) {
|
|
|
|
return CGF.CXXStructorImplicitParamValue;
|
2010-08-31 15:33:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform prolog initialization of the parameter variable suitable
|
2013-12-18 03:46:40 +08:00
|
|
|
/// for 'this' emitted by buildThisParam.
|
2010-08-31 15:33:07 +08:00
|
|
|
void EmitThisParam(CodeGenFunction &CGF);
|
|
|
|
|
2010-09-02 17:58:18 +08:00
|
|
|
ASTContext &getContext() const { return CGM.getContext(); }
|
|
|
|
|
2012-05-01 13:23:51 +08:00
|
|
|
virtual bool requiresArrayCookie(const CXXDeleteExpr *E, QualType eltType);
|
|
|
|
virtual bool requiresArrayCookie(const CXXNewExpr *E);
|
|
|
|
|
2010-05-26 03:52:27 +08:00
|
|
|
public:
|
2010-08-22 18:59:02 +08:00
|
|
|
|
2010-11-29 01:50:09 +08:00
|
|
|
virtual ~CGCXXABI();
|
2010-05-26 03:52:27 +08:00
|
|
|
|
|
|
|
/// Gets the mangle context.
|
2011-01-14 02:57:25 +08:00
|
|
|
MangleContext &getMangleContext() {
|
|
|
|
return *MangleCtx;
|
|
|
|
}
|
2010-08-22 08:05:51 +08:00
|
|
|
|
2013-07-01 04:40:16 +08:00
|
|
|
/// Returns true if the given constructor or destructor is one of the
|
|
|
|
/// kinds that the ABI says returns 'this' (only applies when called
|
|
|
|
/// non-virtually for destructors).
|
|
|
|
///
|
|
|
|
/// There currently is no way to indicate if a destructor returns 'this'
|
|
|
|
/// when called virtually, and code generation does not support the case.
|
2013-03-21 00:59:38 +08:00
|
|
|
virtual bool HasThisReturn(GlobalDecl GD) const { return false; }
|
|
|
|
|
2013-04-17 20:54:10 +08:00
|
|
|
/// Returns true if the given record type should be returned indirectly.
|
|
|
|
virtual bool isReturnTypeIndirect(const CXXRecordDecl *RD) const = 0;
|
|
|
|
|
|
|
|
/// Specify how one should pass an argument of a record type.
|
|
|
|
enum RecordArgABI {
|
|
|
|
/// Pass it using the normal C aggregate rules for the ABI, potentially
|
|
|
|
/// introducing extra copies and passing some or all of it in registers.
|
|
|
|
RAA_Default = 0,
|
|
|
|
|
|
|
|
/// Pass it on the stack using its defined layout. The argument must be
|
|
|
|
/// evaluated directly into the correct stack position in the arguments area,
|
|
|
|
/// and the call machinery must not move it or introduce extra copies.
|
|
|
|
RAA_DirectInMemory,
|
|
|
|
|
|
|
|
/// Pass it as a pointer to temporary memory.
|
|
|
|
RAA_Indirect
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Returns how an argument of the given record type should be passed.
|
|
|
|
virtual RecordArgABI getRecordArgABI(const CXXRecordDecl *RD) const = 0;
|
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Find the LLVM type used to represent the given member pointer
|
|
|
|
/// type.
|
2011-07-10 01:41:47 +08:00
|
|
|
virtual llvm::Type *
|
2010-08-23 09:21:21 +08:00
|
|
|
ConvertMemberPointerType(const MemberPointerType *MPT);
|
|
|
|
|
|
|
|
/// Load a member function from an object and a member function
|
|
|
|
/// pointer. Apply the this-adjustment and set 'This' to the
|
|
|
|
/// adjusted value.
|
2014-02-21 07:22:07 +08:00
|
|
|
virtual llvm::Value *EmitLoadOfMemberFunctionPointer(
|
|
|
|
CodeGenFunction &CGF, const Expr *E, llvm::Value *&This,
|
|
|
|
llvm::Value *MemPtr, const MemberPointerType *MPT);
|
2010-08-22 11:04:22 +08:00
|
|
|
|
2010-09-01 05:07:20 +08:00
|
|
|
/// Calculate an l-value from an object and a data member pointer.
|
2014-02-21 07:22:07 +08:00
|
|
|
virtual llvm::Value *
|
|
|
|
EmitMemberDataPointerAddress(CodeGenFunction &CGF, const Expr *E,
|
|
|
|
llvm::Value *Base, llvm::Value *MemPtr,
|
|
|
|
const MemberPointerType *MPT);
|
2010-09-01 05:07:20 +08:00
|
|
|
|
2012-02-15 09:22:51 +08:00
|
|
|
/// Perform a derived-to-base, base-to-derived, or bitcast member
|
|
|
|
/// pointer conversion.
|
2010-08-23 09:21:21 +08:00
|
|
|
virtual llvm::Value *EmitMemberPointerConversion(CodeGenFunction &CGF,
|
|
|
|
const CastExpr *E,
|
|
|
|
llvm::Value *Src);
|
2010-08-22 18:59:02 +08:00
|
|
|
|
2012-02-15 09:22:51 +08:00
|
|
|
/// Perform a derived-to-base, base-to-derived, or bitcast member
|
|
|
|
/// pointer conversion on a constant value.
|
|
|
|
virtual llvm::Constant *EmitMemberPointerConversion(const CastExpr *E,
|
|
|
|
llvm::Constant *Src);
|
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Return true if the given member pointer can be zero-initialized
|
|
|
|
/// (in the C++ sense) with an LLVM zeroinitializer.
|
2010-08-23 05:01:12 +08:00
|
|
|
virtual bool isZeroInitializable(const MemberPointerType *MPT);
|
2010-08-22 12:16:24 +08:00
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Create a null member pointer of the given type.
|
|
|
|
virtual llvm::Constant *EmitNullMemberPointer(const MemberPointerType *MPT);
|
2010-08-22 12:16:24 +08:00
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Create a member pointer for the given method.
|
2011-04-12 08:42:48 +08:00
|
|
|
virtual llvm::Constant *EmitMemberPointer(const CXXMethodDecl *MD);
|
2010-08-22 14:43:33 +08:00
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Create a member pointer for the given field.
|
2011-02-03 16:15:49 +08:00
|
|
|
virtual llvm::Constant *EmitMemberDataPointer(const MemberPointerType *MPT,
|
|
|
|
CharUnits offset);
|
2010-08-22 16:30:07 +08:00
|
|
|
|
2012-01-14 12:30:29 +08:00
|
|
|
/// Create a member pointer for the given member pointer constant.
|
|
|
|
virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
|
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Emit a comparison between two member pointers. Returns an i1.
|
2010-08-22 16:30:07 +08:00
|
|
|
virtual llvm::Value *
|
2010-08-23 09:21:21 +08:00
|
|
|
EmitMemberPointerComparison(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *L,
|
|
|
|
llvm::Value *R,
|
|
|
|
const MemberPointerType *MPT,
|
|
|
|
bool Inequality);
|
2010-08-22 16:30:07 +08:00
|
|
|
|
2010-08-23 09:21:21 +08:00
|
|
|
/// Determine if a member pointer is non-null. Returns an i1.
|
2010-08-22 16:30:07 +08:00
|
|
|
virtual llvm::Value *
|
2010-08-23 09:21:21 +08:00
|
|
|
EmitMemberPointerIsNotNull(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *MemPtr,
|
|
|
|
const MemberPointerType *MPT);
|
2010-08-31 15:33:07 +08:00
|
|
|
|
2012-02-15 09:22:51 +08:00
|
|
|
protected:
|
|
|
|
/// A utility method for computing the offset required for the given
|
|
|
|
/// base-to-derived or derived-to-base member-pointer conversion.
|
|
|
|
/// Does not handle virtual conversions (in case we ever fully
|
|
|
|
/// support an ABI that allows this). Returns null if no adjustment
|
|
|
|
/// is required.
|
|
|
|
llvm::Constant *getMemberPointerAdjustment(const CastExpr *E);
|
|
|
|
|
2013-05-10 05:01:17 +08:00
|
|
|
/// \brief Computes the non-virtual adjustment needed for a member pointer
|
|
|
|
/// conversion along an inheritance path stored in an APValue. Unlike
|
|
|
|
/// getMemberPointerAdjustment(), the adjustment can be negative if the path
|
|
|
|
/// is from a derived type to a base type.
|
|
|
|
CharUnits getMemberPointerPathAdjustment(const APValue &MP);
|
|
|
|
|
2012-02-15 09:22:51 +08:00
|
|
|
public:
|
2012-09-25 18:10:39 +08:00
|
|
|
/// Adjust the given non-null pointer to an object of polymorphic
|
|
|
|
/// type to point to the complete object.
|
|
|
|
///
|
|
|
|
/// The IR type of the result should be a pointer but is otherwise
|
|
|
|
/// irrelevant.
|
|
|
|
virtual llvm::Value *adjustToCompleteObject(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *ptr,
|
|
|
|
QualType type) = 0;
|
|
|
|
|
2013-05-30 02:02:47 +08:00
|
|
|
virtual llvm::Value *GetVirtualBaseClassOffset(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *This,
|
|
|
|
const CXXRecordDecl *ClassDecl,
|
|
|
|
const CXXRecordDecl *BaseClassDecl) = 0;
|
|
|
|
|
2010-08-31 15:33:07 +08:00
|
|
|
/// Build the signature of the given constructor variant by adding
|
2013-07-01 04:40:16 +08:00
|
|
|
/// any required parameters. For convenience, ArgTys has been initialized
|
|
|
|
/// with the type of 'this' and ResTy has been initialized with the type of
|
|
|
|
/// 'this' if HasThisReturn(GlobalDecl(Ctor, T)) is true or 'void' otherwise
|
|
|
|
/// (although both may be changed by the ABI).
|
2010-08-31 15:33:07 +08:00
|
|
|
///
|
|
|
|
/// If there are ever any ABIs where the implicit parameters are
|
|
|
|
/// intermixed with the formal parameters, we can address those
|
|
|
|
/// then.
|
|
|
|
virtual void BuildConstructorSignature(const CXXConstructorDecl *Ctor,
|
|
|
|
CXXCtorType T,
|
|
|
|
CanQualType &ResTy,
|
2011-07-20 14:58:45 +08:00
|
|
|
SmallVectorImpl<CanQualType> &ArgTys) = 0;
|
2010-08-31 15:33:07 +08:00
|
|
|
|
2013-06-19 23:20:38 +08:00
|
|
|
virtual llvm::BasicBlock *EmitCtorCompleteObjectHandler(CodeGenFunction &CGF,
|
|
|
|
const CXXRecordDecl *RD);
|
2013-02-27 21:46:31 +08:00
|
|
|
|
2013-10-10 02:16:58 +08:00
|
|
|
/// Emit the code to initialize hidden members required
|
|
|
|
/// to handle virtual inheritance, if needed by the ABI.
|
|
|
|
virtual void
|
|
|
|
initializeHiddenVirtualInheritanceMembers(CodeGenFunction &CGF,
|
|
|
|
const CXXRecordDecl *RD) {}
|
|
|
|
|
2013-08-05 01:30:04 +08:00
|
|
|
/// Emit constructor variants required by this ABI.
|
|
|
|
virtual void EmitCXXConstructors(const CXXConstructorDecl *D) = 0;
|
|
|
|
|
2010-08-31 15:33:07 +08:00
|
|
|
/// Build the signature of the given destructor variant by adding
|
2013-07-01 04:40:16 +08:00
|
|
|
/// any required parameters. For convenience, ArgTys has been initialized
|
|
|
|
/// with the type of 'this' and ResTy has been initialized with the type of
|
|
|
|
/// 'this' if HasThisReturn(GlobalDecl(Dtor, T)) is true or 'void' otherwise
|
|
|
|
/// (although both may be changed by the ABI).
|
2010-08-31 15:33:07 +08:00
|
|
|
virtual void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
|
|
|
|
CXXDtorType T,
|
|
|
|
CanQualType &ResTy,
|
2011-07-20 14:58:45 +08:00
|
|
|
SmallVectorImpl<CanQualType> &ArgTys) = 0;
|
2010-08-31 15:33:07 +08:00
|
|
|
|
[ms-cxxabi] Emit linkonce complete dtors in TUs that need them
Based on Peter Collingbourne's destructor patches.
Prior to this change, clang was considering ?1 to be the complete
destructor and the base destructor, which was wrong. This lead to
crashes when clang tried to emit two LLVM functions with the same name.
In this ABI, TUs with non-inline dtors might not emit a complete
destructor. They are emitted as inline thunks in TUs that need them,
and they always delegate to the base dtors of the complete class and its
virtual bases. This change uses the DeferredDecls machinery to emit
complete dtors as needed.
Currently in clang try body destructors can catch exceptions thrown by
virtual base destructors. In the Microsoft C++ ABI, clang may not have
the destructor definition, in which case clang won't wrap the virtual
virtual base destructor calls in a try-catch. Diagnosing this in user
code is TODO.
Finally, for classes that don't use virtual inheritance, MSVC always
calls the base destructor (?1) directly. This is a useful code size
optimization that avoids emitting lots of extra thunks or aliases.
Implementing it also means our existing tests continue to pass, and is
consistent with MSVC's output.
We can do the same for Itanium by tweaking GetAddrOfCXXDestructor, but
it will require further testing.
Reviewers: rjmccall
CC: cfe-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D1066
llvm-svn: 186828
2013-07-22 21:51:44 +08:00
|
|
|
/// Returns true if the given destructor type should be emitted as a linkonce
|
|
|
|
/// delegating thunk, regardless of whether the dtor is defined in this TU or
|
|
|
|
/// not.
|
|
|
|
virtual bool useThunkForDtorVariant(const CXXDestructorDecl *Dtor,
|
|
|
|
CXXDtorType DT) const = 0;
|
|
|
|
|
|
|
|
/// Emit destructor variants required by this ABI.
|
|
|
|
virtual void EmitCXXDestructors(const CXXDestructorDecl *D) = 0;
|
|
|
|
|
2013-08-21 14:25:03 +08:00
|
|
|
/// Get the type of the implicit "this" parameter used by a method. May return
|
|
|
|
/// zero if no specific type is applicable, e.g. if the ABI expects the "this"
|
|
|
|
/// parameter to point to some artificial offset in a complete object due to
|
|
|
|
/// vbases being reordered.
|
|
|
|
virtual const CXXRecordDecl *
|
|
|
|
getThisArgumentTypeForMethod(const CXXMethodDecl *MD) {
|
|
|
|
return MD->getParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform ABI-specific "this" argument adjustment required prior to
|
2014-03-15 01:43:37 +08:00
|
|
|
/// a call of a virtual function.
|
|
|
|
/// The "VirtualCall" argument is true iff the call itself is virtual.
|
|
|
|
virtual llvm::Value *
|
|
|
|
adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD,
|
|
|
|
llvm::Value *This,
|
|
|
|
bool VirtualCall) {
|
2013-08-21 14:25:03 +08:00
|
|
|
return This;
|
|
|
|
}
|
|
|
|
|
2013-12-18 03:46:40 +08:00
|
|
|
/// Build a parameter variable suitable for 'this'.
|
|
|
|
void buildThisParam(CodeGenFunction &CGF, FunctionArgList &Params);
|
|
|
|
|
|
|
|
/// Insert any ABI-specific implicit parameters into the parameter list for a
|
|
|
|
/// function. This generally involves extra data for constructors and
|
|
|
|
/// destructors.
|
2010-08-31 15:33:07 +08:00
|
|
|
///
|
|
|
|
/// ABIs may also choose to override the return type, which has been
|
2013-07-01 04:40:16 +08:00
|
|
|
/// initialized with the type of 'this' if HasThisReturn(CGF.CurGD) is true or
|
|
|
|
/// the formal return type of the function otherwise.
|
2013-12-18 03:46:40 +08:00
|
|
|
virtual void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy,
|
|
|
|
FunctionArgList &Params) = 0;
|
2010-08-31 15:33:07 +08:00
|
|
|
|
2013-08-21 14:25:03 +08:00
|
|
|
/// Perform ABI-specific "this" parameter adjustment in a virtual function
|
|
|
|
/// prologue.
|
|
|
|
virtual llvm::Value *adjustThisParameterInVirtualFunctionPrologue(
|
|
|
|
CodeGenFunction &CGF, GlobalDecl GD, llvm::Value *This) {
|
|
|
|
return This;
|
|
|
|
}
|
|
|
|
|
2010-08-31 15:33:07 +08:00
|
|
|
/// Emit the ABI-specific prolog for the function.
|
|
|
|
virtual void EmitInstanceFunctionProlog(CodeGenFunction &CGF) = 0;
|
|
|
|
|
2013-12-18 03:46:40 +08:00
|
|
|
/// Add any ABI-specific implicit arguments needed to call a constructor.
|
|
|
|
///
|
|
|
|
/// \return The number of args added to the call, which is typically zero or
|
|
|
|
/// one.
|
|
|
|
virtual unsigned
|
|
|
|
addImplicitConstructorArgs(CodeGenFunction &CGF, const CXXConstructorDecl *D,
|
|
|
|
CXXCtorType Type, bool ForVirtualBase,
|
|
|
|
bool Delegating, CallArgList &Args) = 0;
|
2013-02-27 21:46:31 +08:00
|
|
|
|
2013-12-13 08:53:54 +08:00
|
|
|
/// Emit the destructor call.
|
|
|
|
virtual void EmitDestructorCall(CodeGenFunction &CGF,
|
|
|
|
const CXXDestructorDecl *DD, CXXDtorType Type,
|
|
|
|
bool ForVirtualBase, bool Delegating,
|
|
|
|
llvm::Value *This) = 0;
|
|
|
|
|
2013-09-27 22:48:01 +08:00
|
|
|
/// Emits the VTable definitions required for the given record type.
|
|
|
|
virtual void emitVTableDefinitions(CodeGenVTables &CGVT,
|
|
|
|
const CXXRecordDecl *RD) = 0;
|
|
|
|
|
|
|
|
/// Get the address point of the vtable for the given base subobject while
|
|
|
|
/// building a constructor or a destructor. On return, NeedsVirtualOffset
|
|
|
|
/// tells if a virtual base adjustment is needed in order to get the offset
|
|
|
|
/// of the base subobject.
|
|
|
|
virtual llvm::Value *getVTableAddressPointInStructor(
|
|
|
|
CodeGenFunction &CGF, const CXXRecordDecl *RD, BaseSubobject Base,
|
|
|
|
const CXXRecordDecl *NearestVBase, bool &NeedsVirtualOffset) = 0;
|
|
|
|
|
|
|
|
/// Get the address point of the vtable for the given base subobject while
|
|
|
|
/// building a constexpr.
|
|
|
|
virtual llvm::Constant *
|
|
|
|
getVTableAddressPointForConstExpr(BaseSubobject Base,
|
|
|
|
const CXXRecordDecl *VTableClass) = 0;
|
|
|
|
|
|
|
|
/// Get the address of the vtable for the given record decl which should be
|
|
|
|
/// used for the vptr at the given offset in RD.
|
|
|
|
virtual llvm::GlobalVariable *getAddrOfVTable(const CXXRecordDecl *RD,
|
|
|
|
CharUnits VPtrOffset) = 0;
|
|
|
|
|
2013-08-21 14:25:03 +08:00
|
|
|
/// Build a virtual function pointer in the ABI-specific way.
|
|
|
|
virtual llvm::Value *getVirtualFunctionPointer(CodeGenFunction &CGF,
|
|
|
|
GlobalDecl GD,
|
|
|
|
llvm::Value *This,
|
|
|
|
llvm::Type *Ty) = 0;
|
|
|
|
|
2013-02-15 22:45:22 +08:00
|
|
|
/// Emit the ABI-specific virtual destructor call.
|
2013-07-01 04:40:16 +08:00
|
|
|
virtual void EmitVirtualDestructorCall(CodeGenFunction &CGF,
|
|
|
|
const CXXDestructorDecl *Dtor,
|
|
|
|
CXXDtorType DtorType,
|
|
|
|
SourceLocation CallLoc,
|
|
|
|
llvm::Value *This) = 0;
|
2013-02-15 22:45:22 +08:00
|
|
|
|
2013-10-09 17:23:58 +08:00
|
|
|
virtual void adjustCallArgsForDestructorThunk(CodeGenFunction &CGF,
|
|
|
|
GlobalDecl GD,
|
|
|
|
CallArgList &CallArgs) {}
|
|
|
|
|
2013-06-19 23:20:38 +08:00
|
|
|
/// Emit any tables needed to implement virtual inheritance. For Itanium,
|
|
|
|
/// this emits virtual table tables. For the MSVC++ ABI, this emits virtual
|
|
|
|
/// base tables.
|
2013-09-27 22:48:01 +08:00
|
|
|
virtual void emitVirtualInheritanceTables(const CXXRecordDecl *RD) = 0;
|
2013-06-19 23:20:38 +08:00
|
|
|
|
2013-10-09 17:23:58 +08:00
|
|
|
virtual void setThunkLinkage(llvm::Function *Thunk, bool ForVTable) = 0;
|
|
|
|
|
2013-10-30 19:55:43 +08:00
|
|
|
virtual llvm::Value *performThisAdjustment(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *This,
|
|
|
|
const ThisAdjustment &TA) = 0;
|
|
|
|
|
|
|
|
virtual llvm::Value *performReturnAdjustment(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *Ret,
|
|
|
|
const ReturnAdjustment &RA) = 0;
|
|
|
|
|
2010-08-31 15:33:07 +08:00
|
|
|
virtual void EmitReturnFromThunk(CodeGenFunction &CGF,
|
|
|
|
RValue RV, QualType ResultType);
|
2010-09-02 17:58:18 +08:00
|
|
|
|
2012-07-18 01:10:11 +08:00
|
|
|
/// Gets the pure virtual member call function.
|
|
|
|
virtual StringRef GetPureVirtualCallName() = 0;
|
|
|
|
|
2012-10-17 06:56:05 +08:00
|
|
|
/// Gets the deleted virtual member call name.
|
|
|
|
virtual StringRef GetDeletedVirtualCallName() = 0;
|
|
|
|
|
2013-11-21 08:15:56 +08:00
|
|
|
/// \brief Returns true iff static data members that are initialized in the
|
|
|
|
/// class definition should have linkonce linkage.
|
|
|
|
virtual bool isInlineInitializedStaticDataMemberLinkOnce() { return false; }
|
|
|
|
|
2010-09-02 17:58:18 +08:00
|
|
|
/**************************** Array cookies ******************************/
|
|
|
|
|
|
|
|
/// Returns the extra size required in order to store the array
|
2012-06-22 18:16:05 +08:00
|
|
|
/// cookie for the given new-expression. May return 0 to indicate that no
|
2010-09-02 17:58:18 +08:00
|
|
|
/// array cookie is required.
|
|
|
|
///
|
|
|
|
/// Several cases are filtered out before this method is called:
|
|
|
|
/// - non-array allocations never need a cookie
|
2012-06-20 08:57:15 +08:00
|
|
|
/// - calls to \::operator new(size_t, void*) never need a cookie
|
2010-09-02 17:58:18 +08:00
|
|
|
///
|
2012-06-22 18:16:05 +08:00
|
|
|
/// \param expr - the new-expression being allocated.
|
2011-01-27 17:37:56 +08:00
|
|
|
virtual CharUnits GetArrayCookieSize(const CXXNewExpr *expr);
|
2010-09-02 17:58:18 +08:00
|
|
|
|
|
|
|
/// Initialize the array cookie for the given allocation.
|
|
|
|
///
|
|
|
|
/// \param NewPtr - a char* which is the presumed-non-null
|
|
|
|
/// return value of the allocation function
|
|
|
|
/// \param NumElements - the computed number of elements,
|
2012-05-01 13:23:51 +08:00
|
|
|
/// potentially collapsed from the multidimensional array case;
|
|
|
|
/// always a size_t
|
2010-09-02 17:58:18 +08:00
|
|
|
/// \param ElementType - the base element allocated type,
|
|
|
|
/// i.e. the allocated type after stripping all array types
|
|
|
|
virtual llvm::Value *InitializeArrayCookie(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *NewPtr,
|
|
|
|
llvm::Value *NumElements,
|
2011-01-27 17:37:56 +08:00
|
|
|
const CXXNewExpr *expr,
|
2010-09-02 17:58:18 +08:00
|
|
|
QualType ElementType);
|
|
|
|
|
|
|
|
/// Reads the array cookie associated with the given pointer,
|
|
|
|
/// if it has one.
|
|
|
|
///
|
|
|
|
/// \param Ptr - a pointer to the first element in the array
|
|
|
|
/// \param ElementType - the base element type of elements of the array
|
|
|
|
/// \param NumElements - an out parameter which will be initialized
|
|
|
|
/// with the number of elements allocated, or zero if there is no
|
|
|
|
/// cookie
|
|
|
|
/// \param AllocPtr - an out parameter which will be initialized
|
|
|
|
/// with a char* pointing to the address returned by the allocation
|
|
|
|
/// function
|
|
|
|
/// \param CookieSize - an out parameter which will be initialized
|
|
|
|
/// with the size of the cookie, or zero if there is no cookie
|
|
|
|
virtual void ReadArrayCookie(CodeGenFunction &CGF, llvm::Value *Ptr,
|
2011-01-27 17:37:56 +08:00
|
|
|
const CXXDeleteExpr *expr,
|
2010-09-02 17:58:18 +08:00
|
|
|
QualType ElementType, llvm::Value *&NumElements,
|
|
|
|
llvm::Value *&AllocPtr, CharUnits &CookieSize);
|
|
|
|
|
2013-06-29 04:45:28 +08:00
|
|
|
/// Return whether the given global decl needs a VTT parameter.
|
|
|
|
virtual bool NeedsVTTParameter(GlobalDecl GD);
|
|
|
|
|
2012-05-01 13:23:51 +08:00
|
|
|
protected:
|
|
|
|
/// Returns the extra size required in order to store the array
|
|
|
|
/// cookie for the given type. Assumes that an array cookie is
|
|
|
|
/// required.
|
|
|
|
virtual CharUnits getArrayCookieSizeImpl(QualType elementType);
|
|
|
|
|
|
|
|
/// Reads the array cookie for an allocation which is known to have one.
|
|
|
|
/// This is called by the standard implementation of ReadArrayCookie.
|
|
|
|
///
|
|
|
|
/// \param ptr - a pointer to the allocation made for an array, as a char*
|
|
|
|
/// \param cookieSize - the computed cookie size of an array
|
2012-06-15 15:35:42 +08:00
|
|
|
///
|
2012-05-01 13:23:51 +08:00
|
|
|
/// Other parameters are as above.
|
2012-06-15 15:35:42 +08:00
|
|
|
///
|
2012-05-01 13:23:51 +08:00
|
|
|
/// \return a size_t
|
|
|
|
virtual llvm::Value *readArrayCookieImpl(CodeGenFunction &IGF,
|
|
|
|
llvm::Value *ptr,
|
|
|
|
CharUnits cookieSize);
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2010-09-08 09:44:27 +08:00
|
|
|
/*************************** Static local guards ****************************/
|
|
|
|
|
2010-11-06 17:44:32 +08:00
|
|
|
/// Emits the guarded initializer and destructor setup for the given
|
|
|
|
/// variable, given that it couldn't be emitted as a constant.
|
2012-02-14 06:16:19 +08:00
|
|
|
/// If \p PerformInit is false, the initialization has been folded to a
|
|
|
|
/// constant and should not be performed.
|
2010-11-06 17:44:32 +08:00
|
|
|
///
|
|
|
|
/// The variable may be:
|
|
|
|
/// - a static local variable
|
|
|
|
/// - a static data member of a class template instantiation
|
|
|
|
virtual void EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D,
|
2013-09-11 04:14:30 +08:00
|
|
|
llvm::GlobalVariable *DeclPtr,
|
|
|
|
bool PerformInit) = 0;
|
2010-09-08 09:44:27 +08:00
|
|
|
|
2012-05-01 14:13:13 +08:00
|
|
|
/// Emit code to force the execution of a destructor during global
|
|
|
|
/// teardown. The default implementation of this uses atexit.
|
|
|
|
///
|
|
|
|
/// \param dtor - a function taking a single pointer argument
|
|
|
|
/// \param addr - a pointer to pass to the destructor function.
|
2013-04-15 07:01:42 +08:00
|
|
|
virtual void registerGlobalDtor(CodeGenFunction &CGF, const VarDecl &D,
|
|
|
|
llvm::Constant *dtor, llvm::Constant *addr);
|
2013-04-20 00:42:07 +08:00
|
|
|
|
|
|
|
/*************************** thread_local initialization ********************/
|
|
|
|
|
|
|
|
/// Emits ABI-required functions necessary to initialize thread_local
|
|
|
|
/// variables in this translation unit.
|
|
|
|
///
|
|
|
|
/// \param Decls The thread_local declarations in this translation unit.
|
|
|
|
/// \param InitFunc If this translation unit contains any non-constant
|
|
|
|
/// initialization or non-trivial destruction for thread_local
|
|
|
|
/// variables, a function to perform the initialization. Otherwise, 0.
|
|
|
|
virtual void EmitThreadLocalInitFuncs(
|
|
|
|
llvm::ArrayRef<std::pair<const VarDecl *, llvm::GlobalVariable *> > Decls,
|
|
|
|
llvm::Function *InitFunc);
|
|
|
|
|
|
|
|
/// Emit a reference to a non-local thread_local variable (including
|
|
|
|
/// triggering the initialization of all thread_local variables in its
|
|
|
|
/// translation unit).
|
2014-03-27 06:48:22 +08:00
|
|
|
virtual LValue EmitThreadLocalVarDeclLValue(CodeGenFunction &CGF,
|
|
|
|
const VarDecl *VD,
|
|
|
|
QualType LValType);
|
2010-05-26 03:52:27 +08:00
|
|
|
};
|
|
|
|
|
2013-01-26 07:36:14 +08:00
|
|
|
// Create an instance of a C++ ABI class:
|
|
|
|
|
|
|
|
/// Creates an Itanium-family ABI.
|
2010-08-16 11:33:14 +08:00
|
|
|
CGCXXABI *CreateItaniumCXXABI(CodeGenModule &CGM);
|
2013-01-26 07:36:14 +08:00
|
|
|
|
|
|
|
/// Creates a Microsoft-family ABI.
|
2010-08-16 11:33:14 +08:00
|
|
|
CGCXXABI *CreateMicrosoftCXXABI(CodeGenModule &CGM);
|
2010-08-22 08:05:51 +08:00
|
|
|
|
2010-05-26 03:52:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|