[llvm] [OFFLOAD] Update ffi_cif structure to match libffi (PR #128756)

via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 10:31:43 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-offload

Author: Alex (adurang)

<details>
<summary>Changes</summary>

The ffi_cif structure defined in the wrapper header is smaller than the actual structure in libffi which results in other structures being overwritten when libffi is called, and finally in a segfault.

The patch updates the structure to the correct layout as specified in ffi.h

---
Full diff: https://github.com/llvm/llvm-project/pull/128756.diff


1 Files Affected:

- (modified) offload/plugins-nextgen/host/dynamic_ffi/ffi.h (+10) 


``````````diff
diff --git a/offload/plugins-nextgen/host/dynamic_ffi/ffi.h b/offload/plugins-nextgen/host/dynamic_ffi/ffi.h
index 80aa512236d28..33285b4aef402 100644
--- a/offload/plugins-nextgen/host/dynamic_ffi/ffi.h
+++ b/offload/plugins-nextgen/host/dynamic_ffi/ffi.h
@@ -53,6 +53,16 @@ typedef enum ffi_abi {
 #else
 #error "Unknown ABI"
 #endif
+} ffi_abi;
+
+typedef struct {
+  ffi_abi abi;
+  unsigned nargs;
+  ffi_type **arg_types;
+  ffi_type *rtype;
+  unsigned bytes;
+  unsigned flags;
+  long long extra_fields; // Longest extra field defined in the FFI sources
 } ffi_cif;
 
 #ifdef __cplusplus

``````````

</details>


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


More information about the llvm-commits mailing list