Home | History | Annotate | Download | only in CodeGen

Lines Matching full:dtor

676 void CodeGenModule::AddGlobalDtor(llvm::Function *Dtor, int Priority) {
678 GlobalDtors.push_back(Structor(Priority, Dtor, nullptr));
732 if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(FD)) {
733 if (getCXXABI().useThunkForDtorVariant(Dtor, GD.getDtorType())) {
1830 // All MSVC dtors other than the base dtor are linkonce_odr and delegate to
1831 // each other bottoming out with the base dtor. Therefore we emit non-base
1832 // dtors on usage, even if there is no dtor definition in the TU.