2009-03-10 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Tue, 10 Mar 2009 21:38:35 +0000 (21:38 -0000)
committerZoltan Varga <vargaz@gmail.com>
Tue, 10 Mar 2009 21:38:35 +0000 (21:38 -0000)
* aot-compiler.c (mono_compile_assembly): Make the output less verbose.

svn path=/trunk/mono/; revision=129022

mono/mini/ChangeLog
mono/mini/aot-compiler.c

index 9bc0b4b611c65dbc595437336400a341cc60323b..47a94448380a7fc7198b975e0eb255651fd6fd34 100644 (file)
@@ -1,5 +1,7 @@
 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
 
+       * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
+
        * dwarfwriter.c (emit_line_number_info): The line number info for
        IL code was off by one. Fix that.
 
index cbd9c77d4376192c0730d69232b513176b7eca8f..1c38f55843d73b01a5bf8724571f52e6d3cb5357 100644 (file)
@@ -4287,12 +4287,15 @@ mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
                printf ("%d methods have other problems (%d%%)\n", acfg->stats.ocount, acfg->stats.mcount ? (acfg->stats.ocount * 100) / acfg->stats.mcount : 100);
        printf ("Methods without GOT slots: %d (%d%%)\n", acfg->stats.methods_without_got_slots, acfg->stats.mcount ? (acfg->stats.methods_without_got_slots * 100) / acfg->stats.mcount : 100);
        printf ("Direct calls: %d (%d%%)\n", acfg->stats.direct_calls, acfg->stats.all_calls ? (acfg->stats.direct_calls * 100) / acfg->stats.all_calls : 100);
-       printf ("JIT time: %d ms, Generation time: %d ms, Assembly+Link time: %d ms.\n", acfg->stats.jit_time / 1000, acfg->stats.gen_time / 1000, acfg->stats.link_time / 1000);
 
+       /*
        printf ("GOT slot distribution:\n");
        for (i = 0; i < MONO_PATCH_INFO_NONE; ++i)
                if (acfg->stats.got_slot_types [i])
                        printf ("\t%s: %d\n", get_patch_name (i), acfg->stats.got_slot_types [i]);
+       */
+
+       printf ("JIT time: %d ms, Generation time: %d ms, Assembly+Link time: %d ms.\n", acfg->stats.jit_time / 1000, acfg->stats.gen_time / 1000, acfg->stats.link_time / 1000);
 
        acfg_free (acfg);