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