<div dir="ltr"><div>Hi Ömer,</div><div><br></div><div>The write barrier is the function `dirty_STACK()` here: <a href="https://phabricator.haskell.org/diffusion/GHC/browse/master/rts%2Fsm%2FStorage.c$1133-1140">https://phabricator.haskell.org/diffusion/GHC/browse/master/rts%2Fsm%2FStorage.c$1133-1140</a></div><div><br></div><div>If you grep for `dirty_STACK` you'll see it being called everywhere we mutate a STACK, in particular in the scheduler just before running a thread: <a href="https://phabricator.haskell.org/diffusion/GHC/browse/master/rts%2FSchedule.c$412">https://phabricator.haskell.org/diffusion/GHC/browse/master/rts%2FSchedule.c$412</a></div><div><br></div><div>We don't call the write barrier in the code generator or from primops, because at that point the thread is already running and has already been marked dirty. If we GC and mark the stack clean, then it will be marked dirty again by the scheduler before we start running it.</div><div><br></div><div>Cheers</div><div>Simon<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 17 July 2018 at 20:45, Ömer Sinan Ağacan <span dir="ltr"><<a href="mailto:omeragacan@gmail.com" target="_blank">omeragacan@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Simon,<br>
<br>
I'm a bit confused about stack updates in generated code and write barriers.<br>
Because stacks are mutable (we push new stuff or maybe even update existing<br>
frames?) it seems to me that we need one these two, similar to other mutable<br>
objects:<br>
<br>
- Always keep all stacks in mut_lists<br>
- Add write barriers before updates<br>
<br>
However looking at some of the primops like catch# and the code generator that<br>
generates code that pushes update frames I can't see any write barriers and the<br>
GC doesn't always add stacks to mut_lists (unlike e.g. MUT_ARR_PTRS). I also<br>
thought maybe we add a stack to a mut_list when we switch to the TSO that owns<br>
it or we park the TSO, but I don't see anything relevant in Schedule.c or<br>
ThreadPaused.c. So I'm lost. Could you say a few words about how we deal with<br>
mutated stacks in the GC, so that if an old stack points to a young object we<br>
don't collect the young object in a minor GC?<br>
<br>
Thanks,<br>
<br>
Ömer<br>
</blockquote></div><br></div>