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