Hi folks. I am using the lsat free bit of the Squeak Object header to do some experiments. What I need to do now is to be able to set such bit for the CompiledMethod objects, when those selectors are sent.<br><br>Suppose that from the image side I do &quot;Date today yyyymmdd&quot;  then I want to set that bit in the object header of the CompiledMethod Date&gt;&gt; #today and CompiledMethod Date&gt;&gt; #yyyymmdd<br>
<br>Now....I check in the VM and I am not sure where I should do that. I already have my own primitive so that I can do something like this:<br><br>((self isIntegerObject: rcvr) not and: [hasToTrace])<br>        ifTrue: [ <br>
            self internalTurnOnUsedBit: rcvr.<br>            ].<br><br>Now...where I can intercept this in the VM? I found Interpreter &gt;&gt; internalExecuteNewMethod<br><br>is it there? should I access to &quot;newMethod&quot; and do something like this:<br>
<br>rcvr := &quot;somehow I access to Interpreter newMethod&quot;<br>((self isIntegerObject: rcvr) not and: [hasToTrace])<br>
        ifTrue: [ <br>
            self internalTurnOnUsedBit: rcvr.<br>
            ].<br>
<br><br>thanks for any help<br><br>mariano<br>