* Makefile (MCS) [PROFILE=default]: Force testing of 'mcs'.
[mono.git] / mono / jit / ChangeLog
1 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
2
3         * jit.c: Remove definition of metadata_section mutex from here
4
5 2003-05-19  Dick Porter  <dick@ximian.com>
6
7         * jit.c: Netbsd build fix by marc@informatik.uni-bremen.de.
8
9 Thu Apr 24 17:11:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
10
11         * Makefile.am: rename mono and libmono to oldmono and liboldmono.
12
13 2003-04-23  Martin Baulig  <martin@ximian.com>
14
15         * mono.c: The `--debug' command line argument doesn't take any
16         arguments anymore, removed the `--debug-args' argument.
17
18         * debug-jit.c (mono_debug_add_method): Renamed this to
19         mono_debug_jit_add_method(); create the JIT-specific data
20         structure and pass it to mono_debug_add_method().
21
22         * debug.[ch]: Removed.  The code is now in
23         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
24
25         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
26         last six months.
27
28 2003-04-21  Martin Baulig  <martin@ximian.com>
29
30         * debug.c (mono_debug_open): Splitted into mono_debug_init() and
31         mono_debug_init_2().
32         (mono_debug_open_image): Don't open referenced assemblies; this is
33         done automatically by the code in assembly.c.
34
35         * mono.c (main_thread_handler): Call mono_debug_init() before
36         opening the assembly because we need to install the assembly load
37         hook before doing so.
38
39 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
40
41         * jit.c:
42         (mono_jit_cleanup): moved mono_runtime_cleanup call after the call to
43         mono_domain_finalize.
44
45 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
46
47         * jit.c (check_inlining): honor the NOINLING atttribute.
48
49 2003-03-31  Martin Baulig  <martin@ximian.com>
50
51         * debug.h (MonoDebuggerEvent): Removed
52         MONO_DEBUGGER_EVENT_THREAD_CREATED.
53
54         * jit.c (mono_thread_start_cb): Don't send the
55         MONO_DEBUGGER_EVENT_THREAD_CREATED event.
56
57 2003-03-13  Martin Baulig  <martin@ximian.com>
58
59         * debug.c (_mono_debug_address_from_il_offset): Moved to
60         ../metadata/debug-mono-symfile.c
61
62 2003-03-07  Martin Baulig  <martin@ximian.com>
63
64         * debug-jit.c: #include <config.h>.
65
66 2003-03-05  Martin Baulig  <martin@ximian.com>
67
68         * debug-jit.c, debug-jit.h: New files.  Moved all JIT-specific
69         stuff here.
70
71         * debug.c (mono_debug_add_method): Moved to debug-jit.c.
72         (mono_debug_handle, mono_debug_initialized): Made them global.
73         (replace_suffix): Removed, this isn't used anymore.
74         (record_line_number): Moved to debug-jit.c.
75         (debug_generate_method_lines): Moved to debug-jit.c
76         (generate_line_number): Renamed to
77         _mono_debug_generate_line_number() and made it global.
78         (debug_update_il_offsets): Moved to debug-jit.c
79         (mono_debug_get_image): Renamed to _mono_debug_get_image() and made
80         it global.
81         (address_from_il_offset): Renamed to
82         _mono_debug_address_from_il_offset() and made it global.
83         (il_offset_from_position): Moved to debug-jit.c
84         (lookup_method): Renamed to _mono_debug_lookup_method() and made
85         it global.
86         (mono_debug_add_method): Moved to debug-jit.c.
87         (mono_debug_create_notification_function): Use two new functions
88         mono_debug_codegen_breakpoint() and mono_debug_codegen_ret()
89         instead of x86_breakpoint() and x86_ret().      
90
91 Sat Mar 1 12:36:45 CET 2003 Paolo Molaro <lupus@ximian.com>
92
93         * jit.c: remove unnecessary assert when inlining.
94
95 2003-02-17  Martin Baulig  <martin@ximian.com>
96
97         * jit.c (mono_jit_compile_method): Don't emit a `nop' at the start
98         of each method.
99
100 2003-02-14  Patrik Torstensson
101
102         * x86.brg: Implemented CONV_OVF_[I|U]4 (freg), this fixes the issues 
103         with the "checked" keyword. Closes bugs #33421 and #35280 (JIT not mint)
104
105 2003-02-14  Dietmar Maurer  <dietmar@ximian.com>
106
107         * exception.c (mono_arch_find_jit_info): better way to handle
108         situations where we have no MonoJitInfo
109
110 2003-02-11  Zoltan Varga  <vargaz@freemail.hu>
111
112         * trampoline.c (arch_create_jit_trampoline): This function should 
113         allways return a trampoline for managed methods. Fixes bug #29859.
114
115 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
116
117         * debug.c: allocate debug->source_files. Fixes GLib-CRITICAL upon
118         debugging clean up.
119
120 2003-02-02  Martin Baulig  <martin@ximian.com>
121
122         * debug.c (mono_debug_add_wrapper): Lookup the wrapper method in a
123         hash table; we need to provide the correct code_size.
124
125 2003-02-02  Martin Baulig  <martin@ximian.com>
126
127         * jit.c (mono_jit_compile_method): Call mono_debug_add_wrapper()
128         to add the interncall to the symbol file.
129
130         * debug.c (mono_debug_add_wrapper): New public function.
131
132 2003-02-02  Martin Baulig  <martin@ximian.com>
133
134         * debug.c (debug_update_il_offsets): Set the prologue end address
135         to the address of the first source line.
136
137 2003-01-31  Dietmar Maurer  <dietmar@ximian.com>
138
139         * jit.c (mono_analyze_stack): use the wrapper signature if necessary
140
141 2003-01-31  Zoltan Varga  <vargaz@freemail.hu>
142
143         * debug.c (mono_debug_open_image): dynamic assemblies have no debug
144         info.
145
146 Thu Jan 30 11:07:06 CET 2003 Paolo Molaro <lupus@ximian.com>
147
148         * helper.c: handle MONO_TYPE_ARRAY as well.
149         
150 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
151
152         * jit.c (mono_analyze_stack): impl. CEE_MONO_LDNATIVEOBJ
153         (mono_analyze_stack): RETOBJ always returns native sized objects 
154
155 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
156
157         * x86.brg (mono_ldintftn): use <= instead of <, since the 
158         interface_offsets array is max_interface_id + 1 long.
159
160 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
161
162         * x86.brg (mono_ldintftn): fix from Zoltan: use max_interface_id
163
164 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
165
166         * exception.c (ves_icall_get_trace): avoid crash if the exception is 
167         not yet thrown.
168
169         * exception.c (ves_icall_get_trace): avoid crash on unmanaged frames.
170
171 2003-01-26  Martin Baulig  <martin@ximian.com>
172
173         * debug.c (mono_debug_init): Take a boolean argument which
174         specifies whether we're running in the Mono Debugger.
175
176 2003-01-24  Martin Baulig  <martin@ximian.com>
177
178         * debug.c (mono_debug_io_layer): Disable this on Windows.
179
180 2003-01-23  Dick Porter  <dick@ximian.com>
181
182         * mono.c: Use mono_runtime_exec_managed_code() to run all managed
183         code in a subthread.
184
185         * jit.c: Changed thread start and attach callbacks to pass the
186         thread ID, not the MonoThread pointer.  Arrange that managed code
187         execution will fail an assertion in the main thread, just to be
188         sure.
189
190 2003-01-22  Martin Baulig  <martin@ximian.com>
191
192         * debug.c: Reverted Gonzalo's last change since it is wrong.
193         We're also using the debugging code on Windows, for instance the
194         stabs stuff when running in gdb.  I hope this code still builds on
195         Windows; if not, we need to fix this.
196         Moved all the mono debugger support code into the debugger itself;
197         when debugging a managed application, the debugger new launches a
198         small unmanaged wrapper application which contains this stuff.
199
200         * debug.h (MonoDebuggerIOLayer): New public typedef; this is just
201         initialized to an array of function pointers to the io-layer
202         function; they don't seem to be public in the `libmono' library.
203         (mono_debugger_event): New public function.  Sends the debugger an
204         event if we're running in the Mono Debugger and does nothing otherwise.
205
206         * mono.c: Don't initialize the Mono Debugger here.
207
208         * jit.c (mono_debug_insert_breakpoint): Removed, this isn't used anymore.
209         (mono_thread_start_cb, mono_thread_attach_cb): Call
210         mono_debugger_event() to send the debugger a callback.
211
212 2003-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
213
214         * debug.c: make all public symbols just dummy for windows.
215
216 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
217
218         * debug.c (initialize_debugger_support): ifdef out the call to
219         mono_debugger_init_thread_debug for the release. 
220
221         Someone should look into why its not defined.  I think the problem
222         is what Dick pointed out somewhere: code in io-layer is not
223         supposed to ever be used in Windows, so code for the debugger that
224         lives there must be moved elsewhere.
225
226 2003-01-19  Martin Baulig  <martin@ximian.com>
227
228         * debug.c: Ok, this should now finally be working this time ....
229
230 2003-01-18  Martin Baulig  <martin@ximian.com>
231
232         * debug.c (mono_debugger_jit_exec): Send the background thread a
233         SIGKILL before returning.
234
235 2003-01-17  Dietmar Maurer  <dietmar@ximian.com>
236
237         * x86.brg: removed duplicated CONV_OVF_I4
238
239 2003-01-17  Martin Baulig  <martin@ximian.com>
240
241         * debug.c: Don't use mono_once here.  Reworked the API a bit to
242         use `mono_debug_' and `debug_' for the general debugging API and
243         `mono_debugger_' and `debugger_' for the Mono Debugger stuff.
244
245 2003-01-16  Martin Baulig  <martin@ximian.com>
246
247         * debug.c (debugger_thread_func): We don't need to `raise
248         (SIGSTOP)' anymore; the thread manager already takes care of this.
249
250 2003-01-16  Dietmar Maurer  <dietmar@ximian.com>
251
252         * exception.c (arch_handle_exception): exclude runtime invoke
253         wrapper from the stack trace
254
255         * jit.c (mono_cfg_new): allocate extra space to store esp (used by exceptions)
256         (mono_thread_start_cb): save an additional LMF at thread start
257
258 2003-01-16  Martin Baulig  <martin@ximian.com>
259
260         * jit.c (mono_runtime_install_handlers): Use SYS_sigaction() for
261         the mono_thread_get_abort_signal () - this is SIGUSR1 on FreeBSD
262         and the LinuxThreads port doesn't allow you to override the handler.
263         [FIXME: This avoids an assertion failure on startup, but there's
264         still an issue with thread termination.]
265
266 2003-01-16  Martin Baulig  <martin@ximian.com>
267
268         * debug.c (debugger_thread_func): We don't need to `raise
269         (SIGSTOP)' anymore; the thread manager already takes care of this.
270
271 2003-01-16  Martin Baulig  <martin@ximian.com>
272
273         * debug.c: Use the mono/io-layer functions here instead of gthread.
274
275 2003-01-14  Dietmar Maurer  <dietmar@ximian.com>
276
277         * jit.c (mono_jit_compile_method):  make sure runtime_init is called 
278         (mono_analyze_stack): make sure runtime_init is called
279
280 2003-01-14  Martin Baulig  <martin@ximian.com>
281
282         * debug.c (debugger_update_symbol_file_table): Moved all the
283         functionality into debugger_update_symbol_file_table_internal();
284         the latter one will be called from the background thread while
285         already owning the lock.  This'll allow us to step into
286         debugger_update_symbol_file_table() in the debugger and debug it.
287
288 2003-01-14  Martin Baulig  <martin@ximian.com>
289
290         * Makefile.am: Link against gthread.
291
292         * jit.c: After realizing that mono-mutex doesn't work either
293         because it doesn't support recursive mutexes on FreeBSD, rewrote
294         the whole thread stuff to use gthread.  This seems to fix this
295         weird deadlock in the debugger as well.
296
297 2003-01-12  Alp Toker  <alp@atoker.com>
298
299         * exception.c: Typo fix: insinde -> inside
300
301 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
302
303         * exception.c (ves_icall_get_frame_info): skip one more frame and also
304         MONO_WRAPPER_RUNTIME_INVOKE wrappers
305         (x86_unwind_native_frame): disable unnecessary assertion
306
307 2003-01-07  Dietmar Maurer  <dietmar@ximian.com>
308
309         * exception.c (ves_icall_get_frame_info): fix bug 36382
310
311 Tue Jan 7 15:15:41 CET 2003 Paolo Molaro <lupus@ximian.com>
312
313         * jit.c: handle wrapper_data in NEWOBJ/CALL.
314
315 2003-01-07  Dietmar Maurer  <dietmar@ximian.com>
316
317         * jit.c (mono_analyze_stack): add check for NULL target in STFLD
318
319 2003-01-06  Martin Baulig  <martin@ximian.com>
320
321         * debug.c (debugger_finished_mutex): Use a recursive mutex here.
322
323         * debug.c: Correctly handle the `debugger_finished_mutex'; it is
324         only unlocked by the pthread_cond_wait() in mono_debugger_wait().
325
326 2003-01-04 Jackson Harper <jackson@latitudegeo.com>
327
328         * debug.c: Move must_send_finished var declaration out of #if win32
329         block (this fixes the build on win32)
330
331 2003-01-05  Martin Baulig  <martin@ximian.com>
332
333         * debug.c (mono_debugger_jit_exec): Custom version of mono_jit_exec();
334         this is used when we're running inside the Mono Debugger 
335         (mono_debugger_wait): Put the waiting code into a function of its own.
336
337         * mono.c (main): Call mono_debugger_jit_exec() instead of
338         mono_jit_exec() if we're running inside the Mono Debugger.
339         
340 2003-01-05  Martin Baulig  <martin@ximian.com>
341
342         * debug.h (MonoDebugFormat): Added
343         `MONO_DEBUG_FORMAT_MONO_DEBUGGER'; this allows us to check whether
344         we're running inside the Mono Debugger prior to the args parsing.
345
346 2003-01-04  Martin Baulig  <martin@ximian.com>
347
348         * debug.c (release_symbol_file_table): Only call this if we're
349         actually modifying the symbol tables.
350         (mono_debug_open): Always set the `mono_debugger_class_init_func'
351         for MONO_DEBUG_FORMAT_MONO; this stuff should also go into core dumps.
352
353 2003-01-03  Martin Baulig  <martin@ximian.com>
354
355         * debug.c: Disable the mono debugger stuff on Windows.
356
357 2003-01-03  Martin Baulig  <martin@ximian.com>
358
359         * debug.c (mono_debugger_trampoline_breakpoint_callback): New
360         function.  This is called from the breakpoint trampoline to signal
361         the debugger and wait until it has reload the symbol tables.
362
363         * trampoline.c (get_breakpoint_trampoline): Call the new
364         mono_debugger_trampoline_breakpoint_callback() in the breakpoint
365         trampoline just before the breakpoint.
366
367 2002-12-31  Martin Baulig  <martin@ximian.com>
368
369         * debug.c (MonoDebuggerSymbolFileTable): Added `global_symfile'
370         field to point to the MonoGlobalSymbolTable.
371
372 2002-12-30  Martin Baulig  <martin@ximian.com>
373
374         * debug.c (MonoDebuggerInfo): Put back `symbol_file_modified'.
375         This variable now specifies that the symbol tables have been
376         modified after the last notification has been send.  The debugger
377         uses this flag to check whether it needs to reload the symbol
378         tables or not.
379         (debugger_compile_method): Just send a notification to the
380         debugger, but don't set the modified flag.  It may or may not be
381         set when the debugger gets the notification - depending on whether
382         the JIT compilation added a new method to the symbol tables.
383
384 2002-12-30  Martin Baulig  <martin@ximian.com>
385
386         * debug.c (debugger_compile_method): This is a wrapper around
387         mono_compile_method() which always sends a notification to the
388         debugger.
389
390 2002-12-30  Martin Baulig  <martin@ximian.com>
391
392         * debug.c: Reload the symbol file table before sending the
393         notification event to the debugger.
394         (MonoDebuggerInfo): Removed `update_symbol_file_table'.
395
396 2002-12-31  Martin Baulig  <martin@ximian.com>
397
398         * debug.c: Propertly lock everything and avoid race conditions.
399         (MonoDebuggerInfo): Removed the `symbol_file_modified' again.
400
401 2002-12-31  Duncan Mak  <duncan@ximian.com>
402
403         * debug.c (initialize_debugger_support): Fix build error by
404         declaring ret at the top of the function.
405
406 2002-12-30  Martin Baulig  <martin@ximian.com>
407
408         * debug.c: When running under the mono debugger, create a special
409         debugger thread; always protect the symbol tables with a mutex.
410
411 2002-12-28  Martin Baulig  <martin@ximian.com>
412
413         * debug.c (MonoDebuggerInfo): Added `symbol_file_modified'; it's
414         incremented each time one of the symbol tables is modified.
415
416 Thu Dec 19 18:31:54 CET 2002 Paolo Molaro <lupus@ximian.com>
417
418         * jit.c: fix LDELEMA implementation here as well.
419
420 Wed Dec 18 11:42:58 CET 2002 Paolo Molaro <lupus@ximian.com>
421
422         * jit.c: handle CEE_CONV_OVF_U8_UN like CEE_CONV_OVF_I8_UN.
423
424 Wed Dec 18 11:36:04 CET 2002 Paolo Molaro <lupus@ximian.com>
425
426         * jit.c: query the thread abort signal from the runtime.
427
428 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
429
430         * jit.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
431
432 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
433
434         * jit.c (mono_analyze_stack): call the utility function 
435         mono_field_from_token to avoid code duplication.
436
437 2002-12-02  Dietmar Maurer  <dietmar@ximian.com>
438
439         * jit.c (mono_analyze_stack): added some additinal checks to verify IL code
440
441         * x86.brg (stmt): POP floating point stack correctly
442
443 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
444
445         * emit-x86.c (arch_emit_prologue): don't save caller saved
446         registers twice.
447
448         * exception.c (x86_unwind_native_frame): support exceptions inside
449         native code using gcc generated exception tables (-fexception).
450
451 2002-11-19  Dietmar Maurer  <dietmar@ximian.com>
452
453         * exception.c: include some code from Zoltan Varga, but modified
454         it slightly.
455
456 2002-11-27  Dietmar Maurer  <dietmar@ximian.com>
457
458         * exception.c: massive code cleanups. The code is still
459         architecture dependent, but it should be now possible to reuse the
460         complex parts for other architecture.
461
462 2002-11-15  Dick Porter  <dick@ximian.com>
463
464         * jit.c: Pass the attach callback to mono_runtime_init().
465
466 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
467
468         * jit.c: display the domain name in trace output.
469
470 2002-11-08  Dietmar Maurer  <dietmar@ximian.com>
471
472         * x86.brg (reg): fix bug #2721
473
474         * jit.c (mono_runtime_install_handlers): impl.
475
476 2002-10-17  Martin Baulig  <martin@gnome.org>
477
478         * debug.c (mono_debug_add_method): Make this actually work if we don't
479         have any lifetime information.
480
481 2002-10-15  Martin Baulig  <martin@gnome.org>
482
483         * jit.cs (PUSH_TREE): Always set t->cli_addr here.
484
485         * debug.c (generate_line_number): Small fix to make this actually
486         work for more complex things.
487
488 2002-10-11  Dietmar Maurer  <dietmar@ximian.com>
489
490         * x86.brg (freg): use fprem instead of fprem1
491
492 2002-10-03  Dietmar Maurer  <dietmar@ximian.com>
493
494         * jit.c (ves_array_element_address): added check for out of range index
495         (mono_analyze_stack): added fix for bug #31654
496
497 2002-10-01  Martin Baulig  <martin@gnome.org>
498
499         * debug.c: Don't create an .il file for the dynamic symbol file.
500
501 2002-10-01  Martin Baulig  <martin@gnome.org>
502
503         * debug.c (MonoDebuggerInfo): Added mono_runtime_invoke().
504
505 2002-09-27  Martin Baulig  <martin@gnome.org>
506
507         * debug.c (debug_load_method_lines): Don't use sigaction() on win32.
508
509 2002-09-27  Dick Porter  <dick@ximian.com>
510
511         * mono.c: Tell glib what the program name is, by passing it the
512         name of the managed file we're executing
513
514 2002-09-26  Martin Baulig  <martin@gnome.org>
515
516         * trampoline.c (x86_magic_trampoline): Don't insert the breakpoint
517         trampoline into the vtable, also use it for non-virtual methods,
518         remove the breakpoint when done.
519
520 2002-09-26  Martin Baulig  <martin@gnome.org>
521
522         * debug.c (debug_load_method_lines): Block SIGCHLD while running
523         monodis.
524
525 2002-09-26  Martin Baulig  <martin@gnome.org>
526
527         * debug.c: Reworked the whole debugging stuff.  We have now one
528         single `mono_debug_handle' which keeps a hashtable of
529         `AssemblyDebugInfo's (which may have different debugging formats).
530         The AssemblyDebugInfo is now created when the assembly is loaded,
531         but never when adding a class/type.
532
533         * mono.c: Initialize debugging stuff after corlib and the assembly
534         have been loaded.
535
536 2002-09-25  Martin Baulig  <martin@gnome.org>
537
538         * debug-private.h (DebugLineNumberInfo): Removed.  There's now a
539         MonoDebugLineNumberEntry type in debug-mono-symfile.h which we're
540         using instead of it.
541         (DebugMethodInfo): Removed `line_numbers'.
542
543         * debug.c: Reworked the line number generation; we're now using
544         the MonoDebugLineNumberEntry try for all debugging formats.  This
545         type also includes the line number and IL offset, this allows the
546         JIT to produce better line number info: we only emit line number
547         information for source lines which actually have code.
548
549 2002-09-25  Martin Baulig  <martin@gnome.org>
550
551         * debug.h: Removed external declaration of all functions which
552         should only be called from the Mono Debugger and also made them
553         static.  Since the debugger gets their address from the
554         `MONO_DEBUGGER__debugger_info' vtable, there's no need to export
555         these functions.
556
557 2002-09-25  Martin Baulig  <martin@gnome.org>
558
559         Improved breakpoint support, we can now dynamically insert and
560         remove breakpoints at runtime and when called from withing the
561         Mono Debugger, we're using a special breakpoint trampoline.
562
563         * debug.h (mono_method_has_breakpoint): New method to check
564         whether to insert a breakpoint for a method.
565         (mono_insert_breakpoint): New method to insert a breakpoint.
566         (mono_insert_breakpoint_full): New method to insert a breakpoint,
567         takes a MonoMethodDesc.
568         (mono_remove_breakpoint): New method to remove a breakpoint.
569
570         * debug.c (mono_debugger_insert_breakpoint): New function for the
571         debugger.  Should only be called from the debugger.
572         (mono_debugger_remove_breakpoint): Likewise.
573
574         * mono.c (main): Use mono_insert_breakpoint() to insert breakpoints.
575
576         * trampoline.c (get_breakpoint_trampoline): New static function to
577         create a special breakpoint trampoline for the debugger.
578         (x86_magic_trampoline): If we're running inside the Mono Debugger
579         and a breakpoint was requested for the method, generate a special
580         breakpoint trampoline.
581
582         * jit.c (mono_debug_methods): Removed, use mono_insert_breakpoint()
583         to insert a breakpoint.
584         (mono_debug_last_breakpoint_address): Removed.
585         (match_debug_method): Removed, use mono_method_has_breakpoint().
586
587 Wed Sep 25 12:04:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
588
589         * jit.c: reorder mono_runtime_cleanup () call since it needs the
590         engine still fully working.
591
592 2002-09-24  Martin Baulig  <martin@gnome.org>
593
594         * debug.c (mono_debug_open): When we're invoked from inside the
595         Mono Debugger, set mono_debugger_class_init_func (exported in
596         metadata/class.c) to mono_add_type().
597         (mono_add_type): Call mono_debug_symfile_add_type().
598
599 Tue Sep 24 11:34:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
600
601         * jit.c: avoid including cil-coff.h (again). Optimize typeof (type).
602         Run finalize on domain cleanup.
603         * mono.c: call setlocale ().
604         * trampoline.c: clearer error message for invalid trampoline.
605
606 2002-09-21  Martin Baulig  <martin@gnome.org>
607
608         * debug.c (MonoDebuggerSymbolFileTable): Use an actual typedef for this
609         instead of writing a byte blob.
610         (mono_debug_make_symbols): This doesn't touch the symbol tables anymore.
611         (mono_debug_add_method): Incrementally add the new method to the symbol
612         table.
613
614         * exception.c (arch_handle_exception): If we have debugging support,
615         call mono_debugger_update_symbol_file_table () as well.
616
617 2002-09-20  Martin Baulig  <martin@gnome.org>
618
619         * debug.c (mono_debug_add_method): The `MonoDebugVarInfo' now includes
620         the size of the variable.
621
622 2002-09-18  Dietmar Maurer  <dietmar@ximian.com>
623
624         * linear-scan.c (mono_analyze_liveness): we can save 30% of needed
625         iterations if we visit blocks in reverse order.
626
627 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
628
629         * jit.c (mono_analyze_stack): cleaup of the array code
630
631         * exception.c: added patch from Julio Merno to fix bug #30048
632
633         * jit.c (mono_analyze_stack): code cleanup, fix bug #29365
634
635 2002-09-09  Dietmar Maurer  <dietmar@ximian.com>
636
637         * x86.brg (LDELEMA): use x86_lea 
638
639 2002-09-06  Martin Baulig  <martin@gnome.org>
640
641         * debug.c (debug_update_il_offsets): Fixed a memory corruption bug.
642         If you were getting random crashes when using the JIT with debugging
643         turned on, this fixes it.
644
645 2002-09-06  Dietmar Maurer  <dietmar@ximian.com>
646
647         * emit-x86.c (arch_emit_epilogue): use pop instead of mov
648
649 2002-09-05  Martin Baulig  <martin@gnome.org>
650
651         * debug.c (MONO_DEBUGGER__debugger_info): New global data symbol
652         which is read by the debugger.
653
654 Wed Sep 4 14:06:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
655
656         * Makefile.am: link libmono directly into mono. Use a ld script
657         to reduce exported symbols.
658
659 2002-09-03  Martin Baulig  <martin@gnome.org>
660
661         * debug.c (free_method_info): Make this actually work.
662
663 2002-09-03  Martin Baulig  <martin@gnome.org>
664
665         * debug.h (MonoDebugFormat): Killed MONO_DEBUG_FORMAT_DWARF2_PLUS.
666         * debug-dwarf2-plus.c: Removed.
667
668         * debug-private.h (DebugMethodInfo): Removed the `method_info' field.
669         (AssemblyDebugInfo): Removed the old `symfile' field and renamed
670         `mono_symfile' to `symfile'.
671
672         * debug.c (mono_debug_open): Replaced the assembly argument with a
673         file name argument; you can now call this before loading the assembly.
674         (debug_generate_method_lines): The MonoDebugILOffsetInfo struct is gone,
675         we now use MonoSymbolFileLineNumberEntry's and a separate address array
676         instead; splitted out all MonoSymbolFileLineNumberEntry code into
677         debug_generate_il_offsets() and debug_update_il_offsets().
678         (mono_debug_add_method): Don't create the MonoDebugMethodInfo here; it's
679         created when reading the symbol file or from debug_load_method_lines().
680         (debug_load_method_lines): Create the MonoDebugMethodInfo for all methods.
681
682         * exception.c (arch_handle_exception): Call mono_debug_make_symbols() before
683         looking up an address.
684
685         * debug.c: Don't create the .il files for MONO_DEBUG_FORMAT_MONO.
686
687         * mono.c (main): Initialize debugging before loading the first assembly.
688         
689 2002-08-28  Dick Porter  <dick@ximian.com>
690
691         * mono.c: mono_set_rootdir() doesnt take any args now
692
693         * Makefile.am: Export HOST_CC for w32 builds
694
695 2002-08-28  Dietmar Maurer  <dietmar@ximian.com>
696
697         * jit.c (mono_store_tree): only allocate vars if really necessary
698
699 2002-08-27  Martin Baulig  <martin@gnome.org>
700
701         * debug.c: The mono symbol file is installed together with the assembly
702         it belongs to and it's used on a per-image basis.
703
704 Tue Aug 27 19:44:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
705
706         * mono.c: don't use the cil-coff header outside of the loader.
707
708 2002-08-27  Martin Baulig  <martin@gnome.org>
709
710         * debug.c (mono_debugger_internal_get_symbol_files): Removed, we need
711         to use global variables for this since they're stored in a core file.
712         (mono_debugger_symbol_file_table_generation): New global variable.
713         (mono_debugger_symbol_file_table): New global variable.
714         (mono_debugger_update_symbol_file_table): New global function to update
715         the symbol file table.
716
717 2002-08-27  Martin Baulig  <martin@gnome.org>
718
719         * trampoline.c (mono_generic_trampoline_code): New global variable.
720         (arch_create_jit_trampoline): Use the new global variable to store the
721         generic trampoline code instead of using a static one.  This allows the
722         debugger to access this variable to check whether a method is a trampoline.
723
724         * debug.h (mono_generic_trampoline_code): Added external declaration.
725
726 2002-08-27  Martin Baulig  <martin@gnome.org>
727
728         * debug.c (MonoDebugHandle): Moved the method hash into the
729         AssemblyDebugInfo struct since we need to use a separate hash for each
730         MonoImage.
731
732         * debug.c: Added special undocumented command line argument to create a
733         symbol file for IL files on-the-fly.  In this case, we also need to create
734         the IL files and parse them.
735         (mono_debugger_internal_get_symbol_files): Return something more reasonable.
736
737 2002-08-26  Martin Baulig  <martin@gnome.org>
738
739         * debug.c (mono_debugger_internal_free_symbol_files): New function.
740         (mono_debugger_internal_symbol_files_changed): New global variable.
741
742 2002-08-24  Martin Baulig  <martin@gnome.org>
743
744         * debug.c (mono_debugger_internal_get_symbol_files): New function.
745
746 2002-08-24  Martin Baulig  <martin@gnome.org>
747
748         * debug.c (mono_debug_write_symbols): Added support for the new
749         debugging format.
750
751         * mono.c (main): The `--debug' argument now knows about a new
752         debugging format `mono' which will be used to display source lines
753         in backtraces.
754
755         * debug.h (MonoDebugFormat): Added a new MONO_DEBUG_FORMAT_MONO
756         which will be used when displaying backtraces.  It reads a new
757         binary symbol file.
758
759 2002-08-23  Martin Baulig  <martin@gnome.org>
760
761         * jit.c (match_debug_method): Don't include runtime invoke methods
762         in the search.
763
764         * mono.c (main): Accept `Main' as argument to --break to insert a
765         breakpoint on the application's main method.
766
767 2002-08-23  Martin Baulig  <martin@gnome.org>
768
769         * debug-dwarf2.c (dwarf2_write_class_field): Don't include any static fields.
770         
771 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
772
773         * exception.c (arch_handle_exception): don't set stack_trace to
774         null (so that it contains the full trace even when we rethrow the
775         exception).
776
777 2002-08-19  Nick Drochak <ndrochak@gol.com>
778
779         * x86.brg (mono_llmult_ovf): Simplified the code greatly by refactoring
780         the algebraic form we are using.  This also eliminated a silly overflow
781         of the intermediate result that was causing troubles.
782
783 2002-08-16  Nick Drochak <ndrochak@gol.com>
784
785         * x86.brg (mono_llmult_ovf): Flip ALL the bits, dummy. Now negative numbers
786         work.
787
788 2002-08-15  Nick Drochak <ndrochak@gol.com>
789
790         * x86.brg (mono_llmult_ovf): Fix so it throws an overflow when result
791         will not fit in 64 bits.  Fixes bug #27375.
792
793 Wed Aug 14 17:31:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
794
795         * exception.c: updates for API changes in metadata/.
796
797 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
798
799         * jit.c (mono_jit_init): use  ((gpointer)-1) as end_of_stack
800         address for the main thread.
801
802 2002-08-12  Dietmar Maurer  <dietmar@ximian.com>
803
804         * jit.c (mono_analyze_stack): added support for Thread::Abort ()
805
806 2002-08-08  Dietmar Maurer  <dietmar@ximian.com>
807
808         * exception.c (arch_handle_exception): simply return and let the
809         libpthread/kernel restore the context. This should work on recent
810         versions of linuxthreads.
811
812         * jit.c (mono_runtime_install_handlers): switch back to use
813         sigaction from libpthreads. As long as this does not make problems
814         we should use this instead of syscall.
815
816 2002-08-07  Dietmar Maurer  <dietmar@ximian.com>
817
818         * jit.c: removed the createdelegate icall
819         (mono_analyze_stack): special case Array::Address()
820
821 2002-08-06  Dietmar Maurer  <dietmar@ximian.com>
822
823         * emit-x86.c (arch_emit_prologue): make the call to
824         mono_get_lmf_addr relocatable.
825         (arch_jit_compile_cfg): do not waste memory
826         (arch_jit_compile_cfg): use a mempool to store native code. This
827         improves locality of code.
828
829 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
830
831         * jit.c (mono_analyze_stack): impl. CEE_MONO_RETOBJ
832
833 2002-07-30  Sergey Chaban <serge@wildwestsoftware.com>
834
835         * x86.brg (LOCALLOC): under Windows, if allocation size is bigger
836         than one page, it's necessary to allocate memory incrementally,
837         in page-size steps, performing stack-touch every time.
838         Also added LOCALLOC(CONST_I4) implementation.
839
840 2002-07-27  Dietmar Maurer  <dietmar@ximian.com>
841
842         * jit.c (mono_get_runtime_method): code cleanup
843
844         * x86.brg: we do not need to save EAX/ECX/EDX in stmt:
845
846 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
847
848         * jit.c (mono_analyze_stack): added CEE_TAIL (but it is ignored)
849
850 Wed Jul 24 13:02:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
851
852         * jit.c, jit.h, exception.c: implemented stack walking function.
853
854 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
855
856         * x86.brg (ARG_OBJ): removed zero sized object warning 
857
858 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
859
860         * jit.c (mono_allocate_excvar): mark excvar as volatile
861
862         * emit-x86.c (enter_method): use arch_get_argument_info to get
863         stack layout.
864
865         * jit.c (mono_analyze_stack): use arch_get_argument_info to get
866         stack layout.
867         (mono_analyze_stack): removed unused code
868
869         * emit-x86.c (arch_allocate_arg): impl.
870
871 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
872
873         * emit-x86.c (arch_allocate_var): fix alignment bug
874
875         * x86.brg (X86_CALL_BEGIN): add argument padding before emitting a call
876
877         * jit.c (mono_analyze_stack): s/k/k + 1/
878
879         * x86.brg (LOCALLOC): align to MONO_FRAME_ALIGNMENT
880
881         * emit-x86.c (arch_get_argument_info): impl.
882
883 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
884
885         * exception.c (arch_handle_exception): Memory leak fix.
886
887 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
888
889         * jit.c (mono_analyze_stack): avoid recursive inlining
890
891 Fri Jul 19 18:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
892
893         * emit-x86.c: temporary workaround for gcc bug.
894         * jit.h, jit.c, mono.c: move mono_jit_image to jit.c.
895         Don't include config.h in headers.
896
897 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
898
899         * x86.brg: correctly align valuetype arguments on the stack
900
901         * jit.c (mono_analyze_stack): do not compute frame size here.
902
903         * x86.brg: use macros to avoid code duplication for CALL opcodes,
904         compute frame size in x86.brg
905
906 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
907
908         * x86.brg (ARG_OBJ): allow zero sized ARG_OBJ
909
910         * exception.c (arch_handle_exception): removed duplicated code,
911         added support for exception filters
912
913         * jit.c (mono_jit_compile_method): support exception filters
914
915 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
916
917         * jit.c (mono_analyze_stack CEE_DIV): added fix from Zoltan Varga
918         (bug #27423)
919         * jit.c: s/ISSTRUCT/MONO_TYPE_ISSTRUCT/ 
920
921         * helpers.c (mono_map_ldind_type): added suggested changes from
922         Zoltan Varga (support MONO_TYPE_U), variou 64bit fixes
923
924         * jit.c (mono_analyze_stack): remove the vtype pointer from the
925         stack (fix bug #27420)
926
927 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
928
929         * x86.brg (CALL_VOID): fix bug #27751
930         (CONV_R_UN) use reg2 instead of reg1 for the negative check /fix bug 27849.
931
932         * jit.c (mono_analyze_stack): adjust valuetype size for pinvoke calls
933
934 i2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
935
936         * x86.brg (freg): new rule freg: CALL_R8 (this, reg)
937
938 2002-07-10  Dietmar Maurer  <dietmar@ximian.com>
939
940         * emit-x86.c (arch_emit_prologue): added code to save LMF
941
942 2002-07-04  Dietmar Maurer  <dietmar@ximian.com>
943
944         * x86.brg (LOCALLOC): added fix from Zoltan Varga (for bug #27396) 
945
946 2002-07-05  Martin Baulig  <martin@gnome.org>
947
948         * debug.c (mono_debug_add_method): Fix a bug in the `begin_scope' and
949         `end_scope' calculations when linear scan register allocation is disabled.
950
951 2002-07-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
952
953         * mono.c: removed the "RESULT: X" message.
954
955 2002-07-01  Dietmar Maurer <dietmar@ximian.com>
956
957         * exception.c (arch_get_call_finally): restore caller saved
958         register used by global reg. allocation when calling finally
959         handlers (fixes bug #24943).
960
961 2002-07-01  Dick Porter  <dick@ximian.com>
962
963         * jit.c (mono_jit_exec): Removed unneeded argument to
964         mono_runtime_run_main()
965
966 2002-06-28  Martin Baulig  <martin@gnome.org>
967
968         * debug.c (debug_generate_method_lines, mono_debug_add_method): Make methods
969         start on the nop instruction to make single-stepping into an already-JITed
970         method work.
971
972 2002-06-26  Martin Baulig  <martin@gnome.org>
973
974         * debug.c (mono_debug_source_location_from_address): Added
975         `guint32 *line_number' argument.  If it's not NULL, store the line number
976         there and return the file name without the line number.
977
978         * exception.c (ves_icall_get_trace): Fill in `sf->filename' and `sf->line'.
979         (ves_icall_get_frame_info): Likewise.
980
981 2002-06-25  Dick Porter  <dick@ximian.com>
982
983         * jit.c (mono_jit_exec): Pass the assembly to mono_runtime_run_main
984
985 2002-06-22  Martin Baulig  <martin@gnome.org>
986
987         * debug.c (mono_debug_source_location_from_address): Small fix, an
988         unsigned number can never be smaller than zero, make that check
989         actually work.
990
991 2002-06-19  Dietmar Maurer  <dietmar@ximian.com>
992
993         * exception.c (ves_icall_get_trace): new method to get the stack
994         trace from a Exception.
995
996 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
997
998         * jit.c (check_inlining): do not inline functions containing 
999         calls to stack query functions
1000
1001         * exception.c (ves_icall_get_frame_info): impl.
1002
1003 Tue Jun 18 10:21:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1004
1005         * invoke.c: marshal simple arrays correctly.
1006
1007 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
1008
1009         * x86.brg: added inlined versions of Math.Sin, Math.Cos, Math.Sqrt
1010
1011         * jit.c (mono_analyze_stack): impl. STARG
1012         (mono_analyze_stack): impl. LDARGA
1013
1014         * exception.c (arch_handle_exception): correctly restore register
1015         values when unwinding the stack (fixes bug 25698)
1016
1017 2002-06-09  Martin Baulig  <martin@gnome.org>
1018
1019         * debug.c (mono_debug_open_image): For MONO_DEBUG_FORMAT_DWARF2_PLUS,
1020         the `%s-debug.s' file is in the same directory than its assembly.
1021
1022 Sat Jun 1 13:24:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
1023
1024         * message.c, emit-x86.c: kill warnings.
1025
1026 2002-05-31  Dietmar Maurer  <dietmar@ximian.com>
1027
1028         * x86.brg: buf fix in REMOTE_STIND_OBJ
1029         (mono_ldvirtftn): impl.
1030         (mono_ldintftn): impl.
1031         (mono_ldftn): impl.
1032
1033 Fri May 31 13:26:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1034
1035         * mono.c: added --config command line option.
1036
1037 Fri May 31 12:34:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
1038
1039         * jit.c, jit.h: collect statistics about the number of basic blocks.
1040
1041 2002-05-31  Martin Baulig  <martin@gnome.org>
1042
1043         * debug.c (mono_debug_address_from_il_offset): New public function.
1044         (mono_debug_add_method): Improved local variable info: correctly handle
1045         variables in registers and their start/end scopes.
1046
1047 2002-05-30  Martin Baulig  <martin@gnome.org>
1048
1049         * debug-dwarf2.c (dwarf2_write_string): Use "0x%lx" as fprintf() format,
1050         not "%p" which seems to be broken on Windows/mingw32.
1051
1052 2002-05-30  Dietmar Maurer  <dietmar@ximian.com>
1053
1054         * x86.brg (reg): bug fix in LOCALLOC
1055
1056         * mono.c (main): new switch --nointrinsic to disable memcpy opt.
1057
1058         * x86.brg: added block copy/init optimizations from 
1059         Serge (serge@wildwestsoftware.com)
1060  
1061 Thu May 30 14:13:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
1062
1063         * invoke.cs: lookup P/Invoke method address only when needed.
1064
1065 2002-05-29  Dietmar Maurer  <dietmar@ximian.com>
1066
1067         * x86.brg: bug fix in REMOTE_STIND_OBJ
1068
1069         * invoke.c (arch_create_native_wrapper): handle pointers to value types
1070
1071         * helpers.h: use mono_ prefix for all functions
1072
1073         * jit.c (mono_analyze_stack): fixed SIZEOF
1074
1075         * x86.brg: impl. LOCALLOC, INITBLK
1076
1077 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
1078
1079         * x86.brg: impl. CKFINITE 
1080
1081         * jit.c (mono_analyze_stack): impl. CEE_CALLI
1082
1083         * x86.brg (JMP): impl. JMP opcode
1084
1085 2002-05-27  Dietmar Maurer  <dietmar@ximian.com>
1086
1087         * jit.c (mono_cfg_new): reserve additional space to store ESP when
1088         calling finally handlers.
1089
1090         * exception.c (arch_get_call_finally): save ESP before calling
1091         finally handler.
1092
1093         * helpers.c (map_arg_type): move some generic helper function into
1094         this file.
1095
1096         * mono.c (usage): new option --breakonex 
1097
1098         * exception.c (arch_exc_is_caught): only return FALSE if really
1099         unhandled.
1100
1101         * jit.c (mono_thread_abort): free jit_tls
1102
1103 2002-05-24  Dietmar Maurer  <dietmar@ximian.com>
1104
1105         * x86.brg (stmt): use memmove to cope with overlapping
1106         blocks. This is not required by the specs, so we can remove it
1107         later if it turns out to be too slow (and use memcpy).
1108
1109         * jit.c (mono_analyze_stack): moved const. folding from x86.brg
1110
1111         * x86.brg: CPBLK impl.
1112
1113         * emit-x86.c (tree_emit): modified to support 3 nonterminals per
1114         rule (used for CPBLK).
1115
1116 Thu May 23 18:43:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
1117
1118         * mono.c: remove generated code from hash when benchmarking/testing
1119         method compilation.
1120         * invoke.cs: special case string ctors.
1121
1122 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
1123
1124         * *.c: code cleanups - tried to separate architecture dependent things. 
1125
1126 2002-05-23  Martin Baulig  <martin@gnome.org>
1127
1128         * debug.c (mono_debug_open): Don't call mono_debug_add_image().
1129         (mono_debug_write_symbols): Only recreate the symbol file if
1130         necessary.
1131
1132         * debug-private.h (MonoDebugHandle): Added `dirty' flag.
1133
1134         * mono.c (main): Call mono_debug_add_image() here.
1135
1136         * jit.c (mono_thread_abort): If we have debugging support, call
1137         mono_debug_make_symbols() and G_BREAKPOINT().
1138
1139         * exception.c (arch_handle_exception): Don't G_BREAKPOINT() if we get
1140         an unhandled exception.
1141
1142 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
1143
1144         * delegate.c: move the thread pool to metadata/threadpool.c, code
1145         cleanup.
1146
1147 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
1148
1149         * exception.c (arch_exc_is_catched): impl. MS like exception
1150         handling (added a check for unhandled exceptions)
1151
1152 2002-05-22  Martin Baulig  <martin@gnome.org>
1153
1154         * debug-dwarf2-plus.c (mono_debug_open_assembly_dwarf2_plus): Only run
1155         the assembler if necessary, ie. the assembler file is newer than the
1156         symbol file or the symbol file does not exist.
1157
1158         * debug.c: Added "update_on_exit" argument to recreate the symbol file
1159         when the JIT exists.
1160
1161         * debug-dwarf2.c: Produce assembler code which is free of comments and
1162         extra whitespaces so that it's suitable for `as -f'.
1163
1164 2002-05-22  Martin Baulig  <martin@gnome.org>
1165
1166         * debug-dwarf2.c (dwarf2_write_section_end): Removed.  This is not needed
1167         and not supported by all assemblers.
1168         (dwarf2_write_2byte): Use ".word" instead of ".2byte" since ".2byte" is a
1169         GNU extension.
1170
1171         * mono.c (--debug): Small fix in the argument parsing.
1172
1173 2002-05-22  Martin Baulig  <martin@gnome.org>
1174
1175         * debug.c: Added "dont_assemble" and "dont_precompile" argument for dwarf-plus.
1176
1177         * mono.c: Applied patch from Miguel:
1178         (--debug): This is now a `--debug=[FORMAT]' argument where FORMAT defaults
1179         to dwarf-plus.
1180
1181 2002-05-21  Martin Baulig  <martin@gnome.org>
1182
1183         * debug.c (mono_debug_source_location_from_address): Added support for the
1184         dwarf2-plus format.
1185
1186 2002-05-21  Martin Baulig  <martin@gnome.org>
1187
1188         * debug.c (mono_debug_source_location_from_address): New function.
1189         (mono_debug_il_offset_from_address): New function.
1190
1191         * exception.c (arch_handle_exception): If we have debugging support, include
1192         information about the source location and IL offset in the stack trace.
1193
1194 2002-05-21  Dietmar Maurer  <dietmar@ximian.com>
1195
1196         * jit.c (mono_analyze_stack): LDARG uses 16bit argument (fix bug
1197         #25058)  
1198
1199         * x86.brg (stmt): removed unnecessary assertion
1200
1201         * jit.c (check_inlining):  we cant inline throw instructions
1202         (because it breaks some basic block requirements)
1203
1204 2002-05-21  Martin Baulig  <martin@gnome.org>
1205
1206         * debug-private.h (MonoDebugFlags): New enum typedef.
1207
1208         * debug.c (mono_debug_open): Added a few useful arguments.  See the manpage
1209         for details.
1210
1211 2002-05-21  Martin Baulig  <martin@gnome.org>
1212
1213         * debug.c (mono_debug_open_file): Renamed to mono_debug_open(), now takes
1214         a `MonoAssembly *' argument instead of a `char *filename' one.  Also added
1215         `const char **args' argument.
1216
1217         * mono.c (mono_jit_assembly): Renamed to mono_jit_compile_image(), added
1218         `int verbose' argument and made it public.
1219         (mono_jit_compile_class): New public function,  moved the code to compile
1220         all methods in a class here from main().
1221         (--compile): The argument can now also be an image (in `@imagename' format).
1222         Updated documentation for this command line argument.
1223         (--precompile): New command line argument to precompile an image/class/method
1224         before executing the main app.  This argument can be given multiple times.
1225         (--break): Renamed the "--debug" command line argument to "--break".
1226         (--debug): New command line argument to specify the debugging format.
1227         (--stabs, --dwarf, --dwarf-plus): Removed, obsoleted by "--debug".
1228         (--debug-args): New command line argument.  This is a comma-separated list of
1229         additional arguments for the symbol writer.
1230         (usage): Beautified the help text a bit.
1231
1232         * debug-dwarf2-plus.c (mono_debug_open_assembly_dwarf2_plus): Use the new
1233         public mono_jit_compile_image() function rather than duplication this
1234         functionality here.
1235
1236 2002-05-21  Martin Baulig  <martin@gnome.org>
1237
1238         * debug-dwarf2-plus.c: This is now working again :-)
1239
1240         * debug.c (mono_debug_open_file): When using MONO_DEBUG_FORMAT_DWARF2_PLUS,
1241         we create two MonoDebugHandles: one for MONO_DEBUG_FORMAT_DWARF2_PLUS and
1242         one for the fallback MONO_DEBUG_FORMAT_DWARF2.
1243
1244 2002-05-21  Martin Baulig  <martin@gnome.org>
1245
1246         * jit.c (mono_debug_handle): Removed this global variable.
1247
1248         * debug.c (mono_debug_close): Removed.
1249         (mono_debug_cleanup): New global function.
1250         (mono_debug_add_image): New global function.
1251         (mono_debug_handle_from_class): New global function.
1252         (mono_debug_write_symbols): New global function.
1253         (mono_debug_add_type): Removed `MonoDebugHandle *' argument.
1254         (mono_debug_add_method): Likewise.
1255
1256 2002-05-21  Martin Baulig  <martin@gnome.org>
1257
1258         Work around a hard-to-fix bug in GDB and create a single dwarf/stabs
1259         file for all assemblies.  Currently, the JIT doesn't put all methods
1260         from a single assembly into a continuous region of memory.  We were
1261         previously creating valid DWARF 2 files for this, but unfortunately
1262         GDB's symbol tables get messed up when it reads more than one such file.
1263
1264         * debug-private.h (AssemblyDebugInfo): Moved `f', `producer_name',
1265         `next_idx', `methods', `type_hash', `source_files' and `format'
1266         into the MonoDebugHandle.
1267
1268         * debug.c (mono_debug_get_type): This now operates on the MonoDebugHandle,
1269         not on the AssemblyDebugInfo.
1270         (mono_debug_open_file): Moved some stuff here from mono_debug_open_assembly().
1271
1272         * debug-dwarf2.c (mono_debug_write_assembly_dwarf2): Renamed into
1273         mono_debug_write_dwarf2().
1274         (mono_debug_open_assembly_dwarf2): Removed.
1275         (mono_debug_close_assembly_dwarf2): Removed.
1276
1277         * debug-stabs.c (mono_debug_write_assembly_stabs): Renamed into
1278         mono_debug_write_stabs().
1279         (mono_debug_open_assembly_stabs): Removed.
1280         (mono_debug_close_assembly_stabs).
1281
1282         * debug-dwarf2-plus.c: This is currently broken. :-(
1283
1284 2002-05-20  Martin Baulig  <martin@gnome.org>
1285
1286         * debug.h (mono_debug_format): New global variable.
1287         (MonoDebugFormat): Added MONO_DEBUG_FORMAT_NONE.
1288
1289         * debug-private.h (MonoDebugHandle): Added `objfiles' field which is
1290         a whitespace separated list of symbol files.
1291         (AssemblyDebugInfo): Added `objfile' filed which is the name of the
1292         symbol file.
1293
1294         * mono.c (main): Pass the assembly file name to mono_debug_open_file().
1295
1296         * debug.c (mono_debug_make_symbols): Link all symbol files into a big
1297         `<assemblyname>.o' symbol file.
1298
1299 2002-05-20  Martin Baulig  <martin@gnome.org>
1300
1301         * debug.c (debug_load_method_lines): Check whether the assembly file
1302         is newer than the IL file and recreate the IL file if necessary.
1303
1304 2002-05-20  Miguel de Icaza  <miguel@ximian.com>
1305
1306         * mono.c Updated copyright years. 
1307
1308 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
1309
1310         * mono.c (usage): Relayout command line options.
1311
1312 2002-05-17  Dietmar Maurer  <dietmar@ximian.com>
1313
1314         * x86.brg (reg): fixed array bound check
1315
1316         * emit-x86.c (enter_method): print method signature
1317
1318         * exception.c (arch_handle_exception): set trace info before we
1319         call handlers.
1320
1321 2002-05-16  Dietmar Maurer  <dietmar@ximian.com>
1322
1323         * jit.c (mono_find_final_block): make it work with mcs
1324
1325         * x86.brg: buf fix. if exception variable is allocated to a register. 
1326
1327         * jit.c (mono_find_final_block): bug fix.
1328
1329 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
1330
1331         * delegate.c (arch_end_invoke): fix bug #24653, simplified the
1332         code using new runtime_invoke feature.
1333
1334         * jit.c (mono_analyze_flow): try blocks are followed by handler
1335         blocks, so we need to add all handler blocks as succesors.
1336         (mono_thread_start_cb): set end_of_stack
1337
1338         * exception.c (arch_handle_exception): correctly save/restore caller
1339         saved regs.
1340
1341         * emit-x86.c (arch_emit_prologue): correctly save/restore caller
1342         saved regs.
1343
1344         * jit.c (mono_cfg_new): allocate space for caller saved registers.
1345
1346 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
1347
1348         * jit.c: only use one TLS slot to store jit data
1349
1350         * exception.c (arch_handle_exception): print function signature,
1351         use thread relative end_of_stack
1352
1353 2002-05-13  Dietmar Maurer  <dietmar@ximian.com>
1354
1355         * jit.c (OPT_BOOL): new. opt. for boolean variables - we simply
1356         store them as 32 bit integers.
1357         (mono_analyze_stack): we need to generate a temporary var for
1358         SHL/SHR because the tree allocator can fail otherwise 
1359
1360         * exception.c (arch_handle_exception): EIP now points to the call
1361         instruction, not to the instruction after the call. This fixes the
1362         bug reported by Linus Upson (tests/exception8.cs)
1363
1364 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
1365
1366         * jit.c (mono_analyze_flow): always allocate the forest array
1367         (mono_stack_duplicate_used_var): impl.
1368         (mono_copy_used_var): impl.
1369
1370         * x86.brg: bug fix in SHR/SHL
1371
1372         * emit-x86.c (arch_emit_prologue): check if live_in_set != NULL
1373
1374 2002-05-11  Sergey Chaban <serge@wildwestsoftware.com>
1375
1376         * mono.c: new --fast-iconv command line option
1377         to enable fast FP-to-integer conversion code.
1378         * jit.c, jit.h: added global variable to store state
1379         for the above option. This optimization is disabled
1380         by default.
1381         * x86.brg: added code to emit fast FP-to-integer
1382         conversion sequences.
1383
1384 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
1385
1386         * emit-x86.c: simple definite assignment analysis optimization for
1387         uninitialized locals.
1388
1389 Fri May 10 15:43:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
1390
1391         * x86.brg, emit-x86.c: patch the branch targets with x86_patch().
1392
1393 2002-05-10  Dietmar Maurer  <dietmar@ximian.com>
1394
1395         * linear-scan.c (mono_update_gen_set): improvement/bug fix
1396
1397         * x86.brg: added additional rules to handle global allocated registers
1398
1399         * mono.c (usage): the option is called --nols, and it dissables
1400         linear scan.
1401
1402         * x86.brg: better LDIND_R4, LDIND_R8, STIND_R4, STIND_R8
1403
1404 2002-05-09  Dietmar Maurer  <dietmar@ximian.com>
1405
1406         * linear-scan.c: linear scan reg. allocation and data flow analysis
1407         use Paolo's great bitset implementation.
1408
1409         * jit.c (arch_allocate_var): add live range info
1410         (mono_cfg_add_successor): create list of successors for basic
1411         blocks.
1412
1413         * mono.c (main): new option --ls to enable linear scan
1414
1415         * exception.c (arch_handle_exception): print instruction pointer
1416         relative to method start address.
1417
1418         * jit.c (mono_print_ctree): print register number if locals are
1419         allocate in registers.
1420
1421         * emit-x86.c (arch_emit_prologue): initialize reg. allocated locals
1422         (arch_emit_epilogue): take care when restoring save registers,
1423         because the stack pointer may has changed.
1424
1425         * x86.brg: s/VAROFFSET/VARINFO/
1426         modified to support global register allocation
1427
1428 Mon May 6 15:38:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
1429
1430         * jit.h, jit.c, emit-x86.c: x86 cpu detection code from Sergey.
1431
1432 2002-05-03  Sergey Chaban <serge@wildwestsoftware.com>
1433
1434         * x86.brg: more coni4 optimizations
1435         MUL: generate optimized code for some consts other
1436         than powers of 2 (hardcoded impl. for 3, 5, 10 etc.);
1437         DIV_UN: multiply with reciprocal instead of dividing;
1438
1439 2002-05-03  Dietmar Maurer  <dietmar@ximian.com>
1440
1441         * x86.brg: use VAROFFSET macro
1442
1443         * emit-x86.c (tree_emit): allocate space for spilled regs in
1444         activation frame instead of pushing them to the stack.
1445
1446         * x86.brg: replace BXX with CBRANCH/COMPARE
1447         replaced CXX CSET/COMPARE
1448
1449         * emit-x86.c (arch_allocate_regs): improved register allocation
1450
1451 2002-05-02  Dietmar Maurer  <dietmar@ximian.com>
1452
1453         * delegate.c (mono_delegate_cleanup): signal semaphore in order to
1454         exit threads.
1455
1456 2002-04-30  Dick Porter  <dick@ximian.com>
1457
1458         * mono.c (main): Tell glib to not abort when g_log() etc print
1459         recursively
1460
1461 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
1462
1463         * x86.brg: opt. LDELEMA impl.
1464         (MUL) use shift when possible.
1465         (DIV) use shift when possible.
1466         impl. various opt. with coni4
1467
1468         * exception.c (arch_handle_exception): use ctx->SC_EBP in
1469         end_of_stack check as suggested by Linus Upson <linus@linus.com>
1470
1471 2002-04-29  Dietmar Maurer  <dietmar@ximian.com>
1472
1473         * x86.brg (LDLEN, UNBOX): removed unnecessary NULL check.  
1474
1475         * exception.c: included the Freebsd patch from Sandro Tolaini
1476         <sandro@focuseek.com>
1477
1478 Mon Apr 29 15:18:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
1479
1480         * mono.c, jit.c: use mono_runtime_run_main ().
1481
1482 2002-04-29  Dietmar Maurer  <dietmar@ximian.com>
1483
1484         * jit.c (mono_analyze_stack): dont call methods on Object with
1485         METHOD_ATTRIBUTE_FINAL directly because it breaks remoting.
1486
1487         * x86.brg: added more CONV_U rules
1488
1489         * jit.c (mono_analyze_stack): avoid recursive call of virtual
1490         methods: fixes Bug #23778 
1491         (mono_analyze_stack): emit right CONV_UX opcodes: fixes bug 23547
1492
1493         * exception.c (arch_handle_exception): only g_assert(cleanup) if
1494         we really need it.
1495
1496 2002-04-27      Patrik Torstensson <patrik.torstensson@intel.com>
1497
1498         * x86.brg: fixed bug in CONV_I8 (invalid stack correction)
1499
1500 2002-04-27  Martin Baulig  <martin@gnome.org>
1501
1502         * jit.h (MonoFlowGrap): Renamed `epilogue_begin' to `epilogue_end',
1503         there's already `epilog' so we don't need `epilogue_begin'.
1504
1505         * debug.c (mono_debug_add_method): Use `cfg->epilogue_end' to get the
1506         size of the method's code.
1507
1508 2002-04-25  Martin Baulig  <martin@gnome.org>
1509
1510         * debug-dwarf2.c (dwarf2_write_string_type): Reflect latest MonoString
1511         changes.
1512
1513 2002-04-25  Dietmar Maurer  <dietmar@ximian.com>
1514
1515         * x86.brg: enable stmt: STIND_I4 (addr, coni4) again,
1516         added CONV_OVF_I4 (fix bug #23808)
1517
1518 2002-04-23  Dietmar Maurer  <dietmar@ximian.com>
1519
1520         * x86.brg: code cleanup - use x86_patch ()
1521
1522         * jit.c (mono_analyze_stack): only use MB_TERM_CHECKTHIS when necessary
1523         (mono_analyze_stack): don't store constants in temp. variables for CEE_DUP
1524
1525         * x86.brg (stmt): removed stmt: STIND_I4 (addr, coni4) rule
1526         because it slows down performance.
1527
1528 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
1529
1530         * emit-x86.c: enter_method handles 8-byte aligned parameters.
1531
1532 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
1533
1534         * jit,h, jit.c, x86.brg: NEWOBJ_SPEC and NEWARR_SPEC terminals for
1535         non-shared code.
1536
1537 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
1538
1539         * jit.c (check_inlining): added statistics about inlineing
1540
1541         * mono.c (usage): new switch --noinline to disable inlining
1542
1543         * jit.c (mono_analyze_stack): added a check for (this!=NULL) if we
1544         inline methods (to keep semantics)
1545
1546         * x86.brg: added constant folding for inegers 
1547
1548         * emit-x86.c (tree_allocate_regs): handle the special case when
1549         chain rules need a register.
1550
1551 2002-04-19  Dietmar Maurer  <dietmar@ximian.com>
1552
1553         * invoke.c (arch_create_native_wrapper): do not save LMF for Strings
1554
1555         * jit.c (check_inlining): better inlining support
1556
1557 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
1558         
1559         * x86.brg: LDLEN uses max_length instead of bounds[0]
1560         * jit.c: support for new szarray format
1561
1562 2002-04-18  Dietmar Maurer  <dietmar@ximian.com>
1563
1564         * jit.c (check_inlining): added inlining support
1565
1566 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
1567
1568         * x86.brg: optimized version of castclass and isinst
1569
1570 Wed Apr 17 12:34:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1571
1572         * emit-x86.c, invoke.c: track time spent compiling.
1573
1574 Wed Apr 17 10:58:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
1575
1576         * emit-x86.c, invoke.c: call profile callbacks if needed.
1577         * jit.c, jit.h, mono.c: add --profile command line option.
1578
1579 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1580
1581         * jit.h: included mono/io-layer/io-layer.h to avoid breaking
1582         compilation under windows when upgrading mingw and w32api to 
1583         version 1.3 (thanks Dick!).
1584
1585 2002-04-15  Patrik Torstensson <patrik.torstensson@labs2.com>
1586
1587         * jit.c: changed the array icalls to use full names
1588
1589 2002-04-15  Dietmar Maurer  <dietmar@ximian.com>
1590
1591         * x86.brg: check the this pointer before calling
1592         non-virtual functions
1593
1594         * emit-x86.c (arch_emit_prologue): initialize local vars.
1595
1596         * x86.brg: removed incredible clumsy code
1597
1598 2002-04-13  Martin Baulig  <martin@gnome.org>
1599
1600         * debug-dwarf2.c (dwarf2_write_variable_location): New static func to write
1601         the location of a variable.
1602         (dwarf2_write_variable, dwarf2_write_parameter): Take a MonoDebugVarInfo
1603         instead of a stack offset and use dwarf2_write_variable_location() to write
1604         the location.
1605
1606 2002-04-13  Martin Baulig  <martin@gnome.org>
1607
1608         * debug.c, debug-stabs.c, debug-dwarf2.c: Reflect latest debug-symfile.h
1609         API changes.
1610
1611 2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1612
1613         * Makefile.am: use of the new '-s' option in monoburg.
1614
1615 2002-04-12  Martin Baulig  <martin@gnome.org>
1616
1617         * debug-dwarf2.c (dwarf2_write_variable): Emit info about the variable's
1618         lifetime.
1619
1620 2002-04-10  Sergey Chaban <serge@wildwestsoftware.com>
1621         * win32-exception: added Win32 SEH exception filter that translates
1622         CONTEXT to sigcontext;
1623
1624         * jit.c: added Win32 SEH init/reset calls, compute sigcontext address
1625         in a platfrom-dependent way;
1626
1627         * jit.h: use win32-exception instead of signal if PLATFORM_WIN32
1628         and avoid io-layer includes;
1629
1630         * delegate.c: do not include io-layer stuff if PLATFORM_WIN32
1631         is defined;
1632
1633 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
1634
1635         * delegate.c (arch_end_invoke): restore output arguments
1636
1637 Mon Apr 8 17:16:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
1638
1639         * jit.c: call mono_runtime_init ().
1640
1641 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
1642
1643         * jit.c (mono_jit_cleanup): added more statistics
1644
1645         * invoke.c (arch_create_native_wrapper): special case EndInvoke -
1646         we need to pass the MonoMethod pointer as first argument.
1647
1648         * delegate.c (mono_async_invoke): notify all listeners, not only a
1649         single one.
1650         (arch_end_invoke): we now pass a MonoMethod as first parameter and
1651         use arch_method_call_message_new() to access the stack.
1652         (arch_end_invoke): wait until we really finished processing
1653         (async_invoke_abort): notify all listeners, not only a
1654         single one.
1655
1656 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
1657
1658         * message.c (arch_return_value): impl.
1659         (arch_method_return_message_restore): consider delegate BeginInvoke
1660
1661         * jit.c: removed jit_exec_main()
1662
1663         * delegate.c (arch_begin_invoke): use the message builder to make
1664         it architecture independent - still needs more cleanup.
1665
1666 2002-04-05  Dietmar Maurer  <dietmar@ximian.com>
1667
1668         * delegate.c (mono_delegate_ctor): support for transparent proxy
1669
1670         * x86.brg (freg): bug fix in CONV_R* opcodes
1671
1672 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
1673
1674         * message.c: added documentation
1675
1676 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
1677
1678         * mono.c (main): use --trace instead of --trace-calls
1679
1680         * x86.brg: impl. REMOTE_STIND_XX
1681
1682         * message.c (mono_store_remote_field): impl.
1683
1684 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
1685
1686         * x86.brg: impl. REMOTE_FIELD (load fields of remote objects)
1687
1688         * message.c (mono_load_remote_field): impl.
1689
1690         * jit.c (mono_analyze_stack): only call marshalbyref methods
1691         through the vtable.
1692         (mono_analyze_stack): consider marshalbyref objects in LDFLD
1693
1694 Fri Mar 29 16:00:27 CET 2002 Paolo Molaro <lupus@ximian.com>
1695
1696         * x86.brg: kill pointer arithmetric.
1697
1698 2002-03-28  Martin Baulig  <martin@gnome.org>
1699
1700         * jit.c (mono_debug_insert_breakpoint): New global variable.
1701         (mono_debug_last_breakpoint_address): New global variable.
1702
1703         * emit-x86.c (arch_compile_method): If `mono_debug_insert_breakpoint' is
1704         non-zero, insert a breakpoint; if it's positive, decrement it when done.
1705         Set `mono_debug_last_breakpoint_address' to the address of the last inserted
1706         breakpoint.
1707
1708         * debug.h: Provide external declaration of `mono_debug_insert_breakpoint' and
1709         `mono_debug_last_breakpoint_address', also documented them here.
1710
1711 2002-03-28  Martin Baulig  <martin@gnome.org>
1712
1713         * debug-private.h (MonoDebugHandle): Renamed `format' to `default_format'.
1714         (AssemblyDebugInfo): Added `format'.
1715
1716         * debug.c: Use the AssemblyDebugInfo's `format' field to determine the format,
1717         this allows us choose the format on a per-assembly basis.
1718         (mono_debug_open_assembly): When using MONO_DEBUG_FORMAT_DWARF2_PLUS, fall back
1719         to MONO_DEBUG_FORMAT_DWARF2 if the symbol file does not exist, but the IL file
1720         exists.
1721         (debug_generate_method_lines): Generate correct IL offsets.
1722
1723 2002-03-28  Martin Baulig  <martin@gnome.org>
1724
1725         * jit.h (MonoFlowGraph): Added `prologue_end' and `epilogue_start' fields.
1726
1727         * emit-x86.c (arch_compile_method): Set prologue_end and epilogue_start.
1728
1729         * debug-private.h (DebugMethodInfo): Renamed `frame_start_offset' to
1730         `prologue_end_offset', added `epilogue_begin_offset' and `last_line'.
1731
1732         * debug.c (debug_generate_method_lines): Don't return if we don't have line
1733         numbers, we still need to generate the IL offsets here. Emit line numbers
1734         for `prologue_end_offset' (the first line of actual code) and 
1735         `epilogue_begin_offset' (the line of the method's closing brace).
1736         Don't crash if cfg->bblocks [i].forest is NULL.
1737         (mono_debug_add_method): Don't crash if we don't have line numbers.
1738         Initialize the newly added fields.
1739
1740         * debug-stabs.c: Record first and last line, emit filename info at the
1741         beginning of the stab file, gdb ignores the types otherwise.
1742
1743         * debug-dwarf2.c: Use the new prologue_end_offset instead of guessing it;
1744         emit line number info for the first and last line.
1745
1746 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
1747
1748         * invoke.c (arch_create_delegate_trampoline): impl.
1749
1750 Thu Mar 28 11:58:53 CET 2002 Paolo Molaro <lupus@ximian.com>
1751
1752         * Makefile.am, mono.c, jit.h, jit.c: build the libmono library
1753         with the jit runtime to easy embedding. main() is moved to mono.c, now.
1754         * jit.c: use opcode names from libmetadata.
1755         * debug.h, debug.c: constify char* argument.
1756
1757 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
1758
1759         * jit.c: catching SIGSEGV again, added proxy support
1760
1761 2002-03-21  Dietmar Maurer  <dietmar@ximian.com>
1762
1763         * delegate.c (mono_delegate_init): remove unused worker threads
1764
1765 2002-03-27  Mike Kestner <mkestner@speakeasy.net>
1766
1767         * delegate.c (arch_get_delegate_invoke): malloc a bigger area
1768
1769 Tue Mar 26 19:54:45 CET 2002 Paolo Molaro <lupus@ximian.com>
1770
1771         * jit.c: remove glib mem vtable code.
1772
1773 2002-03-26  Martin Baulig  <martin@gnome.org>
1774
1775         * debug-dwarf2.c (write_method_lines_dwarf2): Don't generate method
1776         lines if we don't have line number information.
1777         (write_method_dwarf2): Use `minfo->method_info.this_offset' instead
1778         of hardcoding 8.
1779
1780         * debug-stabs.c (write_method_stabs): Don't generate method lines if
1781         we don't have line number information. Use `minfo->method_info.this_offset'
1782         instead of hardcoding 8.
1783
1784         * debug.c (debug_generate_method_lines): Don't crash if we don't have
1785         line number information.
1786         (mono_debug_open_assembly): Don't generate line numbers for
1787         MONO_DEBUG_FORMAT_DWARF2_PLUS.
1788         (mono_debug_add_method): Don't store the 'this' offset in `param_offsets',
1789         but it in the new `this_offset' field.
1790         
1791 Mon Mar 25 13:03:35 CET 2002 Paolo Molaro <lupus@ximian.com>
1792
1793         * debug.c (debug_generate_method_lines): Use correct addresses for
1794         record_il_offset().
1795
1796 Mon Mar 25 13:03:35 CET 2002 Paolo Molaro <lupus@ximian.com>
1797
1798         * jit.c: do not set the glib mem vtable anymore.
1799         * Makefile.am: link to libmonoutils.
1800
1801 2002-03-25  Martin Baulig  <martin@gnome.org>
1802
1803         * debug.h (mono_debug_make_symbols): Documented this function.
1804
1805 2002-03-24  Martin Baulig  <martin@gnome.org>
1806
1807         * debug.c (mono_debug_add_method): Include the `this' offset in
1808         the `minfo->method_info.param_offsets' array.
1809
1810 2002-03-23  Martin Baulig  <martin@gnome.org>
1811
1812         * x86.brg (lreg: CONV_I8 (reg)): X86_XOR modifies the flags, so we need
1813         to do it before the X86_CMP.
1814         (reg: CLT (lreg, lreg)): Use correct x86_branch8() targets.
1815         (reg: CLT (lreg, lreg)): Likewise.
1816         (reg: CLT_UN (lreg, lreg)): Likewise.
1817         (reg: CLT_UN (lreg, lreg)): Likewise.
1818         (reg: CGT (lreg, lreg)): Likewise.
1819         (reg: CGT (lreg, lreg)): Likewise.
1820         (reg: CGT_UN (lreg, lreg)): Likewise.
1821         (reg: CGT_UN (lreg, lreg)): Likewise.
1822
1823 2002-03-23  Martin Baulig  <martin@gnome.org>
1824
1825         * debug-private.h (AssemblyDebugInfo): Added `_priv'.
1826
1827         * debug-dwarf2-plus.c
1828         (mono_debug_open_assembly_dwarf2_plus): Open the symbol file here.
1829         (mono_debug_close_assembly_dwarf2_plus): Close the symbol file here.
1830         (mono_debug_write_assembly_dwarf2_plus): Only call
1831         mono_debug_update_symbol_file() here.
1832
1833 Thu Mar 21 17:35:48 CET 2002 Paolo Molaro <lupus@ximian.com>
1834
1835         * jit.c: inter strings before executing a method.
1836         Do not intern command line arguments anymore.
1837
1838 2002-03-21  Martin Baulig  <martin@gnome.org>
1839
1840         * debug.h (MonoDebugFormat): Added MONO_DEBUG_FORMAT_DWARF2_PLUS.
1841
1842         * debug-dwarf2-plus.c: This debugging format reads a symbol file which has
1843         been created by MCS and fills in all machine dependent stuff.
1844
1845         * debug-private.h (DebugMethodInfo): Added `MonoDebugMethodInfo method_info',
1846         removed everything which is already in MonoDebugMethodInfo.
1847
1848         * debug.c (debug_generate_method_lines): Generate the MonoILOffsetInfo array.
1849         (mono_debug_make_symbols): Don't open the file or call as, this is done in the
1850         backend code.
1851
1852         * jit.c (main): Added "--dwarf-plus" command line option to use the new
1853         MONO_DEBUG_FORMAT_DWARF2_PLUS debugging format.
1854
1855 2002-03-21  Dietmar Maurer  <dietmar@ximian.com>
1856
1857         * jit.c (usage): new option to specify maximum number of worker threads
1858         (mono_analyze_stack): avoid cyclic dependency in CEE_LDFTN
1859
1860         * delegate.c (async_invoke_abort): added support for asynchronous exceptions
1861         (arch_get_async_invoke): notify listeners before we call the
1862         asynchronous callback
1863
1864 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
1865
1866         * delegate.c (async_invoke_thread): support for domains
1867         (async_invoke_thread): create workers only when needed
1868
1869 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
1870
1871         * delegate.c (async_invoke_thread): initial support for BeginInvoke/EndInvoke
1872
1873 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>
1874
1875         * x86.brg: impl. lreg: XOR (lreg, lreg)
1876         impl. REM (freg, freg)
1877
1878 2002-03-17  Martin Baulig  <martin@gnome.org>
1879
1880         * debug.c (mono_debug_open_assembly): Call mono_debug_get_type() on all
1881         base types.
1882
1883         * debug-dwarf2.c: Added support for strings and arrays.
1884
1885 2002-03-17  Martin Baulig  <martin@gnome.org>
1886
1887         * debug.c (mono_debug_get_type): Recursively call this for all function members
1888         of a class type.
1889         (mono_debug_add_method): Don't mangle function names, this must be done by the
1890         debugger backend if the debugging format needs mangled names.
1891
1892         * debug-dwarf2.c: Improved support for classes, added member functions.
1893
1894 2002-03-16  Martin Baulig  <martin@gnome.org>
1895
1896         * debug.c (mono_debug_get_type): Recursively call this for all members and
1897         parent classes of a class type.
1898
1899         * debug-dwarf2.c: Added basic support for classes. Set source language to C++
1900         since GDB doesn't like Java very much.
1901
1902 2002-03-16  Martin Baulig  <martin@gnome.org>
1903
1904         * debug-dwarf2.c: Added support for enums.
1905
1906 2002-03-15  Martin Baulig  <martin@gnome.org>
1907
1908         * debug.c (mono_debug_get_type): Recursively call this for all members
1909         of a struct type.
1910
1911         * debug-dwarf2.c: Added support for structs.
1912
1913 2002-03-15  Dietmar Maurer  <dietmar@ximian.com>
1914
1915         * emit-x86.c (arch_create_jit_trampoline): adapt save/restore LMF
1916         to new MonoLMF layout
1917
1918 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
1919
1920         * emit-x86.c (arch_create_native_wrapper): new code to generate
1921         wrappers for calling native functions.
1922         (arch_create_native_wrapper): free allocated strings
1923         (arch_handle_exception): made mono_jit_info_table domain dependent
1924
1925 2002-03-14  Martin Baulig  <martin@gnome.org>
1926
1927         * debug.c (MonoDebugFormat): New public enums specifying which debugging
1928         format to use.
1929         (mono_debug_open_file): Added MonoDebugFormat argument.
1930         (mono_debug_make_symbols): Don't take an argument to make it easier to call
1931         this function from GDB. It's now safe to call this function multiple times;
1932         it'll always write a complete debugging file.
1933
1934         * debug.c: Splitted this file into a general part which remains in this file
1935         and the debugging format specific parts debug-stabs.c and debug-dwarf2.c.
1936         All public functions now call a corresponding format specific function.
1937
1938         * debug.c: The following changes are private to debug.c:
1939         (AssemblyDebugInfo, MonoDebugHandle): Moved declarations to debug-private.h.
1940         (record_line_number, debug_generate_method_lines): New private functions.
1941         (mono_debug_open_ass): Renamed to mono_debug_open_assembly; this function now
1942         calls a debugging-format-specific function (mono_debug_open_assembly_stabs or
1943         mono_debug_open_assembly_dwarf2).
1944         (mono_debug_make_symbols): Calls mono_debug_write_assembly_stabs/dwarf2(). It's
1945         now safe to call this function multiple times.
1946         (mono_debug_get_type): New public function. This takes a `MonoClass *' and
1947         returns an unique index for this type. It's used to ensure that we only write
1948         each class once to the debugging file.
1949         (mono_debug_add_method, mono_debug_add_type): Store all the data in an internal
1950         data structure, but don't directly write to the debugging file. This is done
1951         later from mono_debug_write_assembly().
1952
1953         * jit.c (main): Added "--dwarf" command line argument to generate DWARF 2
1954         debugging output. Call mono_debug_close() on cleanup if necessary.
1955
1956 2002-03-14  Martin Baulig  <martin@gnome.org>
1957
1958         * debug-private.h: New private header file.
1959
1960         * debug-stabs.c: Added the stabs type generation stuff which was
1961         previously in debug.c.
1962
1963         * debug-dwarf.c: Started to implement type support. We're currently
1964         only writing this most basic types to the dwarf file, but this will
1965         change soon.
1966
1967 2002-03-13  Martin Baulig  <martin@gnome.org>
1968
1969         * debug-stabs.c, debug-dwarf2.c: New files containing my new
1970         debugging code. They're now in CVS, but not yet used anywhere.
1971
1972 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
1973
1974         * emit-x86.c (mono_delegate_ctor): use C impl. instead of x86_*
1975         macros, included new delegate code from Daniel Stodden. 
1976         
1977         
1978 Mon Mar 11 14:47:21 CET 2002 Paolo Molaro <lupus@ximian.com>
1979
1980         * jit.c: verify that corlib and runtime are in sync.
1981
1982 Mon Mar 11 11:30:56 CET 2002 Paolo Molaro <lupus@ximian.com>
1983
1984         * emit-x86.c, jit.c: use the debug-helpers facilities to
1985         describe and match a method when debugging.
1986
1987 2002-03-10  Martin Baulig  <martin@gnome.org>
1988
1989         * emit-x86.c (arch_compile_method): When emitting stabs debugging
1990         output, put a nop instruction at the start of all functions so that
1991         the adresses won't change when using --debug.
1992
1993         * debug.c (mono_debug_add_method): `tree->cli_addr' is an offset into
1994         the bytecode area, stabs needs a line number in the .il file. Use the
1995         new info->moffsets to get the line number.
1996         (AssemblyDebugInfo): Added `total_lines' and `moffsets' fields.
1997         `moffsets' is an array of `total_lines' fields (total number of lines
1998         in the .il file); for each line in the .il field, this array contains
1999         the bytecode offset if it's an "IL_xxxx" line, -1 if it's the last line
2000         of a method and 0 otherwise.
2001         (debug_load_method_lines): Read the whole .il file and initialize the
2002         info->moffsets field.
2003
2004 2002-03-09  Martin Baulig  <martin@gnome.org>
2005
2006         * x86.brg (DIV_UN): Clear EDX before performing the division and remove
2007         the unnecessary CDQ instruction.
2008
2009 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
2010
2011         * jit.c (mono_analyze_stack): only load addresses of value types
2012         on the runtime stack.
2013
2014 2002-03-07  Duncan Mak  <duncan@ximian.com>
2015
2016         * Makefile.am: A small patch fixing errors in vpath-based builds
2017         (make clean failing to rerun monoburg due to BUILT_SOURCES usage),
2018         committed for Daniel Stodden <stodden@in.tum.de>. 
2019
2020 Thu Mar 7 17:22:52 CET 2002 Paolo Molaro <lupus@ximian.com>
2021
2022         * jit.c: Boehm-GC enable.
2023
2024 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
2025
2026         * x86.brg (SAVE_LFM): bug fix: patch the saved IP because we
2027         realloc that code sometimes!
2028
2029         * emit-x86.c (mono_compute_branches): support several types of
2030         jump infos
2031
2032 2002-03-06  Dietmar Maurer  <dietmar@ximian.com>
2033
2034         * x86.brg: impl. MUL_OVF_UN (reg, reg)
2035
2036         * jit.c (mono_find_final_block): find correct finally handler.
2037
2038         * emit-x86.c (arch_create_jit_trampoline): bug fix: preserve
2039         caller saved registers.  
2040
2041 2002-03-05  Dietmar Maurer  <dietmar@ximian.com>
2042
2043         * x86.brg: use x86_widen_reg for CONV opcodes
2044
2045 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
2046
2047         * jit.c (MAKE_SPILLED_BI_ALU): remove unnecessary assertions
2048
2049         * emit-x86.c (arch_handle_exception): big fix - dont use
2050         uninitialized next_bp
2051         (arch_compile_method): make the jit thread save
2052         (x86_magic_trampoline): moved lock/unlock to x86_magic_trampoline
2053         to avoid need of recursive mutexes
2054
2055         * x86.brg: use new mono_assert macros
2056
2057 2002-02-28  Dietmar Maurer  <dietmar@ximian.com>
2058
2059         * emit-x86.c (arch_create_jit_trampoline): save/restore LMF before
2060         calling into unmanaged code (arch_compile_method).
2061
2062         * x86.brg: impl. CONV_I4 (freg) with correct rounding
2063         (lreg): impl CALL_I8(INTF_ADDR)
2064         impl. CONV_R_UN (reg)
2065         bug fix im REM_UN
2066
2067 2002-02-27  Dietmar Maurer  <dietmar@ximian.com>
2068
2069         * emit-x86.c (arch_runtime_invoke): impl. runtime invoke for the jit.
2070
2071 2002-02-26  Dietmar Maurer  <dietmar@ximian.com>
2072
2073         * x86.brg: bug fix in CLT(lreg,lreg)
2074         (reg): bug fix in CONV_OVF_I4(lreg)
2075         (lreg): replaced x86_call_reg with x86_call_code
2076
2077         * emit-x86.c (mono_add_jump_info): impl.
2078         (mono_compute_branches): patch real jump address (instead of
2079         emitting code twice)
2080
2081 Tue Feb 26 11:56:03 CET 2002 Paolo Molaro <lupus@ximian.com>
2082
2083         * x86.brg: optimize cmp reg,0 -> test reg.
2084
2085 Sun Feb 24 13:58:34 CET 2002 Paolo Molaro <lupus@ximian.com>
2086
2087         * jit.h, jit.c, emit-x86.c: Added a few statistics counters
2088         and the --stats command line option to print them.
2089         Fixed memory leak in arch_compile_method () when a method's code is
2090         found in the cache. Fix magic trampoline to deal with static calls.
2091
2092 2002-02-21  Dietmar Maurer  <dietmar@ximian.com>
2093
2094         * x86.brg: impl. SHR_UN for lreg, added new test, bug fix for BNE_UN 
2095
2096 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
2097
2098         * emit-x86.c (arch_compile_method): add shared code to mono_root_domain
2099         (arch_create_jit_trampoline): cache trampoline code
2100
2101 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
2102
2103         * jit.c (mono_analyze_stack): optimize LDSFLD/STSFLD for domain
2104         specific code.
2105         (mono_analyze_stack): use MB_TERM_LDELEMA to perform bound check
2106
2107         * x86.brg: do not encode exception objects into the instruction
2108         stream, because they are domain dependend. Use
2109         arch_get_throw_exception_by_name() instead;
2110
2111 Mon Feb 18 15:51:40 CET 2002 Paolo Molaro <lupus@ximian.com>
2112
2113         * jit.c: intern command line arguments.
2114
2115 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
2116
2117         * jit.c (mono_analyze_stack): use the magic trampoline for all
2118         calls (since we cant store the address of compiled code in
2119         method->addr).
2120         (mono_analyze_stack): imp. LDSTR for shared code
2121
2122         * emit-x86.c (x86_magic_trampoline): handle x86_call_code().
2123         (arch_compile_method): add a cache for compiled methods to avoid
2124         recompilation. dont use method->addr to store domain dependent
2125         code address.
2126
2127 2002-02-15  Dietmar Maurer  <dietmar@ximian.com>
2128
2129         * x86.brg: impl. BLE,BGT for freg
2130
2131 Sat Feb 16 16:27:42 CET 2002 Paolo Molaro <lupus@ximian.com>
2132
2133         * emit-x86.c: handle unreachable code. Eliminate some unneeded
2134         malloc() calls.
2135         * jit.c: handle unreachable code. Move setting of mono_end_of_stack to
2136         main(). Add --compile classname and --ncompile num command line
2137         options to do performance evaluation of the jitter (and help
2138         debugging).
2139
2140 2002-02-15  Dietmar Maurer  <dietmar@ximian.com>
2141
2142         * emit-x86.c (arch_compile_method): bug fix in static delegate
2143         Invoke code.
2144
2145 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
2146
2147         * jit.c (mono_analyze_stack): do a LDIND after NEWOBJ for value types.
2148
2149 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
2150
2151         * jit.c (mono_analyze_stack): impl. CEE_SIZEOF
2152
2153 2002-02-13  Miguel de Icaza  <miguel@ximian.com>
2154
2155         * jit.c (arch_allocate_var): Only assert that the alignment is
2156         at least 32-bits aligned, not always 32-bits aligned (for I8 for example).
2157
2158 Mon Feb 11 11:20:57 CET 2002 Paolo Molaro <lupus@ximian.com>
2159
2160         * x86.brg: fix invalid cast check in unbox. Pack MBTree structure.
2161
2162 Sun Feb 10 12:54:05 CET 2002 Paolo Molaro <lupus@ximian.com>
2163
2164         * emit-x86.c: make x86_magic_trampoline() handle call instructions
2165         with an imm8 displacement. x86.brg not yet changed to take advantage
2166         of it.
2167
2168 Sun Feb 10 11:47:30 CET 2002 Paolo Molaro <lupus@ximian.com>
2169
2170         * jit.c: use opcode info from libmetadata to do flow analysis
2171         and simplify code.
2172
2173 2002-02-06  Dietmar Maurer  <dietmar@ximian.com>
2174
2175         * jit.c (MAKE_LDELEM, MAKE_STELEM): added bound checking 
2176
2177 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
2178
2179         * x86.brg: use element_class for type check
2180
2181 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
2182
2183         * jit.c (main): impl. __array_Address icall
2184
2185         * mempool.c (mono_mempool_alloc): handle large block allocation
2186
2187 2002-02-01  Dietmar Maurer  <dietmar@ximian.com>
2188
2189         * x86.brg: impl. SHL/SHR/CLT for 64 bit values
2190
2191 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
2192
2193         * x86.brg: impl. CEQ(lreg,lreg)
2194
2195         * jit.c (mono_analyze_stack): impl. LDVIRTFTN
2196         (mono_analyze_stack): handle MONO_TABLE_MEMBERREF in LDSFLD/STSFLD
2197
2198         * x86.brg: removed some dead code.
2199
2200 2002-01-18  Dietmar Maurer  <dietmar@ximian.com>
2201
2202         * jit.c (arch_allocate_var): fixed alignment bugs
2203
2204 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
2205
2206         * jit.c (mono_analyze_stack): use LDIND_REF/STIND_REF
2207
2208 2002-01-16  Dietmar Maurer  <dietmar@ximian.com>
2209
2210         * jit.c (main): install the trampoline before we start to create
2211         objects.
2212
2213         * x86.brg: impl. CLT_UN, CGT_UN
2214
2215         * emit-x86.c (leave_method): added check for null object
2216         (enter_method): consider byref arguments
2217
2218 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
2219
2220         * x86.brg: bug fix in CONV_OVF_I1_UN
2221         impl. ADD_OVF, MUL_OVF
2222         impl. ADD_OVF_UN, SUB_OVF, SUB_OVF_UN
2223         (SUB (lreg, lreg)): bug fix - use SBB instead of SUB
2224         (EMIT_COND_EXCEPTION): added signed flag
2225
2226 Fri Jan 11 20:06:22 CET 2002 Paolo Molaro <lupus@ximian.com>
2227
2228         * jit.c: implement stloc, ldloc, ldloca.
2229
2230 2002-01-11  Dietmar Maurer  <dietmar@ximian.com>
2231
2232         * jit.c (mono_analyze_stack): fixed calculation of last_instr
2233
2234         * x86.brg (LDLEN): emit null_reference exception
2235         (BLE_UN): bug fix. 
2236         (RET, RET_VOID, RET_OBJ, ...) fixed jump to epilog
2237
2238 2002-01-04  Dietmar Maurer  <dietmar@ximian.com>
2239
2240         * x86.brg: bug fix in CASTCLASS
2241
2242 2001-12-21  Dietmar Maurer  <dietmar@ximian.com>
2243
2244         * jit.c (mono_analyze_stack): spill MUL to avoid problem with
2245         register allocation.
2246
2247         * emit-x86.c (arch_compile_method): fixed static delegate bug
2248
2249 2001-12-16  Miguel de Icaza  <miguel@ximian.com>
2250
2251         * x86.brg, jit.c: Split up the nodes that we used to share on
2252         CONV_OVF.  They were sharing the nodes because they are the same
2253         on 32-bit machines, but on 64-bit machines you need different
2254         code for them.
2255
2256 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
2257
2258         * x86.brg: removed prerequisite that (tree->left->reg1 <
2259         tree->right->reg1) to make register allocation easier.
2260
2261 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
2262
2263         * emit-x86.c (arch_handle_exception): new code to handle
2264         exceptions inside unmanaged code.
2265
2266         * x86.brg: impl. SAVE_LMF, RESTORE_LMF, pass implizit valuetype
2267         address as first argument.
2268
2269 2001-12-15  Dietmar Maurer  <dietmar@ximian.com>
2270
2271         * x86.brg: pass exceptions on the stack
2272
2273         * jit.h (ISSTRUCT): new macro to check for real value types
2274         (return false for enum types). 
2275
2276 2001-12-11  Dietmar Maurer  <dietmar@ximian.com>
2277
2278         * x86.brg: use position indepentent code if possible. 
2279
2280         * x86.brg (EMIT_COND_EXCEPTION): new macro.
2281
2282         * emit-x86.c (mono_emit_cfg): impl. variable code buffer size
2283
2284 2001-12-10  Dietmar Maurer  <dietmar@ximian.com>
2285
2286         * jit.c (mono_analyze_flow): use g_malloc0 o allocate large bcinfo
2287         blocks.
2288         (mono_analyze_flow): use g_malloc0 o allocate large bblocks array.
2289
2290         * x86.brg (stmt): added opt. for STIND_R4/STIND_R8
2291
2292 2001-12-07  Dietmar Maurer  <dietmar@ximian.com>
2293
2294         * jit.c (mono_allocate_intvar): bug fix.
2295
2296         * emit-x86.c (get_unbox_trampoline): impl.
2297
2298         * jit.c (mono_analyze_stack): impl STOBJ, LEAVE
2299
2300 2001-12-06  Dietmar Maurer  <dietmar@ximian.com>
2301
2302         * x86.brg: raise exceptions.
2303
2304 2001-12-05  Dietmar Maurer  <dietmar@ximian.com>
2305
2306         * x86.brg: impl. CEQ for freg, NEWSTRUCT now allocates valuetypes on
2307         the stack. 
2308
2309 2001-12-06  Miguel de Icaza  <miguel@ximian.com>
2310
2311         * jit.c (mono_analyze_stack), x86.brg: Implement CONV.OVF.I1,
2312         CONV.OVF.I4, CONV.OVF.I1.UN, CONV.OVF.U1, CONV.OVF.U1.UN,
2313         CONV.OVF.I2.UN, CONV.OVF.I8.UN
2314
2315 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
2316
2317         * x86.brg: impl. UNBOX, NEWSTRUCT, removed VTYPE, bug fixes,
2318         removed the locaddr nonterminal, reimplemented value types
2319         
2320         * jit.c: reimplemented value type support, better support for
2321         enumeration types. 
2322
2323 2001-12-03  Miguel de Icaza  <miguel@ximian.com>
2324
2325         * x86.brg, jit.c: Implement conv.ovf.u4, conv.ovf.u2, conv.ovf.i2,
2326         conv.ovf.u8 
2327
2328 Mon Dec 3 17:16:36 CET 2001 Paolo Molaro <lupus@ximian.com>
2329
2330         * jit.c: call mono_init() after registering internal calls.
2331
2332 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
2333
2334         * emit-x86.c (tree_preallocate_regs): improved register allocation
2335
2336         * x86.brg: impl. ISINST, CASTCLASS
2337
2338 Fri Nov 30 12:02:24 CET 2001 Paolo Molaro <lupus@ximian.com>
2339
2340         * x86.brg: rearrange fields to reduce struct size.
2341         * jit.c: use signature->param_count, not signature->params_size.
2342         * debug.c: off-by-one error fix.
2343
2344 2001-11-29  Radek Doulik  <rodo@ximian.com>
2345
2346         * Makefile.am: build mono only for X86 architecture, compilation
2347         fails for ppc now because of accessing registers in sigcontext
2348         structure
2349
2350 2001-11-29  Dietmar Maurer  <dietmar@ximian.com>
2351
2352         * jit.c (mono_analyze_stack): bug fix in DUP
2353
2354 Thu Nov 29 12:32:01 CET 2001 Paolo Molaro <lupus@ximian.com>
2355
2356         * debug.c: fix type handling. Position function position at start of
2357         IL code. Output more fine-grained stepping information.
2358
2359 2001-11-28  Dietmar Maurer  <dietmar@ximian.com>
2360
2361         * x86.brg (LDIND_I1, LDIND_I2): use x86_widen_ instead of x86_mov_
2362
2363         * jit.c (mono_analyze_stack): record the cli_address for later use
2364         with gdb.
2365         (sigsegv_signal_handler): translate sigsegv into "Internal error"
2366         exception.
2367
2368 Tue Nov 27 16:32:41 CET 2001 Paolo Molaro <lupus@ximian.com>
2369
2370         * debug.c, debug.h: added support for generating stabs.
2371         Stabs can be compiled with as and the resulting object file can be
2372         loaded in a gdb session with add-symbol-file object.o.
2373         * jit.c, jit.h: add --stabs and --debug command line arguments. Keep track
2374         where locals and arguments are stored in the stack. Add support for
2375         passing command line arguments to CLR programs.
2376         * emit-x86.c: insert a breakpoint at method invocation if needed.
2377
2378 2001-11-27  Dietmar Maurer  <dietmar@ximian.com>
2379
2380         * jit.c: exception support
2381
2382         * emit-x86.c (arch_emit_epilogue): bug fix: restore the regs in
2383         the right order.
2384
2385 2001-11-26  Dick Porter  <dick@ximian.com>
2386
2387         * Makefile.am (mono_LDADD): Add io-layer library
2388
2389 2001-11-19  Dietmar Maurer  <dietmar@ximian.com>
2390
2391         * jit.c (mono_analyze_stack): impl. LDFTN
2392         (MAKE_SPILLED_BI_ALU): always spill DIV/REM results to memory to
2393         make register allocation easier on x86
2394
2395         * emit-x86.c (enter_method): more debugging output for Strings
2396         (arch_compile_method): added delegate support
2397         (arch_compile_method): align EBP to 8 byte boundary
2398
2399 Mon Nov 19 11:36:22 CET 2001 Paolo Molaro <lupus@ximian.com>
2400
2401         * jit.c: use mono_install_trampoline (), instead of exporting
2402         a function to a lower-level library.
2403
2404 2001-11-16  Dietmar Maurer  <dietmar@ximian.com>
2405
2406         * x86.brg (STRING_ARG): impl. a way to marshal strings. This
2407         will be extensible to handle all possible kinds of marshalling
2408         requirements. 
2409
2410         * jit.c (map_call_type): added MB_TERM_CALL_VOID
2411         (mono_analyze_stack): impl. LDELEMA, reimplemented CALL
2412         instructions to handle this arguments more effectively.
2413
2414 2001-11-15  Dietmar Maurer  <dietmar@ximian.com>
2415
2416         * Makefile.am (mono_SOURCES): renamed testjit to mono
2417
2418         * x86.brg: added debugging support 
2419
2420         * testjit.c: added support for value types, CFG improvements
2421
2422         * emit-x86.c (enter_method): handle value types
2423         (tree_allocate_regs): impl. a better way to handle chain rules
2424
2425 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
2426
2427         * x86.brg (INITOBJ): bug fix: initialize data before use,
2428         simplified the code.
2429
2430 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
2431
2432         * testjit.c (mono_analyze_stack): Remove compiler warning by
2433         testing against NULL.
2434
2435 2001-11-09  Dick Porter  <dick@ximian.com>
2436
2437         * Makefile.am (testjit_LDADD): Don't need THREAD_LIBS any more
2438
2439 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
2440
2441         * testjit.c (mono_analyze_stack): new BOX impl.
2442
2443         * x86.brg: implemented INITOBJ
2444
2445         * testjit.c (mono_analyze_stack): finished array support
2446         (mono_analyze_stack): reimplemented DUP instruction
2447
2448 2001-11-08  Dietmar Maurer  <dietmar@ximian.com>
2449
2450         * testjit.c (MAKE_STELEM, MAKE_LDELEM): we build a tree which
2451         represents the address of the element. This way we can emit highly
2452         optimized x86 instructions to access elements (using base+index+offset
2453         adressing mode)
2454
2455 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
2456
2457         * mempool.c: Include string.h to kill warning.
2458
2459         * testjit.c: Add typecast to kill warning.
2460
2461         * x86.brg: Include string.h to eliminate warning.
2462
2463         * emit-x86.c (tree_allocate_regs): Fix arguments to g_warning to
2464         kill warning.
2465
2466 2001-11-07  Dietmar Maurer  <dietmar@ximian.com>
2467
2468         * emit-x86.c (enter_method): print out all method arguments
2469         (x86_magic_trampoline): impl.
2470         (arch_create_simple_jit_trampoline): we use different trampolines
2471         for static methods (no need to write the address back into to
2472         vtable).
2473
2474 2001-11-06  Dietmar Maurer  <dietmar@ximian.com>
2475
2476         * emit-x86.c (arch_create_jit_trampoline): optimised trampoline to
2477         use less the 16 bytes.
2478
2479         * x86.brg: code cleanup
2480
2481 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
2482
2483         * testjit.c: bug fixes.
2484
2485         * emit-x86.c (leave_method): print result values
2486
2487 2001-11-03  Dietmar Maurer  <dietmar@ximian.com>
2488
2489         * emit-x86.c (enter_method): new debugging code
2490         (leave_method): new debbuging code, this functions are called
2491         when you use the new option --trace-calls
2492
2493 2001-11-02  Dietmar Maurer  <dietmar@ximian.com>
2494
2495         * testjit.c: impl. STELEM_XX, STELEM_XX
2496
2497         * x86.brg: impl. LDLEN, LDELEMA
2498         
2499
2500 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
2501
2502         * x86.brg: added some experimental code for CALL
2503         instructions - still not found the optimal way to do it.
2504
2505         * testjit.c (map_stind_type): add support for value types with
2506         a size of 1, 2 or 4 bytes, implemented CEE_UNBOX, CEE_LDOBJ,
2507         CEE_LDSTR, CEE_LDFLD, CEE_LDFLDA, CEE_STFLD, CEE_NEWOBJ, CEE_CEQ
2508         (ctree_create_newobj): impl.
2509         
2510
2511         * emit-x86.c (tree_allocate_regs): removed allocation code for
2512         addr nonterminal.
2513         (get_address): use a simple, but bug free search instead of the
2514         buggy binary search.
2515
2516 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
2517
2518         * testjit.c: support virtual functions
2519
2520         * x86.brg: support different addressing modes for calls
2521
2522 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
2523
2524         * testjit.c: impl. STFLD
2525
2526 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
2527
2528         * x86.brg: impl. CEQ
2529
2530 2001-10-04  Dick Porter  <dick@ximian.com>
2531
2532         * testjit.c:
2533         * emit-x86.c: include mono-endian.h not endian.h
2534
2535 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
2536
2537         * testjit.c (ctree_create_dup): really duplicate the tree.
2538         attach the arguments to the CALL node. Added a new macro to
2539         make argument order configurable (ARCH_ARGS_RIGHT_TO_LEFT).
2540
2541 2001-10-01  Dietmar Maurer  <dietmar@ximian.com>
2542
2543         * interp.brg: the burm based interpreter: added the file as example.
2544
2545 2001-09-27  Dietmar Maurer  <dietmar@ximian.com>
2546
2547         * x86.brg: cleanup
2548
2549         * testjit.c: impl. LDIND/STIND/LDLOCA, use g_malloc to alloc static
2550         data.
2551         (map_stind_type): support enum types
2552         (map_ldind_type): support enum types
2553
2554         * emit-x86.c (tree_allocate_regs): added code to support
2555         register allocation for addressing modes trees.
2556         (tree_emit): bug fix: we have to emit all mono_burg_functins. The
2557         previous impl. did not work for chain rules.
2558         (compute_branches): support for SWITCH statements
2559
2560         * x86.brg: added rules to model x86 addressing modes
2561
2562 2001-09-26  Dietmar Maurer  <dietmar@ximian.com>
2563
2564         * emit-x86.c (compute_branches): implemented SWITCH
2565
2566         * testjit.c (mono_create_forest): implemented LDIND/STIND opcodes
2567         (map_ldind_type): add enumeration types.
2568         (map_stind_type): add enumeration types.
2569
2570         * emit-x86.c (arch_compile_method): more documentation.
2571
2572         * testjit.c: moved the architecture specific things to emit-x86.c
2573         and x86.brg. Added more documentation. code cleanup.
2574
2575 2001-09-25  Dietmar Maurer  <dietmar@ximian.com>
2576
2577         * x86.brg: we now have different types of addresses: ADDR_L for local
2578         values, ADDR_A for arguments and ADDR_G for global addresses. We
2579         also use LDIND_XX token to load values from a specific address
2580         instead of LDLOC/STLOC. 
2581
2582         * testjit.c: use the new adressing scheme everywhere:
2583         LDIND _XX (ADDR_X), and STIND_XX (ADDR_X, tree)  
2584
2585 2001-09-24  Dietmar Maurer  <dietmar@ximian.com>
2586
2587         * testjit.c (main): fix bug in parameter parsing
2588
2589         * x86.brg: impl. more opcodes
2590
2591 2001-09-23  Dick Porter  <dick@ximian.com>
2592
2593         * Makefile.am (testjit_LDADD): rename PTHREAD_LIBS to THREAD_LIBS
2594
2595 2001-09-23  Dietmar Maurer  <dietmar@ximian.com>
2596
2597         * testjit.c: use the memory pool to avoid memory leaks
2598
2599 2001-09-22  Dietmar Maurer  <dietmar@ximian.com>
2600
2601         * x86.brg: increment the stack pointer after function calls
2602
2603 2001-09-21  Dick Porter  <dick@ximian.com>
2604
2605         * Makefile.am (testjit_LDADD): Added PTHREAD_LIBS to the link line
2606
2607 2001-09-21  Dietmar Maurer  <dietmar@ximian.com>
2608
2609         * x86.brg: implemented long MUL/DIV
2610         (MB_OPT_LEVEL): define optimisation level macro
2611
2612         * testjit.c (tree_allocate_regs): added a way to prevent EDX usage
2613         for operations like idiv. it is also possible to assign specific registers.
2614
2615 2001-09-20  Dietmar Maurer  <dietmar@ximian.com>
2616
2617         * x86.brg: added basic support for long
2618
2619         * testjit.c (mono_compile_method): implemented POP
2620
2621 2001-09-19  Miguel de Icaza  <miguel@ximian.com>
2622
2623         * testjit.c (usage): Added a couple of more usage options.
2624
2625 2001-09-19  Dietmar Maurer  <dietmar@ximian.com>
2626
2627         * x86.brg: added more floating point grammar 
2628
2629         * testjit.c (mono_compile_method): make local offsets negative
2630
2631         * x86.brg: added some floating point trees
2632
2633         * testjit.c (mono_compile_method): arguments on the runtime 
2634         stack are at least 4 bytes
2635
2636         * x86.brg: partly implemented 8,16 bit integers
2637
2638         * testjit.c (get_address): mark basic blocks
2639
2640 2001-09-18  Dietmar Maurer  <dietmar@ximian.com>
2641
2642         * x86.brg: added some rules to optimize code
2643
2644         * testjit.c (get_address): use a binary search to get the address
2645         (main): added an option to debug the jit (-d)
2646
2647 Tue Sep 18 13:19:16 CEST 2001 Paolo Molaro <lupus@ximian.com>
2648
2649         * testjit.c: better/faster align code. Handle ldloc.s and stloc.s.
2650
2651 2001-09-17  Miguel de Icaza  <miguel@ximian.com>
2652
2653         * testjit.c (mono_compile_method): Provide better error reporting.
2654
2655 2001-09-17  Dietmar Maurer  <dietmar@ximian.com>
2656
2657         * testjit.c (tree_get_address): impl. to fix address bug
2658         (tree_get_address): make sure that we can only jump to the first
2659         instruction of a tree.
2660
2661         * x86.brg: emit real code for calls
2662
2663         * testjit.c (create_jit_trampoline): creates a function to trigger jit
2664         compilation.
2665         (mono_compile_method): reversed argument order
2666
2667 2001-09-15  Dietmar Maurer  <dietmar@ximian.com>
2668
2669         * x86.brg (stmt): don't emit unnecessary register moves
2670
2671         * testjit.c (tree_allocate_regs): free registers earlier
2672
2673 2001-09-14  Dietmar Maurer  <dietmar@ximian.com>
2674
2675         * x86.brg: branch addresses are now resolved
2676
2677         * testjit.c (compute_branches): compute address of branches
2678
2679         * x86.brg: emit real x86 instructions
2680
2681         * testjit.c: call objdump to disassemble the output
2682
2683 2001-09-13  Dietmar Maurer  <dietmar@ximian.com>
2684
2685         * x86.brg: use the right offsets to access local variables
2686         and arguments.
2687
2688         * emit-x86.c: only save/restore callee saved registers if they are
2689         really modified.
2690
2691         * testjit.c (tree_allocate_regs): use the new MonoRegSet to
2692         allocate registers.
2693         (mono_compile_method): changed the tree for mothod calls
2694
2695         * regset.h: impl.
2696         
2697         * regset.c: impl.
2698         
2699
2700 2001-09-10  Miguel de Icaza  <miguel@ximian.com>
2701
2702         * x86.brg: Use Unix assembly syntax.
2703
2704         * emit-x86.c: support code, should be moved
2705
2706         * testjit.c: Use GPtrArrays instead of GLists, as those are very
2707         inefficient at appends.
2708
2709         * Renamed `create_new_leave' to `create_new_leaf'
2710
2711         
2712