diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-16 09:26:53 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-16 09:26:53 -0800 |
commit | fb2f0af8bd14283524e5842b43461ea3fc7701ca (patch) | |
tree | acdf6396d5ebf9b9d65ea85f70cafd7fffdb8991 /ChangeLog | |
parent | 0dd8652385533322d41b30fbd9375e6de9903548 (diff) | |
download | txr-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-- | ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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. |