Possibility of unnecessary remapped object

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Possibility of unnecessary remapped object

Mathieu SUEN
 
Hi,

I saw that in the Interpreter>>#lookupMethodInClass:  some temp is  
push in the remmappable stack:

                        ....
                        "MethodDict pointer is nil (hopefully due a swapped out stub)
                                -- raise exception #cannotInterpret:."
                        self pushRemappableOop: currentClass.  "may cause GC!"
                        self createActualMessageTo: class.
                        currentClass := self popRemappableOop.
                        ....

But it seems not necessary since the #createActualMessage take care of  
it?

        Mth