Skip to content
Snippets Groups Projects
Commit 440a04a8 authored by Raymond Toy's avatar Raymond Toy
Browse files

Fix bitrot: support scavenging unicode strings..

parent 28508053
No related branches found
No related tags found
No related merge requests found
...@@ -1202,7 +1202,7 @@ size_unboxed(lispobj * where) ...@@ -1202,7 +1202,7 @@ size_unboxed(lispobj * where)
#define NWORDS(x,y) (CEILING((x),(y)) / (y)) #define NWORDS(x,y) (CEILING((x),(y)) / (y))
static int static int
scav_string(lispobj * where, lispobj object) size_string(lispobj * where)
{ {
struct vector *vector; struct vector *vector;
int length, nwords; int length, nwords;
...@@ -1212,43 +1212,30 @@ scav_string(lispobj * where, lispobj object) ...@@ -1212,43 +1212,30 @@ scav_string(lispobj * where, lispobj object)
vector = (struct vector *) where; vector = (struct vector *) where;
length = fixnum_value(vector->length) + 1; length = fixnum_value(vector->length) + 1;
#ifndef UNICODE
nwords = CEILING(NWORDS(length, 4) + 2, 2); nwords = CEILING(NWORDS(length, 4) + 2, 2);
#else
/*
* Strings are just like arrays with 16-bit elements, and contain
* one more element than the slot length indicates.
*/
nwords = CEILING(NWORDS(length, 2) + 2, 2);
#endif
return nwords; return nwords;
} }
static lispobj static int
trans_string(lispobj object) scav_string(lispobj * where, lispobj object)
{ {
struct vector *vector; return size_string(where);
int length, nwords;
gc_assert(Pointerp(object));
/* NOTE: Strings contain one more byte of data than the length */
/* slot indicates. */
vector = (struct vector *) PTR(object);
length = fixnum_value(vector->length) + 1;
nwords = CEILING(NWORDS(length, 4) + 2, 2);
return copy_object(object, nwords);
} }
static int static lispobj
size_string(lispobj * where) trans_string(lispobj object)
{ {
struct vector *vector; gc_assert(Pointerp(object));
int length, nwords; return copy_object(object, size_string((lispobj *) PTR(object)));
/* NOTE: Strings contain one more byte of data than the length */
/* slot indicates. */
vector = (struct vector *) where;
length = fixnum_value(vector->length) + 1;
nwords = CEILING(NWORDS(length, 4) + 2, 2);
return nwords;
} }
static int static int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment