[openmp] [clang] [llvm] [OpenMP] Rework handling of global ctor/dtors in OpenMP (PR #71739)

Matt Arsenault via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 9 03:58:16 PST 2023


================
@@ -2794,6 +2794,14 @@ void ItaniumCXXABI::registerGlobalDtor(CodeGenFunction &CGF, const VarDecl &D,
   if (D.isNoDestroy(CGM.getContext()))
     return;
 
+  // OpenMP offloading supports C++ constructors and destructors but we do not
+  // always have 'atexit' available. Instead lower these to use the LLVM global
+  // destructors which we can handle directly in the runtime.
+  if (CGM.getLangOpts().OpenMP && CGM.getLangOpts().OpenMPIsTargetDevice &&
+      !D.isStaticLocal() &&
+      (CGM.getTriple().isAMDGPU() || CGM.getTriple().isNVPTX()))
----------------
arsenm wrote:

Oh look, it's both of my favorite patterns. Can you refine this into something better than language X | language Y and AMDGPU || PTX 

https://github.com/llvm/llvm-project/pull/71739


More information about the cfe-commits mailing list