diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-07-09 17:21:16 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-07-09 17:21:16 -0700 |
commit | 3cba6501c6b20ca5da11b62da35a313bd557d094 (patch) | |
tree | ca61a7b6b1f718feedb456b96ccfad99a15cbd93 /ffi.c | |
parent | e7698eff01592fc39953836bbe896444587e7f8b (diff) | |
download | txr-3cba6501c6b20ca5da11b62da35a313bd557d094.tar.gz txr-3cba6501c6b20ca5da11b62da35a313bd557d094.tar.bz2 txr-3cba6501c6b20ca5da11b62da35a313bd557d094.zip |
ffi: new function, zero-fill.
* ffi.c (zero_fill): New function.
(ffi_init): zero-fill intrinsic registered.
* ffi.h (zero_fill): Declared.
* txr.1: Documented.
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -5406,6 +5406,38 @@ val make_zstruct(val type, struct args *args) return strct; } +val zero_fill(val type, val obj) +{ + val self = lit("zero-fill"); + struct txr_ffi_type *tft = ffi_type_struct_checked(type); + cnum size = tft->size; + int need_free = (size >= 1024); + mem_t *buf = if3(need_free, chk_calloc(1, size), coerce(mem_t *, zalloca(size))); + val ret = nil; + + if (need_free) { + uw_simple_catch_begin; + + if (tft->in != 0) + ret = tft->in(tft, 1, buf, obj, self); + else + ret = tft->get(tft, buf, self); + + uw_unwind { + free(buf); + } + + uw_catch_end; + } else { + if (tft->in != 0) + ret = tft->in(tft, 1, buf, obj, self); + else + ret = tft->get(tft, buf, self); + } + + return ret; +} + void ffi_init(void) { prot1(&ffi_typedef_hash); @@ -5533,6 +5565,7 @@ void ffi_init(void) reg_fun(intern(lit("union-in"), user_package), func_n3(union_in)); reg_fun(intern(lit("union-out"), user_package), func_n3(union_out)); reg_fun(intern(lit("make-zstruct"), user_package), func_n1v(make_zstruct)); + reg_fun(intern(lit("zero-fill"), user_package), func_n2(zero_fill)); ffi_typedef_hash = make_hash(nil, nil, nil); ffi_init_types(); ffi_init_extra_types(); |