index
:
txr
master
txr-old
TXR: A data munging language.
kaz@kylheku.com
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
ffi.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
license: reformat to fit 80 columns.
Kaz Kylheku
2021-08-16
1
-12
/
+13
*
ffi: remove redundant assignment.
Paul A. Patience
2021-08-14
1
-1
/
+0
*
hash: change make_hash interface.
Kaz Kylheku
2021-07-22
1
-4
/
+4
*
carray: add missing argument type checking.
Kaz Kylheku
2021-07-21
1
-2
/
+2
*
compat: fix glaringly broken init-time handling.
Kaz Kylheku
2021-07-21
1
-7
/
+15
*
type: disallow structs using built-in type names.
Kaz Kylheku
2021-07-08
1
-22
/
+32
*
c_str now takes a self argument.
Kaz Kylheku
2021-06-23
1
-15
/
+15
*
ffi: lazily calculate libffi type descriptors.
Kaz Kylheku
2021-06-10
1
-122
/
+110
*
ffi: bug: always using ffi_prep_cif_var.
Kaz Kylheku
2021-06-09
1
-2
/
+2
*
ffi: earnest implementation of FFI struct elements.
Kaz Kylheku
2021-06-09
1
-23
/
+72
*
ffi: fix leak on struct/union redefinition.
Kaz Kylheku
2021-06-09
1
-0
/
+6
*
ffi: leak fix on !HAVE_FFI builds.
Kaz Kylheku
2021-06-09
1
-2
/
+18
*
ffi: allow conversion of carray objects under cptr.
Kaz Kylheku
2021-06-06
1
-2
/
+9
*
ffi: allow nil object to convert under closure type.
Kaz Kylheku
2021-06-06
1
-1
/
+1
*
ffi: add space in ffi-call-desc's printed rep.
Kaz Kylheku
2021-06-06
1
-1
/
+1
*
FFI: big improvement in bad call diagnosis.
Kaz Kylheku
2021-06-04
1
-10
/
+18
*
ffi: fix crash: carray argument type.
Kaz Kylheku
2021-05-22
1
-1
/
+1
*
ffi: fix missing support for misaligned ushort.
Kaz Kylheku
2021-03-22
1
-0
/
+2
*
ffi: ffi_uchar_put: statement after declaration.
Kaz Kylheku
2021-03-22
1
-1
/
+1
*
Copyright year bump 2021.
Kaz Kylheku
2021-01-14
1
-1
/
+1
*
ffi/doc: bugfixes to bitfield alignment.
Kaz Kylheku
2020-08-24
1
-12
/
+17
*
ffi: bugfix: zero-width bitfield offset problem.
Kaz Kylheku
2020-08-24
1
-1
/
+1
*
ffi: correct tft->nmemb under zero-bit fields.
Kaz Kylheku
2020-08-24
1
-2
/
+4
*
cptr: bugfix: cptr-out must fall back on tft->put.
Kaz Kylheku
2020-07-13
1
-1
/
+4
*
cptr: new cptr-get and cptr-out functions.
Kaz Kylheku
2020-07-13
1
-0
/
+35
*
c_num: now takes self argument.
Kaz Kylheku
2020-06-29
1
-75
/
+83
*
ffi: big-endian: unused parameter warnings.
Kaz Kylheku
2020-04-28
1
-1
/
+55
*
carray: revise carray diagnostics.
Kaz Kylheku
2020-04-24
1
-8
/
+8
*
carray: bug sweep.
Kaz Kylheku
2020-04-24
1
-28
/
+62
*
warning cleanup: signed/unsigned in ternaries.
Kaz Kylheku
2020-04-05
1
-1
/
+1
*
warning cleanup: add casts for unused parameters.
Kaz Kylheku
2020-04-05
1
-1
/
+195
*
ffi: varray: g++ signed/unsigned warning.
Kaz Kylheku
2020-02-08
1
-1
/
+1
*
ffi: fix broken char handling in undimensioned arrays.
Kaz Kylheku
2020-01-17
1
-36
/
+99
*
ffi: fix non-libffi build on big endian.
Kaz Kylheku
2020-01-06
1
-0
/
+1
*
Copyright year bump 2020.
Kaz Kylheku
2019-12-31
1
-1
/
+1
*
ffi: bug: zchar not handled in array out semantics.
Kaz Kylheku
2019-12-16
1
-0
/
+1
*
ffi: shut up gcc7 warnings about switch case.
Kaz Kylheku
2019-12-16
1
-0
/
+7
*
ffi: new type zchar
Kaz Kylheku
2019-12-14
1
-1
/
+41
*
ffi: turn char conversion flags into enum.
Kaz Kylheku
2019-12-14
1
-52
/
+85
*
ffi: allow init-forms for slots.
Kaz Kylheku
2019-12-06
1
-9
/
+40
*
ffi: rename functions in the carray-num group.
Kaz Kylheku
2019-11-18
1
-12
/
+27
*
ffi: carray-num using wrong function name.
Kaz Kylheku
2019-11-18
1
-1
/
+1
*
safety: fix type tests that code can subvert.
Kaz Kylheku
2019-09-30
1
-1
/
+1
*
lib: access special methods via special slot mechanism.
Kaz Kylheku
2019-09-06
1
-1
/
+1
*
ffi: bugfix: kind enum in wrong argument positions.
Kaz Kylheku
2019-07-30
1
-10
/
+14
*
FFI: bugfix: GC-correctness of assignments.
Kaz Kylheku
2019-07-28
1
-0
/
+11
*
FFI: bugfix: properly re-use existing struct type.
Kaz Kylheku
2019-07-28
1
-2
/
+6
*
FFI: self-referential structs.
Kaz Kylheku
2019-07-28
1
-90
/
+200
*
FFI: bugfix: pointer "in" ops must map null to nil.
Kaz Kylheku
2019-07-27
1
-0
/
+8
*
FFI: elemtype as type operator, not just macro.
Kaz Kylheku
2019-07-26
1
-1
/
+18
[next]