ffi 1.11.1 → 1.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/{appveyor.yml → .appveyor.yml} +1 -1
  3. data/.gitmodules +2 -2
  4. data/CHANGELOG.md +16 -0
  5. data/Rakefile +1 -0
  6. data/ext/ffi_c/Call.c +3 -3
  7. data/ext/ffi_c/Call.h +2 -2
  8. data/ext/ffi_c/Function.c +4 -4
  9. data/ext/ffi_c/LongDouble.c +7 -7
  10. data/ext/ffi_c/libffi.darwin.mk +1 -1
  11. data/ext/ffi_c/libffi/.appveyor.yml +29 -13
  12. data/ext/ffi_c/libffi/.gitattributes +4 -0
  13. data/ext/ffi_c/libffi/.travis.yml +31 -2
  14. data/ext/ffi_c/libffi/.travis/build-in-container.sh +22 -0
  15. data/ext/ffi_c/libffi/.travis/build.sh +83 -7
  16. data/ext/ffi_c/libffi/.travis/install.sh +32 -11
  17. data/ext/ffi_c/libffi/LICENSE +1 -1
  18. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  19. data/ext/ffi_c/libffi/Makefile.am +30 -38
  20. data/ext/ffi_c/libffi/README.md +15 -6
  21. data/ext/ffi_c/libffi/configure.ac +1 -1
  22. data/ext/ffi_c/libffi/configure.host +21 -7
  23. data/ext/ffi_c/libffi/include/ffi.h.in +4 -0
  24. data/ext/ffi_c/libffi/include/ffi_common.h +4 -0
  25. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  26. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  27. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  28. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  29. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  30. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  31. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  32. data/ext/ffi_c/libffi/msvcc.sh +27 -2
  33. data/ext/ffi_c/libffi/src/aarch64/ffi.c +124 -56
  34. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +13 -2
  35. data/ext/ffi_c/libffi/src/aarch64/sysv.S +8 -6
  36. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  37. data/ext/ffi_c/libffi/src/arm/ffi.c +40 -5
  38. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  39. data/ext/ffi_c/libffi/src/arm/sysv.S +2 -0
  40. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  41. data/ext/ffi_c/libffi/src/closures.c +32 -8
  42. data/ext/ffi_c/libffi/src/pa/linux.S +23 -2
  43. data/ext/ffi_c/libffi/src/powerpc/ffi.c +3 -2
  44. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +58 -25
  45. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +1 -1
  46. data/ext/ffi_c/libffi/src/prep_cif.c +4 -2
  47. data/ext/ffi_c/libffi/src/x86/ffi.c +13 -6
  48. data/ext/ffi_c/libffi/src/x86/ffi64.c +5 -3
  49. data/ext/ffi_c/libffi/src/x86/ffiw64.c +6 -3
  50. data/ext/ffi_c/libffi/src/x86/sysv.S +2 -2
  51. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
  52. data/ext/ffi_c/libffi/src/x86/win64.S +5 -0
  53. data/ext/ffi_c/libffi/testsuite/Makefile.am +111 -109
  54. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +26 -5
  55. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  56. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -1
  57. data/ffi.gemspec +1 -1
  58. data/lib/ffi/library.rb +5 -5
  59. data/lib/ffi/platform.rb +4 -1
  60. data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
  61. data/lib/ffi/platform/aarch64-freebsd12/types.conf +89 -89
  62. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  63. data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
  64. data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
  65. data/lib/ffi/platform/arm-linux/types.conf +79 -79
  66. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  67. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  68. data/lib/ffi/platform/i386-freebsd/types.conf +87 -87
  69. data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
  70. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  71. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  72. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  73. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  74. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  75. data/lib/ffi/platform/i386-windows/types.conf +84 -84
  76. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  77. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  78. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  79. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  80. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  81. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  82. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  83. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  84. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  85. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  86. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  87. data/lib/ffi/platform/powerpc-linux/types.conf +77 -77
  88. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  89. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  90. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  91. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  92. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  93. data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
  94. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  95. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  96. data/lib/ffi/platform/x86_64-darwin/types.conf +84 -84
  97. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +148 -0
  98. data/lib/ffi/platform/x86_64-freebsd/types.conf +89 -89
  99. data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
  100. data/lib/ffi/platform/x86_64-linux/types.conf +86 -77
  101. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  102. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  103. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  104. data/lib/ffi/platform/x86_64-windows/types.conf +99 -99
  105. data/lib/ffi/tools/types_generator.rb +5 -4
  106. data/lib/ffi/version.rb +1 -1
  107. metadata +19 -5
@@ -28,6 +28,7 @@
28
28
  DEALINGS IN THE SOFTWARE.
29
29
  ----------------------------------------------------------------------- */
30
30
 
31
+ #if defined(__arm__) || defined(_M_ARM)
31
32
  #include <fficonfig.h>
32
33
  #include <ffi.h>
33
34
  #include <ffi_common.h>
@@ -35,6 +36,11 @@
35
36
  #include <stdlib.h>
36
37
  #include "internal.h"
37
38
 
39
+ #if defined(_MSC_VER) && defined(_M_ARM)
40
+ #define WIN32_LEAN_AND_MEAN
41
+ #include <windows.h>
42
+ #endif
43
+
38
44
  #if FFI_EXEC_TRAMPOLINE_TABLE
39
45
 
40
46
  #ifdef __MACH__
@@ -42,7 +48,11 @@
42
48
  #endif
43
49
 
44
50
  #else
51
+ #ifndef _M_ARM
45
52
  extern unsigned int ffi_arm_trampoline[2] FFI_HIDDEN;
53
+ #else
54
+ extern unsigned int ffi_arm_trampoline[3] FFI_HIDDEN;
55
+ #endif
46
56
  #endif
47
57
 
48
58
  /* Forward declares. */
@@ -88,10 +98,20 @@ ffi_put_arg (ffi_type *ty, void *src, void *dst)
88
98
  case FFI_TYPE_SINT32:
89
99
  case FFI_TYPE_UINT32:
90
100
  case FFI_TYPE_POINTER:
101
+ #ifndef _MSC_VER
91
102
  case FFI_TYPE_FLOAT:
103
+ #endif
92
104
  *(UINT32 *)dst = *(UINT32 *)src;
93
105
  break;
94
106
 
107
+ #ifdef _MSC_VER
108
+ // casting a float* to a UINT32* doesn't work on Windows
109
+ case FFI_TYPE_FLOAT:
110
+ *(uintptr_t *)dst = 0;
111
+ *(float *)dst = *(float *)src;
112
+ break;
113
+ #endif
114
+
95
115
  case FFI_TYPE_SINT64:
96
116
  case FFI_TYPE_UINT64:
97
117
  case FFI_TYPE_DOUBLE:
@@ -210,7 +230,7 @@ ffi_prep_args_VFP (ffi_cif *cif, int flags, void *rvalue,
210
230
  }
211
231
 
212
232
  /* Perform machine dependent cif processing */
213
- ffi_status
233
+ ffi_status FFI_HIDDEN
214
234
  ffi_prep_cif_machdep (ffi_cif *cif)
215
235
  {
216
236
  int flags = 0, cabi = cif->abi;
@@ -301,7 +321,7 @@ ffi_prep_cif_machdep (ffi_cif *cif)
301
321
  }
302
322
 
303
323
  /* Perform machine dependent cif processing for variadic calls */
304
- ffi_status
324
+ ffi_status FFI_HIDDEN
305
325
  ffi_prep_cif_machdep_var (ffi_cif * cif,
306
326
  unsigned int nfixedargs, unsigned int ntotalargs)
307
327
  {
@@ -571,15 +591,28 @@ ffi_prep_closure_loc (ffi_closure * closure,
571
591
  config[0] = closure;
572
592
  config[1] = closure_func;
573
593
  #else
574
- memcpy (closure->tramp, ffi_arm_trampoline, 8);
594
+
595
+ #ifndef _M_ARM
596
+ memcpy(closure->tramp, ffi_arm_trampoline, 8);
597
+ #else
598
+ // cast away function type so MSVC doesn't set the lower bit of the function pointer
599
+ memcpy(closure->tramp, (void*)((uintptr_t)ffi_arm_trampoline & 0xFFFFFFFE), FFI_TRAMPOLINE_CLOSURE_OFFSET);
600
+ #endif
601
+
575
602
  #if defined (__QNX__)
576
603
  msync(closure->tramp, 8, 0x1000000); /* clear data map */
577
604
  msync(codeloc, 8, 0x1000000); /* clear insn map */
605
+ #elif defined(_MSC_VER)
606
+ FlushInstructionCache(GetCurrentProcess(), closure->tramp, FFI_TRAMPOLINE_SIZE);
578
607
  #else
579
608
  __clear_cache(closure->tramp, closure->tramp + 8); /* clear data map */
580
609
  __clear_cache(codeloc, codeloc + 8); /* clear insn map */
581
610
  #endif
611
+ #ifdef _M_ARM
612
+ *(void(**)(void))(closure->tramp + FFI_TRAMPOLINE_CLOSURE_FUNCTION) = closure_func;
613
+ #else
582
614
  *(void (**)(void))(closure->tramp + 8) = closure_func;
615
+ #endif
583
616
  #endif
584
617
 
585
618
  closure->cif = cif;
@@ -781,7 +814,7 @@ place_vfp_arg (ffi_cif *cif, int h)
781
814
  }
782
815
  /* Found regs to allocate. */
783
816
  cif->vfp_used |= new_used;
784
- cif->vfp_args[cif->vfp_nargs++] = reg;
817
+ cif->vfp_args[cif->vfp_nargs++] = (signed char)reg;
785
818
 
786
819
  /* Update vfp_reg_free. */
787
820
  if (cif->vfp_used & (1 << cif->vfp_reg_free))
@@ -803,7 +836,7 @@ place_vfp_arg (ffi_cif *cif, int h)
803
836
  static void
804
837
  layout_vfp_args (ffi_cif * cif)
805
838
  {
806
- int i;
839
+ unsigned int i;
807
840
  /* Init VFP fields */
808
841
  cif->vfp_used = 0;
809
842
  cif->vfp_nargs = 0;
@@ -817,3 +850,5 @@ layout_vfp_args (ffi_cif * cif)
817
850
  break;
818
851
  }
819
852
  }
853
+
854
+ #endif /* __arm__ or _M_ARM */
@@ -43,7 +43,7 @@ typedef enum ffi_abi {
43
43
  FFI_SYSV,
44
44
  FFI_VFP,
45
45
  FFI_LAST_ABI,
46
- #ifdef __ARM_PCS_VFP
46
+ #if defined(__ARM_PCS_VFP) || defined(_M_ARM)
47
47
  FFI_DEFAULT_ABI = FFI_VFP,
48
48
  #else
49
49
  FFI_DEFAULT_ABI = FFI_SYSV,
@@ -57,7 +57,9 @@ typedef enum ffi_abi {
57
57
  signed char vfp_args[16] \
58
58
 
59
59
  #define FFI_TARGET_SPECIFIC_VARIADIC
60
+ #ifndef _M_ARM
60
61
  #define FFI_TARGET_HAS_COMPLEX_TYPE
62
+ #endif
61
63
 
62
64
  /* ---- Definitions for closures ----------------------------------------- */
63
65
 
@@ -74,8 +76,13 @@ typedef enum ffi_abi {
74
76
  #error "No trampoline table implementation"
75
77
  #endif
76
78
 
79
+ #else
80
+ #ifdef _MSC_VER
81
+ #define FFI_TRAMPOLINE_SIZE 16
82
+ #define FFI_TRAMPOLINE_CLOSURE_FUNCTION 12
77
83
  #else
78
84
  #define FFI_TRAMPOLINE_SIZE 12
85
+ #endif
79
86
  #define FFI_TRAMPOLINE_CLOSURE_OFFSET FFI_TRAMPOLINE_SIZE
80
87
  #endif
81
88
 
@@ -25,6 +25,7 @@
25
25
  DEALINGS IN THE SOFTWARE.
26
26
  ----------------------------------------------------------------------- */
27
27
 
28
+ #ifdef __arm__
28
29
  #define LIBFFI_ASM
29
30
  #include <fficonfig.h>
30
31
  #include <ffi.h>
@@ -377,6 +378,7 @@ ARM_FUNC_START(ffi_arm_trampoline)
377
378
  ARM_FUNC_END(ffi_arm_trampoline)
378
379
 
379
380
  #endif /* FFI_EXEC_TRAMPOLINE_TABLE */
381
+ #endif /* __arm__ */
380
382
 
381
383
  #if defined __ELF__ && defined __linux__
382
384
  .section .note.GNU-stack,"",%progbits
@@ -0,0 +1,311 @@
1
+ /* -----------------------------------------------------------------------
2
+ sysv.S - Copyright (c) 1998, 2008, 2011 Red Hat, Inc.
3
+ Copyright (c) 2011 Plausible Labs Cooperative, Inc.
4
+ Copyright (c) 2019 Microsoft Corporation.
5
+
6
+ ARM Foreign Function Interface
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining
9
+ a copy of this software and associated documentation files (the
10
+ ``Software''), to deal in the Software without restriction, including
11
+ without limitation the rights to use, copy, modify, merge, publish,
12
+ distribute, sublicense, and/or sell copies of the Software, and to
13
+ permit persons to whom the Software is furnished to do so, subject to
14
+ the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included
17
+ in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
20
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26
+ DEALINGS IN THE SOFTWARE.
27
+ ----------------------------------------------------------------------- */
28
+
29
+ #define LIBFFI_ASM
30
+ #include <fficonfig.h>
31
+ #include <ffi.h>
32
+ #include <ffi_cfi.h>
33
+ #include "internal.h"
34
+ #include "ksarm.h"
35
+
36
+
37
+ ; 8 byte aligned AREA to support 8 byte aligned jump tables
38
+ MACRO
39
+ NESTED_ENTRY_FFI $FuncName, $AreaName, $ExceptHandler
40
+
41
+ ; compute the function's labels
42
+ __DeriveFunctionLabels $FuncName
43
+
44
+ ; determine the area we will put the function into
45
+ __FuncArea SETS "|.text|"
46
+ IF "$AreaName" != ""
47
+ __FuncArea SETS "$AreaName"
48
+ ENDIF
49
+
50
+ ; set up the exception handler itself
51
+ __FuncExceptionHandler SETS ""
52
+ IF "$ExceptHandler" != ""
53
+ __FuncExceptionHandler SETS "|$ExceptHandler|"
54
+ ENDIF
55
+
56
+ ; switch to the specified area, jump tables require 8 byte alignment
57
+ AREA $__FuncArea,CODE,CODEALIGN,ALIGN=3,READONLY
58
+
59
+ ; export the function name
60
+ __ExportProc $FuncName
61
+
62
+ ; flush any pending literal pool stuff
63
+ ROUT
64
+
65
+ ; reset the state of the unwind code tracking
66
+ __ResetUnwindState
67
+
68
+ MEND
69
+
70
+ ; MACRO
71
+ ; TABLE_ENTRY $Type, $Table
72
+ ;$Type_$Table
73
+ ; MEND
74
+
75
+ #define E(index,table) return_##index##_##table
76
+
77
+ ; r0: stack
78
+ ; r1: frame
79
+ ; r2: fn
80
+ ; r3: vfp_used
81
+
82
+ ; fake entry point exists only to generate exists only to
83
+ ; generate .pdata for exception unwinding
84
+ NESTED_ENTRY_FFI ffi_call_VFP_fake
85
+ PROLOG_PUSH {r11, lr} ; save fp and lr for unwind
86
+
87
+ ALTERNATE_ENTRY ffi_call_VFP
88
+ cmp r3, #3 ; load only d0 if possible
89
+ vldrle d0, [r0]
90
+ vldmgt r0, {d0-d7}
91
+ add r0, r0, #64 ; discard the vfp register args
92
+ b ffi_call_SYSV
93
+ NESTED_END ffi_call_VFP_fake
94
+
95
+ ; fake entry point exists only to generate exists only to
96
+ ; generate .pdata for exception unwinding
97
+ NESTED_ENTRY_FFI ffi_call_SYSV_fake
98
+ PROLOG_PUSH {r11, lr} ; save fp and lr for unwind
99
+
100
+ ALTERNATE_ENTRY ffi_call_SYSV
101
+ stm r1, {fp, lr}
102
+ mov fp, r1
103
+
104
+ mov sp, r0 ; install the stack pointer
105
+ mov lr, r2 ; move the fn pointer out of the way
106
+ ldr ip, [fp, #16] ; install the static chain
107
+ ldmia sp!, {r0-r3} ; move first 4 parameters in registers.
108
+ blx lr ; call fn
109
+
110
+ ; Load r2 with the pointer to storage for the return value
111
+ ; Load r3 with the return type code
112
+ ldr r2, [fp, #8]
113
+ ldr r3, [fp, #12]
114
+
115
+ ; Deallocate the stack with the arguments.
116
+ mov sp, fp
117
+
118
+ ; Store values stored in registers.
119
+ ALIGN 8
120
+ lsl r3, #3
121
+ add r3, r3, pc
122
+ add r3, #8
123
+ mov pc, r3
124
+
125
+
126
+ E(ARM_TYPE_VFP_S, ffi_call)
127
+ ALIGN 8
128
+ vstr s0, [r2]
129
+ pop {fp,pc}
130
+ E(ARM_TYPE_VFP_D, ffi_call)
131
+ ALIGN 8
132
+ vstr d0, [r2]
133
+ pop {fp,pc}
134
+ E(ARM_TYPE_VFP_N, ffi_call)
135
+ ALIGN 8
136
+ vstm r2, {d0-d3}
137
+ pop {fp,pc}
138
+ E(ARM_TYPE_INT64, ffi_call)
139
+ ALIGN 8
140
+ str r1, [r2, #4]
141
+ nop
142
+ E(ARM_TYPE_INT, ffi_call)
143
+ ALIGN 8
144
+ str r0, [r2]
145
+ pop {fp,pc}
146
+ E(ARM_TYPE_VOID, ffi_call)
147
+ ALIGN 8
148
+ pop {fp,pc}
149
+ nop
150
+ E(ARM_TYPE_STRUCT, ffi_call)
151
+ ALIGN 8
152
+ cmp r3, #ARM_TYPE_STRUCT
153
+ pop {fp,pc}
154
+ NESTED_END ffi_call_SYSV_fake
155
+
156
+ IMPORT |ffi_closure_inner_SYSV|
157
+ /*
158
+ int ffi_closure_inner_SYSV
159
+ (
160
+ cif, ; r0
161
+ fun, ; r1
162
+ user_data, ; r2
163
+ frame ; r3
164
+ )
165
+ */
166
+
167
+ NESTED_ENTRY_FFI ffi_go_closure_SYSV
168
+ stmdb sp!, {r0-r3} ; save argument regs
169
+ ldr r0, [ip, #4] ; load cif
170
+ ldr r1, [ip, #8] ; load fun
171
+ mov r2, ip ; load user_data
172
+ b ffi_go_closure_SYSV_0
173
+ NESTED_END ffi_go_closure_SYSV
174
+
175
+ ; r3: ffi_closure
176
+
177
+ ; fake entry point exists only to generate exists only to
178
+ ; generate .pdata for exception unwinding
179
+ NESTED_ENTRY_FFI ffi_closure_SYSV_fake
180
+ PROLOG_PUSH {r11, lr} ; save fp and lr for unwind
181
+ ALTERNATE_ENTRY ffi_closure_SYSV
182
+ ldmfd sp!, {ip,r0} ; restore fp (r0 is used for stack alignment)
183
+ stmdb sp!, {r0-r3} ; save argument regs
184
+
185
+ ldr r0, [ip, #FFI_TRAMPOLINE_CLOSURE_OFFSET] ; ffi_closure->cif
186
+ ldr r1, [ip, #FFI_TRAMPOLINE_CLOSURE_OFFSET+4] ; ffi_closure->fun
187
+ ldr r2, [ip, #FFI_TRAMPOLINE_CLOSURE_OFFSET+8] ; ffi_closure->user_data
188
+
189
+ ALTERNATE_ENTRY ffi_go_closure_SYSV_0
190
+ add ip, sp, #16 ; compute entry sp
191
+
192
+ sub sp, sp, #64+32 ; allocate frame parameter (sizeof(vfp_space) = 64, sizeof(result) = 32)
193
+ mov r3, sp ; set frame parameter
194
+ stmdb sp!, {ip,lr}
195
+
196
+ bl ffi_closure_inner_SYSV ; call the Python closure
197
+
198
+ ; Load values returned in registers.
199
+ add r2, sp, #64+8 ; address of closure_frame->result
200
+ bl ffi_closure_ret ; move result to correct register or memory for type
201
+
202
+ ldmfd sp!, {ip,lr}
203
+ mov sp, ip ; restore stack pointer
204
+ mov pc, lr
205
+ NESTED_END ffi_closure_SYSV_fake
206
+
207
+ IMPORT |ffi_closure_inner_VFP|
208
+ /*
209
+ int ffi_closure_inner_VFP
210
+ (
211
+ cif, ; r0
212
+ fun, ; r1
213
+ user_data, ; r2
214
+ frame ; r3
215
+ )
216
+ */
217
+
218
+ NESTED_ENTRY_FFI ffi_go_closure_VFP
219
+ stmdb sp!, {r0-r3} ; save argument regs
220
+ ldr r0, [ip, #4] ; load cif
221
+ ldr r1, [ip, #8] ; load fun
222
+ mov r2, ip ; load user_data
223
+ b ffi_go_closure_VFP_0
224
+ NESTED_END ffi_go_closure_VFP
225
+
226
+ ; fake entry point exists only to generate exists only to
227
+ ; generate .pdata for exception unwinding
228
+ ; r3: closure
229
+ NESTED_ENTRY_FFI ffi_closure_VFP_fake
230
+ PROLOG_PUSH {r11, lr} ; save fp and lr for unwind
231
+
232
+ ALTERNATE_ENTRY ffi_closure_VFP
233
+ ldmfd sp!, {ip,r0} ; restore fp (r0 is used for stack alignment)
234
+ stmdb sp!, {r0-r3} ; save argument regs
235
+
236
+ ldr r0, [ip, #FFI_TRAMPOLINE_CLOSURE_OFFSET] ; load cif
237
+ ldr r1, [ip, #FFI_TRAMPOLINE_CLOSURE_OFFSET+4] ; load fun
238
+ ldr r2, [ip, #FFI_TRAMPOLINE_CLOSURE_OFFSET+8] ; load user_data
239
+
240
+ ALTERNATE_ENTRY ffi_go_closure_VFP_0
241
+ add ip, sp, #16 ; compute entry sp
242
+ sub sp, sp, #32 ; save space for closure_frame->result
243
+ vstmdb sp!, {d0-d7} ; push closure_frame->vfp_space
244
+
245
+ mov r3, sp ; save closure_frame
246
+ stmdb sp!, {ip,lr}
247
+
248
+ bl ffi_closure_inner_VFP
249
+
250
+ ; Load values returned in registers.
251
+ add r2, sp, #64+8 ; load result
252
+ bl ffi_closure_ret
253
+ ldmfd sp!, {ip,lr}
254
+ mov sp, ip ; restore stack pointer
255
+ mov pc, lr
256
+ NESTED_END ffi_closure_VFP_fake
257
+
258
+ /* Load values returned in registers for both closure entry points.
259
+ Note that we use LDM with SP in the register set. This is deprecated
260
+ by ARM, but not yet unpredictable. */
261
+
262
+ NESTED_ENTRY_FFI ffi_closure_ret
263
+ stmdb sp!, {fp,lr}
264
+
265
+ ALIGN 8
266
+ lsl r0, #3
267
+ add r0, r0, pc
268
+ add r0, #8
269
+ mov pc, r0
270
+
271
+ E(ARM_TYPE_VFP_S, ffi_closure)
272
+ ALIGN 8
273
+ vldr s0, [r2]
274
+ b call_epilogue
275
+ E(ARM_TYPE_VFP_D, ffi_closure)
276
+ ALIGN 8
277
+ vldr d0, [r2]
278
+ b call_epilogue
279
+ E(ARM_TYPE_VFP_N, ffi_closure)
280
+ ALIGN 8
281
+ vldm r2, {d0-d3}
282
+ b call_epilogue
283
+ E(ARM_TYPE_INT64, ffi_closure)
284
+ ALIGN 8
285
+ ldr r1, [r2, #4]
286
+ nop
287
+ E(ARM_TYPE_INT, ffi_closure)
288
+ ALIGN 8
289
+ ldr r0, [r2]
290
+ b call_epilogue
291
+ E(ARM_TYPE_VOID, ffi_closure)
292
+ ALIGN 8
293
+ b call_epilogue
294
+ nop
295
+ E(ARM_TYPE_STRUCT, ffi_closure)
296
+ ALIGN 8
297
+ b call_epilogue
298
+ call_epilogue
299
+ ldmfd sp!, {fp,pc}
300
+ NESTED_END ffi_closure_ret
301
+
302
+ AREA |.trampoline|, DATA, THUMB, READONLY
303
+ EXPORT |ffi_arm_trampoline|
304
+ |ffi_arm_trampoline| DATA
305
+ thisproc adr ip, thisproc
306
+ stmdb sp!, {ip, r0}
307
+ ldr pc, [pc, #0]
308
+ DCD 0
309
+ ;ENDP
310
+
311
+ END