summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.h
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@apple.com>2018-04-17 18:41:52 +0000
committerAkira Hatanaka <ahatanaka@apple.com>2018-04-17 18:41:52 +0000
commit617e26152dea71efc44a45f5ae034f15c92767f0 (patch)
tree964d175311edcbfe8346fb800a3fec1461726064 /clang/lib/CodeGen/CodeGenModule.h
parent8fa100dfe3c36687f3ab09804657fdf4fa946bdf (diff)
downloadbcm5719-llvm-617e26152dea71efc44a45f5ae034f15c92767f0.tar.gz
bcm5719-llvm-617e26152dea71efc44a45f5ae034f15c92767f0.zip
Add a command line option 'fregister_global_dtors_with_atexit' to
register destructor functions annotated with __attribute__((destructor)) using __cxa_atexit or atexit. Register destructor functions annotated with __attribute__((destructor)) calling __cxa_atexit in a synthesized constructor function instead of emitting references to the functions in a special section. The primary reason for adding this option is that we are planning to deprecate the __mod_term_funcs section on Darwin in the future. This feature is enabled by default only on Darwin. Users who do not want this can use command line option 'fno_register_global_dtors_with_atexit' to disable it. rdar://problem/33887655 Differential Revision: https://reviews.llvm.org/D45578 llvm-svn: 330199
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h
index 5daa4e989d3..76af56b56c3 100644
--- a/clang/lib/CodeGen/CodeGenModule.h
+++ b/clang/lib/CodeGen/CodeGenModule.h
@@ -1336,6 +1336,12 @@ private:
void checkAliases();
+ std::map<int, llvm::TinyPtrVector<llvm::Function *>> DtorsUsingAtExit;
+
+ /// Register functions annotated with __attribute__((destructor)) using
+ /// __cxa_atexit, if it is available, or atexit otherwise.
+ void registerGlobalDtorsWithAtExit();
+
void emitMultiVersionFunctions();
/// Emit any vtables which we deferred and still have a use for.
OpenPOWER on IntegriCloud