diff options
author | Julian Lettner <julian.lettner@apple.com> | 2022-03-23 17:37:07 -0700 |
---|---|---|
committer | Julian Lettner <julian.lettner@apple.com> | 2022-03-23 18:36:55 -0700 |
commit | 64902d335c2126e24a9d84b7410924148959e4a9 (patch) | |
tree | 59cdc88c0f3836312effe230bb4ad178ebc7323f /llvm/lib/Transforms/Utils/Utils.cpp | |
parent | 39aa202affd99d1713daea00b7681571fe478a12 (diff) | |
download | llvm-64902d335c2126e24a9d84b7410924148959e4a9.zip llvm-64902d335c2126e24a9d84b7410924148959e4a9.tar.gz llvm-64902d335c2126e24a9d84b7410924148959e4a9.tar.bz2 |
Reland "Lower `@llvm.global_dtors` using `__cxa_atexit` on MachO"
For MachO, lower `@llvm.global_dtors` into `@llvm_global_ctors` with
`__cxa_atexit` calls to avoid emitting the deprecated `__mod_term_func`.
Reuse the existing `WebAssemblyLowerGlobalDtors.cpp` to accomplish this.
Enable fallback to the old behavior via Clang driver flag
(`-fregister-global-dtors-with-atexit`) or llc / code generation flag
(`-lower-global-dtors-via-cxa-atexit`). This escape hatch will be
removed in the future.
Differential Revision: https://reviews.llvm.org/D121736
Diffstat (limited to 'llvm/lib/Transforms/Utils/Utils.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/Utils.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Utils/Utils.cpp b/llvm/lib/Transforms/Utils/Utils.cpp index 43eb5c8..f34f2df 100644 --- a/llvm/lib/Transforms/Utils/Utils.cpp +++ b/llvm/lib/Transforms/Utils/Utils.cpp @@ -34,6 +34,7 @@ void llvm::initializeTransformUtils(PassRegistry &Registry) { initializeLCSSAWrapperPassPass(Registry); initializeLibCallsShrinkWrapLegacyPassPass(Registry); initializeLoopSimplifyPass(Registry); + initializeLowerGlobalDtorsLegacyPassPass(Registry); initializeLowerInvokeLegacyPassPass(Registry); initializeLowerSwitchLegacyPassPass(Registry); initializeNameAnonGlobalLegacyPassPass(Registry); |