clang 19.0.0git
Functions
CGExprCXX.cpp File Reference
#include "CGCUDARuntime.h"
#include "CGCXXABI.h"
#include "CGDebugInfo.h"
#include "CGObjCRuntime.h"
#include "CodeGenFunction.h"
#include "ConstantEmitter.h"
#include "TargetInfo.h"
#include "clang/Basic/CodeGenOptions.h"
#include "clang/CodeGen/CGFunctionInfo.h"
#include "llvm/IR/Intrinsics.h"

Go to the source code of this file.

Functions

static MemberCallInfo commonEmitCXXMemberOrOperatorCall (CodeGenFunction &CGF, GlobalDecl GD, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE, CallArgList &Args, CallArgList *RtlArgs)
 
static CXXRecordDeclgetCXXRecord (const Expr *E)
 
static void EmitNullBaseClassInitialization (CodeGenFunction &CGF, Address DestPtr, const CXXRecordDecl *Base)
 
static CharUnits CalculateCookiePadding (CodeGenFunction &CGF, const CXXNewExpr *E)
 
static llvm::ValueEmitCXXNewAllocSize (CodeGenFunction &CGF, const CXXNewExpr *e, unsigned minElements, llvm::Value *&numElements, llvm::Value *&sizeWithoutCookie)
 
static void StoreAnyExprIntoOneUnit (CodeGenFunction &CGF, const Expr *Init, QualType AllocType, Address NewPtr, AggValueSlot::Overlap_t MayOverlap)
 
static void EmitNewInitializer (CodeGenFunction &CGF, const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy, Address NewPtr, llvm::Value *NumElements, llvm::Value *AllocSizeWithoutCookie)
 
static RValue EmitNewDeleteCall (CodeGenFunction &CGF, const FunctionDecl *CalleeDecl, const FunctionProtoType *CalleeType, const CallArgList &Args)
 Emit a call to an operator new or operator delete function, as implicitly created by new-expressions and delete-expressions.
 
static UsualDeleteParams getUsualDeleteParams (const FunctionDecl *FD)
 
static void EnterNewDeleteCleanup (CodeGenFunction &CGF, const CXXNewExpr *E, Address NewPtr, llvm::Value *AllocSize, CharUnits AllocAlign, const CallArgList &NewArgs)
 Enter a cleanup to call 'operator delete' if the initializer in a new-expression throws.
 
static void EmitDestroyingObjectDelete (CodeGenFunction &CGF, const CXXDeleteExpr *DE, Address Ptr, QualType ElementType)
 Emit the code for deleting a single object with a destroying operator delete.
 
static bool EmitObjectDelete (CodeGenFunction &CGF, const CXXDeleteExpr *DE, Address Ptr, QualType ElementType, llvm::BasicBlock *UnconditionalDeleteBlock)
 Emit the code for deleting a single object.
 
static void EmitArrayDelete (CodeGenFunction &CGF, const CXXDeleteExpr *E, Address deletedPtr, QualType elementType)
 Emit the code for deleting an array of objects.
 
static bool isGLValueFromPointerDeref (const Expr *E)
 
static llvm::ValueEmitTypeidFromVTable (CodeGenFunction &CGF, const Expr *E, llvm::Type *StdTypeInfoPtrTy)
 
static llvm::ValueEmitDynamicCastToNull (CodeGenFunction &CGF, QualType DestTy)
 

Function Documentation

◆ CalculateCookiePadding()

static CharUnits CalculateCookiePadding ( CodeGenFunction CGF,
const CXXNewExpr E 
)
static

◆ commonEmitCXXMemberOrOperatorCall()

static MemberCallInfo commonEmitCXXMemberOrOperatorCall ( CodeGenFunction CGF,
GlobalDecl  GD,
llvm::Value This,
llvm::Value ImplicitParam,
QualType  ImplicitParamTy,
const CallExpr CE,
CallArgList Args,
CallArgList RtlArgs 
)
static

◆ EmitArrayDelete()

static void EmitArrayDelete ( CodeGenFunction CGF,
const CXXDeleteExpr E,
Address  deletedPtr,
QualType  elementType 
)
static

◆ EmitCXXNewAllocSize()

static llvm::Value * EmitCXXNewAllocSize ( CodeGenFunction CGF,
const CXXNewExpr e,
unsigned  minElements,
llvm::Value *&  numElements,
llvm::Value *&  sizeWithoutCookie 
)
static

◆ EmitDestroyingObjectDelete()

static void EmitDestroyingObjectDelete ( CodeGenFunction CGF,
const CXXDeleteExpr DE,
Address  Ptr,
QualType  ElementType 
)
static

Emit the code for deleting a single object with a destroying operator delete.

If the element type has a non-virtual destructor, Ptr has already been converted to the type of the parameter of 'operator delete'. Otherwise Ptr points to an object of the static type.

Definition at line 1906 of file CGExprCXX.cpp.

References clang::CodeGen::CodeGenFunction::CGM, clang::CodeGen::CodeGenFunction::EmitDeleteCall(), clang::CodeGen::CGCXXABI::emitVirtualObjectDelete(), clang::Type::getAsCXXRecordDecl(), clang::CodeGen::CodeGenModule::getCXXABI(), clang::CXXRecordDecl::getDestructor(), clang::CXXDeleteExpr::getOperatorDelete(), and clang::CodeGen::Address::getPointer().

◆ EmitDynamicCastToNull()

static llvm::Value * EmitDynamicCastToNull ( CodeGenFunction CGF,
QualType  DestTy 
)
static

◆ EmitNewDeleteCall()

static RValue EmitNewDeleteCall ( CodeGenFunction CGF,
const FunctionDecl CalleeDecl,
const FunctionProtoType CalleeType,
const CallArgList Args 
)
static

Emit a call to an operator new or operator delete function, as implicitly created by new-expressions and delete-expressions.

C++1y [expr.new]p10: [In a new-expression,] an implementation is allowed to omit a call to a replaceable global allocation function.

We model such elidable calls with the 'builtin' attribute.

Definition at line 1327 of file CGExprCXX.cpp.

References clang::CodeGen::CodeGenTypes::arrangeFreeFunctionCall(), clang::CodeGen::CodeGenFunction::CGM, clang::CodeGen::CodeGenFunction::EmitCall(), clang::CodeGen::CGCallee::forDirect(), clang::CodeGen::CodeGenModule::GetAddrOfFunction(), clang::CodeGen::CodeGenModule::getTypes(), and clang::FunctionDecl::isReplaceableGlobalAllocationFunction().

◆ EmitNewInitializer()

static void EmitNewInitializer ( CodeGenFunction CGF,
const CXXNewExpr E,
QualType  ElementType,
llvm::Type ElementTy,
Address  NewPtr,
llvm::Value NumElements,
llvm::Value AllocSizeWithoutCookie 
)
static

◆ EmitNullBaseClassInitialization()

static void EmitNullBaseClassInitialization ( CodeGenFunction CGF,
Address  DestPtr,
const CXXRecordDecl Base 
)
static

◆ EmitObjectDelete()

static bool EmitObjectDelete ( CodeGenFunction CGF,
const CXXDeleteExpr DE,
Address  Ptr,
QualType  ElementType,
llvm::BasicBlock *  UnconditionalDeleteBlock 
)
static

Emit the code for deleting a single object.

Returns
true if we started emitting UnconditionalDeleteBlock, false if not.

Definition at line 1920 of file CGExprCXX.cpp.

References clang::CodeGen::ARCPreciseLifetime, clang::CodeGen::CodeGenFunction::CGM, clang::declaresSameEntity(), clang::Dtor_Complete, clang::CodeGen::CodeGenFunction::EHStack, clang::CodeGen::CodeGenFunction::EmitARCDestroyStrong(), clang::CodeGen::CodeGenFunction::EmitARCDestroyWeak(), clang::CodeGen::CodeGenFunction::EmitBlock(), clang::CodeGen::CodeGenFunction::EmitCXXDestructorCall(), clang::CodeGen::CodeGenFunction::EmitTypeCheck(), clang::CodeGen::CGCXXABI::emitVirtualObjectDelete(), clang::CXXDeleteExpr::getArgument(), clang::Type::getAs(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), clang::CodeGen::CodeGenModule::getCXXABI(), getCXXRecord(), clang::CXXRecordDecl::getDestructor(), clang::CXXMethodDecl::getDevirtualizedMethod(), clang::Expr::getExprLoc(), clang::CodeGen::CodeGenModule::getLangOpts(), clang::QualType::getObjCLifetime(), clang::CXXDeleteExpr::getOperatorDelete(), clang::DeclContext::getParent(), clang::CodeGen::Address::getPointer(), clang::CXXRecordDecl::hasDefinition(), clang::CXXRecordDecl::hasTrivialDestructor(), clang::FunctionDecl::isDestroyingOperatorDelete(), clang::CXXMethodDecl::isVirtual(), clang::CodeGen::NormalAndEHCleanup, clang::Qualifiers::OCL_Autoreleasing, clang::Qualifiers::OCL_ExplicitNone, clang::Qualifiers::OCL_None, clang::Qualifiers::OCL_Strong, clang::Qualifiers::OCL_Weak, clang::CodeGen::CodeGenFunction::PopCleanupBlock(), and clang::CodeGen::CodeGenFunction::TCK_MemberCall.

◆ EmitTypeidFromVTable()

static llvm::Value * EmitTypeidFromVTable ( CodeGenFunction CGF,
const Expr E,
llvm::Type StdTypeInfoPtrTy 
)
static

◆ EnterNewDeleteCleanup()

static void EnterNewDeleteCleanup ( CodeGenFunction CGF,
const CXXNewExpr E,
Address  NewPtr,
llvm::Value AllocSize,
CharUnits  AllocAlign,
const CallArgList NewArgs 
)
static

◆ getCXXRecord()

static CXXRecordDecl * getCXXRecord ( const Expr E)
static

◆ getUsualDeleteParams()

static UsualDeleteParams getUsualDeleteParams ( const FunctionDecl FD)
static

◆ isGLValueFromPointerDeref()

static bool isGLValueFromPointerDeref ( const Expr E)
static

◆ StoreAnyExprIntoOneUnit()

static void StoreAnyExprIntoOneUnit ( CodeGenFunction CGF,
const Expr Init,
QualType  AllocType,
Address  NewPtr,
AggValueSlot::Overlap_t  MayOverlap 
)
static