On Jul 9, 2013, at 7:00 PM, Norbert Hartl <[email protected]> wrote:
> I'm analyzing some code and what I do does not work for e.g. ifTrue:ifFalse.
> Is there a way to (temporary) deactivate using the jit or any optimization
> that handles those methods special?
>
This is not done on the JIT level but the compiler already decides to compile
*any* send of ifTrue: and friend to jumps (without thinking).
The new compiler in 3.0 has support to turn this off selectively per class and
per method using compiler options.
Marcus