Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl-copy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Richard M Kreuter
cmucl-copy
Commits
440a04a8
Commit
440a04a8
authored
12 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Fix bitrot: support scavenging unicode strings..
parent
28508053
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lisp/gc.c
+16
-29
16 additions, 29 deletions
src/lisp/gc.c
with
16 additions
and
29 deletions
src/lisp/gc.c
+
16
−
29
View file @
440a04a8
...
@@ -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
s
cav
_string
(
lispobj
*
where
,
lispobj
object
)
s
ize
_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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment