[llvm] [OpenMP] Introduce support for OMPX extensions and taskgraph frontend (PR #66919)

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 20 09:58:13 PDT 2023


================
@@ -60,6 +60,8 @@ class CGOpenMPRegionInfo : public CodeGenFunction::CGCapturedStmtInfo {
     ParallelOutlinedRegion,
     /// Region with outlined function for standalone 'task' directive.
     TaskOutlinedRegion,
+    /// Region with outlined function for standalone 'taskgraph' directive.
+    TaskgraphOutlinedRegion,
----------------
alexey-bataev wrote:

Do you need to generate a function out of the structured block or just use one from the task? If it ends up with just decorating runtime calls, no need to capture anything and create captured region

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


More information about the llvm-commits mailing list