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

  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
CGDeclCXX.cpp 70 QualType::DestructionKind dtorKind = type.isDestructedType();
72 switch (dtorKind) {
92 if (dtorKind == QualType::DK_cxx_destructor &&
104 .generateDestroyHelper(addr, type, CGF.getDestroyer(dtorKind),
105 CGF.needsEHCleanup(dtorKind), &D);
CGClass.cpp 739 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
740 if (CGF.needsEHCleanup(dtorKind))
741 CGF.pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
797 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
798 if (needsEHCleanup(dtorKind))
799 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
    [all...]
CGExprAgg.cpp 422 QualType::DestructionKind dtorKind = elementType.isDestructedType();
426 if (CGF.needsEHCleanup(dtorKind)) {
436 CGF.getDestroyer(dtorKind));
441 dtorKind = QualType::DK_none;
530 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [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);
617 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGObjC.cpp     [all...]
CGExprCXX.cpp     [all...]
CodeGenFunction.h     [all...]

Completed in 9059 milliseconds