[Vm-dev] problem with #become, GC and proxies for compiled methods

Mariano Martinez Peck marianopeck at gmail.com
Mon Jan 30 16:05:28 UTC 2012


Hi guys. I am doing some hacky things and I have a problem. I am sure it is
not VM's fault but mine. I would just like to understand what could be
happening.

Scenario: I have developed an "object graph swapper" which basically takes
a graph, and replaces each object of the graph by a proxy. Then the graph
is serialized and swapped out to a file. The proxies then intercept
messages and materialize from file, and replaces proxies with the
materialized objects. When I am swapping out, after I become original
objects to proxies, the only reachable proxies are the proxies for the
roots and for objects inside the graph which were also referenced from
outside the graph. All the rest of the proxies (for objects only reachable
from inside the graph) can be garbage collected without problem.

Problem: I am swapping out several graphs one after another one. If after
swapping out each graph, I do a GC, then I have no problem. I can swap lots
of graphs. However, if I start to swap several graphs but I do not run a gc
after each graph, then I have a crash in the VM. The crash happens when
becoming original objects to proxies. More precisely it crashes in:

remappedObj: forwardedObj
    "Answer the given forwardedOop's target value
     during a compaction or become: operation."
    | fwdBlock targetObj |
    <inline: true>
    fwdBlock := self forwardingPointerOf: forwardedObj.
    self assert: (self fwdBlockValid: fwdBlock).
    targetObj := self longAt: fwdBlock.
    self assert: (self addressCouldBeObjWhileForwarding: targetObj).
    ^targetObj

line  targetObj := self longAt: fwdBlock.
it seems fwdBlock has a negative value (I debugged the VM and checked its
value) and then the longAt:   gives EXC_BAD_ACCESS.

My question is, can you imagine something that could be causing the crash?
I would like to understand what is happening. Maybe I am becoming objects
which are not reachable anymore and that fails?
Any hint is really appreciated.

Some investigations: sometimes it fails, but sometimes it works (I think
this is because on when the GC runs). It seems that when it breaks, in
#remapFieldsAndClassOf:   the oop is a CompiledMethod and so the
fieldOffset is the last literal, that is the assocation to the class. Since
I also replace classes with proxies, such association has a ClassProxy in
its value. Such class contains the 3 intsVars superclass, methodDict and
format so that not to crash VM. Format is set with ClassProxy format.
More information is that it doesn't crash in StackVM... moreover, it
doesn't crash if I DO NOT create proxies for CompiledMethod .... looks like
something with them ... So.... can this give you a hint?

Thanks

-- 
Mariano
http://marianopeck.wordpress.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/vm-dev/attachments/20120130/efae4255/attachment.htm


More information about the Vm-dev mailing list