summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2022-05-28 14:17:53 -0400
committerAnthony Green <green@moxielogic.com>2022-05-28 14:17:53 -0400
commit55f80b026c2ac854086a2770d324fa55188f0f81 (patch)
tree9f443a3219782ec13877f35a333baf3cd7ec97e5 /testsuite
parent72c3192773fe483f6517e343ecc3ea468ce73a4f (diff)
downloadlibffi-55f80b026c2ac854086a2770d324fa55188f0f81.tar.gz
New test cases
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/libffi.call/struct_by_value_2.c63
-rw-r--r--testsuite/libffi.call/struct_by_value_3.c65
-rw-r--r--testsuite/libffi.call/struct_by_value_4.c67
3 files changed, 195 insertions, 0 deletions
diff --git a/testsuite/libffi.call/struct_by_value_2.c b/testsuite/libffi.call/struct_by_value_2.c
new file mode 100644
index 0000000..f170289
--- /dev/null
+++ b/testsuite/libffi.call/struct_by_value_2.c
@@ -0,0 +1,63 @@
+/* Area: ffi_call
+ Purpose: Check structures.
+ Limitations: none.
+ PR: none.
+ Originator: From the original ffitest.c */
+
+/* { dg-do run } */
+#include "ffitest.h"
+
+typedef struct
+{
+ unsigned int ui01;
+ unsigned int ui02;
+} test_structure_1;
+
+static test_structure_1 ABI_ATTR struct1(test_structure_1 ts)
+{
+ ts.ui02++;
+
+ return ts;
+}
+
+int main (void)
+{
+ ffi_cif cif;
+ ffi_type *args[MAX_ARGS];
+ void *values[MAX_ARGS];
+ ffi_type ts1_type;
+ ffi_type *ts1_type_elements[3];
+
+ test_structure_1 ts1_arg;
+
+ /* This is a hack to get a properly aligned result buffer */
+ test_structure_1 *ts1_result =
+ (test_structure_1 *) malloc (sizeof(test_structure_1));
+
+ ts1_type.size = 0;
+ ts1_type.alignment = 0;
+ ts1_type.type = FFI_TYPE_STRUCT;
+ ts1_type.elements = ts1_type_elements;
+ ts1_type_elements[0] = &ffi_type_uint;
+ ts1_type_elements[1] = &ffi_type_uint;
+ ts1_type_elements[2] = NULL;
+
+ args[0] = &ts1_type;
+ values[0] = &ts1_arg;
+
+ /* Initialize the cif */
+ CHECK(ffi_prep_cif(&cif, ABI_NUM, 1,
+ &ts1_type, args) == FFI_OK);
+
+ ts1_arg.ui02 = 555;
+
+ ffi_call(&cif, FFI_FN(struct1), ts1_result, values);
+
+ CHECK(ts1_result->ui02 == 556);
+
+ /* This will fail if ffi_call isn't passing the struct by value. */
+ CHECK(ts1_arg.ui02 == 555);
+
+ free (ts1_result);
+ exit(0);
+}
diff --git a/testsuite/libffi.call/struct_by_value_3.c b/testsuite/libffi.call/struct_by_value_3.c
new file mode 100644
index 0000000..55cf113
--- /dev/null
+++ b/testsuite/libffi.call/struct_by_value_3.c
@@ -0,0 +1,65 @@
+/* Area: ffi_call
+ Purpose: Check structures.
+ Limitations: none.
+ PR: none.
+ Originator: From the original ffitest.c */
+
+/* { dg-do run } */
+#include "ffitest.h"
+
+typedef struct
+{
+ unsigned int ui01;
+ unsigned int ui02;
+ unsigned int ui03;
+} test_structure_1;
+
+static test_structure_1 ABI_ATTR struct1(test_structure_1 ts)
+{
+ ts.ui03++;
+
+ return ts;
+}
+
+int main (void)
+{
+ ffi_cif cif;
+ ffi_type *args[MAX_ARGS];
+ void *values[MAX_ARGS];
+ ffi_type ts1_type;
+ ffi_type *ts1_type_elements[4];
+
+ test_structure_1 ts1_arg;
+
+ /* This is a hack to get a properly aligned result buffer */
+ test_structure_1 *ts1_result =
+ (test_structure_1 *) malloc (sizeof(test_structure_1));
+
+ ts1_type.size = 0;
+ ts1_type.alignment = 0;
+ ts1_type.type = FFI_TYPE_STRUCT;
+ ts1_type.elements = ts1_type_elements;
+ ts1_type_elements[0] = &ffi_type_uint;
+ ts1_type_elements[1] = &ffi_type_uint;
+ ts1_type_elements[2] = &ffi_type_uint;
+ ts1_type_elements[3] = NULL;
+
+ args[0] = &ts1_type;
+ values[0] = &ts1_arg;
+
+ /* Initialize the cif */
+ CHECK(ffi_prep_cif(&cif, ABI_NUM, 1,
+ &ts1_type, args) == FFI_OK);
+
+ ts1_arg.ui03 = 555;
+
+ ffi_call(&cif, FFI_FN(struct1), ts1_result, values);
+
+ CHECK(ts1_result->ui03 == 556);
+
+ /* This will fail if ffi_call isn't passing the struct by value. */
+ CHECK(ts1_arg.ui03 == 555);
+
+ free (ts1_result);
+ exit(0);
+}
diff --git a/testsuite/libffi.call/struct_by_value_4.c b/testsuite/libffi.call/struct_by_value_4.c
new file mode 100644
index 0000000..768650f
--- /dev/null
+++ b/testsuite/libffi.call/struct_by_value_4.c
@@ -0,0 +1,67 @@
+/* Area: ffi_call
+ Purpose: Check structures.
+ Limitations: none.
+ PR: none.
+ Originator: From the original ffitest.c */
+
+/* { dg-do run } */
+#include "ffitest.h"
+
+typedef struct
+{
+ unsigned int ui01;
+ unsigned int ui02;
+ unsigned int ui03;
+ unsigned int ui04;
+} test_structure_1;
+
+static test_structure_1 ABI_ATTR struct1(test_structure_1 ts)
+{
+ ts.ui04++;
+
+ return ts;
+}
+
+int main (void)
+{
+ ffi_cif cif;
+ ffi_type *args[MAX_ARGS];
+ void *values[MAX_ARGS];
+ ffi_type ts1_type;
+ ffi_type *ts1_type_elements[5];
+
+ test_structure_1 ts1_arg;
+
+ /* This is a hack to get a properly aligned result buffer */
+ test_structure_1 *ts1_result =
+ (test_structure_1 *) malloc (sizeof(test_structure_1));
+
+ ts1_type.size = 0;
+ ts1_type.alignment = 0;
+ ts1_type.type = FFI_TYPE_STRUCT;
+ ts1_type.elements = ts1_type_elements;
+ ts1_type_elements[0] = &ffi_type_uint;
+ ts1_type_elements[1] = &ffi_type_uint;
+ ts1_type_elements[2] = &ffi_type_uint;
+ ts1_type_elements[3] = &ffi_type_uint;
+ ts1_type_elements[4] = NULL;
+
+ args[0] = &ts1_type;
+ values[0] = &ts1_arg;
+
+ /* Initialize the cif */
+ CHECK(ffi_prep_cif(&cif, ABI_NUM, 1,
+ &ts1_type, args) == FFI_OK);
+
+ ts1_arg.ui04 = 555;
+
+ ffi_call(&cif, FFI_FN(struct1), ts1_result, values);
+
+ CHECK(ts1_result->ui04 == 556);
+
+ /* This will fail if ffi_call isn't passing the struct by value. */
+ CHECK(ts1_arg.ui04 == 555);
+
+ free (ts1_result);
+ exit(0);
+}