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