diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-07-11 06:44:36 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-07-11 06:44:36 -0700 |
commit | 81c97fcb7736ee17d581d6c78af567e2f7d25ca0 (patch) | |
tree | 28dbfe5937cad52ed9f2b2f5cf97d1c5da3f01a3 /ffi.c | |
parent | 46ae35f5b87efa3582aa8564839b30acbeeffe57 (diff) | |
download | txr-81c97fcb7736ee17d581d6c78af567e2f7d25ca0.tar.gz txr-81c97fcb7736ee17d581d6c78af567e2f7d25ca0.tar.bz2 txr-81c97fcb7736ee17d581d6c78af567e2f7d25ca0.zip |
ffi: two-argument form of sizeof.
If sizeof is given an extra argument (an expression which
evaluates to an object), it can calculate the dynamic size of
the FFI type in relation to representing that object.
* ffi.c (dyn_size): New static function.
(ffi_init): Register sys:dyn-size intrinsic.
* share/txr/stdlib/ffi.tl (sizeof): Support additional
argument, avoiding run-time compilation of the type expression
with the help of load-time.
* txr.1: Update documentation for sizeof macro.
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -5494,6 +5494,13 @@ val fill_obj(val obj, val type, val stream) return tft->in(tft, 1, data, obj, self); } +static val dyn_size(val type, val obj) +{ + val self = lit("sizeof"); + struct txr_ffi_type *tft = ffi_type_struct_checked(self, type); + return num(tft->dynsize(tft, obj, self)); +} + void ffi_init(void) { prot1(&ffi_typedef_hash); @@ -5625,6 +5632,7 @@ void ffi_init(void) reg_fun(intern(lit("put-obj"), user_package), func_n3o(put_obj, 2)); reg_fun(intern(lit("get-obj"), user_package), func_n2o(get_obj, 1)); reg_fun(intern(lit("fill-obj"), user_package), func_n3o(fill_obj, 2)); + reg_fun(intern(lit("dyn-size"), system_package), func_n2(dyn_size)); ffi_typedef_hash = make_hash(nil, nil, nil); ffi_init_types(); ffi_init_extra_types(); |