summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-09 20:33:25 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-09 20:33:25 -0800
commitee8103fa715d464da45850f794da2df8f3773811 (patch)
tree9892644aaf89cda6322a3ec3938fb5df83d3f0f2 /ChangeLog
parent42fdb7eb02593476b5030ce4a7dc471d4b01a49e (diff)
downloadtxr-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--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f71e03d..4ed23e2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.