Hi, Am Freitag, den 31.08.2012, 13:14 +0100 schrieb Simon Marlow: > > Note that the GC does evacuate the closures, as the pointers change. Why > > are these not replaced by the static ones here? > > Probably because GHCi has a dynamically loaded copy of the base package, > so the pointer comparisons that the GC is doing do not match the > dynamically-loaded I# and C# constructors.
could be; I could not find a way to verify it. I tried comparing the
info pointers of a "1::Int" that I generated in ghci and one that comes
from a statically compiled module loaded into ghci, but that is probably
also linked against GHHi’s dynamically loaded base.
But if it is really the case that the RTS has different copies of base,
wouldn’t code like this then break?
if (i == &stg_TSO_info
|| i == &stg_WHITEHOLE_info
|| i == &stg_BLOCKING_QUEUE_CLEAN_info
|| i == &stg_BLOCKING_QUEUE_DIRTY_info) {
copy(p,info,q,sizeofW(StgInd),gen_no);
return;
}
(http://hackage.haskell.org/trac/ghc/browser/rts/sm/Evac.c#L635)
Or is it, by accident or careful design, the case that all the instances
where the RTS compares info pointers with well known pointers are not
relevant when running in GHCi?
Thanks,
Joachim
--
Joachim "nomeata" Breitner
[email protected] | [email protected] | GPG: 0x4743206C
xmpp: [email protected] | http://www.joachim-breitner.de/
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Glasgow-haskell-users mailing list [email protected] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
