[llvm] [OFFLOAD] Interop fixes for Windows (PR #162652)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 9 06:27:20 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-offload
Author: Alex Duran (adurang)
<details>
<summary>Changes</summary>
On Windows, for a reason I don't fully understand boolean bits get extra padding (even when asking for packed structures) in the structures that messes the offsets between the compiler and the runtime.
Also, "weak" works differently on Windows than Linux (i.e., the "local" routine has preference) which causes it to crash as we don't really have an alternate implementation of __kmpc_omp_wait_deps. Given this, it doesn't either make sense to mark it as "weak" for Linux either.
---
Full diff: https://github.com/llvm/llvm-project/pull/162652.diff
2 Files Affected:
- (modified) offload/include/OpenMP/InteropAPI.h (+6-6)
- (modified) offload/libomptarget/OpenMP/InteropAPI.cpp (+1-2)
``````````diff
diff --git a/offload/include/OpenMP/InteropAPI.h b/offload/include/OpenMP/InteropAPI.h
index 53ac4be2e2e98..8c06ba36fc3f3 100644
--- a/offload/include/OpenMP/InteropAPI.h
+++ b/offload/include/OpenMP/InteropAPI.h
@@ -25,8 +25,8 @@ typedef enum kmp_interop_type_t {
} kmp_interop_type_t;
struct interop_attrs_t {
- bool inorder : 1;
- int reserved : 31;
+ uint32_t inorder : 1;
+ uint32_t reserved : 31;
/// Check if the supported attributes are compatible with the current
/// attributes. Only if an attribute is supported can the value be true,
@@ -44,15 +44,15 @@ struct interop_spec_t {
};
struct interop_flags_t {
- bool implicit : 1; // dispatch (true) or interop (false)
- bool nowait : 1; // has nowait flag
- int reserved : 30;
+ uint32_t implicit : 1; // dispatch (true) or interop (false)
+ uint32_t nowait : 1; // has nowait flag
+ uint32_t reserved : 30;
};
struct interop_ctx_t {
uint32_t version; // version of the interface (current is 0)
interop_flags_t flags;
- int gtid;
+ int32_t gtid;
};
struct dep_pack_t {
diff --git a/offload/libomptarget/OpenMP/InteropAPI.cpp b/offload/libomptarget/OpenMP/InteropAPI.cpp
index c55ef2c2e672c..d6ef17c06355c 100644
--- a/offload/libomptarget/OpenMP/InteropAPI.cpp
+++ b/offload/libomptarget/OpenMP/InteropAPI.cpp
@@ -22,8 +22,7 @@ extern "C" {
void __kmpc_omp_wait_deps(ident_t *loc_ref, int32_t gtid, int32_t ndeps,
kmp_depend_info_t *dep_list, int32_t ndeps_noalias,
- kmp_depend_info_t *noalias_dep_list)
- __attribute__((weak));
+ kmp_depend_info_t *noalias_dep_list);
} // extern "C"
``````````
</details>
https://github.com/llvm/llvm-project/pull/162652
More information about the llvm-commits
mailing list