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