Skip to content
Snippets Groups Projects
Commit b0d6bf2a authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

rts: Reset STATIC_LINK field of reverted CAFs

When we revert a CAF we must reset the STATIC_LINK field lest the GC
might ignore the CAF (e.g. as it carries the STATIC_FLAG_LIST flag) and
will consequently overlook references to object code that we are trying
to unload. This would result in the reachable object code being
unloaded. See Note [CAF lists] and Note [STATIC_LINK fields].

This fixes #16842.

Idea-due-to: Phuong Trinh <lolotp@fb.com>
parent 22e721c1
No related branches found
No related tags found
No related merge requests found
......@@ -114,16 +114,21 @@ isAlive(StgClosure *p)
void
revertCAFs( void )
{
StgIndStatic *c;
StgIndStatic *c = revertible_caf_list;
for (c = revertible_caf_list;
c != (StgIndStatic *)END_OF_CAF_LIST;
c = (StgIndStatic *)c->static_link)
{
while (c != (StgIndStatic *) END_OF_CAF_LIST) {
c = (StgIndStatic *)UNTAG_STATIC_LIST_PTR(c);
StgIndStatic *next = (StgIndStatic *) c->static_link;
SET_INFO((StgClosure *)c, c->saved_info);
c->saved_info = NULL;
// could, but not necessary: c->static_link = NULL;
// We must reset static_link lest the major GC finds that
// static_flag==3 and will consequently ignore references
// into code that we are trying to unload. This would result
// in reachable object code being unloaded prematurely.
// See #16842.
c->static_link = NULL;
c = next;
}
revertible_caf_list = (StgIndStatic*)END_OF_CAF_LIST;
}
......
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