Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:DtorType

229                                          CXXDtorType DtorType,
775 CXXDtorType DtorType = UseGlobalDelete ? Dtor_Complete : Dtor_Deleting;
777 EmitVirtualDestructorCall(CGF, Dtor, DtorType, Ptr, /*CE=*/nullptr);
1607 CodeGenFunction &CGF, const CXXDestructorDecl *Dtor, CXXDtorType DtorType,
1610 assert(DtorType == Dtor_Deleting || DtorType == Dtor_Complete);
1623 DtorType == Dtor_Deleting);
3298 StructorType dtorType) {
3302 (dtorType == StructorType::Complete || dtorType == StructorType::Base)) {
3306 if (dtorType == StructorType::Complete)
3317 if (dtorType == StructorType::Base && !CGM.TryEmitBaseDestructorAsAlias(dtor))
3320 llvm::Function *Fn = CGM.codegenCXXStructor(dtor, dtorType);