diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-06-11 20:19:55 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-06-11 20:19:55 -0700 |
commit | 082132f7d5d86068ab733f49fc4c43a9bd6157f1 (patch) | |
tree | 985bc3692395c4cedcdd98f84ea2349f03aab816 /ffi.c | |
parent | 9fca64292256f980e8cb15cea8c3e6cc7fd76374 (diff) | |
download | txr-082132f7d5d86068ab733f49fc4c43a9bd6157f1.tar.gz txr-082132f7d5d86068ab733f49fc4c43a9bd6157f1.tar.bz2 txr-082132f7d5d86068ab733f49fc4c43a9bd6157f1.zip |
ffi: new function, carray-pun.
* ffi.c (carray_pun): New function.
(ffi_init): Registered carray-pun intrinsic.
* ffi.h (carray_pun): Declared.
* txr.1: Documented.
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -4672,6 +4672,26 @@ val carray_putz(val carray, val seq) return carray; } +val carray_pun(val carray, val type) +{ + val self = lit("carray-pun"); + struct carray *scry = carray_struct_checked(carray); + struct txr_ffi_type *tft = ffi_type_struct(type); + cnum len = scry->nelem; + cnum elsize = scry->eltft->size; + cnum size = (ucnum) len * (ucnum) elsize; + + if (tft->size == 0) + uw_throwf(error_s, + lit("~a: incomplete type ~s cannot be carray element"), + self, tft->syntax, nao); + + if (len != 0 && size / elsize != len) + uw_throwf(error_s, lit("~a: array size overflow"), self, nao); + + return make_carray(type, scry->data, size / tft->size, carray); +} + void ffi_init(void) { prot1(&ffi_typedef_hash); @@ -4777,6 +4797,7 @@ void ffi_init(void) reg_fun(intern(lit("carray-getz"), user_package), func_n1(carray_getz)); reg_fun(intern(lit("carray-put"), user_package), func_n2(carray_put)); reg_fun(intern(lit("carray-putz"), user_package), func_n2(carray_putz)); + reg_fun(intern(lit("carray-pun"), user_package), func_n2(carray_pun)); ffi_typedef_hash = make_hash(nil, nil, nil); ffi_init_types(); ffi_init_extra_types(); |