HomeSort by relevance Sort by last modified time
    Searched refs:dtorKind (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
CGDeclCXX.cpp 72 QualType::DestructionKind dtorKind = type.isDestructedType();
74 switch (dtorKind) {
94 if (dtorKind == QualType::DK_cxx_destructor &&
106 .generateDestroyHelper(addr, type, CGF.getDestroyer(dtorKind),
107 CGF.needsEHCleanup(dtorKind), &D);
CGExprAgg.cpp 414 QualType::DestructionKind dtorKind = elementType.isDestructedType();
418 if (CGF.needsEHCleanup(dtorKind)) {
427 CGF.getDestroyer(dtorKind));
432 dtorKind = QualType::DK_none;
519 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [all...]
CGClass.cpp 642 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
643 if (needsEHCleanup(dtorKind))
644 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
    [all...]
CGBlocks.cpp 593 QualType::DestructionKind dtorKind =
595 if (dtorKind == QualType::DK_none) continue;
601 if (dtorKind == QualType::DK_objc_strong_lifetime) {
604 destroyer = CGF.getDestroyer(dtorKind);
616 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGExprCXX.cpp 768 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
788 if (needsEHCleanup(DtorKind)) {
796 getDestroyer(DtorKind));
    [all...]
CGObjC.cpp     [all...]
CodeGenFunction.h     [all...]
CGCall.cpp 273 CXXDtorType dtorKind) {
277 GlobalDecl GD(D, dtorKind);
281 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
    [all...]

Completed in 197 milliseconds