[Mono-list] mcs compiles on linux. Now what?

Miguel de Icaza miguel@ximian.com
08 Mar 2002 06:56:48 -0500


> If I understand this correctly, this'll result in one million function
> calls when run with mint, but will look more like
> 
> ====
>         public static void TestIt ()
>         {
>                 long result = 0;
> 
>                 for (long count = 0; count < 1000000; count++)
>                         result++;
>         }
> ====

Currently we do not do inlining, and we probably will not with a "fast
JITer" anyways.  A second optimizing re-jiting pass could be able to do
this, but this is still an open task, and we will not have this for
quite some time.

Miguel