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