1 /* go-reflect-call.c -- call reflection support for Go.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
13 #include "go-assert.h"
17 #if defined(USE_LIBFFI) && FFI_GO_CLOSURES
19 /* The functions in this file are only called from reflect_call. As
20 reflect_call calls a libffi function, which will be compiled
21 without -fsplit-stack, it will always run with a large stack. */
23 static size_t go_results_size (const struct __go_func_type
*)
24 __attribute__ ((no_split_stack
));
25 static void go_set_results (const struct __go_func_type
*, unsigned char *,
27 __attribute__ ((no_split_stack
));
29 /* Get the total size required for the result parameters of a
33 go_results_size (const struct __go_func_type
*func
)
36 const struct __go_type_descriptor
**types
;
41 count
= func
->__out
.__count
;
45 types
= (const struct __go_type_descriptor
**) func
->__out
.__values
;
47 /* A single integer return value is always promoted to a full
51 switch (types
[0]->__code
& GO_CODE_MASK
)
62 return sizeof (ffi_arg
);
71 for (i
= 0; i
< count
; ++i
)
75 align
= types
[i
]->__field_align
;
78 off
= (off
+ align
- 1) & ~ (align
- 1);
79 off
+= types
[i
]->__size
;
82 off
= (off
+ maxalign
- 1) & ~ (maxalign
- 1);
84 // The libffi library doesn't understand a struct with no fields.
85 // We generate a struct with a single field of type void. When used
86 // as a return value, libffi will think that requires a byte.
93 /* Copy the results of calling a function via FFI from CALL_RESULT
94 into the addresses in RESULTS. */
97 go_set_results (const struct __go_func_type
*func
, unsigned char *call_result
,
101 const struct __go_type_descriptor
**types
;
105 count
= func
->__out
.__count
;
109 types
= (const struct __go_type_descriptor
**) func
->__out
.__values
;
111 /* A single integer return value is always promoted to a full
115 switch (types
[0]->__code
& GO_CODE_MASK
)
129 unsigned char buf
[sizeof (ffi_arg
)];
134 __builtin_memcpy (&u
.buf
, call_result
, sizeof (ffi_arg
));
137 switch (types
[0]->__size
)
144 __builtin_memcpy (results
[0], &b
, 1);
153 __builtin_memcpy (results
[0], &s
, 2);
162 __builtin_memcpy (results
[0], &w
, 4);
171 __builtin_memcpy (results
[0], &d
, 8);
187 for (i
= 0; i
< count
; ++i
)
192 align
= types
[i
]->__field_align
;
193 size
= types
[i
]->__size
;
194 off
= (off
+ align
- 1) & ~ (align
- 1);
195 __builtin_memcpy (results
[i
], call_result
+ off
, size
);
200 /* Call a function. The type of the function is FUNC_TYPE, and the
201 closure is FUNC_VAL. PARAMS is an array of parameter addresses.
202 RESULTS is an array of result addresses.
204 If IS_INTERFACE is true this is a call to an interface method and
205 the first argument is the receiver, which is always a pointer.
206 This argument, the receiver, is not described in FUNC_TYPE.
208 If IS_METHOD is true this is a call to a method expression. The
209 first argument is the receiver. It is described in FUNC_TYPE, but
210 regardless of FUNC_TYPE, it is passed as a pointer. */
213 reflect_call (const struct __go_func_type
*func_type
, FuncVal
*func_val
,
214 _Bool is_interface
, _Bool is_method
, void **params
,
218 unsigned char *call_result
;
220 __go_assert ((func_type
->__common
.__code
& GO_CODE_MASK
) == GO_FUNC
);
221 __go_func_to_cif (func_type
, is_interface
, is_method
, &cif
);
223 call_result
= (unsigned char *) malloc (go_results_size (func_type
));
225 ffi_call_go (&cif
, func_val
->fn
, call_result
, params
, func_val
);
227 /* Some day we may need to free result values if RESULTS is
230 go_set_results (func_type
, call_result
, results
);
235 #else /* !defined(USE_LIBFFI) */
238 reflect_call (const struct __go_func_type
*func_type
__attribute__ ((unused
)),
239 FuncVal
*func_val
__attribute__ ((unused
)),
240 _Bool is_interface
__attribute__ ((unused
)),
241 _Bool is_method
__attribute__ ((unused
)),
242 void **params
__attribute__ ((unused
)),
243 void **results
__attribute__ ((unused
)))
245 /* Without FFI there is nothing we can do. */
246 runtime_throw("libgo built without FFI does not support "
247 "reflect.Call or runtime.SetFinalizer");
250 #endif /* !defined(USE_LIBFFI) */