diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-05-07 11:17:58 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-05-07 11:17:58 -0700 |
commit | 8a7aaea1c65efa10b23a70513b33707e208ca944 (patch) | |
tree | 9591e6755f3234a2d4e34a21ea477bcebf0392ae /ffi.c | |
parent | feea17487b17ca381b6d740ac50a76248f1d033c (diff) | |
download | txr-8a7aaea1c65efa10b23a70513b33707e208ca944.tar.gz txr-8a7aaea1c65efa10b23a70513b33707e208ca944.tar.bz2 txr-8a7aaea1c65efa10b23a70513b33707e208ca944.zip |
ffi: semantics: ptr-in should recurse on in.
* ffi.c (ffi_ptr_in_in): Don't just free the buffer for
the pointer itself, but call the in handler of the target
type if it has one. Pass a false copy flag to it, so that
that a ptr-in pass semantically resembles a by-value pass.
(ffi_ptr_in_d_in): New static function.
(ffi_type_compile): Give ptr-in-d type the ffi_ptr_in_d_in
function.
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -736,11 +736,24 @@ static val ffi_ptr_in_in(struct txr_ffi_type *tft, int copy, mem_t *src, val tgttype = tft->mtypes; struct txr_ffi_type *tgtft = ffi_type_struct(tgttype); mem_t **loc = coerce(mem_t **, src); + if (tgtft->in != 0) + tgtft->in(tgtft, 0, *loc, obj, self); tgtft->free(*loc); *loc = 0; return obj; } +static val ffi_ptr_in_d_in(struct txr_ffi_type *tft, int copy, mem_t *src, + val obj, val self) +{ + val tgttype = tft->mtypes; + struct txr_ffi_type *tgtft = ffi_type_struct(tgttype); + mem_t **loc = coerce(mem_t **, src); + if (tgtft->in != 0) + tgtft->in(tgtft, 0, *loc, obj, self); + return obj; +} + static void ffi_ptr_in_out(struct txr_ffi_type *tft, int copy, val s, mem_t *dst, val self) { @@ -1394,7 +1407,7 @@ val ffi_type_compile(val syntax) val target_type = ffi_type_compile(cadr(syntax)); return make_ffi_type_pointer(syntax, cptr_s, sizeof (mem_t *), ffi_ptr_in_put, ffi_ptr_d_get, - 0, ffi_ptr_in_out, + ffi_ptr_in_d_in, ffi_ptr_in_out, target_type); } else if (sym == ptr_out_s) { val target_type = ffi_type_compile(cadr(syntax)); |