summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-09 17:33:46 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-09 17:33:46 -0800
commitdd68bf698a5618226fb3807d752c4ff73966cb5f (patch)
treec2da5348387f6c75aa225f00ecbc5b2f7e198788 /ChangeLog
parent357121301094005f6c56471fb18f9ff1b6bc8d13 (diff)
downloadtxr-dd68bf698a5618226fb3807d752c4ff73966cb5f.tar.gz
txr-dd68bf698a5618226fb3807d752c4ff73966cb5f.tar.bz2
txr-dd68bf698a5618226fb3807d752c4ff73966cb5f.zip
Changing representation of objects to allow the NUM type to be
unboxed. If the lowest bit of the obj_t * pointer is 1, then the remaining bits are a number. A lot of assumptions are made: - the long type can be converted to and from a pointer - two's complement. - behavior of << and >> operators when the sign bit is involved.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog27
1 files changed, 27 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e20ecb1..a90801f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,32 @@
2009-11-06 Kaz Kylheku <kkylheku@gmail.com>
+ Changing representation of objects to allow the NUM type to be
+ unboxed. If the lowest bit of the obj_t * pointer is 1, then
+ the remaining bits are a number. A lot of assumptions are made:
+ - the long type can be converted to and from a pointer
+ - two's complement.
+ - behavior of << and >> operators when the sign bit is involved.
+
+ * lib.h (TAG_SHIFT, TAG_MASK, TAG_NUM, TAG_PTR, NUM_MASK, NUM_MIN,
+ is_ptr, is_num, type): New macros.
+ (struct num): Removed.
+ (nao): Redefined, so that it doesn't have the numeric tag.
+
+ * lib.c (typeof, type_check2, type_check3, car, car_l, cdr, cdr_l,
+ equal, consp, atom, listp, num, c_num, nump, plus, minus,
+ stringp, lazy_stringp, obj_print, obj_pprint): Fixed these
+ functions to use the new number representation, and not to deference
+ the obj_t * poitner if it is actually a number.
+ (obj_init): Adjusted values of maxint and minint.
+
+ * gc.c (mark_obj, gc_is_reachable): Avoid dereferencing numbers.
+
+ * hash.c (ll_hash): Likewise.
+
+ * match.c (match_line, do_output_line): Likewise.
+
+2009-11-06 Kaz Kylheku <kkylheku@gmail.com>
+
First cut at hash tables. One known problem is allocation during gc,
due to use of boxed numbers for vector access.