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