diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 20:33:25 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 20:33:25 -0800 |
commit | ee8103fa715d464da45850f794da2df8f3773811 (patch) | |
tree | 9892644aaf89cda6322a3ec3938fb5df83d3f0f2 /ChangeLog | |
parent | 42fdb7eb02593476b5030ce4a7dc471d4b01a49e (diff) | |
download | txr-ee8103fa715d464da45850f794da2df8f3773811.tar.gz txr-ee8103fa715d464da45850f794da2df8f3773811.tar.bz2 txr-ee8103fa715d464da45850f794da2df8f3773811.zip |
Changing representation of objects to allow for unboxed characters.
Now numbers and characters fit into a cell. We lose one more bit
from the range of numbers.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,5 +1,22 @@ 2009-11-06 Kaz Kylheku <kkylheku@gmail.com> + Changing representation of objects to allow for unboxed characters. + Now numbers and characters fit into a cell. We lose one more bit + from the range of numbers. + + * lib.h (TAG_SHIFT, TAG_MASK, TAG_NUM, TAG_PTR, NUM_MASK, NUM_MIN, + is_ptr, is_num): Macros updated. + (is_chr, tag): New macros. + (struct chr): Removed. + (union obj): Updated. + + * lib.c (typeof, equal, chr, chrp, c_chr, obj_print): Updated. + + * hash.c (ll_hash): Characters aren't pointers any longer; + use abstract accessor. + +2009-11-06 Kaz Kylheku <kkylheku@gmail.com> + Add hash removal. * hash.c (remhash): New function. |