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