summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-05-06 08:26:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2020-05-06 08:26:11 -0700
commitb4fd90ddf5aa2019548997d8fc99c1e7e3c10fa6 (patch)
tree4de96730bb8fcf0c81d8084cd3b426b9ec610c72 /configure
parent4516a7472d34a74f89b7b5d26db4f26d62bf9f83 (diff)
downloadtxr-b4fd90ddf5aa2019548997d8fc99c1e7e3c10fa6.tar.gz
txr-b4fd90ddf5aa2019548997d8fc99c1e7e3c10fa6.tar.bz2
txr-b4fd90ddf5aa2019548997d8fc99c1e7e3c10fa6.zip
gc: fight spurious retention.
I've noticed that the January 9, 2020 commit "gc: obtain stack top using alloca" triggers spurious retention when compiling with HAVE_VALGRIND. The finalization test case tests/012/fini.tl breaks because the expected finalizers are not called. Changing the (sys:gc) call to two calls to (sys:gc 1) makes it pass. The culprit seems to be the inlining of the complex function sweep into gc. It has local variables for which spaces has to be reserved, which are not used until after mark() is called; likely the values in those spaces are picked up by the stack scan. Let's make sure that functions called out of gc() are not inlined. * gc.c (mark, sweep, prepare_finals, call_finals): Mark NOTINLINE.
Diffstat (limited to 'configure')
0 files changed, 0 insertions, 0 deletions