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