summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-16 09:26:53 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-16 09:26:53 -0800
commitfb2f0af8bd14283524e5842b43461ea3fc7701ca (patch)
treeacdf6396d5ebf9b9d65ea85f70cafd7fffdb8991 /ChangeLog
parent0dd8652385533322d41b30fbd9375e6de9903548 (diff)
downloadtxr-fb2f0af8bd14283524e5842b43461ea3fc7701ca.tar.gz
txr-fb2f0af8bd14283524e5842b43461ea3fc7701ca.tar.bz2
txr-fb2f0af8bd14283524e5842b43461ea3fc7701ca.zip
Use the 11 tag bit pattern to denote a new type: LIT. This is a
pointer to a C static string, intended for literals. We can now treat literal strings as light-weight objects.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4bfcad3c..376dfb31 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
2009-11-15 Kaz Kylheku <kkylheku@gmail.com>
+ Use the 11 tag bit pattern to denote a new type: LIT. This is a
+ pointer to a C static string, intended for literals. We can now
+ treat literal strings as light-weight objects.
+
+ * lib.h (TAG_MASK): Ensure the constant expr has long type.
+ (TAG_LIT): New macro.
+ (enum type, type_t): New enum member, LIT.
+
+ * gc.c (finalize, mark_obj): Handle LIT type.
+
+ * hash.c (ll_hash): Likewise.
+
+ * lib.c (code2type, equal, stringp, length_str, c_str,
+ obj_print): Likewise.
+ (obj_init): Intern symbols using literal strings.
+ (type): Parentheses added to macro expansion.
+ (is_lit, lit, litptr): New macros.
+
+2009-11-15 Kaz Kylheku <kkylheku@gmail.com>
+
* lib.c (chr): Take wchar_t argument, not int. Dropped range check.
(c_chr): Return wchar_t not int.