2002-05-30 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mono / jit / mono.c
1 /*
2  * mono.c: Main driver for the Mono JIT engine
3  *
4  * Author:
5  *   Dietmar Maurer (dietmar@ximian.com)
6  *
7  * (C) 2001, 2002 Ximian, Inc (http://www.ximian.com)
8  */
9 #include "jit.h"
10 #include "regset.h"
11 #include "codegen.h"
12 #include "debug.h"
13 #include "mono/metadata/debug-helpers.h"
14 #include "mono/metadata/verify.h"
15 #include "mono/metadata/profiler.h"
16 #include "mono/metadata/threadpool.h"
17 #include <mono/metadata/profiler-private.h>
18 #include <mono/os/util.h>
19
20 /**
21  * mono_jit_image:
22  * @image: reference to an image
23  * @verbose: If true, print debugging information on stdout.
24  *
25  * JIT compilation of all methods in the image.
26  */
27 void
28 mono_jit_compile_image (MonoImage *image, int verbose)
29 {
30         MonoMethod *method;
31         MonoTableInfo *t = &image->tables [MONO_TABLE_METHOD];
32         int i;
33
34         for (i = 0; i < t->rows; i++) {
35
36                 method = mono_get_method (image, 
37                                           (MONO_TABLE_METHOD << 24) | (i + 1), 
38                                           NULL);
39
40                 if (verbose)
41                         g_print ("Compiling: %s:%s\n\n", image->assembly_name, method->name);
42
43                 if (method->flags & METHOD_ATTRIBUTE_ABSTRACT) {
44                         if (verbose)
45                                 printf ("ABSTARCT\n");
46                 } else
47                         mono_compile_method (method);
48
49         }
50
51 }
52
53 static MonoClass *
54 find_class_in_assembly (MonoAssembly *assembly, const char *namespace, const char *name)
55 {
56         MonoAssembly **ptr;
57         MonoClass *class;
58
59         class = mono_class_from_name (assembly->image, namespace, name);
60         if (class)
61                 return class;
62
63         for (ptr = assembly->image->references; ptr && *ptr; ptr++) {
64                 class = find_class_in_assembly (*ptr, namespace, name);
65                 if (class)
66                         return class;
67         }
68
69         return NULL;
70 }
71
72 static MonoMethod *
73 find_method_in_assembly (MonoAssembly *assembly, MonoMethodDesc *mdesc)
74 {
75         MonoAssembly **ptr;
76         MonoMethod *method;
77
78         method = mono_method_desc_search_in_image (mdesc, assembly->image);
79         if (method)
80                 return method;
81
82         for (ptr = assembly->image->references; ptr && *ptr; ptr++) {
83                 method = find_method_in_assembly (*ptr, mdesc);
84                 if (method)
85                         return method;
86         }
87
88         return NULL;
89 }
90
91 /**
92  * mono_jit_compile_class:
93  * @assembly: Lookup things in this assembly
94  * @compile_class: Name of the image/class/method to compile
95  * @compile_times: Compile it that many times
96  * @verbose: If true, print debugging information on stdout.
97  *
98  * JIT compilation of the image/class/method.
99  *
100  * @compile_class can be one of:
101  *
102  * - an image name (`@corlib')
103  * - a class name (`System.Int32')
104  * - a method name (`System.Int32:Parse')
105  */
106 void
107 mono_jit_compile_class (MonoAssembly *assembly, char *compile_class,
108                         int compile_times, int verbose)
109 {
110         const char *cmethod = strrchr (compile_class, ':');
111         char *cname;
112         char *code;
113         int i, j;
114         MonoClass *class;
115         MonoDomain *domain = mono_domain_get ();
116
117         if (compile_class [0] == '@') {
118                 MonoImage *image = mono_image_loaded (compile_class + 1);
119                 if (!image)
120                         g_error ("Cannot find image %s", compile_class + 1);
121                 if (verbose)
122                         g_print ("Compiling image %s\n", image->name);
123                 for (j = 0; j < compile_times; ++j)
124                         mono_jit_compile_image (image, verbose);
125         } else if (cmethod) {
126                 MonoMethodDesc *mdesc;
127                 MonoMethod *m;
128                 mdesc = mono_method_desc_new (compile_class, FALSE);
129                 if (!mdesc)
130                         g_error ("Invalid method name '%s'", compile_class);
131                 m = find_method_in_assembly (assembly, mdesc);
132                 if (!m)
133                         g_error ("Cannot find method '%s'", compile_class);
134                 for (j = 0; j < compile_times; ++j) {
135                         code = mono_compile_method (m);
136                         // g_free (code);
137                         g_hash_table_remove (domain->jit_code_hash, m);
138                 }
139         } else {
140                 cname = strrchr (compile_class, '.');
141                 if (cname)
142                         *cname++ = 0;
143                 else {
144                         cname = compile_class;
145                         compile_class = (char *)"";
146                 }
147                 class = find_class_in_assembly (assembly, compile_class, cname);
148                 if (!class)
149                         g_error ("Cannot find class %s.%s", compile_class, cname);
150                 mono_class_init (class);
151                 for (j = 0; j < compile_times; ++j) {
152                         for (i = 0; i < class->method.count; ++i) {
153                                 if (class->methods [i]->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
154                                         continue;
155                                 if (class->methods [i]->flags & METHOD_ATTRIBUTE_ABSTRACT)
156                                         continue;
157                                 if (verbose)
158                                         g_print ("Compiling: %s.%s:%s\n",
159                                                  compile_class, cname, class->methods [i]->name);
160                                 code = mono_compile_method (class->methods [i]);
161                                 g_hash_table_remove (domain->jit_code_hash, class->methods [i]);
162                                 // g_free (code);
163                         }
164                 }
165         }
166 }
167
168 static void
169 usage (char *name)
170 {
171         fprintf (stderr,
172                  "%s %s, the Mono ECMA CLI JIT Compiler, (C) 2001, 2002 Ximian, Inc.\n\n"
173                  "Usage is: %s [options] executable args...\n\n", name,  VERSION, name);
174         fprintf (stderr,
175                  "Runtime Debugging:\n"
176                  "    -d                 debug the jit, show disassembler output.\n"
177                  "    --dump-asm         dumps the assembly code generated\n"
178                  "    --dump-forest      dumps the reconstructed forest\n"
179                  "    --print-vtable     print the VTable of all used classes\n"
180                  "    --stats            print statistics about the jit operations\n"
181                  "    --trace            printf function call trace\n"
182                  "    --compile NAME     compile NAME, then exit.\n"
183                  "                       NAME is in one of the following formats:\n"
184                  "                         namespace.name          compile the given class\n"
185                  "                         namespace.name:method   compile the given method\n"
186                  "                         @imagename              compile the given image\n"
187                  "    --ncompile NUM     compile methods NUM times (default: 1000)\n"
188                  "\n"
189                  "Development:\n"
190                  "    --debug[=FORMAT]   write a debugging file.  FORMAT is one of:\n"
191                  "                         stabs        to write stabs information\n"
192                  "                         dwarf        to write dwarf2 information\n"
193                  "                         dwarf-plus   to write extended dwarf2 information\n"
194                  "    --debug-args ARGS  comma-separated list of additional arguments for the\n"
195                  "                       symbol writer.  See the manpage for details.\n"
196                  "    --profile          record and dump profile info\n"
197                  "    --breakonex        set a breakpoint for unhandled exception\n"
198                  "    --break NAME       insert a breakpoint at the start of method NAME\n"
199                  "                       (NAME is in `namespace.name:methodname' format)\n"
200                  "    --precompile name  precompile NAME before executing the main application:\n"
201                  "                       NAME is in one of the following formats:\n"
202                  "                         namespace.name          compile the given class\n"
203                  "                         namespace.name:method   compile the given method\n"
204                  "                         @imagename              compile the given image\n"
205                  "\n"
206                  "Runtime:\n"
207                  "    --fast-iconv       Use fast floating point integer conversion\n"
208                  "    --noinline         Disable code inliner\n"
209                  "    --nointrinsic      Disable memcopy inliner\n"
210                  "    --nols             disable linear scan register allocation\n"
211                  "    --share-code       force jit to produce shared code\n"
212                  "    --workers n        maximum number of worker threads\n"
213                 );
214         exit (1);
215 }
216
217 int 
218 main (int argc, char *argv [])
219 {
220         MonoDomain *domain;
221         MonoAssembly *assembly;
222         int retval = 0, i;
223         int compile_times = 1000;
224         char *compile_class = NULL;
225         char *debug_args = NULL;
226         char *file, *error;
227         gboolean testjit = FALSE;
228         int verbose = FALSE;
229         GList *precompile_classes = NULL;
230
231         g_log_set_always_fatal (G_LOG_LEVEL_ERROR);
232         g_log_set_fatal_mask (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR);
233         
234         if (argc < 2)
235                 usage (argv [0]);
236
237         for (i = 1; i < argc && argv [i][0] == '-'; i++){
238                 if (strcmp (argv [i], "--help") == 0) {
239                         usage (argv [0]);
240                 } else if (strcmp (argv [i], "-d") == 0) {
241                         testjit = TRUE;
242                         mono_jit_dump_asm = TRUE;
243                         mono_jit_dump_forest = TRUE;
244                 } else if (strcmp (argv [i], "--dump-asm") == 0)
245                         mono_jit_dump_asm = TRUE;
246                 else if (strcmp (argv [i], "--dump-forest") == 0)
247                         mono_jit_dump_forest = TRUE;
248                 else if (strcmp (argv [i], "--trace") == 0)
249                         mono_jit_trace_calls = TRUE;
250                 else if (strcmp (argv [i], "--share-code") == 0)
251                         mono_jit_share_code = TRUE;
252                 else if (strcmp (argv [i], "--noinline") == 0)
253                         mono_jit_inline_code = FALSE;
254                 else if (strcmp (argv [i], "--nointrinsic") == 0)
255                         mono_inline_memcpy = FALSE;
256                 else if (strcmp (argv [i], "--nols") == 0)
257                         mono_use_linear_scan = FALSE;
258                 else if (strcmp (argv [i], "--breakonex") == 0)
259                         mono_break_on_exc = TRUE;
260                 else if (strcmp (argv [i], "--print-vtable") == 0)
261                         mono_print_vtable = TRUE;
262                 else if (strcmp (argv [i], "--break") == 0) {
263                         MonoMethodDesc *desc = mono_method_desc_new (argv [++i], FALSE);
264                         if (!desc)
265                                 g_error ("Invalid method name '%s'", argv [i]);
266                         mono_debug_methods = g_list_append (mono_debug_methods, desc);
267                 } else if (strcmp (argv [i], "--count") == 0) {
268                         compile_times = atoi (argv [++i]);
269                 } else if (strcmp (argv [i], "--workers") == 0) {
270                         mono_worker_threads = atoi (argv [++i]);
271                         if (mono_worker_threads < 1)
272                                 mono_worker_threads = 1;
273                 } else if (strcmp (argv [i], "--profile") == 0) {
274                         mono_jit_profile = TRUE;
275                         mono_profiler_install_simple ();
276                 } else if (strcmp (argv [i], "--compile") == 0) {
277                         compile_class = argv [++i];
278                 } else if (strcmp (argv [i], "--ncompile") == 0) {
279                         compile_times = atoi (argv [++i]);
280                 } else if (strcmp (argv [i], "--stats") == 0) {
281                         memset (&mono_jit_stats, 0, sizeof (MonoJitStats));
282                         mono_jit_stats.enabled = TRUE;
283                 } else if (strncmp (argv [i], "--debug=", 8) == 0) {
284                         const char *format = &argv [i][8];
285                                 
286                         if (mono_debug_format != MONO_DEBUG_FORMAT_NONE)
287                                 g_error ("You can only use one debugging format.");
288                         if (strcmp (format, "stabs") == 0)
289                                 mono_debug_format = MONO_DEBUG_FORMAT_STABS;
290                         else if (strcmp (format, "dwarf") == 0)
291                                 mono_debug_format = MONO_DEBUG_FORMAT_DWARF2;
292                         else if (strcmp (format, "dwarf-plus") == 0)
293                                 mono_debug_format = MONO_DEBUG_FORMAT_DWARF2_PLUS;
294                         else
295                                 g_error ("Unknown debugging format: %s", argv [i] + 8);
296                 } else if (strcmp (argv [i], "--debug") == 0) {
297                         if (mono_debug_format != MONO_DEBUG_FORMAT_NONE)
298                                 g_error ("You can only use one debugging format.");
299                         mono_debug_format = MONO_DEBUG_FORMAT_DWARF2_PLUS;
300                 } else if (strcmp (argv [i], "--debug-args") == 0) {
301                         if (debug_args)
302                                 g_error ("You can use --debug-args only once.");
303                         debug_args = argv [++i];
304                 } else if (strcmp (argv [i], "--precompile") == 0) {
305                         precompile_classes = g_list_append (precompile_classes, argv [++i]);
306                 } else if (strcmp (argv [i], "--verbose") == 0) {
307                         verbose = TRUE;;
308                 } else if (strcmp (argv [i], "--fast-iconv") == 0) {
309                         mono_use_fast_iconv = TRUE;
310                 } else
311                         usage (argv [0]);
312         }
313         
314         file = argv [i];
315
316         if (!file)
317                 usage (argv [0]);
318
319         mono_set_rootdir (argv [0]);
320         domain = mono_jit_init (file);
321
322         error = mono_verify_corlib ();
323         if (error) {
324                 fprintf (stderr, "Corlib not in sync with this runtime: %s\n", error);
325                 exit (1);
326         }
327
328         assembly = mono_domain_assembly_open (domain, file);
329         if (!assembly){
330                 fprintf (stderr, "Can not open image %s\n", file);
331                 exit (1);
332         }
333
334         if (mono_debug_format != MONO_DEBUG_FORMAT_NONE) {
335                 MonoDebugHandle *debug;
336                 gchar **args;
337
338                 args = g_strsplit (debug_args ? debug_args : "", ",", -1);
339                 debug = mono_debug_open (assembly, mono_debug_format, (const char **) args);
340                 mono_debug_add_image (debug, assembly->image);
341                 g_strfreev (args);
342         }
343
344         if (testjit) {
345                 mono_jit_compile_image (assembly->image, TRUE);
346         } else if (compile_class) {
347                 mono_jit_compile_class (assembly, compile_class, compile_times, TRUE);
348         } else {
349                 GList *tmp;
350
351                 for (tmp = precompile_classes; tmp; tmp = tmp->next)
352                         mono_jit_compile_class (assembly, tmp->data, 1, verbose);
353
354                 retval = mono_jit_exec (domain, assembly, argc - i, argv + i);
355                 printf ("RESULT: %d\n", retval);
356         }
357
358         mono_profiler_shutdown ();
359         mono_jit_cleanup (domain);
360
361         return retval;
362 }
363
364