diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-11-16 09:48:19 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-12-23 19:09:30 -0500 |
commit | ab6cf893037f073fd3daf619579c84e58362b499 (patch) | |
tree | f39240785357dfbc31a50e17d66e563e934357ed | |
parent | d3fe110aaf7c40c5a4b2ff460abe33ee7fac6d93 (diff) | |
download | haskell-ab6cf893037f073fd3daf619579c84e58362b499.tar.gz |
nonmoving: Fix race in shortcutting
We must use an acquire load to read the info table pointer since if we
find an indirection we must be certain that we see the indirectee.
-rw-r--r-- | rts/include/rts/storage/ClosureMacros.h | 6 | ||||
-rw-r--r-- | rts/sm/NonMovingShortcut.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/rts/include/rts/storage/ClosureMacros.h b/rts/include/rts/storage/ClosureMacros.h index ba57df1699..ecfca8a81c 100644 --- a/rts/include/rts/storage/ClosureMacros.h +++ b/rts/include/rts/storage/ClosureMacros.h @@ -97,6 +97,12 @@ EXTERN_INLINE const StgInfoTable *get_itbl(const StgClosure *c) return INFO_PTR_TO_STRUCT(RELAXED_LOAD(&c->header.info)); } +EXTERN_INLINE const StgInfoTable *get_itbl_acquire(const StgClosure *c); +EXTERN_INLINE const StgInfoTable *get_itbl_acquire(const StgClosure *c) +{ + return INFO_PTR_TO_STRUCT(ACQUIRE_LOAD(&c->header.info)); +} + EXTERN_INLINE const StgRetInfoTable *get_ret_itbl(const StgClosure *c); EXTERN_INLINE const StgRetInfoTable *get_ret_itbl(const StgClosure *c) { diff --git a/rts/sm/NonMovingShortcut.c b/rts/sm/NonMovingShortcut.c index 83c4857677..ee97ba1b70 100644 --- a/rts/sm/NonMovingShortcut.c +++ b/rts/sm/NonMovingShortcut.c @@ -153,7 +153,8 @@ selectee_changed: // Selectee is a non-moving object, mark it. markQueuePushClosure(queue, selectee, NULL); - const StgInfoTable *selectee_info_tbl = get_itbl(selectee); + // This may synchronize with the release in updateWithIndirection. + const StgInfoTable *selectee_info_tbl = get_itbl_acquire(selectee); switch (selectee_info_tbl->type) { case WHITEHOLE: { // Probably a loop. Abort. |