<div dir="ltr">I see, so you're saying that there is no pinning of ByteArray# objects during FFI calls, and the only property that guarantees correctness of these FFI calls is that no GC happens during the FFI call. Furthermore, that guarantee is only available for FFI calls tagged 'unsafe'. Good to know!<div><br></div><div><a href="https://ghc.haskell.org/trac/ghc/ticket/8281">The bug you linked</a> you linked is scary in how much code is buggy in this regard. Thanks for the heads-up!<br></div><div><br></div><div>Reiner</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jan 2, 2018 at 7:31 PM winter <<a href="mailto:drkoster@qq.com">drkoster@qq.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>You’d better use `UnliftedFFITypes` with unsafe FFI calls, since unsafe FFI calls act like fat prim-ops.</div><div><br></div><div>GC can happen during safe FFI calls, safe FFI calls are running on other OS threads rather than GHC scheduling threads.</div><div><br></div><div>Note: older version of GHCi used to implemented unsafe FFI using safe FFI, there’s an issue about this here: <a href="https://ghc.haskell.org/trac/ghc/ticket/8281" target="_blank">https://ghc.haskell.org/trac/ghc/ticket/8281</a></div><div><br></div><br><div><blockquote type="cite"></blockquote></div></div><div style="word-wrap:break-word"><div><blockquote type="cite"><div>On 3 Jan 2018, at 10:51 AM, Reiner Pope <<a href="mailto:reiner.pope@gmail.com" target="_blank">reiner.pope@gmail.com</a>> wrote:</div><br class="m_-6008582773693253697Apple-interchange-newline"></blockquote></div></div><div style="word-wrap:break-word"><div><blockquote type="cite"><div><div dir="ltr">Hi Haskell-Cafe,<div><br></div><div>I understand from <a href="https://mail.haskell.org/pipermail/haskell-cafe/2014-June/114763.html" target="_blank">https://mail.haskell.org/pipermail/haskell-cafe/2014-June/114763.html</a> that it is safe to pass ByteArray# objects to FFI calls, using the UnliftedFFITypes language extension. As I understand it, the implicit guarantee is that the RTS will pin the ByteArray#'s address in memory for the duration of the FFI call -- even if the ByteArray# wasn't allocated pinned.</div><div><br></div><div>I'm curious: how does the RTS achieve this "retroactive" pinning? The documentation at <a href="https://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC/Pinned" target="_blank">https://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC/Pinned</a> suggests that <i>all</i> ByteArrays are allocated pinned to account for the possibility that they will in future be passed to the FFI. Is this really the case? This seems like it forces an unreasonably slow allocator on small (say, ~10-byte) ByteArray allocations where the GC's usual bump-pointer allocator might otherwise be preferable.</div><div><br></div><div>Regards,</div><div>Reiner</div></div></div></blockquote></div></div><div style="word-wrap:break-word"><div><blockquote type="cite"><div>
_______________________________________________<br>Haskell-Cafe mailing list<br>To (un)subscribe, modify options or view archives go to:<br><a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>Only members subscribed via the mailman list are allowed to post.</div></blockquote></div><br></div></blockquote></div>