Optimized compilation happens on a per-function basis. A large function
with many branches (if/else or switch), some of which are only executed
rarely, tends to cause repeated deoptimizations (some branches have been
executed enough to make the function hot, it gets optimized, then one of
the as-ye
On Fri, Apr 19, 2019 at 9:16 AM J Decker wrote:
>
> A question came to mind about the resolution of the 'compilation' of code.. I
> have message handlers that receive an object with a standard field 'op'.
> Then for each 'op' that can be processed I have an if test and a small amount
> of code