stret_large2.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /* Area: ffi_call, closure_call
  2. Purpose: Check structure returning 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: Blake Chaffin 6/21/2007 */
  8. /* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
  9. #include "ffitest.h"
  10. /* 13 FPRs: 104 bytes */
  11. /* 14 FPRs: 112 bytes */
  12. typedef struct struct_116byte {
  13. double a;
  14. double b;
  15. double c;
  16. double d;
  17. double e;
  18. double f;
  19. double g;
  20. double h;
  21. double i;
  22. double j;
  23. double k;
  24. double l;
  25. double m;
  26. double n;
  27. int o;
  28. } struct_116byte;
  29. struct_116byte cls_struct_116byte_fn(
  30. struct_116byte b0,
  31. struct_116byte b1,
  32. struct_116byte b2,
  33. struct_116byte b3)
  34. {
  35. struct_116byte result;
  36. result.a = b0.a + b1.a + b2.a + b3.a;
  37. result.b = b0.b + b1.b + b2.b + b3.b;
  38. result.c = b0.c + b1.c + b2.c + b3.c;
  39. result.d = b0.d + b1.d + b2.d + b3.d;
  40. result.e = b0.e + b1.e + b2.e + b3.e;
  41. result.f = b0.f + b1.f + b2.f + b3.f;
  42. result.g = b0.g + b1.g + b2.g + b3.g;
  43. result.h = b0.h + b1.h + b2.h + b3.h;
  44. result.i = b0.i + b1.i + b2.i + b3.i;
  45. result.j = b0.j + b1.j + b2.j + b3.j;
  46. result.k = b0.k + b1.k + b2.k + b3.k;
  47. result.l = b0.l + b1.l + b2.l + b3.l;
  48. result.m = b0.m + b1.m + b2.m + b3.m;
  49. result.n = b0.n + b1.n + b2.n + b3.n;
  50. result.o = b0.o + b1.o + b2.o + b3.o;
  51. printf("%g %g %g %g %g %g %g %g %g %g %g %g %g %g %d\n", result.a, result.b, result.c,
  52. result.d, result.e, result.f, result.g, result.h, result.i,
  53. result.j, result.k, result.l, result.m, result.n, result.o);
  54. return result;
  55. }
  56. static void
  57. cls_struct_116byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args, void* userdata __UNUSED__)
  58. {
  59. struct_116byte b0, b1, b2, b3;
  60. b0 = *(struct_116byte*)(args[0]);
  61. b1 = *(struct_116byte*)(args[1]);
  62. b2 = *(struct_116byte*)(args[2]);
  63. b3 = *(struct_116byte*)(args[3]);
  64. *(struct_116byte*)resp = cls_struct_116byte_fn(b0, b1, b2, b3);
  65. }
  66. int main (void)
  67. {
  68. ffi_cif cif;
  69. void *code;
  70. ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
  71. void* args_dbl[5];
  72. ffi_type* cls_struct_fields[16];
  73. ffi_type cls_struct_type;
  74. ffi_type* dbl_arg_types[5];
  75. struct_116byte e_dbl = { 9.0, 2.0, 6.0, 5.0, 3.0, 4.0, 8.0, 1.0, 1.0, 2.0, 3.0, 7.0, 2.0, 5.0, 7 };
  76. struct_116byte f_dbl = { 1.0, 2.0, 3.0, 7.0, 2.0, 5.0, 6.0, 7.0, 4.0, 5.0, 7.0, 9.0, 1.0, 6.0, 4 };
  77. struct_116byte g_dbl = { 4.0, 5.0, 7.0, 9.0, 1.0, 1.0, 2.0, 9.0, 8.0, 6.0, 1.0, 4.0, 0.0, 7.0, 3 };
  78. struct_116byte h_dbl = { 8.0, 6.0, 1.0, 4.0, 0.0, 3.0, 3.0, 1.0, 9.0, 2.0, 6.0, 5.0, 3.0, 8.0, 2 };
  79. struct_116byte res_dbl;
  80. cls_struct_type.size = 0;
  81. cls_struct_type.alignment = 0;
  82. cls_struct_type.type = FFI_TYPE_STRUCT;
  83. cls_struct_type.elements = cls_struct_fields;
  84. cls_struct_fields[0] = &ffi_type_double;
  85. cls_struct_fields[1] = &ffi_type_double;
  86. cls_struct_fields[2] = &ffi_type_double;
  87. cls_struct_fields[3] = &ffi_type_double;
  88. cls_struct_fields[4] = &ffi_type_double;
  89. cls_struct_fields[5] = &ffi_type_double;
  90. cls_struct_fields[6] = &ffi_type_double;
  91. cls_struct_fields[7] = &ffi_type_double;
  92. cls_struct_fields[8] = &ffi_type_double;
  93. cls_struct_fields[9] = &ffi_type_double;
  94. cls_struct_fields[10] = &ffi_type_double;
  95. cls_struct_fields[11] = &ffi_type_double;
  96. cls_struct_fields[12] = &ffi_type_double;
  97. cls_struct_fields[13] = &ffi_type_double;
  98. cls_struct_fields[14] = &ffi_type_sint32;
  99. cls_struct_fields[15] = NULL;
  100. dbl_arg_types[0] = &cls_struct_type;
  101. dbl_arg_types[1] = &cls_struct_type;
  102. dbl_arg_types[2] = &cls_struct_type;
  103. dbl_arg_types[3] = &cls_struct_type;
  104. dbl_arg_types[4] = NULL;
  105. CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4, &cls_struct_type,
  106. dbl_arg_types) == FFI_OK);
  107. args_dbl[0] = &e_dbl;
  108. args_dbl[1] = &f_dbl;
  109. args_dbl[2] = &g_dbl;
  110. args_dbl[3] = &h_dbl;
  111. args_dbl[4] = NULL;
  112. ffi_call(&cif, FFI_FN(cls_struct_116byte_fn), &res_dbl, args_dbl);
  113. /* { dg-output "22 15 17 25 6 13 19 18 22 15 17 25 6 26 16" } */
  114. printf("res: %g %g %g %g %g %g %g %g %g %g %g %g %g %g %d\n", res_dbl.a, res_dbl.b,
  115. res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h, res_dbl.i,
  116. res_dbl.j, res_dbl.k, res_dbl.l, res_dbl.m, res_dbl.n, res_dbl.o);
  117. /* { dg-output "\nres: 22 15 17 25 6 13 19 18 22 15 17 25 6 26 16" } */
  118. CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_116byte_gn, NULL, code) == FFI_OK);
  119. res_dbl = ((struct_116byte(*)(struct_116byte, struct_116byte,
  120. struct_116byte, struct_116byte))(code))(e_dbl, f_dbl, g_dbl, h_dbl);
  121. /* { dg-output "\n22 15 17 25 6 13 19 18 22 15 17 25 6 26 16" } */
  122. printf("res: %g %g %g %g %g %g %g %g %g %g %g %g %g %g %d\n", res_dbl.a, res_dbl.b,
  123. res_dbl.c, res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h, res_dbl.i,
  124. res_dbl.j, res_dbl.k, res_dbl.l, res_dbl.m, res_dbl.n, res_dbl.o);
  125. /* { dg-output "\nres: 22 15 17 25 6 13 19 18 22 15 17 25 6 26 16" } */
  126. exit(0);
  127. }