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