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