cls_64byte.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /* Area: ffi_call, closure_call
  2. Purpose: Check structure passing with different structure size.
  3. Depending on the ABI. Check bigger struct which overlaps
  4. the gp and fp register count on Darwin/AIX/ppc64.
  5. Limitations: none.
  6. PR: none.
  7. Originator: <andreast@gcc.gnu.org> 20030828 */
  8. /* { dg-do run } */
  9. #include "ffitest.h"
  10. typedef struct cls_struct_64byte {
  11. double a;
  12. double b;
  13. double c;
  14. double d;
  15. double e;
  16. double f;
  17. double g;
  18. double h;
  19. } cls_struct_64byte;
  20. cls_struct_64byte cls_struct_64byte_fn(struct cls_struct_64byte b0,
  21. struct cls_struct_64byte b1,
  22. struct cls_struct_64byte b2,
  23. struct cls_struct_64byte b3)
  24. {
  25. struct cls_struct_64byte result;
  26. result.a = b0.a + b1.a + b2.a + b3.a;
  27. result.b = b0.b + b1.b + b2.b + b3.b;
  28. result.c = b0.c + b1.c + b2.c + b3.c;
  29. result.d = b0.d + b1.d + b2.d + b3.d;
  30. result.e = b0.e + b1.e + b2.e + b3.e;
  31. result.f = b0.f + b1.f + b2.f + b3.f;
  32. result.g = b0.g + b1.g + b2.g + b3.g;
  33. result.h = b0.h + b1.h + b2.h + b3.h;
  34. printf("%g %g %g %g %g %g %g %g\n", result.a, result.b, result.c,
  35. result.d, result.e, result.f, result.g, result.h);
  36. return result;
  37. }
  38. static void
  39. cls_struct_64byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
  40. void* userdata __UNUSED__)
  41. {
  42. struct cls_struct_64byte b0, b1, b2, b3;
  43. b0 = *(struct cls_struct_64byte*)(args[0]);
  44. b1 = *(struct cls_struct_64byte*)(args[1]);
  45. b2 = *(struct cls_struct_64byte*)(args[2]);
  46. b3 = *(struct cls_struct_64byte*)(args[3]);
  47. *(cls_struct_64byte*)resp = cls_struct_64byte_fn(b0, b1, b2, b3);
  48. }
  49. int main (void)
  50. {
  51. ffi_cif cif;
  52. void *code;
  53. ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
  54. void* args_dbl[5];
  55. ffi_type* cls_struct_fields[9];
  56. ffi_type cls_struct_type;
  57. ffi_type* dbl_arg_types[5];
  58. struct cls_struct_64byte e_dbl = { 9.0, 2.0, 6.0, 5.0, 3.0, 4.0, 8.0, 1.0 };
  59. struct cls_struct_64byte f_dbl = { 1.0, 2.0, 3.0, 7.0, 2.0, 5.0, 6.0, 7.0 };
  60. struct cls_struct_64byte g_dbl = { 4.0, 5.0, 7.0, 9.0, 1.0, 1.0, 2.0, 9.0 };
  61. struct cls_struct_64byte h_dbl = { 8.0, 6.0, 1.0, 4.0, 0.0, 3.0, 3.0, 1.0 };
  62. struct cls_struct_64byte res_dbl;
  63. cls_struct_type.size = 0;
  64. cls_struct_type.alignment = 0;
  65. cls_struct_type.type = FFI_TYPE_STRUCT;
  66. cls_struct_type.elements = cls_struct_fields;
  67. cls_struct_fields[0] = &ffi_type_double;
  68. cls_struct_fields[1] = &ffi_type_double;
  69. cls_struct_fields[2] = &ffi_type_double;
  70. cls_struct_fields[3] = &ffi_type_double;
  71. cls_struct_fields[4] = &ffi_type_double;
  72. cls_struct_fields[5] = &ffi_type_double;
  73. cls_struct_fields[6] = &ffi_type_double;
  74. cls_struct_fields[7] = &ffi_type_double;
  75. cls_struct_fields[8] = NULL;
  76. dbl_arg_types[0] = &cls_struct_type;
  77. dbl_arg_types[1] = &cls_struct_type;
  78. dbl_arg_types[2] = &cls_struct_type;
  79. dbl_arg_types[3] = &cls_struct_type;
  80. dbl_arg_types[4] = NULL;
  81. CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4, &cls_struct_type,
  82. dbl_arg_types) == FFI_OK);
  83. args_dbl[0] = &e_dbl;
  84. args_dbl[1] = &f_dbl;
  85. args_dbl[2] = &g_dbl;
  86. args_dbl[3] = &h_dbl;
  87. args_dbl[4] = NULL;
  88. ffi_call(&cif, FFI_FN(cls_struct_64byte_fn), &res_dbl, args_dbl);
  89. /* { dg-output "22 15 17 25 6 13 19 18" } */
  90. printf("res: %g %g %g %g %g %g %g %g\n", res_dbl.a, res_dbl.b, res_dbl.c,
  91. res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h);
  92. /* { dg-output "\nres: 22 15 17 25 6 13 19 18" } */
  93. CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_64byte_gn, NULL, code) == FFI_OK);
  94. res_dbl = ((cls_struct_64byte(*)(cls_struct_64byte,
  95. cls_struct_64byte,
  96. cls_struct_64byte,
  97. cls_struct_64byte))
  98. (code))(e_dbl, f_dbl, g_dbl, h_dbl);
  99. /* { dg-output "\n22 15 17 25 6 13 19 18" } */
  100. printf("res: %g %g %g %g %g %g %g %g\n", res_dbl.a, res_dbl.b, res_dbl.c,
  101. res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h);
  102. /* { dg-output "\nres: 22 15 17 25 6 13 19 18" } */
  103. exit(0);
  104. }