2009-03-08 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git] / mono / mini / ChangeLog
blob3e6f218ac4c04e77a43789cf76528733d0bf462d
1 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
3         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
4         as well.
6 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
8         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
9         the delegate ctor handling code. Fixes #482638.
10         
11         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
12         #481458.
14         * iltests.il.in: Add a test.
15         
16         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
17         mini-posix.c.
19 2009-03-05  Mark Probst  <mark.probst@gmail.com>
21         * mini-trampolines.c (mono_create_jump_trampoline): If the method
22         is shared generic code, return the trampoline, even if the method
23         has already been compiled.  Fixes #479763.
25         * mini.c, mini.h: New function
26         mono_jit_find_compiled_method_with_jit_info() which is the same as
27         mono_jit_find_compiled_method() but also returns the jit info.
29 2009-03-05  Mark Probst  <mark.probst@gmail.com>
31         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
32         for methods which actually have one.  For all other methods, make
33         sure the this argument var is live the whole method.
35         * mini.c (mini_method_compile): Every shared method has a
36         this/vtable/mrgctx info.  Fixes #480807.
38 2009-03-05  Mark Probst  <mark.probst@gmail.com>
40         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
41         generic/imt thunks where some entries branch through the vtable,
42         while other entries branch directly.
44 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
46         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
48         * mini-windows.c: Ditto.
49         
50         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
51         ctors.
53 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
55         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
56         down an assert.
58 2009-03-04  Mark Probst  <mark.probst@gmail.com>
60         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
61         #481403.
63 2009-03-04  Mark Probst  <mark.probst@gmail.com>
65         * exceptions-x86.c: Include debug-mini.h - fixes build.
67 2009-03-04  Martin Baulig  <martin@ximian.com>
69         * debug-mini.c: Clean up the exception API and add documentation.
70         (mono_debugger_handle_exception): New public method; this is
71         called when throwing an exception or encountering an unhandled one.
72         (mono_debugger_call_exception_handler): Formerly known as
73         mono_debugger_handle_exception(); this is used to tell the
74         debugger that we're about to invoke an exception handler.
76 2009-03-04  Martin Baulig  <martin@ximian.com>
78         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
79         ../metadata/mono-debug-debugger.c; save and reset exception state.
81 2009-03-02  Martin Baulig  <martin@ximian.com>
83         * debug-mini.c: Moved the debugger exception handling here from
84         ../metadata/mono-debug-debugger.c.
86         * debug-mini.h
87         (MonoDebuggerExceptionAction): New exception typedef.
89         * debug-mini.c
90         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
92         * exceptions-amd64.c
93         (mono_amd64_throw_exception): Use the new debugger exception
94         handling code.
96         * mini-exceptions.c
97         (mono_handle_exception_internal): Don't call
98         mono_debugger_unhandled_exception() here.
100 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
102         * mini.c aot-compiler.c: Update after the changes to 
103         mono_marshal_get_runtime_invoke ().
105         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
106         Virtual generic methods might not have method->slot set, work around
107         that.
109         * generics.cs: Add a test.
111 2009-03-02  Geoff Norton  <gnorton@novell.com>
113         * mini.c:
114         * driver.c: Allow signal chaining of SIGFPE as well.
116 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
118         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
119         this since it now receives the method not its generic context in the
120         IMT reg.
122         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
123         generic/imt thunks where some entries branch through the vtable, while
124         other entries branch directly.
126         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
128         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
129         support for interface methods as well.
131         * mini-trampolines.c: Add support for virtual generic methods in interfaces
132         using the normal IMT thunks.
134         generics.cs: Add new tests.
135         
136         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
137         the generic inst to the generic imt thunks. This fixes AOT support, 
138         improves consistency with the normal IMT thunks, and makes it easier to
139         add support for interface generic virtual methods later.
141         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
142         
143 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
145         * driver.c (mono_set_signal_chaining): New public API function to enable
146         signal chaining on POSIX platforms.
148         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
149         (si@lindenlab.com) to implement signal chaining. The original patch was
150         contributed under the MIT X/11 license:
151         https://bugzilla.novell.com/show_bug.cgi?id=318894
153 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
155         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
156         too until it can be made to run on amd64.
158 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
160         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
161         to  get_generic_context_from_code () + get_call_info () if possible.
163 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
165         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
166         suspend-on-sigsegv functionality.
168         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
169         to suspend when a native SIGSEGV is received. This is useful for debugging
170         crashes which don't happen under gdb, since a live process contains more
171         information than a core file.
173         * mini-exceptions.c (mono_print_thread_dump): Use 
174         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
176         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
178         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
179         
180         * basic-float.cs: Disable the tests which currently fail on amd64.
182         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
183         value to mono_arch_patch_callsite () to fix crashes.
184         
185         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
187 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
189         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
190         nop code by patching the call address to point to the nullified class init
191         trampoline, as the former does not seem to be safe on SMP machines.
193 2009-02-23  Mark Probst  <mark.probst@gmail.com>
195         * mini-ops.h: Fix the argument types for a few x86 opcodes where
196         they were wrong.
198 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
200         * basic-float.cs basic-calls.cs: Fix warnings.
202 2009-02-22  Mark Probst  <mark.probst@gmail.com>
204         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
205         correct frame pointer in the LMF.  Should fix #478394.
207 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
209         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
211         * image-writer.c: Make the binary writer less verbose.
213 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
215         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
216         are called from runtime invoke wrappers.
218 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
220         * cpu-ppc.md (store_memindex): Increase the size of this.
222 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
224         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
226         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
228         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
229         OP_LCONV_TO_R_UN.
231         Last fix for of #467201.
234 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
236         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
238         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
239         and long_conv_to_r8_2:
241         Fixed part of #467201.
243 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
245         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
247         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
248         conversion to 32 bits.
250         * cpu-x86.md: Increase the size of int_conv_to_r4.
252         * basic-float.cs: Add a test for this.
254         Fixed part of #467201.
256 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
258         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
260         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
261         conversion to 64 bits.
263         * basic-float.cs: Add a test for this.
265         Fixed part of #467201.
267 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
269         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
271         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
272         This behavior is compatible with MS.
274         * iltest.il.in: Add a test for this.
276         Fixed part of #467201.
278 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
280         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
282         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
283         change the precision of the value.
285         * cpu-x86.md: Define len for float_conv_to_r4.
287         * basic-float.cs: Add a test for this.
289         Fixed part of #467201.
291 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
293         * mini.c: Adjust locking order to the new semantics where the loader lock
294         comes first.
296 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
298         * aot-runtime.c:
299         * mini-amd64.c:
300         * mini-arm.c:
301         * mini-ia64.c:
302         * mini-mips.c:
303         * mini-ppc.c:
304         * mini-sparc.c:
305         * mini-trampolines.c:
306         * mini-x86.c:
307         * mini.c:
308         * tramp-alpha.c:
309         * tramp-amd64.c:
310         * tramp-arm.c:
311         * tramp-hppa.c:
312         * tramp-ia64.c:
313         * tramp-mips.c:
314         * tramp-ppc.c:
315         * tramp-s390.c:
316         * tramp-s390x.c:
317         * tramp-sparc.c:
318         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
320 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
322         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
323         as it is incorrect.
325 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
327         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
328         for cctors if needed.
330 2009-02-17  Mark Probst  <mark.probst@gmail.com>
332         * mini-ppc.c: Fix build on Darwin.
334 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
336         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
337         version instead of 3 as valgrind doesn't like version 3.
339         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
341         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
342         usable for hashing methods.
343         (emit_extra_methods): Use the new hash to avoid putting every method in the
344         same hash bucket.
346         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
348         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
349         whenever a method ref could match a method.
350         
351         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
352         test to fail.
353         
354         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
355         methods refs.
357         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
359         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
360         the encoding buffer.
362         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
363         mono_method_get_header () on inflated methods as an optimization.
365 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
367         * ssa.c (fold_ins): Fix another crash if the instruction following the
368         switch was optimized away.
370 2009-02-16  Mark Probst  <mark.probst@gmail.com>
372         Contributed under the terms of the MIT/X11 license by Steven
373         Munroe <munroesj@us.ibm.com>.
375         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
377 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
379         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
380         around the mono_domain_alloc calls, it is now done by the functions
381         themselves.
383         * aot-compiler.c (compile_method): Only add wrappers referenced by
384         the method if compiling with full AOT.
385         (mono_compile_assembly): Error out if --aot=full is specified on
386         a platform where it is not supported.
388         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
389         on ARM too.
391         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
392         AOT support.
394         * aot-runtime.c (load_named_code): Handle 
395         mono_arm_throw_exception_by_token.
397         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
399         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
400         unaligned.
402         * Makefile.am (fullaotcheck): Exit if a test fails.
404         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
405         on ARM.
406         (mono_compile_assembly): Handle the assembler failing.
408         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
409         accepting subsections of .bss.
411         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
412         was optimized away.
414         * aot-compiler.c: Remove some unused includes.
415         
416         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
417         now in MonoImageWriter.
419         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
420         code sequence which matches a non-virtual call. Fixes #472654.
422 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
424         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
425         xdebug code.
426         
427         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
428         use the image/dwarf writers directly.
430         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
431         field.
433         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
434         MonoDwarfWriter.
436         * image-writer.h: Fix some typos.
438         * dwarfwriter.h dwarfwriter.c: New files.
439         
440         * aot-compiler.c: Extract the DWARF info writing functionality into a 
441         separate module.
443         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
444         argument to return unwind info.
446         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
448         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
449         
450         * aot-runtime.c (decode_method_ref): Add a case for 
451         MONO_AOT_METHODREF_WRAPPER_NAME.
453         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
454         for AOT.
456         * aot-compiler.c (encode_method_ref): Use the new constants.
458         * aot-runtime.c (decode_method_ref): Ditto.
460         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
461         be compiled, not the icall itself.
463 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
465         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
466         using decode_method_ref ().
468         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
469         convert it to an in32. Fixes #475859.
471         * arrays.cs: Add a test.
473 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
475         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
476         OP_LCONV_TO_U2.
478         * basic-long.cs: Add a test.
480 2009-02-12  Mark Probst  <mark.probst@gmail.com>
482         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
483         remove the frame pointer in leaf methods which don't receive any
484         arguments, don't throw exceptions and don't do dynamic stack
485         allocations.
487 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
489         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
490         the fail_tramp changes. Hopefully fixes #475132.
492 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
494         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
495         instead of mono_metadata_signature_dup_full.
497 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
499         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
500         for processing jump tables. Fixes #473787.
502 2009-02-11  Mark Probst  <mark.probst@gmail.com>
504         * mini-generic-sharing.c: mini_method_get_context() just calls
505         mono_method_get_context_general() now.
507         * mini.c, mini.h: Moved get_object_generic_inst(),
508         construct_object_context_for_method() and
509         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
511 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
513         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
514         basic block fell through to its successor bblock without a branch. Fixes
515         #474718.
517         * iltests.il.in: Add a test.
518         
519         * aot-compiler.c (encode_method_ref): Encode methods of array types.
520         (can_encode_patch): We can now handle arrays of generic parameters and
521         array methods.
523         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
525         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
526         the AOT file to avoid some #ifdefs in aot-runtime.c
528         * mini.h: Bump AOT file format version.
530 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
532         * Makefile.am (fullaotcheck): Make this run the tests.
534         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
536 2009-02-10  Mark Probst  <mark.probst@gmail.com>
538         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
539         individually.  Fixes #473482.
541 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
543         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
545 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
547         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
548         (mono_compile_assembly): Hush compile warnings about
549         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
550         code path.
552 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
554         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
556         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
558         * aot-compiler.c: Fix arm support.
560         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
561         img_writer_emit_unset_mode () function.
563         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
564         (mono_unwind_get_dwarf_pc_reg): Ditto.
566         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
567         Move almost all platform specific code to a set of arch_ functions, 
568         and document them to ease porting.
569         
570         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
572         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
574         * aot-compiler.c: Extract the image writing functionality into a separate
575         module to reduce the size of this file.
577 2009-02-09  Geoff Norton  <gnorton@novell.com>
579         * mini-s390.c: Fix the signature of emit_sig_cookie.
581 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
583         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
585         * aot-runtime.c (is_shared_got_patch): Ditto.
587         * aot-runtime.c (load_named_code): Cope with the fact that 
588         decode_got_entry () won't decode the patch fully if its corresponding got
589         entry is already filled.
590         
591         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
592         Initialize *ji.
593         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
595         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
596         as the moving pointer instead of 'buf' for consistency with the rest of the
597         codebase.
598         (mono_arch_create_monitor_exit_trampoline): Ditto.
600         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
601         generic_class_init trampolines.
602         (add_generic_class): Extract some code from add_generic_instances () into a
603         separate function so it can be called from other places too.
604         (compile_method): Call add_generic_class () for the classes of inflated methods
605         referenced by the method.
606         (can_encode_patch): Allow references to generic parameters.
608         * aot-runtime.c: Add support the patches required by the new trampolines.
609         
610         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
611         support.
613         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
614         full-aot support.
616         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
617         this from get_throw_pending_exception, make the signature full aot compatible.
619         * Makefile.am (fullaotcheck): New target to run full-aot tests.
621         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
623         * exceptions.cs: Add a test.
625 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
627         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
628         use the DWARF_DATA_ALIGN constant instead.
630         * exception-<ARCH>.c: Update after the above change.
632         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
633         dwarf unwinder.
635         * mini-arm.c: Enable the dwarf unwinder.
637         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
638         instead of mono_class_setup_vtable ().
640 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
642         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
643         dwarf unwinder.
645         * mini-x86.h: Enable the dwarf unwinder.
647 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
649         Fix mcs/tests/test-7.cs
650         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
651         2009-02-03.
653 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
655         * mini.c (print_jit_stats): Remove some unused statistics.
657 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
659         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
661 2009-02-05  Mark Probst  <mark.probst@gmail.com>
663         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
664         the method we get from mono_object_get_virtual_method() because
665         that function does it properly, now.
667 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
669         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
670         opcodes. Fixes #472775.
672 2009-02-05  Mark Probst  <mark.probst@gmail.com>
674         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
675         fact that mono_find_jit_info() sometimes returns the context
676         corresponding to the jit info in new_ctx.  Fixes #472600.
678 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
680         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
681         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
682         klass->enum_basetype directly.
684         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
685         enum subtypes.
687         * unwind.c: Avoid 0 sized arrays.
689 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
691         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
692         size on systems with 64k pages. Fixes #471389.
694 2009-02-04  Mark Probst  <mark.probst@gmail.com>
696         Contributed under the terms of the MIT/X11 license by Steven
697         Munroe <munroesj@us.ibm.com>.
699         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
700         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
701         necessary.
703 2009-02-04  Mark Probst  <mark.probst@gmail.com>
705         Contributed under the terms of the MIT/X11 license by Steven
706         Munroe <munroesj@us.ibm.com>.
708         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
709         comparison fix.
711         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
712         The trampoline can be longer on PPC64.
714 2009-02-04  Mark Probst  <mark.probst@gmail.com>
716         Contributed under the terms of the MIT/X11 license by Steven
717         Munroe <munroesj@us.ibm.com>.
719         * mini-ppc.c: Compiler warning fixes and trivial code
720         simplifications.
722 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
724         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
725         ins->dreg which could be a hardware register, not a vreg.
727         * aot-compiler.c (emit_method_dwarf_info): Ditto.
728         
729         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
730         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
732         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
733         
734         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
735         ->dreg, that is not the vreg we are looking for.
737         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
739         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
740         LIVERANGE_END.
742         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
743         strange crashes.
745 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
747         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
749         * aot-compiler.c (emit_line_number_info): Fix line number emission when
750         the line diff is 0.
752         * aot-compiler.c: Add xdebug support on x86.
754         * unwind.c: Add x86 support.
755         
756         * aot-compiler.c (emit_exception_debug_info): Control the emission of
757         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
759         * mini.c (mini_method_compile): Ditto.
760         
761         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
762         the variable index.
764         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
765         which mimic .push_section/.pop_section in GAS.
766         
767         * aot-compiler.c: Emit precise live range information for variables.
769         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
771         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
772         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
773         them.
775         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
776         the live ranges of variables.
778         * mini.h (struct MonoMethodVar): Add two fields containing the live range
779         of the variable in terms of native offsets.
781 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
783         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
784         
785 2009-02-02  Mark Probst  <mark.probst@gmail.com>
787         Contributed under the terms of the MIT/X11 license by Steven
788         Munroe <munroesj@us.ibm.com>.
790         * exceptions-ppc.c (restore_regs_from_context): Correct operand
791         order (offset then base reg) for ppc_load_multiple_regs.
792         (emit_save_saved_regs) Correct operand order for
793         ppc_store_multiple_regs.
794         (mono_arch_get_call_filter): Correct operand order for
795         ppc_load_multiple_regs.
797         * mini-ppc.c (emit_memcpy): Fix operand order for
798         ppc_load_reg_update and ppc_store_reg_update.
799         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
800         (mono_arch_emit_epilog): Correct operand order for
801         ppc_load_multiple_regs.
803         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
804         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
806 2009-02-02  Mark Probst  <mark.probst@gmail.com>
808         * cpu-ppc64.md: Fixed storer4_memindex length.
810 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
812         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
813         line number info.
814         
815         * aot-compiler.c (emit_line_number_info): Optimize this.
817 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
819         * aot-compiler.c: Disassemble tokens in the IL disassembly.
820         
821         * aot-compiler.c: Add debug info for methods without debug info by
822         emitting an IL file and having the line number info referencing that file.
824         * aot-compiler.c: Optimize the size of the generated line number info.
826         * aot-compiler.c: Emit line number info in xdebug mode.
828         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
829         million arguments.
831 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
833         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
835         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
836         is used.
838 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
840         * basic-calls.cs: Test for the weird crash found on arm.
841         
842 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
844         * cpu-arm.md: Increase the size of storer8_membase_reg and
845         loadr8_membase_reg to 24 bytes to accomodate the extra add.
847         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
848         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
849         reg to LR otherwise we'll be loading/storing from just the offset.
851 2009-01-30  Miguel de Icaza  <miguel@novell.com>
853         Question: if we are storing gint32's inside the "*native_offset",
854         should we change the signature to "gint32 *native_offset" to
855         ensure that we do not have type definition problems?
856         
857         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
858         an int * as this is what the other function expects, causes
859         problems with Freescale's compiler that defined int32_t to be a
860         long and makes int incompatible 
862 2009-01-30  Miguel de Icaza  <miguel@novell.com>
864         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
865         filename conflict with bjam.
867 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
869         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
870         as it might use decomposed ops.
872 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
874         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
876         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
877         is defined.
879         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
881         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
882         offsets.
884         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
885         way registers are stored in MonoContext on arm.
887         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
888         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
890         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
892         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
894         * mini.c (mini_init): Register mono_isfinite.
896         * jit-icalls.c (mono_isfinite): New jit icall.
898         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
899         
900         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
901         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
902         the parent frame.
904 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
906         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
907         separate frame and stack pointers, so we must use FP to find the register
908         spill area.
909         The FP reg is retrieved from the MonoContext::regs array.
911 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
913         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
914         as FPA requires it.
916 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
918         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
919         return R4 and R8 when not running under softfloat.
921         Fixes basic-calls.exe
923 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
925         * mini-arm.c: Implement some overflow opcodes.
927 2009-01-29  Miguel de Icaza  <miguel@novell.com>
929         * ssa.c: handle another alloca.h
931         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
932         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
933         MONO_ARCH_USE_SIGACTION. 
935         * aot-runtime.c, mini-exceptions.c: Replace platform define with
936         capability defines.
938         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
940         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
941         PPC targets as sigaction does not exist on all platforms, define
942         this on a per-platform basis.
944         Instead of erroring out if the platform is not defined, include
945         mini-ppc-os.h, and expect that the OS specific setting provides
946         the required information.   
948 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
950         * aot-compiler.c: Fix --enable-minimal=aot.
952 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
954         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
955         previous change.
957 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
959         * exceptions-arm.c: Fix warnings.
961         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
962         ARM.
964         * mini-x86.c: Fix --enable-minimal=jit build.
966         * mini.c: Really fix --enable-minimal=jit build.
967         
968         * mini.c (construct_object_context_for_method): Move this outside
969         the DISABLE_JIT block to fix the --enable-minimal=jit build.
971         "Backported" of r124984 from 2.0 branch.
972         
973         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
975         "Backport" of r124977 + r124978 from 2.0 branch.
976         
977         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
978         to avoid calling mono_exception_from_token () from the throw trampoline.
979         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
980         for throwing corlib exceptions, this fixes full-aot support for corlib
981         exceptions.
983         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
985 2009-01-29  Miguel de Icaza  <miguel@novell.com>
987         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
988         part of the changes to split the code in mini into operating
989         system specific files.
991         This patch was done by copying mini.c to the respective files to
992         preserve SVN history.
994 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
996         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
998 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
1000         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
1001         remoting-invoke-with-check wrappers of shared methods.
1003         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
1005 2009-01-27  Mark Probst  <mark.probst@gmail.com>
1007         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
1008         optimization if the top of stack is the last instruction in the
1009         bblock.  Otherwise it might have been used after its definition.
1010         Fixes #469742.
1012 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
1014         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
1015         method as well when get_vcall_slot () fails to match a code sequence.
1017         * mini-arm.c: Fix the android build, which doesn't have
1018         __aeabi_read_tp.
1020 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
1022         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
1023         the s390x build.
1025 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
1027         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
1029 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
1031         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
1032         and put its id into jinfo->used_regs. This is only used on amd64,
1033         which is currently the only platform generating unwind info.
1035         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
1036         the dwarf unwinder. This is required to correctly handle async exceptions
1037         like thread abort and stack overflows, which can happen while a method
1038         is in the middle of its prolog or epilog.
1039         
1040         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
1041         the unwind info belonging to an AOTed method.
1043         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
1044         into cfg->unwind_ops.
1045         
1046         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
1048         * mini.c (mini_init): Call mono_unwind_init ().
1049         (mini_cleanup): Call mono_unwind_cleanup ().
1051         * unwind.c: Add functions for managing a set of unwind info entries, allowing
1052         unwind info to be shared between methods.
1054         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
1055         saved in the LMF.
1057         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
1058         get_throw_pending_exception () to avoid initialization races.
1060         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
1061         mono_arch_exceptions_init () function.
1063         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
1065 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
1067         * mini.c (mono_get_domain_intrinsic): New helper function.
1068         (mono_get_thread_intrinsic): Ditto.
1070         * mini-arm.c mini-ia64.c: Use the new helper functions.
1071         
1072         * method-to-ir.c (mono_method_to_ir): Fix the comment for
1073         the last constrained_call change, since it is needed in the non-AOT
1074         case as well.
1076         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
1077         
1078         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
1079         mono_get_lmf_addr () on arm eabi linux.
1081 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
1083         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
1084         code sequence which matches a non-virtual call.
1086 2009-01-23  Mark Probst  <mark.probst@gmail.com>
1088         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
1089         stack pointer (r1).
1091 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
1093         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
1094         runtime-invoke wrappers, since they are also shared based on signature.
1096 2009-01-22  Mark Probst  <mark.probst@gmail.com>
1098         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
1099         info from the (correct) context.
1101 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
1103         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
1104         
1105         * unwind.c (mono_unwind_frame): New function to unwind through a frame
1106         using dwarf unwinding info. Not yet used.
1108         * mini.c (mini_init): When using xdebug, disable freeing of domains.
1110 2009-01-21  Mark Probst  <mark.probst@gmail.com>
1112         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
1113         descriptors.
1115         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
1116         special case and handle mono_arch_delegate_invoke_impl() returning
1117         function descriptors.
1119         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
1120         trampolines return function descriptors, too.
1122 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
1124         * method-to-ir.c (handle_alloc): Avoid generic instances in the
1125         out_of_line optimization.
1127 2009-01-21  Martin Baulig  <martin@ximian.com>
1129         * mini.h
1130         (MonoCompile): Added `disable_deadce_vars' to disable removing
1131         unused variables.
1133         * mini.c
1134         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
1135         inside the debugger.
1137         * liveness.c (mono_analyze_liveness): Don't remove any unused
1138         variables if `cfg->disable_deadce_vars' is set.
1140 2009-01-21  Mark Probst  <mark.probst@gmail.com>
1142         * method-to-ir.c: Only apply exception constructor optimization if
1143         the the method actually belongs to an exception class.  Fixes
1144         #467456.
1146 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
1148         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
1149         change inside a #ifdef __mono_ppc64__.
1151         * aot-compiler.c (compile_method): Remove the previous limitation.
1153         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
1154         on type variables in AOTed code.
1155         
1156         * aot-compiler.c (compile_method): Skip generic methods having type 
1157         constraints on their generic parameters.
1159         * aot-compiler.c (compile_method): Check for methods which cannot be
1160         encoded inside RGCTX_FETCH patches as well.
1162         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
1163         build.
1165 2009-01-20  Mark Probst  <mark.probst@gmail.com>
1167         * method-to-ir.c: Force the vtable variable in shared generic code
1168         for the case that they might show up on a stack trace where they
1169         are needed.
1171         * mini-exceptions.c: Save and use generic sharing info as well as
1172         IP in stack traces to resolve shared generic instantiations.
1174 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
1176         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
1177         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
1179 2009-01-20  Mark Probst  <mark.probst@gmail.com>
1181         * method-to-ir.c: Do generic sharing for array constructors.
1183 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
1185         * mini-exceptions.c (mono_print_thread_dump): Add information
1186         about the thread state using wapi_current_thread_desc.
1188 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1190         * basic-simd.cs: Tests for the new constructors. 
1192 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1194         * mini-ops.h: Added OP_EXPAND_*
1196         * cpu-x86.md: Same.
1198         * mini-x86.c (mono_arch_output_basic_block): Same.
1199         
1200         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
1202 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
1204         * iltests.il.in: Add a test for #467385.
1206 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1208         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
1209         thread been cleaned up is not the same currently in execution.
1211         Fixes appdomain-unload crashes on windows, osx and linux variants
1212         without the __thread keyword.
1214 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
1216         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
1217         (koush@koushikdutta.com). Implement this for android.
1219         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
1220         begins with a digit.
1222         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
1223         mono_marshal_get_write_barrier ().
1225 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
1227         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
1228         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
1229         that pass them on a register pair.
1231         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
1232         test was crashing due to that.
1234 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
1236         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
1237         trampoline code. Include ucontext.h only if available.
1239 2009-01-15  Mark Probst  <mark.probst@gmail.com>
1241         * mini.c: mono_domain_lookup_shared_generic() takes an open method
1242         and doesn't check whether it's sharable, like it was before
1243         removing the shared generics hash.  This brings IronPython
1244         performance back to what it was before that change.
1246 2009-01-14  Mark Probst  <mark.probst@gmail.com>
1248         * method-to-ir.c: Handle delegate invocation optimization earlier,
1249         otherwise it would be handled (much more slowly) by the
1250         final/sealed optimization.
1252 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
1254         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
1255         domain is not set. Fixes #465864.
1257 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1259         * method-to-ir.c: Don't stop sharing of generic methods with catch
1260         clauses - we already handle those.
1262 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1264         * mini.c, mini.h: lookup_generic_method() is now
1265         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
1266         making the shared_generics_hash obsolete.
1268 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1270         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
1271         use the red zone.  Make room on the stack first and then use it,
1272         not the other way around.
1274 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
1276         * mini.c (mini_init): Call mono_xdebug_init ().
1278         * aot-compiler.c (mono_xdebug_init): Make this non-static.
1280 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
1282         * TestDriver.cs: Add an --iter argument to run tests multiple times.
1284         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
1285         trampolines.
1287         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
1288         debug+unwind info for trampolines.
1290         * mini.c (mono_create_unwind_op): New helper function.
1292         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
1294 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
1296         * aot-compiler.c: Fix the build.
1298 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
1300         * Makefile.am: Update dtrace-prelink.sh location.
1302 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
1304         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
1305         optimization. Fixes #464520.
1307 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
1309         * mini-amd64.c : Adding code to save/restore non-volatile registers
1310            on Winx64.
1312         * exceptions-amd64.c : Adding code to save/restore non-volatile 
1313           registers on Winx64.
1315         Contributed under MIT/X11 license.
1317 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
1319         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
1320         __GNUC_MINOR__ which can break when the major version changes.
1322 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1324         * basic-simd.cs: Add tests for usage of the sizeof opcode.
1326 2009-01-07  Geoff Norton  <gnorton@novell.com>
1328         * helpers.c:  Allow mono -v -v -v to work on darwin.
1330 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
1332         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
1333           pattern. 
1335         Contributed under MIT/X11 license.
1337 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
1339         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
1340         instead of directly accessing type->data.klass. Fixes #462016.
1341         (mono_allocate_stack_slots_full): Ditto.
1343         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
1344         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
1346         * aot-compiler.c (emit_plt): Fix ARM build.
1348 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
1350         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
1351         
1352         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
1353         change.
1355         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
1356         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
1357         #463357.
1359         * iltests.il.in: Add a regression test.
1361 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1363         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
1365 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1367         * basic-simd.cs: Add a regression test for #462457.
1369 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1371         * mini-ops.h: Add a definition of XPHI.
1373         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
1375         * ssa.c (op_phi_to_move): Handle XPHI.
1377         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
1379         Fixes #462457
1381 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1383         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
1385 2008-12-31  Geoff Norton  <gnorton@novell.com>
1387         * mini-ppc.c: The prolog size allocated can be too small for darwin
1388         ppc32 under certain circumstances.  Also fix a small logic bug.
1390 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
1392         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
1393         while loading AOT methods.
1395         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
1396         since only the former is nulled out after a successful cast. This prevents
1397         crashes with rethrown exceptions when using --debug=casts.
1399 2008-12-24  Mark Probst  <mark.probst@gmail.com>
1401         * mini.h: New macro for checking whether a method is final,
1402         i.e. whether the method or its class is marked final.
1404         * method-to-ir.c: Use the new macro for all final-checks
1405         consistently.  Fixes the crash in the System.ServiceModel tests.
1407 2008-12-23  Mark Probst  <mark.probst@gmail.com>
1409         * mini-exceptions.c (get_exception_catch_class): Corrected another
1410         overly strict assertion.
1412 2008-12-23  Mark Probst  <mark.probst@gmail.com>
1414         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
1415         Clobbering it is not allowed because the caller might use it as
1416         the vtable register in the interface call.
1418 2008-12-19  Mark Probst  <mark.probst@gmail.com>
1420         * mini-exceptions.c (get_exception_catch_class): Corrected an
1421         overly strict assertion.
1423 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
1424         
1425         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
1427         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
1429         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
1431         * cpu-mips.md: correct lengths for certain long_ opcodes.
1433         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
1435         * mini-mips.c: Add support for more long operations. Fix issues with stack frame layout for n32 (still not perfect yet). Add mips_emit_load_const().
1436         
1437 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
1439         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
1440         
1441 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
1442         
1443         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
1444         
1445 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1447         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
1448         next basic block.
1449         
1450 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
1452         * mini.h: Allow MonoInst 'p' field to alias with the low-order bits of the 'const_val' fields correctly on big-endian systems when SIZEOF_VOID_P < SIZEOF_REGISTER
1454         * ir-emit.h: Change SIZEOF_VOID_P to SIZEOF_REGISTER, init instruction through inst_c* fields instead of inst_p* fields in case sizeof(inst_p) < sizeof(inst_c)
1455         
1456 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
1457         
1458         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
1459         
1460 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
1462         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
1463         gshared code. Fixes #458947.
1465         * generics.cs: Add a test.
1467 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
1468         
1469         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1470         
1471         * mini-mips.c: first pass n32 code generation.
1473         * mini-mips.h: datatypes and defines for n32 support.
1475         * exceptions-mips.c: first pass n32 code generation.
1476         
1477         * tramp-mips.c: first pass n32 code generation.
1478         
1479         * cpu-mips.md: add long_ opcodes.
1480         
1481 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
1483         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1485         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1486         
1487         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1488         
1489         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1491         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1493         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1495         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1497         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1499         * helpers.c: for mips/n32, don't pass -mips32 to objdump
1501 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
1503         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
1505 2008-12-12  Andrés G. Aragoneses  <aaragoneses@novell.com>
1507         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
1509 2008-12-12  Mark Probst  <mark.probst@gmail.com>
1511         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
1512         descriptors for helper functions directly in front of the code.
1514 2008-12-11  Mark Probst  <mark.probst@gmail.com>
1516         * method-to-ir.c: Removed an unnecessary assertion.
1518 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
1520         * method-to-ir.c: Merge SGEN changes from the old JIT.
1522 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
1524         * driver.c (compile_all_methods_thread_main): Handle failure of
1525         mono_get_method ().
1527 2008-12-10  Mark Probst  <mark.probst@gmail.com>
1529         * mini-ppc.c: Merged with mini-ppc64.c.
1531         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
1533         * Makefile.am: Use the same sources for PPC and PPC64.
1535         * mini-ppc64.c: Removed.
1537 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1539         * branch-opts.c (remove_block_if_useless): Extract fall through detection
1540         code to mono_bb_is_fall_through.
1541         
1542         * branch-opts.c (mono_remove_critical_edges): Same.
1544 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1546         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
1547         expect that an OP_BR_REG will be there.
1549 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1551         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
1552         for the many branch ops. The original check miss OP_BR_REG.
1554         Fixes #457574.
1555         
1556 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1558         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
1560 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
1562         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
1563         while holding the aot lock.
1565 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1567         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
1568         
1569 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
1571         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
1572           to release all runtime callable wrappers held by the runtime.
1574         Contributed under MIT/X11 license.
1576 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
1578         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
1579           for Winx64.
1581         Contributed under MIT/X11 license.
1583 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
1585         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
1586         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
1588 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1590         * cpu-mips.md: fix ckfinite length
1592         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
1593         (mono_arch_lowering_pass): cleanup, rearrange for clarity
1594         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
1595         
1596 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
1598         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
1599         
1600 2008-12-08  Geoff Norton  <gnorton@novell.com>
1602         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
1603         size by 8 bytes as well.
1605 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1607         * basic-simd.cs: Fix method names for Vector16b.
1608         
1609 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1611         * basic-simd.cs: Fix method names for Vector16sb.
1613 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1615         * basic-simd.cs: Fix method names for Vector8us.
1616         
1617 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1619         * basic-simd.cs: Fix method names for Vector8s.
1620         
1621 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1623         * basic-simd.cs: Fix method names for Vector4ui.
1625 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1627         * basic-simd.cs: Fix method names for Vector2l.
1629 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1631         * basic-simd.cs: Fix method names for Vector2d.
1633 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1635         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
1636         that are extension methods.
1638 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1640         * basic-simd.cs: Fix method names for Vector4f.
1642 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
1644         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
1645         as such. Fixes #456669.
1647 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
1649         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
1650         
1651 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
1653         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
1654         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
1655         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
1656         (mips_adjust_stackframe): handle FP spills
1657                 
1658         * mini-ops.h: add mips_mtc1_s2
1659         
1660         * cpu-mips.md: add mips_mtc1_s2
1661         
1662 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
1664         * unwind.c: New file, move the unwind info encoding functions here from
1665         aot-compiler.c, so they could be used at runtime too.
1667 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
1669         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
1670         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
1671         
1672 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
1674         * mini-mips.c: cleanup warnings
1675         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
1676         (mips_adjust_stackframe): handle case of taking the address of stack locals
1677         
1678 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1680         * aot-compiler.c: Implement a few functions missing from the asm writer.
1681         (emit_method_code): Only write symbols for methods when using the bin
1682         writer, since the assembler can't deal with the characters in our method
1683         names.
1685         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
1687         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
1688         call.
1690         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
1691         a bit to also restore %rax.
1693 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1695         * mini-ppc.c: Some simple merges from mini-ppc64.c.
1697 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1699         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
1700         arguments.
1702 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1704         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
1706         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
1707         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
1709         * exceptions-ppc64.c: Removed.
1711         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
1713 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1715         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
1716         tramp-ppc64.c.
1718         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
1720         * tramp-ppc64.c: Removed.
1722 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1724         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
1725         the TYPESPEC table.
1727 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1729         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
1731         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
1732         mini-ppc.h instead of mini-ppc64.h.
1734         * mini-ppc64.h: Removed.
1736 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1738         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
1739         
1740         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
1741         
1742 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1744         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
1745         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
1746         code easier.
1748 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1750         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
1752 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1754         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
1756 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1758         * basic-simd.cs: Tests for operator == and != on Vector4f.
1760 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1762         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
1764         * simd-intrinsics.c: Kill useless enum.
1766 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1768         * cpu-mips.md: add long_conv_to_ovf_i4_2
1769         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
1771 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1773         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
1774         
1775         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
1777 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1779         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
1780         
1781 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1783         * basic-simd.cs: Add tests for new methods.
1785 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1787         * simd-intrinsics.c: Add support for operator == and !=
1788         on Vector4(u)i.
1790         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
1792 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1794         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
1796 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
1798         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
1800         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
1801         MONO_PATCH_INFO_ICALL_ADDR.
1803         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
1805         * aot-compiler.c: Resurrect full-aot support.
1807 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1809         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
1810         
1811 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1813         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
1814         
1815 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
1817         * basic-simd.cs: Fix tests to work under ppc.
1818         Remove tests for methods that will be removed.
1820 2008-12-03  Mark Probst  <mark.probst@gmail.com>
1822         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
1823         generic type (via a typedef or typeref) correctly.
1825 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
1827         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
1828         diagnose an assertion failure.
1830 2008-12-02  Mark Probst  <mark.probst@gmail.com>
1832         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
1833         Fix trampoline size.
1835         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
1836         conversion opcodes are implemented natively instead via emulation.
1838 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1840         * cpu-mips.md: remove mips_xori
1842         * mini-ops.h:  remove mips_xori
1844         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
1846         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
1847         
1848         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
1849         
1850 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1852         * cpu-mips.md: fix instruction lengths.
1854         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
1856         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
1858         * mini-ops.h: fix slti / sltiu op profiles.
1859         
1860 2008-12-02  Martin Baulig  <martin@ximian.com>
1862         * method-to-ir.c (mono_method_to_ir): Disable debugging
1863         information for the init locals block to make the debugger stop
1864         after all locals have been initalized.
1866 2008-12-02  Martin Baulig  <martin@ximian.com>
1868         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
1869         running inside the debugger.
1871 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
1873         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
1874         is enabled.
1876         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
1877         alu->alu imm optimization which only shows if deadce is disabled.
1879         * aot-compiler.c: Rename the function names for the binary and asm writers
1880         so they can coexist in the same process. Rework the xdebug code to use the
1881         asm writer. This avoids the need to call into the runtime to dump the
1882         debugging info. Add more debugging info for types.
1884         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
1886         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
1887         cpu description tables, they can't occur in cpu-<ARCH>.md.
1889         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
1890         the stack in CEE_LDFLDA. Fixes #450542.
1892         * generics.cs: Add a new test.
1894 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1896         * mini-ops.h: updated MIPS opcodes
1897         * mini-mips.c: decompose long opts
1898         * mini-mips.h: decompose long opts
1899         
1900 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
1902         * cpu-mips.md: fix length on int_rem_un
1903         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
1904         
1905 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
1907         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
1909         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
1911 2008-11-29  Martin Baulig  <martin@ximian.com>
1913         * mini-exceptions.c (mono_handle_native_sigsegv): Check
1914         mono_debug_using_mono_debugger() in addition to the
1915         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
1917 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
1919         * mini-ops.h: updated more MIPS opcodes
1920         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
1921         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
1922         
1923 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1925         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
1927 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
1929         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
1930         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
1931         * mini-ops.h: correct selected mips opcode entries
1932         
1933 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1935         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
1936         make them work.
1938 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1940         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
1942 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
1944         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
1945         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
1946         * mini-mips.h: disable IMT
1947         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
1948         
1949 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1951         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
1953 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1955         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
1957 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
1959         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
1960         consistency.
1962 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1964         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
1965         for Set/GetVector aligned versions.
1967 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1969         * basic-simd.cs: Add tests for Get/SetVector.
1971 2008-11-27  Mark Probst  <mark.probst@gmail.com>
1973         * mini.c: Removed g_slist_append_mempool().  Now in
1974         metadata/mempool.c.
1976 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1978         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
1979         size properly and make the bounds check optional.
1981         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
1982         for SetVector and IsAligned.
1984 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
1986         * mini.c: Remove unused mono_normalize_opcodes () function.
1988 2008-11-26  Mark Probst  <mark.probst@gmail.com>
1990         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
1991         using the new atomic add ops now.
1993         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
1994         add.
1996 2008-11-26  Mark Probst  <mark.probst@gmail.com>
1998         * mini-ppc64.c: Several fixes.
2000 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2002         * cpu-mips.md: added jump_table
2003         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
2005 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2007         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
2009 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2011         * mini-ops.h: corrected a handful of MIPS opcodes.
2013 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2015         * aot-compiler.c: MIPS to use ELF writer
2017 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2019         * mini-codegen.c: remove MIPS specific assert.
2021 2008-11-25  Mark Probst  <mark.probst@gmail.com>
2023         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
2024         fixes.  PPC64 now passes most of the runtime regressions.
2026 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
2028         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
2029         volatile intervals a bit.
2031 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2033         * basic-long.cs: New test case.
2035 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
2037         * mini.c (mini_method_compile): Disable globalra for large methods for 
2038         now.
2040         * regalloc2.c (order_moves): Add fp support.
2042         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
2043         source bblock ends with an OP_BR_REG.
2045         * ratests.cs: Add a new test.
2047 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2049         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
2050         sharing.  PPC64 now passes generics.exe.
2052 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2054         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
2056 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
2058         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
2059         memory when mono_jit_info_table_find () can't find the method in the
2060         LMF case.
2062         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
2063         AOTed code too.
2064         
2065         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
2066         writer too.
2068 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2070         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
2071         Several fixes.  PPC64 now runs exceptions.exe and
2072         devirtualization.exe.
2074 2008-11-22  Mark Probst  <mark.probst@gmail.com>
2076         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
2077         arrays.exe and basic-math.exe.
2079 2008-11-22  Mark Probst  <mark.probst@gmail.com>
2081         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
2082         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
2084 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2086         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
2088 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2090         * method-to-ir.c: Move bounds checking macros to ir-emit.h
2092         * ir-emit.h: Move macros from method-to-ir.c to here.
2094 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2096         * mini-ops.h: Correct the long simd ops to use LREG.
2098 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
2100         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
2101         
2102         * mini-ops.h: Correct the dreg type of a few long opcodes.
2104         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
2105         Add netbsd support.
2107 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
2109         * mini-ppc.c: remove negative stack references in epilog
2110         for platforms that don't support the red zone.
2112 2008-11-21  Mark Probst  <mark.probst@gmail.com>
2114         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
2115         point regs.  Now PPC64 passes basic-calls.exe.
2117 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2119         * basic-simd.cs: Add tests for accessors of Vector2l.
2121 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2123         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
2125         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
2126         
2127         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
2129 2008-11-21  Mark Probst  <mark.probst@gmail.com>
2131         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
2132         PPC64 passes basic-long.exe.
2134 2008-11-20  Mark Probst  <mark.probst@gmail.com>
2136         * decompose.c: Decompose carry and overflow add on PPC64 like on
2137         other 64 bit archs.  Don't decompose sub at all on PPC64.
2139         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
2140         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
2141         basic-long.exe.
2143 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2145         * basic-simd.cs: Add tests for accessors of Vector2d.
2147 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2149         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
2151         * cpu-x86.md: Same.
2153         * mini-x86.c (mono_arch_output_basic_block): Same.
2154         
2155         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
2157 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2159         * basic-simd.cs: Add tests for accessors of Vector4f.
2161 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2163         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
2165         * cpu-x86.md: Same.
2167         * mini-x86.c (mono_arch_output_basic_block): Same.
2168         
2169         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
2171 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2173         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
2175 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2177         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
2179         * cpu-x86.md: Same.
2181         * mini-x86.c (mono_arch_output_basic_block): Same.
2182         
2183         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
2185 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2187         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
2189 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2191         * simd-intrinsics.c: Enable setters for Vector16sb.
2193 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2195         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
2197         * cpu-x86.md: Same.
2199         * mini-x86.c (mono_arch_output_basic_block): Same.
2200         
2201         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
2203 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
2205         * simd-intrinsics.c: Implement setter for Vector8us.
2207 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
2209         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
2210         for dead variables.
2212 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2214         * mini-ppc.c: remove references to the red zone in the prolog
2215         (for systems that don't support it).
2217 2008-11-19  Mark Probst  <mark.probst@gmail.com>
2219         * cpu-ppc64.md: Fixed a few instruction lengths.
2221         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
2222         now.
2224 2008-11-19  Mark Probst  <mark.probst@gmail.com>
2226         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
2227         basic.exe now.
2229 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
2231         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
2233 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
2235         * mini-ops.h: Added OP_INSERT_I2.
2237         * cpu-x86.md: Same.
2239         * mini-x86.c (mono_arch_output_basic_block): Same.
2240         
2241         * simd-intrinsics.c: Implement setter for Vector8s.
2243         * simd-methods.h: Add the names of get setters of Vector8s.
2245 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2247         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
2248         
2249         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
2250         parameters.
2252         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2254 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2256         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
2257         for PPC64.  An empty program runs now.
2259 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2261         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2263         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
2264         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
2265         info for JITted code is emitted into a shared library, loadable into gdb.
2267 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2269         * Makefile.am: Changes to build PPC64.
2271         * mini-arch.h: Include mini-ppc64.h on PPC64.
2273 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2275         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
2276         in PPC code up to r119147.
2278 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2280         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2281         cpu-ppc64.md: Changes for PPC64.
2283         Based on code submitted by andreas.faerber@web.de at
2284         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
2285         X11/MIT license.
2287 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2289         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2290         cpu-ppc64.md: Copied from the corresponding PPC files from
2291         r118846.
2293 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
2295         * mini-ops.h: Added OP_ROUND.
2297         * cpu-x86.md: Added round.
2299         * mini-x86.c: Added support for intrinsicing Math.Round (double).
2301         * basic-math.cs: Added test_0_round to test rounding.
2303         Contributed under MIT/X11 license.
2305 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2307         * aot-compiler.c : Fix the Winx64 build.
2309         Contributed under MIT/X11 license.
2311 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2313         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
2314         in OP_EXTRACT_R8 to avoid possible stack corruption.
2316 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2318         * mini-ops.h: Added OP_EXTRACT_R8/I8.
2320         * cpu-x86.md: Added extract_r8.
2322         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
2323         
2324         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
2325         a couple of OP_EXTRACT_I4.
2327         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
2329         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
2331 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2333         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
2334         and not 4.1. 
2336 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
2338         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
2339         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
2341         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
2342         are not needed any more.
2344         * mini.h: Remove the unused INS_LIST macros.
2346         * mini.c (mini_method_compile): Remove a disable globalra case which is no
2347         longer needed.
2349         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
2350         ir-emit.h.
2352         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
2353         mono_alloc_ireg () instead.
2355         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
2356         macros.
2358         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
2359         on amd64.
2361         * aot-runtime.c (load_aot_module): Disable AOT when running under
2362         CAS.
2364         * mini-amd64.h: Change the monitor fastpath defines to check for
2365         !PLATFORM_WIN32 so they work on *bsd too.
2367         * mini.h mini.c mini-hhpa.c: Remove more unused code.
2369         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
2371         * mini.h (MonoCompile): Remove new_ir flag.
2373         * regalloc.h regalloc.c: Remove unused code.
2375         * cpu-*.md: Remove more unused opcodes.
2377         * simple-cee-ops.h simple-mini-ops.h: Removed.
2379         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
2380         
2381 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
2383         * aliasing.h: Removed.
2385         * *.c: Remove references to aliasing.h and inssel.h.
2387         * mini.c: Remove additional unused functions.
2389         * mini-ops.h cpu-*.md: Remove unused opcodes.
2391 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
2393         Remove the old JIT code.
2395         * inssel*.brg: Removed.
2397         * ssa.c abcremoval.c aliasing.c: Removed.
2399         * ssa2.c: Renamed to ssa.c.
2401         * abcremoval2.c: Renamed to abcremoval.c.
2403         * *.c: Removed all !cfg->new_ir code.
2405         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
2406         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
2408         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
2409         
2410 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
2412         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
2413         to simplify the code and cut back on the number of global symbols in the AOT
2414         file.
2415         
2416         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
2418 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
2420         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
2421         with the got/got_info tables.
2423         * mini.h: Bump AOT file format version.
2424         
2425         * unwind.h: New file, contains definitions for stack unwinding.
2427         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
2428         to cfg->unwind_ops.
2429         
2430         * aot-compiler.c: Generalize the emitting of unwind information to use the
2431         information in cfg->unwind_ops.
2433         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
2435         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
2436         AOT method frames. Enable writing symbols for methods by default.
2438 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
2440         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
2441         and make it work with vectors of element sizes 1, 2 and 4.
2443         * simd-intrinsics.c: Enable getter for all vectors with element size
2444         1, 2 or 4.
2446         * simd-methods.h: Add the names of other getters.
2448         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
2450         * cpu-x86.md: Same.
2452         * mini-x86.c: Same.
2454 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
2456         * mini-ppc.h: portability fix.
2458 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2460         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
2461         buggy and will overwrite it.
2463 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2465         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
2466         Use it to emit local symbols for all methods so AOTed methods show up with
2467         their full name in gdb/valgrind output.
2469 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
2471         * mini-ppc.c: portability fixes.
2473 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2475         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
2476         entries out of the if (!generic_shared...) code so it is always done.
2477         (mono_class_init_trampoline): Do the patching when running under valgrind
2478         too, newer versions of valgrind have no problems with it.
2480 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
2482         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
2483         further sections.
2485 2008-11-13  Mark Probst  <mark.probst@gmail.com>
2487         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
2488         filters.
2490 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2492         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
2494 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2496         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
2498         * cpu-x86.md: Same.
2500         * mini-x86.c: Same.
2502         * simd-intrinsics.c: Same.
2504 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2506         * simd-intrinsics.c: Enable constructor intrinsics for all types.
2508 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2510         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
2511         to work with more Vector types.
2513 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2515         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
2516         store the elemens directly instead of using and intermediate.
2518 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
2520         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
2522         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
2523         to preserve %eax for aot plt trampolines.
2525         * aot-compiler.c (compile_method): Don't skip synchronized methods.
2526         (encode_method_ref): Flag synchronized methods so they won't go through
2527         the AOT trampoline.
2529         * aot-compiler.c: Additional work to support AOTing synchronized methods/
2530         wrappers.
2532         * cpu-ia64.md (jmp): Increase max length.
2534 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
2536         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
2537         open generic classes.
2539         * aot-compiler.c: Enable the ELF writer on ELF platforms.
2541         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
2542         box+brtrue optimization since it causes test failures on x86.
2544 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
2546         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
2548         * cpu-x86.md: Same.
2550         * mini-x86.c: Same.
2552         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
2553         for simd ctor values. 
2555         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
2556         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
2558 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
2560         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
2561         LogicalRightShift.
2563         * simd-instrincs.c: Same.
2565         * basic-simd.cs: Same.
2567 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
2569         * ratests.cs: Add more tests.
2571         * regalloc2.c (add_spill_code): Handle more corner cases.
2573 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
2575         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
2576         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
2577         both the source an destination of an instruction.
2579 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2581         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
2582         wapihandles.c: more portability changes.
2584 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
2586         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
2587         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
2588         safe to execute in a signal handler and the kernel provides better
2589         the info in /proc/self/smaps. Avoid the assert on sigaction during
2590         cleanup.
2592 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
2594         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
2595         do the bblock linking hack if it is actually needed.
2597         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
2598         up linking.
2600         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
2601         crash problem is fixed.
2603         * branch-opts.c (mono_remove_critical_edges): Link up newly added
2604         bblocks.
2606         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
2607         for catch clauses.
2608         (mini_method_compile): Set the starting value of next_vreg to 
2609         MAX_IREGS + MAX_FREGS when using globalra.
2611         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
2612         filter clauses with BB_EXCEPTION_HANDLER.
2614         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
2616 2008-11-10  Mark Probst  <mark.probst@gmail.com>
2618         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
2619         space for stdcall.  Fixes regressions on Win32.
2621 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
2623         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
2624         bblocks.
2625         (linear_scan): Remove an assert which doesn't seem to be needed.
2627         * local-propagation.c (mono_local_deadce): Avoid a call to
2628         MONO_DELETE_INS which would screw up the instruction linking.
2630         * mini.c (mono_decompose_op_imm): Make this work with globalra.
2632         * regalloc2.c: Upgrade to work the current JIT code.
2634 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
2636         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
2637         case.
2639         * aot-runtime.c: Remove some dead code.
2641         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
2642         consistency.
2643         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
2645         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
2646         trampolines using sscanf since atoi doesn't work on large unsigned values.
2648         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
2649         Initialize code_size.
2651 2008-11-08  Mark Probst  <mark.probst@gmail.com>
2653         * method-to-ir.c (mini_emit_inst_for_method): Make
2654         Interlocked.CompareExchange work for Int arguments on 32 bit
2655         archs, as well.
2657 2008-11-07  Mark Probst  <mark.probst@gmail.com>
2659         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
2661 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
2663         * main.c Fix MSVC build.
2665         Contributed under MIT/X11 license.
2667 2008-11-06  Mark Probst  <mark.probst@gmail.com>
2669         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
2670         alignment larger than 8 bytes are aligned correctly, too.
2672         * mini.c: Honor the min_align field of MonoClass when laying out
2673         the stack.
2675 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
2677         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
2679         * aot-compiler.c (emit_plt): Fix a warning.
2680         
2681         * aot-compiler.c: Implement ARM support in the binary writer.
2683 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2685         * basic-simd.cs: Add test for getter with byref arg.
2686         Fix the naming of a few tests.
2687         Add missing checks to a test.
2689 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
2691         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
2693         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
2694         most of the full-aot support for monitor enter/exit trampolines.
2696         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
2697         enter/exit trampoline creation functions.
2699         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
2700         make dist.
2702 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
2704         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
2705         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
2706         implement the needed functionality without adding crap to the runtime.
2708 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
2710         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
2711         non-x86 builds.
2713         * mini.c (mono_build_date): New global version holding the build date in
2714         string format.
2715         
2716         * Makefile.am (buildver.c): Generate a file containing the build date.
2718         * main.c: Set the build date from the generated file.
2720         * mini.c (mono_get_runtime_build_info): New helper function returning build
2721         information in a string format.
2722         
2723         * driver.c (mono_main): Print the build date in --version.
2725         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
2726         file when the bind-to-runtime-version option is used.
2728 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2730         * simd-intrinsics.c: Fix bug when using getters and byref args. 
2732 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2734         * simd-methods.h: Rename prefetch methods.
2736         * simd-intrinsics.c: Same.      
2738 2008-11-05  Mark Probst  <mark.probst@gmail.com>
2740         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
2741         sizes.
2743 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2745         * aot-compiler.c: Use the bundled elf header files instead of depending on
2746         the system one.
2747         
2748         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
2749         mempool.
2751         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
2752         on every call.
2754 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2756         * cpu-x86.md: Add store nta ops.
2758         * mini-ops.h: Same.
2760         * mini-x86.c: Same.
2762         * mini.h: Add an enum for simd prefetch modes.
2764         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
2765         of store. Use the changed code to support store nta.
2767         * simd-intrinsics.c: Add prefetch ops for all vector types.
2769 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2771         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
2772         threads.
2773         
2774         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
2775         names.
2777         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
2778         trampolines.
2780 2008-11-04  Mark Probst  <mark.probst@gmail.com>
2782         * mini-x86.c: Fixed commit.
2784 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2786         * aot-compiler.c (emit_plt): Align the plt section only on x86.
2788 2008-11-04  Mark Probst  <mark.probst@gmail.com>
2790         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
2791         and MONITOR_EXIT, for the ASM fastpaths.
2793         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
2794         available.
2796         * mini.c, patch-info.h: Signature and patch infos for
2797         Monitor.Enter/Exit trampolines.
2799         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
2801         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
2802         Monitor.Enter/Exit ASM fastpath for Linux.
2804 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2806         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
2808         * objects.cs: Add a new test.
2809         
2810         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
2812         * aot-runtime.c (load_method): Run class initialization in the PLT case even
2813         if MONO_LOG_LEVEL is set.
2815         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
2817         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
2819         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
2820         
2821         * aot-compiler.c: Change the relocation code to use virtual addresses instead
2822         of file offsets. Align the sections belonging to the data segment to 
2823         PAGESIZE.
2825 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
2827         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
2828         elf.h. Port it to amd64.
2830 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2832         * driver.c: Enable SIMD by default.
2834 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2836         * cpu-x86.md: Add prefetch op.
2838         * mini-ops.h: Same.
2840         * mini-x86.c: Same.
2842         * mini.h: Add an enum for simd prefetch modes.
2844         * simd-methods.h: Add prefetch function names.
2846         * simd-intrinsics.c: Add prefetch ops for all vector types.
2848 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
2850         * aot-compiler.c (emit_bytes): Speed this up a little.
2852 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
2854         * aot-compiler.c: Add JIT time etc. statistics.
2855         
2856         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
2858         * mini.h (MonoCompile): Add 'got_offset' field.
2860         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
2861         method_got_offsets array.
2863         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
2864         wrappers.
2866         * aot-compiler.c (compile_method): Add generic method instances referenced
2867         by the method to the list of methods to be compiled, this is required so if
2868         A<T> references B<T>, and another assembly references A<int>, then it will
2869         also get a copy of B<int>.
2871         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
2872         when checking for monitor enter/exit.
2874 2008-10-30  Mark Probst  <mark.probst@gmail.com>
2876         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
2877         for Monitor.Enter and Monitor.Exit if enabled.
2879         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
2880         Solaris.
2882 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
2884         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
2885         of an OP_MOVE. Fixes #440046.
2887         * basic-long.cs: Add a new test.
2889 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
2891         * mini.h: Add synchronization note for the managed counter-part.
2893         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
2894         returns the simd caps of the current cpu.
2896 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
2898         * basic-simd.cs: Remove Console.WriteLine.
2900 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2902         * basic-simd.cs: New tests for Vector2ul.
2904 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2906         * simd-intrinsics.c: Add new vector type Vector2ul.
2908 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2910         * basic-simd.cs: New tests for Vector2l.
2912 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2914         * cpu-x86.md: Add long version of most packed int ops.
2916         * mini-ops.h: Same.
2918         * mini-x86.h: Same.
2920         * simd-intrinsics.c: Add new vector type Vector2l.
2922 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2924         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
2926         * simd-methods.h: Remove SN_op_BitwiseXor.
2928 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
2930         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
2931         alignment.
2933 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
2935         * basic-simd.cs: Test for Vector2d.
2937         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
2938         value.
2940 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
2942         * cpu-x86.md: Add double version of all packed float ops.
2944         * mini-ops.h: Same.
2946         * mini-x86.h: Same.
2948         * simd-intrinsics.c: Add new vector type Vector2d.
2950         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
2952         * simd-methods.h: Add Duplicate.
2954 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
2956         * basic-simd.cs: Test for packing with signed saturation.
2958 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
2960         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
2961         found in the TYPESPEC table.
2963 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
2965         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
2966         too.
2968         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
2970         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
2971         instead of the RVA, since the RVA can be changed by tools like the cil 
2972         stripper.
2974         * method-to-ir.c (mono_method_to_ir2): Ditto.
2976         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
2977         (deserialize_variable): Ditto.
2979 2008-10-25  Martin Baulig  <martin@ximian.com>
2981         * debug-mini.c (write_variable): Use
2982         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
2984 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
2986         * cpu-x86.md: Add unsigned variants of packd and packw.
2988         * mini-ops.h: Same.
2990         * mini-x86.h: Emit the right instruction for packd and packw.
2991         Add unsigned variants of packd and packw.
2993         * simd-intrinsics.c: Packd and packw were used in place of their
2994         unsigned variants. Change that.
2995         Add intrinsics for (Signed)PackWithSignedSaturation.
2997         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
2999 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3001         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
3003 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3005         * mini-ops.h: Remove dword packed add/sub with saturation ops.
3007         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
3009         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
3010         sse instructions.
3012         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
3014 2008-10-24  Mark Probst  <mark.probst@gmail.com>
3016         * method-to-ir.c, mini.c: Special casing for the synchronized
3017         wrapper for the ldtoken+GetTypeFromHandle case.
3019 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
3021         * mini.c (mono_replace_ins): Move this to branch-opts.c.
3023         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
3024         created/split bblocks.
3026 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3028         * mini-ops.h: Add packed signed mul high.
3029         
3030         * cpu-x86.md: Same.
3032         * mini-x86.c (mono_arch_output_basic_block): Same.
3034         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
3036         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
3038 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3040         * basic-simd.cs: Tests for Vector16sb.
3042 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
3044         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
3046 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3048         * mini-ops.h: Add packed signed min, max and compare greater.
3049         
3050         * cpu-x86.md: Same.
3052         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
3053         saturation.
3055         * simd-methods.h: Add CompareGreaterThan.
3057         * simd-methods.h: Remove CompareEquals.
3059         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
3061         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
3063         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
3064         CompareEqual.
3066 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3068         * basic-simd.cs: Fix tests due to change in the API.
3070 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3072         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
3074 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3076         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
3078         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
3079         inst_offset as this has invalid values for LDADDR.
3081 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3083         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3085         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
3087 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3089         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
3090         for accessing field->data.
3092 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3094         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3096 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3098         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
3100         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
3102 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3104         * dominators.c (mono_compute_natural_loops): Allocate GList enties
3105         from the cfg mempool.
3107 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
3109         * basic-simd.cs: Tests for new methods in Vector8us.
3111 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
3113         * mini-ops.h: Add multiply and store high.
3114         
3115         * cpu-x86.md: Same.
3117         * mini-x86.c (mono_arch_output_basic_block): Same.
3119         * simd-methods.h: Same.
3121         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
3122         and CompareEqual.
3124 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3126         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
3127         mono_class_setup_vtable ().
3129         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
3130         mono_class_get_vtable_entry () for accessing klass->vtable.
3132         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
3134         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
3135         found.
3137         * method-to-ir.c (mono_save_token_info): Don't save references made from
3138         wrappers.
3140         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
3141         of generic instances.
3143         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
3145 2008-10-19  Mark Probst  <mark.probst@gmail.com>
3147         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
3148         OP_JMP depends on the method signature.  Calculate it properly.
3150 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3151         
3152         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
3153         called directly.
3155         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
3156         instances.
3157         (emit_extra_methods): Add another table mapping method indexes to 
3158         offsets in the extra_method_info table.
3160         * mini.h: Bump AOT file format version.
3161         
3162         * aot-runtime.c: Merge most of the code from mono_aot_get_method
3163         and mono_aot_get_method_from_token () into one function.
3165 2008-10-19  Mark Probst  <mark.probst@gmail.com>
3167         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
3168         separate counter.
3170 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
3172         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
3173         methods.
3175         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
3176         disable_aot.
3178         * mini.c (mono_patch_info_equal): Compare the generic context as well.
3180         * mini.h: Bump aot file format version.
3182         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
3183         AOT file can contain native code for methods which are not in the METHOD
3184         table. Generate code for non-sharable generic instances of generic methods
3185         found in the METHODSPEC table.
3186         
3187         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
3188         encoding generic type handles.
3190         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
3191         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
3193         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
3194         macros + MONO_ADD_INS.
3196         * mini.c (mono_jump_info_token_new2): New function which takes a generic
3197         context as well.
3199         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
3201         * mini.h: Bump aot file format version.
3203         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
3205 2008-10-17  Mark Probst  <mark.probst@gmail.com>
3207         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
3208         platforms, with definable stack alignment value.  Set to 16 now
3209         for all platforms.
3211         * mini.c, mini.h, driver.c: Command line option for disabling
3212         stack alignment.
3214 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3216         * basic-simd.cs: Tests for new methods in Vector4ui.
3218 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3220         * mini-ops.h: Add packed int shuffle.
3221         
3222         * cpu-x86.md: Same.
3224         * mini-x86.c (mono_arch_output_basic_block): Same.
3226         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
3227         extract mask, max, min, shuffle.
3229         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
3231 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3233         * basic-simd.cs: Tests for new methods in Vector8us.
3235 2008-10-17  Mark Probst  <mark.probst@gmail.com>
3237         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
3238         RuntimeTypeHandle, not a TypedReference.
3240 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
3242         * simd-intrinsics.c: remove relocations.
3244 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
3246         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
3247         optimizations from the x86 backend.
3249 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
3251         * simd-methods.h, simd-intrinsics.c: debloat method names and
3252         prepare for no relocations.
3254 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3256         * mini-ops.h: Add packed min/equal and sum of absolute differences.
3257         
3258         * cpu-x86.md: Same.
3260         * mini-x86.c (mono_arch_output_basic_block): Same.
3262         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
3263         extract mask, max, min and sum of absolute differences.
3265         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
3266         method name.
3268 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3270         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
3271         Renamed one test for consistency.
3273 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3275         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
3276         fix to the code that deal with other blocks.
3278 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3280         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
3282 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3284         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
3285         that deals with vreg interference. Explicitly check for OP_LDADDR to be
3286         able to process the source reg.
3288 2008-10-16  Martin Baulig  <martin@ximian.com>
3290         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
3292         * inssel.brg: Add `OP_HARD_NOP'.
3294         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
3296         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
3297         `OP_HARD_NOP' instruction when running inside the debugger.
3299         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
3300         `OP_HARD_NOP' instruction when running inside the debugger.
3302 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3304         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
3305         now works. The issue with the regalloc tripping up no longer
3306         happens.
3308         * simd-intrinsics.c (load_simd_vreg): Same.
3310 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3311         
3312         * basic-simd.cs: Tests for new Vector8ui methods.
3314 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3316         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
3317         only for type. This fixes crashes where MonoInst::klass is checked
3318         for ops of type != VTYPE or OBJ.
3320         * simd-intrinsics.c (load_simd_vreg): Same.
3322 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3324         * mini-ops.h: Add ops for packed shuffle/max/avg and
3325         extract mask.
3326         
3327         * cpu-x86.md: Same.
3329         * mini-x86.c (mono_arch_output_basic_block): Same.
3331         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
3332         extract mask.
3334         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
3335         to emit extract mask op.
3337         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
3338         to emit word shuffles.
3340 2008-10-15  Mark Probst  <mark.probst@gmail.com>
3342         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
3343         the largest alignment needed by a variable, but at least
3344         sizeof(gpointer).
3346 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3348         * basic-simd.cs: Tests for the fixes in the last commit.
3350 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3352         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
3353         no longer handles STACK_PTR input.
3355         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
3357         * simd-intrinsics.c (load_simd_vreg): New function that works like 
3358         get_simd_vreg   but handles STACK_PTR input.
3360         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
3361         as the input can be an arbitrary pointer.
3363         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
3364         LDADDR local optimization directly otherwise use a store op.
3366 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3368         * basic-simd.cs: Tests for dup low and dup high.
3370 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3372         * mini-ops.h: Add dup low and dup high ops.
3373         
3374         * cpu-x86.md: Same.
3376         * mini-x86.c (mono_arch_output_basic_block): Same.
3378         * simd-intrinsics.c (vector4f_intrinsics): Same.
3380 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3382         * basic-simd.cs: Tests for recently added functionality.
3384 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3386         * mini-ops.h: Add remaining sse1 fp ops.
3387         
3388         * cpu-x86.md: Add remaining sse1 fp ops.
3390         * mini-x86.c (mono_arch_output_basic_block): Same.
3392         * mini.h: Add enum for simd FP compare conditions.
3394         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
3396         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
3397         so the backed can generate the appropriate op.
3399 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3400         This patch squeese one more byte from the SimdIntrinsc struct.
3402         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
3403         a a shift amount intead of simply or'ing it.
3405         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
3407         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
3408         byte so we can have an aditional flags field without increasing struct size.
3410         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
3411         against the simd_supported_versions bitmask.
3413         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
3415 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
3417         * mini.c: remove rawbuffer code (the only use here is unsafe because
3418         it takes locks during signal handling and the kernel now provides much
3419         better info in proc/pid/smaps these days).
3421 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3423         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
3424         OP_X86_PUSH_OBJ. Fixes #434620.
3426         * objects.cs: Add a test.
3427         
3428 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
3430         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
3431         that the packuswb/packusdw don't work with unsigned numbers for what
3432         would be negative numbers in signed format.
3434         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
3435         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
3437         * mini-ops.h: Add doubleword forms of many ops and packing ones.
3439         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
3441         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
3443         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
3445         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
3446         add more ops.
3448         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
3449         version as the enum in mini.h.
3451         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
3452         for sse3 ops, check the simd_version field if present. This way the code
3453         works with all versions of sse.
3455 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3457         * simd-intrinsics.c: Fixed intrinsic name typo.
3459         * mini.h: Added missing simd exported function.
3461         * basic-simd.cs: Added tests for Vector4ui.
3462         Fixed broken test for Vector16b.
3464 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3466         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
3467         the max length to 64.
3469 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3471         * method-to-ir.c: Only do the fast virtual generic method call for
3472         non-wrapper methods.
3474         * mini.h, mini-trampolines.c: The new generic virtual remoting
3475         trampoline handles virtual method calls via the vtable (as done by
3476         the fast virtual generic method calls) to remoting proxies.
3478         * mini.c (mono_jit_create_remoting_trampoline): For generic
3479         methods reate a generic virtual remoting trampoline.
3481         * mini-amd64.h: Enable fast virtual generic method calls again.
3483 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3485         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
3486         restore registers when doing tail calls.
3488 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3490         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
3491         Vector4ui.
3493 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3495         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
3497 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3499         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
3501 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3503         * basic-simd.cs: Retrofit for API changes.
3505 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3507         * mini-ppc.c: Handle integer stack arguments for tail calls.
3509 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3511         * optflags-def.h: Removed sse3 optimization.
3513         * driver.c: Same.
3515         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
3516         sse3.
3518         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
3520         * mini.h: Added enumeration with simd versions.
3522         * simd-intrinsics.c (emit_intrinsics): Use the new static var
3523         for detecting SSE3.
3525         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
3527         * mini.c (mini_init): Call mono_simd_intrinsics_init.
3529 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3531         * basic-simd.cs: Added tests for Vector8u and Vector16u.
3533         * basic-simd.cs: Fixed test naming.
3535 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3537         * mini-ops.h: Added ops for packed and saturated math, shifts
3538         and packing/unpacking.
3540         * cpu-x86.md: Added descriptors for the above ops.
3542         * mini-x86.c: Added code to emmit the above ops.
3544         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
3546 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3548         * aot-compiler.c (compile_method): Enable AOT for generic code.
3550         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
3552 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
3554         * mini.c: add a workaround for a common screwup that ends up blamed
3555         to mono (other processes blocking signal delivery).
3557 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3559         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
3560         in the LDFLD/STFLD opcodes. Fixes #432673.
3562         * iltests.il.in: Add a new test.
3564 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
3566         * mini-arm.c: attach the thread in unmanaged->managed transitions
3567         using delegates (bug #433148).
3569 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
3571        * basic-simd.cs: Use new ShuffleSel constants.
3573 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
3575         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
3577         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
3578         only disable simd intrinsics if no sse2 is detected.
3580         * optflags-def.h: Added sse3.
3582         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
3583         is disabled.
3585 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3587         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
3588         when adding delegate-invoke wrappers.
3590 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3592         * Makefile.am: Reenable the simd tests.
3594 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3596         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
3597           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
3598           other vreg is allocated to that hreg.
3600         Contributed under MIT/X11 license.
3602 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3604         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
3605         yet checked in.
3607 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
3609         * basic-simd.cs: New test suite for SIMD intrinsics.
3611         * Makefile.am: Added new tests.
3613 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
3615         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
3617         * mini-ops.h: Same.
3619         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
3621         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
3622         using SSE2 aware opcodes.
3624         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
3625         is enabled, this code path is only reachable if conversion ops are emmited after
3626         mono_method_to_ir.
3628         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
3630         This optimization saves 6 bytes per conversion against the old version.
3632 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3634         * aot-compiler.c (compile_method): Don't skip methods referencing 
3635         generic methods without a corresponding entry in token_info_hash, since
3636         encode_method_ref () can handle all generic methods now.
3638         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
3639         generic context is set.
3640         
3641         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
3642         generic sharing of LDTOKEN.
3644 2008-10-06  Mark Probst  <mark.probst@gmail.com>
3646         * mini-amd64.h: Temporarily disabled fast virtual generic method
3647         calls because it breaks the System.Runtime.Remoting tests.
3649 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3651         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
3653         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
3654         so inlining actually works.
3655         (check_inline_caller_method_name_limit): Ditto.
3657 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
3659         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
3660         64 bit safety (from Olaf Hering and Andreas Färber).
3662 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3663         
3664         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
3665         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
3666         unused virtual call support code.
3668         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
3669         
3670         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
3671         which can't use aot trampolines.
3672         (decode_patch): Don't create aot trampolines for methods which can't use
3673         them.
3675         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
3676         use aot trampolines.
3678         * mini.h: Bump AOT image format version.
3679         
3680 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
3682         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
3683         to save_token_info () since cmethod is inflated for constrained calls.
3685         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
3687 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3689         * Makefile.am: Add build rules for ppc64.
3690         This avoids the build failing at pedump with unresolved symbols
3691         due to lack of arch_sources. Instead it will now fail earlier
3692         due to lack of cpu-ppc64.md.
3694         Contributed under MIT/X11 license.
3696 2008-10-04  Mark Probst  <mark.probst@gmail.com>
3698         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
3699         tail calls.
3701         * iltests.il.in: Add test case for tail call with many arguments.
3703 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3705         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
3706         to the fast virtual generic method code until the aot case is fixed.
3708 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3710         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
3712 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3714         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
3715         thunks.
3717 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3718         
3719         * simd-intrinsics.c: Forgot to add this one.
3721         * mini-codegen.c: Fix macro in case SIMD is not supported.
3723 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3724         
3725         This patch land initial JIT support for simd intrinsics.
3727         * mini-x86.h: Added new define to make --enable_minimal work on x86.
3729         * Makefile.am: Added simd-intrinsics.c
3731         * simd-intrinsics.c: New file with simd instrinsic related
3732         code.
3734         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
3736         * cpu-x86.md: Add simd related instructions.
3738         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
3740         * driver.c: Added two new --regression variants.
3742         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
3744         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
3746         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
3747         extract some complicated logic to helper functions.
3749         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
3751         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
3753         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
3754         the specialized simplification pass.
3756         * method-to-ir.c (mono_spill_global_vars): Use new macro.
3758         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
3760         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
3761         table.
3763         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
3764         if MONO_ARCH_NEED_SIMD_BANK is defined.
3766         * mini-ops.h: Added the new simd ops.
3768         * mini-x86.c: Added mono_arch_xregname.
3770         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
3772         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
3774         * mini-x86.h: Define simd related MONO_ARCH macros.
3776         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
3778         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
3780         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
3781         MONO_CLASS_IS_SIMD to deal with simd related IR.
3783         * mini.h (MonoInst): Added spill_var to the backend union.
3785         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
3787         * mini.h: Added forward declarations of the new simd fuctions.
3789         * optflags-def.h: Added new optimization names SIMD.
3791         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
3793         * regalloc.h: Added support for working with 3 register banks.
3795         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
3797         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
3799 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
3801         * mini-exceptions.c: remove 64 bit related ifdef clutter.
3803 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3805         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
3806         instead of one on 64 bit systems.
3808         * method-to-ir.c: Remove unused includes.
3810 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
3812         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
3813         cfg->used_int_regs, since the two are different on arm.
3815 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3817         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
3818         mono_method_get_vtable_index() to get the vtable index.
3820 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3822         * method-to-ir.c (mono_method_to_ir2): Don't create native
3823         wrappers for array methods, because they're never called (and if
3824         they were called they wouldn't work).
3826 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3828         * method-to-ir.c (mono_method_to_ir2): Array methods are
3829         special-cased and must not be invoked indirectly via the (M)RGCTX
3830         when generic sharing is turned on.  Fixes #431413.
3832 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3834         * method-to-ir.c: When generic sharing is active, call
3835         non-interface virtual generic methods via the standard trampoline.
3837         * mini-trampolines.c: Handle virtual generic shared methods.
3839         * mini.h, mini-x86.c, mini-x86.h: New argument for
3840         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
3841         method thunks and which is the trampoline to call if the lookup
3842         fails.  Enable the virtual generic method thunk for x86.
3844         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
3845         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
3846         argument but assert that it's NULL, because these archs don't yet
3847         implement the virtual generic method thunk.  Changes in the IMT
3848         thunk data structures.
3850 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3852         * aot-compiler.c (emit_globals): Avoid invalid characters in
3853         the static linking symbol.
3855         * objects.cs: Add a test for the range check optimization. Fix warnings.
3857         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
3858         optimization from the current JIT.
3860         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
3861         later in decompose_array_access_opts () to allow more optimizations.
3863         * method-to-ir.c (mono_handle_soft_float): Rename this to 
3864         mono_decompose_soft_float () for consistency.
3866         * mini-ops.h: Fix arguments of OP_STRLEN.
3868         * method-to-ir.c (save_cast_details): Extract the cast details saving code
3869         into a separate function.
3870         (reset_cast_details): Ditto.
3871         (handle_unbox): Save cast details. Fixes #431254.
3873         * method-to-ir.c: Remove some obsolete FIXMEs.
3875 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3877         * ir-emit.h (alloc_dreg): Write a warning before crashing.
3879 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3881         * mini-codegen.c: More work on macros to make them
3882         ready for multiple regbanks.
3884 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3886         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
3888         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
3890 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3892         * mini-codegen.c (mono_spillvar_offset): Proper support for
3893         multiple regbanks.
3895 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
3897         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
3898         the stack overflow changes.
3900 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3902         * mini-codegen.c: Make all bank macros depend on reg_bank.
3904         * mini-codegen.c (mono_local_regalloc): Make free mask
3905         initialization regbank aware.
3907 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3909         * mini-codegen.c (mono_local_regalloc): Extract callee
3910         mask selection to a function and make it regbank aware.
3912 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3914         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
3915         code to deal with many regbanks.
3917 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
3919         * mini-codegen.c: More fp->regbank changes.
3921 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
3923         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
3924         of a hardcoded constant.
3926 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
3928         * method-to-ir.c (type_from_stack_type): Fix typo.
3930 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
3932         * mini-ia64.c (emit_move_return_value): Convert float return values to
3933         double.
3935         * objects.cs: Add a new test.
3936         
3937         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
3938         VARARG methods to fix an assert later.
3940         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
3941         end so it at least compiles.
3943 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
3945         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
3947 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
3949         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
3950         optimization to a new function (emit_optimized_ldloca_ir) and enable
3951         it for both ldloca and ldloca_s.
3953 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
3955         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
3956         gshared CASTCLASS code.
3958         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
3959         amd64, where the libc stack unwinder encounters stack frames referring to
3960         native code in unmapped memory.
3962         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
3963         sharing.
3965         * generics.cs: Add new test.
3967 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
3969         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
3970         add a check that one of the ARM_FPU_ constants is defined.
3972         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
3973         
3974         * mini-exceptions.c: Fix build on non-altstack platforms.
3976         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
3977         sharing of vtypes.
3979         * ir-emit.h: Add a comment to NEW_PCONST.
3981         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
3983         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
3985         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
3986         after the changes to MonoJitDomainInfo.
3988 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3990         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
3992 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3994         * mini-ppc.c: Compiler warning fixes.
3996 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3998         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
3999         for pinvokes.
4001 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4003         * exceptions-ppc.c, mini-ppc.h: Compile
4004         mono_arch_handle_altstack_exception() on Darwin, too.
4006 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4008         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
4009         work on archs which don't have generic sharing implemented, only
4010         without the vtable_arg.
4012 2008-09-26  Mark Probst  <mark.probst@gmail.com>
4014         * mini.c: Added comment explaining why delegate ctor icall
4015         wrappers are compiled.
4017 2008-09-26  Mark Probst  <mark.probst@gmail.com>
4019         * mini.c: Don't produce trampolines to delegate ctor icall
4020         wrappers but compile them upfront.
4022 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
4024         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
4025         runtime-set function when going back to managed code. Currently this
4026         is used to set back the protection on the soft ovf pages and/or to
4027         throw the stack overflow exception that happened in unmanaged code.
4029 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
4031         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
4032         runtime-set function when going back to managed code. Currently this
4033         is used to set back the protection on the soft ovf pages and/or to
4034         throw the stack overflow exception that happened in unmanaged code.
4036 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
4038         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
4039         the support code for restoring stack protection after stack overflows
4040         that happen in unmanaged code. Don't set the exec permission on the
4041         soft overflow area.
4043 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
4045         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
4046         delegate->method_ptr is set. Fixes #428054.
4048 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
4050         * tests.cs: Rename to ratests.cs.
4052         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
4053         emit_get_rgctx_... functions.
4055 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4057         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
4059 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4061         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
4062         before asserting that method is sharable.
4064 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4066         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
4067         whether method needs a static RGCTX wrapper used instead of
4068         complex conditions.
4070         * generic-sharing.c, mini.h: A few functions moved to
4071         metadata/generic-sharing.c.
4073 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4075         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
4076         Generic code sharing for value types, which essentially means
4077         treating value type methods like static methods.  The RGCTX is
4078         passed in the same way.
4080 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
4082         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
4083         opcode when creating multi-dimensional arrays of open types.
4085         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
4086         open generic types.
4088         * generics.cs: Add a test.
4090         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
4092 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4094         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
4096         * mini.c (mini_method_compile): Set it when running under the debugger. 
4098         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
4099         vreg optimization if the flag is set.
4101         * driver.c (mono_main): Add --attach= option to pass options to
4102         the attach agent.
4104         * mini.c (sigquit_signal_handler): Start the attach agent.
4106         * ssapre.c: Disable this to save space since it is not yet ported to
4107         linear IR.
4109         * regalloc2.c: Disable this to save space.
4111         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
4113 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
4115         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
4116         the -v option useful again.
4118 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4120         * mini-amd64.c (mono_arch_output_basic_block): Add support for
4121         --break-at-bb.
4123         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
4124         arrays of arrays. Fixes #428406.
4126         * method-to-ir.c (mini_emit_castclass): Ditto.
4128         * objects.cs: Add new test.
4129         
4130 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
4132         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
4133         was wrong at it choked against target_type_is_incompatible for byref types.
4135 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
4137         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
4138         places.
4140 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
4142         * mini-exceptions.c: update a few more exceptions-related counters.
4144 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
4146         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
4147         new functions to allocate from persistent mempools.
4149 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
4151         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
4152         multiple register banks in the future.
4154         * mini-codegen.c (mono_local_regalloc): Fix a warning.
4156 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
4158         * mini.c (type_to_eval_stack_type): Remove duplicated function.
4160         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
4162         * mini.h: Export type_to_eval_stack_type.
4164         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
4165         is only ins->klass of byref types.
4167 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
4169         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
4170         (mini_emit_memcpy2): Ditto.
4172         * mini-amd64.c: Fix a warning.
4174 2008-09-21  Mark Probst  <mark.probst@gmail.com>
4176         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
4177         linking.
4179 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
4181         * method-to-ir.c: Extract stloc micro-optimization to a
4182         function and apply it to all cases.
4184 2008-09-19  Mark Probst  <mark.probst@gmail.com>
4186         * method-to-ir.c: Don't fail generic code sharing in cases we
4187         already support.
4189 2008-09-18  Mark Probst  <mark.probst@gmail.com>
4191         * mini-ppc.c: Handle structs in tailcalls on Darwin.
4193 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
4195         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
4196         implementation.
4198 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
4200         * trace.c: make tracing more useful and correct, with per-thread
4201         id and indent info.
4203 2008-09-15  Mark Probst  <mark.probst@gmail.com>
4205         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
4206         doing a method call and the argument is an R4.
4208 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
4210         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
4211         generic methods.
4213 2008-09-13  Mark Probst  <mark.probst@gmail.com>
4215         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
4217 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
4219         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
4220         (MONO_JUMP_TABLE_FROM_INS): Ditto.
4222 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
4224         * driver.c: Add a --agent argument (not supported yet) to load managed
4225         agent assemblies before loading the main assembly, similarly to how the
4226         Java VM handles agents.
4228 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4230         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
4231         function to do stack layout of local variables.
4233 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4235         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
4236         calculation.
4238 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
4240         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
4241         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
4242         JIT if DISABLE_JIT is defined.
4244         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
4245         defined.
4247 2008-09-10  Mark Probst  <mark.probst@gmail.com>
4249         * iltests.il.in: Disable the fconv test on PPC (the result is
4250         undefined according to ECMA).
4252 2008-09-10  Mark Probst  <mark.probst@gmail.com>
4254         * iltests.il.in: Enable tail call tests for PPC.
4256         * mini.h: Add variable for storing incoming valuetype argument
4257         addresses for tail calls.
4259         * mini-ppc.c: Implement valuetype arguments and return values for
4260         tailcalls on Linux.
4262 2008-09-09  Mark Probst  <mark.probst@gmail.com>
4264         * mini-ppc.c: Partially implement tail calls (struct arguments and
4265         return values not supported).
4267         * method-to-ir.c: Enable tail calls on PPC.
4269 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
4271         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
4272         runtime-invoke wrappers to work around the problem of them getting
4273         assigned to a random class.
4275         * aot-runtime.c (mono_aot_get_method): Ditto.
4276         
4277 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
4279         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
4280         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
4282 2008-09-07  Mark Probst  <mark.probst@gmail.com>
4284         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
4285         until they're implemented properly.
4287         * exceptions-ppc.c: Use arch-independent exception-handling code
4288         instead of custom one.
4290         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
4291         for Linear IR.
4293         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
4295         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
4296         applies when __powerpc__ is defined.
4298 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
4300         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
4301         methods to their code to avoid computing the full name of wrappers and
4302         doing a lookup in a string hash table.
4304 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
4306         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
4307         we identify bblocks before method_to_ir () is ran.
4309         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
4310         Also avoid optimizing branches pointing to themselves.
4312         * mini.c (mini_method_compile): Ditto. Fixes #422947.
4314 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
4316         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
4318 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
4320         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
4321         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
4322         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
4323         'buf'.
4325         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
4326         jumped to the same entry in plt_jump_table.
4328 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4330         * method-to-ir.c (initialize_array_data): Handle field with RVA from
4331         dynamic images.
4333 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
4335         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
4336         other assignment can be if converted. Saves 1.5% on corlib size and fixes
4337         #421807.
4339 2008-08-29  Geoff Norton  <gnorton@novell.com>
4341         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
4342         segment, and doesn't properly handle .space as .text.  Fixes
4343         AOT Mach/ARM
4345 2008-08-29  Geoff Norton  <gnorton@novell.com>
4347         * mini.c: Disable the mach exception handler when running on 
4348         ARM
4350 2008-08-29  Geoff Norton  <gnorton@novell.com>
4352         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
4353         globals on Darwin/ARM
4355 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
4357         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
4358         since too many things depend on it. Instead, call 
4359         mono_runtime_set_no_exec ().
4360         
4361         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
4362         the new JIT.
4364         * aot-compiler.c: Add an 'asm-only' AOT option.
4366         * mini.c: Avoid initializing the runtime when doing AOT compilation.
4367                 
4368         * aot-compiler.c (compile_method): Disable gshared support for now as it
4369         doesn't yet work.
4371 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
4373         * mini-amd64.h : Fix a compiler warning.
4375         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
4376           Changed to use a callback function to retrieve the unwind info.
4377           This avoids problems observed when code blocks were removed by
4378           unloading an app domain.
4380         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
4381           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
4382           to work properly.
4384         Contributed under MIT/X11 license.
4386 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
4388         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
4389           case to keep the stack aligned to 8.
4391         Contributed under MIT/X11 license.
4393 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
4395         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
4396         avoid repeated linear searches.
4398 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
4400         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
4401         methods it can't handle.
4402         
4403         * aot-compiler.c (add_method): Avoid adding a method twice.
4404         (add_wrappers): Add runtime invoke wrappers for all methods.
4406         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
4407         function to create an aot-compatible version of this trampoline.
4409         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
4411 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4413         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
4415         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
4416         with a generic sharing failure.
4418         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
4420         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
4421         CEE_RETHROW. Fixes #419634.
4423         * mini.c (mono_method_to_ir): Ditto.
4425         * exceptions.cs: Add a new test.
4426         
4427         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
4428         to mono_type_stack_size_internal () since some callers might not pass in
4429         an rgctx.
4431         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
4432         instrument_prolog. Fixes #419878.
4434         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
4435         doubles in soft float mode volatile.
4437 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
4439         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
4441         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
4442         to handle soft float correctly.
4444         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
4445         the fast path.
4447         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
4449         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
4450         to sp, since the generics catch code requires it.
4452         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
4453         copying.
4455         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
4456         mono_arch_emit_imt_argument ().
4458         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
4460         * mini-arm.c tramp-arm.c: Generic sharing updates.
4462 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
4464         * mini-arm.c: Fix the arm build.
4466         * generic-sharing.c (mini_type_get_underlying_type): New helper function
4467         handling enums, generic instances and generic sharing.
4468         (mini_type_stack_size_full): Ditto.
4470         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
4471         
4472         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
4474         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
4476         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
4477         trampolines.
4479         * mini-arm.c: Various small generic sharing changes.
4481         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
4482         this for x86.
4483         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
4484         custom code.
4486         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
4487         helper function to return a generic class init trampoline.
4489         * method-to-ir.c mini.c: Use it.
4490         
4491         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
4492         arch-specfic function to return a generic class init trampoline.
4494         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
4495         the GENERIC_CLASS_INIT custom code.
4497         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
4498         a fatal error, not a sharing failure.
4500         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
4501         needed.
4503         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
4504         trampoline argument from MONO_ARCH_VTABLE_REG.
4506         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4507         order of the arguments to the C trampoline: pass 'slot' as the trampoline
4508         argument, and pass the vtable in VTABLE_REG.
4510         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4511         order of the arguments to the C trampoline: pass 'slot' as the trampoline
4512         argument, and pass the vtable in VTABLE_REG.
4513         (mono_arch_create_trampoline_code_full): Remove some special casing for
4514         the rgctx fetch trampoline.
4516         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
4517         Fixes #419273.
4519         * iltests.il: Add a test for it.
4521 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
4523         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
4525         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
4526         no longer needed.
4528         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
4529         use mono_jit_info_table_find () to avoid recursion.
4530         (mono_delegate_trampoline): Add a sync wrapper here.
4532         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
4533         here.
4535         * mini.c (mono_method_to_ir): Ditto.
4536         
4537         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
4538         add_sync_wrapper argument. Don't add a sync wrapper here.
4539         (mono_create_jump_trampoline): Don't add a sync wrapper here.
4541         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
4542         
4543 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4545         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
4546           of nonvolatile registers back from MonoContext to CONTEXT.
4548         Contributed under MIT/X11 license.
4550 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4552         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
4553           arguments on Winx64 there are only 4 argument registers.  For this
4554           logic to work the last argument must be pulled from the stack.  
4556         Contributed under MIT/X11 license.
4558 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4560         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4562         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
4563         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
4564         encode/decode_method_ref ().
4566         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
4568         * aot-runtime.c (decode_patch): Ditto.  
4570         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
4571         MONO_PATCH_INFO_METHOD.
4573         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
4574         MonoGenericJitInfo.
4576         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
4577         MonoGenericJitInfo.
4579         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
4581         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
4582         one from the caller.
4584         * aot-runtime.c (decode_generic_inst): New function to decode and
4585         return a interned generic inst.
4586         (decode_klass_ref): Use it.
4587         (decode_method_ref): Ditto.
4589         * aot-compiler.c (emit_exception_debug_info): Save 
4590         jinfo->has_generic_jit_info too.
4592 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
4594         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
4596         * iltests.il.in: Add a test for fconv_to_i.
4598         * liveness.c: Disable the liveness2 pass for now to save space.
4600         * regalloc2.c: Include mempool-internals.h to fix warnings.
4602         * aot-compiler.c (encode_method_ref): Encode the context of generic
4603         instance methods.
4605         * aot-runtime.c (decode_method_ref): Inflate generic methods using
4606         the context saved in the aot file.
4608         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4610         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4612         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
4613         volatile so they won't be optimized away.
4615 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4617         * ssa.c:
4618         * ssa2.c:
4619         * mini.c:
4620         * regalloc2.c:
4621         * dominators.c: Remove duplicated functions that now are in
4622         mempool-internals.h.
4624 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
4626         * aot-compiler.c: Fix warnings.
4628         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
4630         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
4632         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
4633         as the patch type.
4635         * mini.c (mono_resolve_patch_target): Ditto.
4636         
4637         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
4638         (encode_klass_ref): Add support for encoding VARs/MVARs.
4640         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
4642         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
4643         the handling of the got entries into a separate 'decode_got_entry' function.
4644         Add support for RGCTX_FETCH.
4646         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
4647         clobbered by the trampoline code.
4649         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
4650         not clobbered by the indirect calling code.
4652 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
4654         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
4655         to fix the build.
4657 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4659         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
4660         signature using the compilation mempool otherwise we would leak it.
4662 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
4664         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
4665         mono_emit_abs_call ().
4667         * patch-info.h: Add GENERIC_CLASS_INIT.
4669         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
4671         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
4672         as their target as a near call.
4674         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
4675         ABS handling code.
4676         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
4678         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
4679         call to a runtime function described by a patch.
4681         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
4682         mono_emit_abs_call, this has the advantage that the ABS handling code in
4683         mono_codegen () can handle them both, and can handle other stuff in the
4684         future without additional code.
4686         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
4687         entry.
4688         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
4689         abs addresses.
4691         * mini.h: Add missing bblock related prototypes.
4693         * mini.h (MonoCompile): Remove unused reverse_inst_list and
4694         reverse_inst_list_len fields.
4696         * mini.c: Refactor this file a bit by moving branch optimizations to 
4697         branch-opts.c.
4699         * method-to-ir.c: Merge generic sharing changes missed earlier.
4701         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
4703         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
4704         shared patches. Process METHODCONST as a shared patch.
4706         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
4707         as it crashes on the 2.0 mscorlib.
4709         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
4710         to cause crashes.
4711         
4712         * aot-compiler.c: Use is_plt_patch () in a few additional places.
4713         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
4714         by IMT.
4716         * aot-compiler.c: Reorganize the got handling code to be a bit more
4717         understandable.
4719 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
4721         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
4722         mono_patch_info_equals/hash, and use it to massively simplify
4723         get_plt_index ().
4725         * mini.c (mono_patch_info_hash): Simplify this and add support for
4726         more patch types.
4728         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
4730         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
4731         handling code, since an offset is not enough to identify a trampoline.
4733         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
4735 2008-08-17  Mark Probst  <mark.probst@gmail.com>
4737         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
4739         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
4741         * mini-ops.h: Argument and result types for OVF_CARRY ops.
4743         * decompose.c: PPC decompositions for various ops.
4745         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
4747 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
4749         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
4750         call the generic trampoline code using a call, instead of a jump, to
4751         remove some special casing from the generic trampoline code.
4753         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
4754         (mono_codegen): Ditto.
4756         * aot-compiler.c aot-runtime.c: Ditto.
4758         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
4760         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
4761         helper function to find the offset corresponding to a lazy fetch trampoline.
4763         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
4764         when doing generic sharing.
4766         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
4767         places.
4768         
4769         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
4770         mini-trampolines.c to be with the other trampoline creation functions.
4772         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
4773         as it is equal to method->signature in most cases, add a 
4774         mono_emit_method_call_full variant which takes a signature and an imt
4775         argument as well.
4777 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4779         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
4780         to this function, since it could be computed easily from the method 
4781         argument.
4782         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
4783         more.
4785         * method-to-ir.c mini.c: Remove references to 
4786         compile_generic_method_wo_context.
4788         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
4789         generic method calls.
4790         
4791         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
4792         dimensional non-szarrays.
4794         * mini.c (mini_init): Register mono_array_new_1.
4796         * jit-icalls.c (mono_array_new_1): New jit icall.
4798         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
4799         pointing to the method.
4801         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
4802         method addresses belonging to METHOD_JUMP patches in the 
4803         jump_target_got_slot_hash.
4804         (mono_aot_load_method): Ditto.
4806         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
4807         METHOD_JUMP patches.
4809         * mini.c (mini_create_jit_domain_info): New helper function which 
4810         initializes/frees domain->runtime_info.
4811         (mini_free_jit_domain_info): Ditto.
4812         (mini_init): Install the domain hook functions with the runtime.
4814         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
4815         information maintained by the JIT.
4817         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
4818         insertion into jump_table_hash into mono_codegen (), also implement proper
4819         locking.
4821         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
4822         tail calls, it is already done by the aot code.
4823         
4824         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
4825         mechanism on amd64.
4827         * iltests.il.in: Make the jmp test a bit more complex.
4829         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
4830         generic instances which doesn't have a token.
4832         * aot-runtime.c (decode_method_ref): Ditto.
4833         
4834         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
4835         can handle this case now.
4836         (handle_box): Ditto.
4838 2008-08-15  Geoff Norton  <gnorton@novell.com>
4840         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
4841         debugging check.
4843 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4845         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
4846         calling generic methods.
4848         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
4850         * aot-runtime.c (decode_patch_info): Ditto.
4852         * mini.c (mono_resolve_patch_target): Ditto.
4853         
4854         * patch-info.h: Add METHOD_RGCTX.
4856         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
4858 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
4860         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
4861         arguments in registers.
4863         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
4864         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
4866         * mini.c (mini_method_compile): Abort aot compilation for generic
4867         methods if generic sharing is disabled.
4868         
4869         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
4870         an mrgctx.
4872         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
4873         requiring an mrgctx.
4875         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
4876         store instructions when converting a vcall to a normal call.
4878         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
4879         mono_arch_find_jit_info.
4881 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
4883         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
4884         avoid calling mono_method_full_name () for every method even if the
4885         env var is not set.
4886         (check_inline_caller_method_name_limit): Ditto.
4888 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4890         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
4891         assemblies in one run.
4893         * aot-compiler.c (mono_compile_assembly): Only print out a count of
4894         skipped methods if it is not 0.
4896         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
4898 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
4900         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
4901           MONO_ARCH_HAVE_UNWIND_TABLE.
4903         Contributed under MIT/X11 license.
4905 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
4907         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
4908           from default optimizaton list on Winx64.
4910         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
4912         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
4913           the LMF from the MonoJitTlsData structure.
4915         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
4917         Contributed under MIT/X11 license.
4919 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4921         * mini.c (sigsegv_signal_handler): Fix the build.
4923         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
4924         assembly->aot_module.
4926         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
4927         hash table. This simplifies and speeds up a lot of code, and fixes support
4928         for .netmodules.
4930         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
4931         with the runtime.
4933         * mini-exceptions.c: Ditto.
4934         
4935         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
4936         'native_offset' argument, since these are computed in the 
4937         mono_find_jit_info () function.
4939         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
4940         is used by exceptions-ppc.c.
4942         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
4943         mono_arch_find_jit_info ().
4944         
4945         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
4946         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
4947         generic code in mini-exceptions.c.
4949 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
4951         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
4953         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
4954         
4955         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
4956         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
4957         called while holding the loader lock. Fixes #415608.
4958         (mono_aot_get_method_from_token_inner): Ditto.
4960 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
4962         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
4963         to reduce differences between this and the generic implementation in
4964         mini-exceptions.c.
4965         (ves_icall_get_frame_info): Ditto.
4967         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
4969         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
4970         longer neccesarry.
4972         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
4973         mono_arch_get_call_filter () and make it non-static, for consistency with the
4974         other architectures.
4976 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
4978         * mini.c:
4979         * local-propagation.c:
4980         * mini-x86.c: Correct the name of arch defines.
4982 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
4984         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
4985         NO_EMULATE_LONG_SHIFT_OPS define.
4987 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4989         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
4990         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
4992         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
4993         MACH fixes. Merged from the 2.0 branch.
4995         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
4997         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
4998         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
5000         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
5002         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
5003         mono_marshal_get_native_wrapper () signature changes.
5005 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
5007         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
5008         conversion bug under arm.
5010 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5012         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
5014         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
5015         with overflow checking.
5017 2008-08-05  Marek Habersack  <mhabersack@novell.com>
5019         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
5020         to the genmdesc.pl file
5022 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
5024         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
5025         arg_array in the soft-float versions of the LOAD/STORE macros.
5027         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
5028         implementation.
5030         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
5032 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
5034         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
5035         a float HFA. Fixes #413621.
5037 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
5039         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
5040         frame_size to args_size. Fixes build.
5042 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
5044         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
5045         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
5047         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
5048         the stack are not unaligned. Fixes #413247.
5049         
5050 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
5052         * mini.c: update jitted methods performance counters.
5054 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
5056         * mini-exceptions.c: increase the exceptions thrown performance
5057         counter in mono_handle_exception ().
5059 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
5061         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
5062         can work with netmodules.
5064 2008-07-28  Geoff Norton  <gnorton@novell.com>
5066         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
5067         regression tests.
5069 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
5071         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
5072         correct place.
5074 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
5076         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5077           The float param registers and other param registers must be the 
5078           same index on Windows x64.
5080         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
5081           ArgValuetypeAddrInIReg argument case.  Setting the argument
5082           op to OP_VTARG_ADDR (OP_REGOFFSET)).
5084         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
5085           variable computed above as the copy length for arguments of storage
5086           type ArgValuetypeAddrInIReg.
5088         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
5089           ArgValuetypeAddrInIReg argument case.  This case will rely on
5090           mono_arch_emit_outarg_vt to emit the correct code later in the process.
5092         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
5093           a 32 byte stack allocation for all calls.  We will omit the adjustment for
5094           jump and tail call instructoins as they do not follow the typical call behavior.
5096         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
5097           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
5098           local variable and pass the local variable by reference to the called method.
5100         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
5101           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
5102           of a struct is passed in a register it must be saved with the other
5103           volatile argument on the stack.
5105         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
5106           frame pointer the stack adjustment value must be saved to the unwind 
5107           info structure.
5109         Contributed under MIT/X11 license.
5111 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
5113         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
5114         which got lost in the merge.
5116 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
5118         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
5119         build.
5121         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
5122         
5123         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
5124         icalls, since they won't be patched.
5126         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
5127         different code sequence when running under valgrind to prevent some valgrind
5128         errors.
5130         * iltests.il.in: Add new regression test.
5132         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
5133         end with a throw.
5135         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
5136         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
5138         * iltests.il.in: Add new test.
5140         * aot-compiler.c: Fix some warnings.
5142         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
5143         Fixes #412494.
5145 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
5147         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
5148         (mini_usage_jitdeveloper): Add a missing --wapi option.
5150 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5152         * mini-codegen.c: Simplify the is_fp macros.
5153         (free_up_ireg): Remove, use free_up_reg instead.
5154         (free_up_reg): Fix the fp case.
5156 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
5158         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
5159         lowered earlier.
5161         * exceptions-x86.c: Merge some changes which seemed to have got lost
5162         in the linear-ir merge.
5164         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
5166         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
5167         long vreg volatile even if the variable was already created.
5169         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
5170         volatile variables.
5172 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
5174         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
5176         * mini.c (mono_jit_compile_method_inner): Add support for 
5177         MONO_EXCEPTION_BAD_IMAGE.
5179         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
5180         mini_method_get_context () returns NULL. Fixes #356531.
5182         * mini.c (mono_method_to_ir): Ditto.
5183         
5184         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
5185         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
5187 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5189         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
5190         in the LDFTN implementation.
5192 2008-07-25  Mark Probst  <mark.probst@gmail.com>
5194         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
5195         code, patch calls to icalls, too, even if they're not in the
5196         shared generic code hash.  Fixes #411962.
5198 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5200         * cpu-x86.md: Increase the length of the fcall opcodes.
5202         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
5203         calls returning floats.
5205         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
5206         on NEWARR.
5207         
5208         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
5209         missed earlier.
5211         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
5212         into the domain->method_code_hash.
5214         * aot-compiler.c: Fix win32 build.
5216         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
5217         
5218         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
5219         gshared NEWARR implementation.
5221         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
5223         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
5224         can be used outside of method_to_ir.
5226         * mini.h (MonoCompile): Add arg_types field.
5228         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
5229         
5230         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
5231         the values of the local arg_array and param_types array.
5233 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
5235         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
5236         got accesses might only get generated later when NEWOBJ is decomposed.
5237         
5238         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
5239         looking up the native code of the target method when a delegate is called
5240         for the first time.
5242         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
5243         optimization.
5245         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
5247         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
5248         AOT work on platforms without a working dlsym implementation.
5250         * mini.h: Bump AOT image format version.
5251         
5252 2008-07-24  Mark Probst  <mark.probst@gmail.com>
5254         * mini-exceptions.c: Free a MonoType with
5255         mono_metadata_free_type() instead of g_free().
5257         * aot-runtime.c: Free a MonoType.
5259 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
5261         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
5262         optimization.
5264         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
5265         fp stack on x86.
5267 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
5268         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
5269         profiler hook.
5271 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
5273         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
5274         NEWOBJ calls on valuetypes.
5276         * iltests.il.in: Add new test.
5278         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
5280 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
5282         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
5283         is no longer needed.
5285         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
5286         non register sized integer arguments.
5287         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
5288         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
5289         emit_memcpy2 ().
5291         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
5292         CEE_MONO_RETOBJ.
5293         
5294         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
5295         two a binop with different sized arguments is emitted.
5297         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
5298         instruction in the ins==NULL case.
5300 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
5302         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
5304         * mini-x86.c: Fix osx build.
5306         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
5307         opcodes as well.
5309         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
5310         instruction for non int sized variables.
5312         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
5313         implementation.
5315 2008-07-23  Robert Jordan  <robertj@gmx.net>
5317         * method-to-ir.c: Fix MSVC build.
5319 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
5321         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
5322         a non int sized type, widen it to an int since newer versions of gcc seem to
5323         generate code which needs this.
5325         * ssa2.c abcremoval2.c: Fix warnings.
5327         * *: Merge the Linear IR branch.
5329         The original branch is at trunk/branches/vargaz/mini-linear-il, and
5330         the ChangeLog file there describes all the changes done over the years. 
5331         Further documentation can be found at www.mono-project.com/Linear_IL.
5333 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
5335         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5336           The float param registers and other param registers must be the 
5337           same index on Windows x64.
5339         Contributed under MIT/X11 license.
5341 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
5343         * mini.c: Make the previous fix GC safe.
5345 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
5347         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
5349 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
5351         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
5352           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
5353           ArgValuetypeAddrInIReg instead.
5355         Contributed under MIT/X11 license.
5357 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
5359         * mini-codegen.c (get_register_spilling): Fix a warning.
5361 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
5363         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
5364         for types which the initialization fails. Raises the provided exception
5365         at the right stop after cleanup.
5367 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
5369         * aot-compiler.c: Free most of the memory allocated during compilation.
5371         * mini.c (mini_parse_debug_options): Fix a leak.
5372         
5373         * mini.c (mini_method_compile): Don't add the method to the jit info tables
5374         during aot compilation.
5376 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
5378         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
5379         it has too much register pressure.
5381 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
5383         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
5385 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
5387         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5388         on x86.
5390         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5391         on amd64 similar to the way it is done on arm.
5393         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5395         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
5396         consistency, normalize error messages, avoid loading aot-only modules in
5397         normal mode.
5399         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
5400         for consistency.
5402         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
5404 2008-07-11  Martin Baulig  <martin@ximian.com>
5406         * debug-debugger.h
5407         (MonoDebuggerInfo): Add `interruption_request'.
5409 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
5411         * aot-compiler.c (emit_plt): Remove some dead code.
5413         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
5415         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
5416         return the plt info offset belonging to a given plt entry.
5418         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
5419         mono_aot_get_plt_info_offset.
5420         
5421         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
5422         similar to the amd64 code by makeing jumps through a separate jump table 
5423         instead of embedding the jump addresses into the code.
5425 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
5427         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
5428         method.
5430 2008-07-10  Martin Baulig  <martin@ximian.com>
5432         * mini.c (mini_method_compile): Disable generics sharing when
5433         running in the debugger.
5435 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
5437         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
5439         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
5440         the local register allocator from running out of registers on x86 when 
5441         using aot.
5443 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
5445         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
5446         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
5447         C4146.
5449         Contributed under MIT/X11 license.
5451 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
5453         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
5454         speed up the assembler.
5456 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
5458         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
5459         support.
5461         * mini.c: Move the soft float handling macros a bit earlier, add 
5462         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
5463         place.
5465         * mini.h: Add prototype for mono_arch_fixup_jinfo.
5467         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
5468         read-only to help catch code allocation requests.
5469         
5470         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
5471         and turn it off when using --aot-only or when compiling with --aot=full.
5473         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
5474         jump table for switches from the normal domain mempool, not the code
5475         manager.
5477         * mini-trampolines.c (get_unbox_trampoline): New function to return an
5478         unbox trampoline which handles aot-only mode too.
5480         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
5481         an AOTed unbox trampoline.
5483         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
5485 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
5487         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
5488         ""
5490         Contributed under MIT/X11 license.
5492 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
5494         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
5495           the unwind information for the method at the end of the allocated block.
5496           
5497         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
5498           MonoCompileArch to hold the unwind info for SEH on Winx64
5499         
5500         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
5501           frame pointer info for the method being compiled.
5502           
5503         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
5504           the call to mono_exception_from_token.
5505           
5506         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
5507           storing the method prolog information in a format that the Winx64 SEH can understand.  This
5508           information is stored a the end of the method block because it is all 32-bit offset based.
5510         Contributed under MIT/X11 license.
5512 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
5514         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
5516         * wapihandles.c: Fix warnings.
5518         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
5519         mode.
5521         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
5522         mono_jit_compile_method in aot-only mode since that calls the type 
5523         initializer.
5524         
5525         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
5526         get_delegate_invoke_impl in aot-only mode.
5528         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
5530 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
5532         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
5534         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
5535         is on by default.
5537         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
5539         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
5540         init trampoline from the AOT file as well.
5542         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
5543         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
5544         code.
5546         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
5547         mono_init.
5549         * exceptions-amd64.c: Add _full variants for the remaining exception code
5550         creation functions as well, allow emission of relocatable code, remove
5551         caching since that is now done by the caller.
5553         * mini-exceptions.c: Add _full variants for the remaining exception code
5554         creation functions as well, add aot-only support.
5556         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
5557         if we can determine a proper token for them.
5558         (add_wrappers): Add a few more wrappers.
5559         (emit_method_code): Remove some dead code.
5560         (emit_trampolines): Emit exception code too.
5562         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
5564         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
5565         mono_array_new_va which avoids varargs.
5567         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
5569         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
5570         mono_arch_create_specific_trampoline () in all places.
5572         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
5573         a bit so it can be used for other things as well.
5574         
5575         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
5576         on demand as well.
5578         * exceptions-amd64.c: Rename the caching from the exception code creation
5579         functions, it is done by the caller instead.
5580         
5581         * exceptions-amd64.c: Change the signature of the exception code creation 
5582         functions to allow the creation of relocatable code later.
5584         * mini-exceptions.c: Add a set of functions to query the various 
5585         runtime-generated exception functions.
5587         * mini.c mini-exceptions.c: Use the newly added functions instead of the
5588         mono_arch_.. () functions.
5589         
5590 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
5592         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
5594         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
5596         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
5597         (mini_get_vtable_trampoline): Ditto.
5599         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
5600         code in the AOT case by returning the code size and a list of relocations to
5601         the caller.
5603         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
5605 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
5607         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
5608           clean the stack.
5610         Contributed under MIT/X11 license.
5612 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
5614         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
5615         so the buffer size can be computed correctly. Fixes #404735.
5617         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
5618         normally as cfg->debug_info is already freed.
5620 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
5622         * mini-amd64.c: For calls returning vtypes in registers, don't store
5623         the return address on the stack, instead allocate a separate local for
5624         it. Fixes #404729.
5626 2008-07-05  Mark Probst  <mark.probst@gmail.com>
5628         * mini-trampolines.c, mini.h: Add an argument to
5629         mono_create_jit_trampoline_in_domain() for turning off the adding
5630         of the sync wrapper.
5632         * mini.c: Use the JIT trampoline without sync instead of
5633         ldftn_nosync in static RGCTX invoke wrappers so that the call can
5634         be patched.
5636 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5638         * driver.c: Turn on GSHARED optimization by default.
5640 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
5642         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
5643         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
5645         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
5646         create a variant of the generic trampoline code callable from AOTed trampolines.
5648         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
5649         trampoline code callable from AOTed trampolines.
5651         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
5653 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5655         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
5656         pass-through manner.
5658         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
5659         and don't fail sharing for them anymore.
5661         * mini-exceptions.c: Handle exceptions in shared generic methods.
5663         * generic-sharing.c: When checking the context of a generic
5664         method, also check its class's context.  Don't treat wrappers as
5665         sharable.
5667         * mini-trampolines.c: Some code factored out to
5668         metadata/generic-sharing.c.  Handle the MRGCTX case.
5670         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
5671         we must deal with the method being of another instantiation of the
5672         class.  Add static rgctx invoke wrappers to generic methods.
5674 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5676         * mini.c: Provide all jit infos of generic shared methods with a
5677         generic jit info.
5679         * mini-exceptions.c: Handle the new situation that a generic info
5680         might be available, but not info about the this/vtable/mrgctx
5681         variable.
5683 2008-07-03  Mark Probst  <mark.probst@gmail.com>
5685         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
5686         generic methods.
5688 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
5690         * dominators.c (check_dominance_frontier): Fix a warning.
5692         * mini.h: Add some missing prototypes.
5694         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
5696         * driver.c (mono_jit_init_version): Correct the comments since the first
5697         argument should be the name of the root domain, not a filename.
5699         * aot-runtime.c (make_writable): Error out if this is called while running
5700         with --aot-only.
5701         (load_aot_module): Ditto.
5703         * aot-compiler.c: Really fix the computation of method indexes.
5705         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
5706         optimizations as this is no longer called frequently.
5708         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
5709         method and the invoke impl code and pass it to the delegate trampoline instead of
5710         just the delegate class.
5712 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
5714         * aot-compiler.c: Fixup the computation of method indexes.
5715         (add_wrappers): Create the base methods of the runtime invoke wrappers using
5716         the method builder infrastructure.
5718         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
5719         has no header.
5721         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
5722         mode, load the method right away instead of creating a trampoline.
5724         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
5726         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
5727         some checks a bit.
5729 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
5731         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
5732         (mono_aot_load_method): Use method_index instead of method->token.
5734         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
5735         can handle icalls etc. properly.
5737         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5739         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
5741         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
5742         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
5743         JIT_ICALL_ADDR patch type.
5745         * patch-info.h: Add JIT_ICALL_ADDR patch type.
5747         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
5748         request flag.
5749         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
5751         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
5753 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
5755         * mini.c: Use domain->jit_code_hash_lock for controlling access to
5756         domain->jit_code_hash.
5758 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
5760         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
5762 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
5764         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
5765         get_this_arg_from_call, let it compute it when needed.
5767         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
5768         gsctx from code only when needed.
5770         * mini-trampolines.c (get_generic_context): Rename this to 
5771         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
5772         it can be called by the arch backends.
5774         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
5776 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
5778         * driver.c (mono_main): Add experimental --aot-only command line option.
5780         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
5781         set.
5783 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
5785         * driver.c (DllMain): Remove mono_module_handle.
5787         Contributed under MIT/X11 license.
5789 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
5791         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
5792         for emitting methods which are not in the source assembly. Detect and report
5793         failure of assembling+linking.
5794         
5795         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
5797         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
5799 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
5801         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
5803 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
5805         * mini.h: Remove some obsolete prototypes.
5807         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
5809 2008-06-24  Mark Probst  <mark.probst@gmail.com>
5811         * mini.c (get_object_generic_inst): Variable-sized arrays are not
5812         supported by Visual Studio, so use alloca().
5814 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
5816         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
5817         Fixes #402585.
5819 2008-06-23  Mark Probst  <mark.probst@gmail.com>
5821         * mini.c: Fail sharing of a generic method if it contains an open
5822         catch clause (because we don't pass MRGCTXs yet).
5824 2008-06-23  Mark Probst  <mark.probst@gmail.com>
5826         * mini.c: When compiling a method with generic sharing, insert the
5827         method instantiated with an all-Object generic context into the
5828         jit info table, instead of the context of the first instantiation
5829         of the method we happen to compile.
5831 2008-06-18  Martin Baulig  <martin@ximian.com>
5833         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
5834         `major_version' and `minor_version'.
5836 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5838         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
5839         mono_method_is_generic_sharable_impl() takes an additional
5840         argument specifying whether to treat type variables as reference
5841         types.
5843 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5845         * mini.h: Removed obsolete prototypes.
5847 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5849         * mini.c: Don't fail generic sharing for initobj and sizeof - we
5850         already handle them.
5852 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5854         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
5855         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
5856         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
5857         tramp-x86.c: Added a MonoGenericContext* argument to
5858         mono_arch_get_unbox_trampoline() so that it can call other
5859         functions which require it.
5861 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5863         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
5864         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
5865         mono_arch_get_this_arg_from_call() takes a
5866         MonoGenericSharingContext* as well.
5868 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5870         * mini.c: Factor out code for emitting unbox into emit_unbox() and
5871         implement generic sharing of unbox.
5873 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5875         * mini.c: Don't compute the vtable to determine whether a field is
5876         special static, because it might not work for open types.
5878 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5880         * mini.c: Removed the unused token_type and token_source arguments
5881         from get_runtime_generic_context_ptr().
5883 2008-06-17  Marek Habersack  <mhabersack@novell.com>
5885         * mini.c (ADD_BINOP): fix the build
5887 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
5889         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
5890         a widening op.
5892 2008-06-16  Mark Probst  <mark.probst@gmail.com>
5894         * mini.h: Removed class relations enum that's not used anymore.
5896 2008-06-16  Mark Probst  <mark.probst@gmail.com>
5898         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
5900         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
5901         the lazy fetch trampoline access code.
5903 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
5905         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
5907 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
5909         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
5911         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
5913         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
5915 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5917         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
5918         intrinsics.
5920         * mini-ops.h: Add MIN/MAX_UN opcodes.
5922         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
5923         intrinsics.
5925         * basic-math.cs: Add more min/max tests.
5927         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5929 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5931         * mini.c: Small fix in the prologue of emit_castclass.
5933 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5935         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5937         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
5938         do not work even for unsigned types. Fixes #400014.
5940         * basic-math.cs: Add regression tests for unsigned Min/Max.
5942 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5944         * mini.c: Added additional context_used argument to several
5945         functions, which will be needed for sharing generic methods.  Use
5946         GET_RGCTX macro wherever appropriate.  Declare only one
5947         context_used in mono_method_to_ir().
5949 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5951         * mini.c, generic-sharing.c: Removed generic class relations.
5953         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
5954         functions due to MRGCTX changes.
5956 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5958         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
5959         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
5960         with calculated IMT.
5962         * mini.c: Generic sharing of calls via generic interfaces.
5964         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
5965         generic method with non-constant MonoGenericContext*.  Instead,
5966         the context is taken out of the method itself.
5968 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5970         * mini.c: Generic sharing of ldvirtftn.
5972 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5974         * mini.c: Generic sharing of ldftn.
5976 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5978         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
5980 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5982         * mini.c: Generic sharing of the special case of ldtoken followed
5983         by a call to GetTypeFromHandle.
5985 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5987         * mini.c: Generic sharing of box for nullable types.
5989 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5991         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
5992         are passed on the stack. Fixes #324807.
5994 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
5996         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
5997         for the ArgValuetypeAddrInIReg case.
5999         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
6000         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
6002         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
6003         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
6004         local variable and pass the local variable by reference to the called method.
6005           
6006         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
6007         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
6009         Contributed under MIT/X11 license.
6011 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
6013         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
6015         * debug-mini.c (mono_debug_print_vars): Release memory after printing
6016         everything.
6018 2008-06-10  Martin Baulig  <martin@ximian.com>
6020         * debug-mini.c
6021         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
6023 2008-06-09  Kornél Pál  <kornelpal@gmail.com>
6025         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
6026         possible error when no arguments are passed.
6028         Contributed under MIT/X11 license.
6030 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
6032         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
6033         where the file name is NULL.
6035 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
6037         * mini.c: Fix s390 build.
6039 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
6041         * trace.c (mono_trace_parse_options): Fix warnings.
6043         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
6045 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
6047         * mini.c (remove_block_if_useless): Avoid printing the method name.
6048         
6049         * mini.c: Remove needless setting of ins->cil_code which is now done by 
6050         MONO_INST_NEW.
6052         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
6053         LMF. Not yet used.
6055         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
6056         translated code after it has been patched.
6058 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
6060         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
6061         avoid problems during code patching on SMP systems.
6062         (emit_call): Avoid adding a patch info which is already added by 
6063         emit_call_body.
6064         (mono_arch_emit_exceptions): Ditto.
6066 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
6068         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
6069         MONO_TYPE_ISSTRUCT already checks for it.
6071 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
6073         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
6074           structs with floats on Winx64 the float registers are not used.  
6075           The integer registers are always used..
6076         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
6077           only one register will be used and only if the size of the struct 
6078           is 1,2,4, or 8 bytes.
6080         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
6081           to work for Winx64.
6083         Contributed under MIT/X11 license.
6085 2008-06-05  Martin Baulig  <martin@ximian.com>
6087         * debug-debugger.c (debugger_lookup_class): Also call
6088         mono_class_setup_methods() here; we're only called from RTI.
6090 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
6092         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
6093         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
6094         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
6095         Post-process object files and add dtrace-generated object, if necessary.
6097         Contributed under MIT/X11 license.
6099 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6101         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
6102         element class.
6104         * mini.c: Generic sharing for unbox.any and castclass.
6106 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6108         * mini.c: Ignore tailcall prefix in shared generic code and when
6109         doing calls which require a vtable/rgctx argument.
6111 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6113         * mini.c: Don't free the JIT info.
6115         * driver.c: Changes in the JIT info table testing code.
6117 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
6119         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
6120         interruption. Fix some warnings.
6122         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
6123         interruption_checkpoint.
6125 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6127         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
6128         from embedding applications.
6130 2008-06-02  William Holmes  <billholmes54@gmail.com>
6132         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
6133           reserving 32 bytes on the stack when making calls. 
6135         Contributed under MIT/X11 license.
6137 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
6139         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
6140         the linear IL branch.
6142         * driver.c: Print out more information for --version on arm.
6144 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
6146         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
6147         bb_exit instead, since out of line bblocks might not actually be emitted
6148         out-of-line.
6149         
6150         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
6151         maximum epilog size for out of line bblocks if tracing is enabled.
6153         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
6155 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
6157         * arrays.cs: Regression tests for allocating arrays with negative sizes.
6159 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
6161         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
6162         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
6163         opcodes.
6165 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
6167         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
6168         the 'value' to store is a constant.
6170         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
6172         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
6173         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
6175 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
6177         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
6178         for accessing method->generic_container.
6180 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
6182         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
6183         
6184         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
6186         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
6188         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
6189         fails.
6191 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
6193         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
6195         * mini.c: Handle the case when mono_class_vtable () fails.
6197 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
6198         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
6199         the stat profiler.
6201 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6203         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
6204         together with domain sharing.
6206 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6208         * mini.c: Treat callvirts to final methods like non-virtual calls
6209         when doing generic sharing, i.e. look them up in the runtime
6210         generic context.
6212 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6214         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
6215         with computed types (for generic sharing).
6217         * mini.c: Generic sharing for mkrefany and refanyval.
6219 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
6221         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
6222         possible.
6224         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
6225         the generic sharing code.
6226         
6227         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
6228         when needed.
6230 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
6232         * mini.h: Remove the declaration of mono_aot_init_vtable ().
6234 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
6236         * driver.c: updated copyright date
6238 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
6240         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
6241         needed.
6243 2008-05-19  Martin Baulig  <martin@ximian.com>
6245         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
6246         pointing to the new `_mono_debug_using_mono_debugger' variable.
6248         * driver.c
6249         (mono_main): Check mono_debug_using_mono_debugger() rather than
6250         the `MONO_INSIDE_MDB' environment variable to check whether we're
6251         inside the debugger.
6253 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
6255         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
6256         argument.
6258 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
6260         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
6262         * mini.c: Added mini_assembly_can_skip_verification. This
6263         function checks if the assembly requested to skip verification. 
6264         Fixes part of #387274.
6266 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6268         * mini.c (mini_get_method): Disable the check for open generic classes when
6269         using generic sharing.
6271         * generics.cs: Add a test for #387034.
6273         * mini.c (mini_get_method): Check whenever the method class is an open generic
6274         type, and return NULL in that case, causing a verification error. Fixes
6275         #384123.
6277 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6279         * driver.c (mono_main): Revert r102623. The right
6280         thing to do is to enable the verifier under verifiable
6281         unless a --security flag was passed.
6283         We need this non-trivial behavior for --verify-all otherwise
6284         mcs-compileall won't be able to use it. As it needs everything to
6285         be verified under validil.
6287 2008-05-06  Martin Baulig  <martin@ximian.com>
6289         Fix #383749.
6291         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
6292         (mono_debugger_thread_cleanup): Likewise.
6293         (mono_debugger_extended_notification): Likewise.
6295 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6297         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
6298         against both inflated and non-inflated methods. We need to check against the
6299         generic definition for cases where the instantiated method is not visible.
6300         We need to check against the inflated types for cases where the instantiation
6301         changes any super type. This fixes #382986.
6303         Note that this doesn't need to be applied to other parts of mono_method_to_ir
6304         that check for visibiliy as generic params only appears as the type subject
6305         of tokens on call opcodes. Field manipulation and ldftn must always
6306         target an exact type.
6308 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6310         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
6311         if no related --security flag is passed.
6313 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6315         * mini-arch.h: Prepare support for ppc64.
6317         Contributed under MIT/X11 license.
6319 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6321         * aot-runtime.c: Prepare support for ppc64.
6323         Contributed under MIT/X11 license.
6325 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6327         * mini-ops.h: Prepare support for ppc64.
6329         Contributed under MIT/X11 license.
6331 2008-05-04  Andreas Färber  <andreas.faerber@web.de>
6333         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
6335         Contributed under MIT/X11 license.
6337 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
6339         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
6340         assemblies, since aot_name is not a full path, causing us to load MS.NET 
6341         assemblies on windows.
6343 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
6345         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
6346         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
6347         * main.c: Use UTF-8 encoded command line instead of Windows default code
6348         page on Windows to support Unicode.
6349         * driver.c (DllMain): New function for mixed-mode assembly support.
6350         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
6351         export __stdcall functions without decoration.
6353         Contributed under MIT/X11 license.
6355 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6357         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
6358         saving it very early.
6360 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6362         * mini.h, mini.c: Lots of code for accessing the old RGCTX
6363         deleted.  The only way to access the new RGCTX is via the
6364         trampline.
6366         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
6367         vtable instead of the RGCTX to static methods.
6369         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
6370         accessing the new RGCTX.
6372         * generic-sharing.c: There is no separation between self, type
6373         arguments and other types in the RGCTX anymore.
6375 2008-04-25  Jonathan Chambers <joncham@gmail.com>
6377         * mini-amd64.c (add_general): Remove previous stack adjustment.
6378         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
6379         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
6380         for 32 bytes of stack space reserved for all calls.
6381         
6382         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
6383         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
6384         adjustment.
6385         
6386         Code contributed under MIT/X11 license.
6388 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
6390         * mini.c (mini_method_verify): Only verify non-inflated methods, check
6391         against the root definition, peeling out method and type instantiations.
6392         Cache verify success results, code that fails verification is still
6393         checked multiple times.
6395 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6397         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
6399 2008-04-23  Jonathan Chambers <joncham@gmail.com>
6401         * mini-amd64.c (add_general): Always increment stack on Win64.
6402         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
6403         on Win64.
6404         
6405         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
6406         stack based argument handling on Win64.
6407         
6408         Code contributed under MIT/X11 license.
6410 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
6412         * Makefile.am (version.h): Add support for git-svn.
6414 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6416         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
6417         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
6418         avoiding allocations and libc functions which might deadlock.
6419         
6420         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
6421         'no-gdb-backtrace' option is set.
6423         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
6425         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
6427 2008-04-21  Martin Baulig  <martin@ximian.com>
6429         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
6430         and `get_lmf_addr'; `notification_address' is no longer a pointer.
6432 2008-04-21  Martin Baulig  <martin@ximian.com>
6434         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
6435         `thread_vtable', `event_handler_ptr' and `event_handler'.
6437 2008-04-21  Martin Baulig  <martin@ximian.com>
6439         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
6440         allows delayed initialization of the `executable_code_buffer' when
6441         attaching.
6443 2008-04-21  Martin Baulig  <martin@ximian.com>
6445         * mini.h (mono_debugger_create_notification_function): Removed.
6446         * tramp-*.c (mono_debugger_create_notification_function): Removed.
6448         * mdb-debug-info64.s
6449         (MONO_DEBUGGER__notification_function): Added this in the .text section.
6451         * mdb-debug-info32.s
6452         (MONO_DEBUGGER__notification_function): Added this in the .text section.
6454         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
6455         currently only works on x86 and x86_64, so don't create it on ppc.
6457 2008-04-21  Martin Baulig  <martin@ximian.com>
6459         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
6461         * mini.c
6462         (mini_method_compile): In the fp elimination check, check
6463         `debug_options.mdb_optimizations' in addition to
6464         mono_debug_using_mono_debugger().       
6466         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
6467         disable some JIT optimizations which are only disabled when
6468         running inside the debugger.
6469         Added `--help-debug' option to describe the debugging options.
6470         (parse_debug_options): New static function to parse the `--debug'
6471         options, so we can easily add more stuff in future.
6473 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
6475         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
6476         the method has no body.
6478 2008-04-19  Jonathan Chambers <joncham@gmail.com>
6480         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
6481         assembly is not allowed in MSVC 64-bit compiler. 
6482         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
6483         as we get floating point exceptions everywhere.
6484         
6485         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
6486         correctly align arguments for call to throw_exception.
6487         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
6488         
6489         Code contributed under MIT/X11 license.
6491 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
6493         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
6495 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
6497         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
6499         * mini-amd64.c (NEW_INS): Set cil_code.
6501         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
6502         from mini-amd64.c so all debugger related logic is in one place.
6504         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
6505         later won't have a random ip assigned to them.
6507 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
6509         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
6510         the arch specific function initializes code_size.
6511         (mono_create_delegate_trampoline): Ditto.
6513         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
6514         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
6515         platforms.
6517         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
6518         running under the debugger.
6520         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
6521         debugger.
6523         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
6524         debugger. Also move the disabling of optimizations here from driver.c.
6525         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
6526         debugger.
6528         * mini.h (MonoCompile): Add a few new flags.
6530 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
6532         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
6533         so the cil_code field of created MonoInst's is properly set.
6534         (mini_select_instructions): Ditto.
6536         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
6537         (MONO_INST_NEW_CALL): Ditto.
6539         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
6540         in many places so the ins->cil_code field is properly initialized.
6542         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
6543         place.
6545 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6547         * mini.c (mini_method_compile): Print a different message when compiling a 
6548         shared method.
6549         
6550         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
6551         > 1.
6553 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
6555         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
6556         SSE2 instructions.
6558         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
6559         
6560 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
6562         * mini.c (handle_stack_args): Make this return void since its return value was
6563         never used. Also set cfg->unverifiable for invalid IL instead of calling
6564         G_BREAKPOINT ().
6566 2008-04-10  Mark Probst  <mark.probst@gmail.com>
6568         * mini.c: Make sure "this" is live in catch clauses with type
6569         variables in shared generic code.
6571 2008-04-08  Mark Probst  <mark.probst@gmail.com>
6573         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
6574         generic_class_is_reference_type() to ensure the proper behaviour
6575         when sharing generic code and the type in question is a type
6576         argument.
6578 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6580         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
6581         race conditions when printing thread dumps. Fixes #377738.
6583 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
6584         
6585         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
6586         shows up when both MonoInst arguments can cause aliasig.
6587         There is likely no way in the current JIT to trigger this problem, but
6588         it showed up in the development of generics sharing, when in a new
6589         opcode both args of an OP_GROUP can be aliases (addresses of a local).
6590         When the generics sharing code will be committed, its tests will be
6591         valid also for this bug.
6593 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6595         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
6596         PATCH_INFO_METHOD.
6598         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
6599         NULL.
6601 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
6603         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
6604         use a more detailed exception message for InvalidCastException.
6606         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
6608         * driver.c (mono_main): Add --debug=casts option to turn on better 
6609         InvalidCastException message details.
6611         * mini.c (mini_get_debug_options): New helper function to return the address of
6612         the debug_options variable.
6614         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
6615         the jit_tls TLS variable.
6617         * mini.c (mono_jit_tls): New TLS variable.
6619         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
6620         option is used.
6622 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
6624         * mini.h: Removed verifer related stuff. This code was moved to verify.c
6626         * mini.c: Removed verifer related stuff, code moved to verify.c.
6628         * driver.c: Using code from verify.c instead of mini.c.
6630 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
6632         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
6633         longer valid.
6635 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
6637         * mini.c (check_for_method_verify): Enabling verification of
6638         corlib if mono_verify_all is set. Bugs in the verifier preventing that
6639         have been fixed.
6641 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
6643         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
6644         caller saved registers as well.
6645         
6646         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
6647         saved registers as well.
6649 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
6651         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
6653         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
6654         code.
6656 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
6658         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
6659         to get_call_info.
6660         (get_call_info): Take a gsctx argument instead of 'cfg'.
6662 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6664         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
6665         mono_verify_all is set.
6667         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
6669         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
6671 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6673         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
6674         an exception.
6676         * driver.c mini.c mini.h: Add a --verify-all development option to test the
6677         verifier and the code generated by the compiler.
6679 2008-03-25  Mark Probst  <mark.probst@gmail.com>
6681         * mini.c: Generic sharing of the non-nullable case of the box
6682         instruction.
6684 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
6686         * inssel.brg: Fix the build.
6688         * iltests.il.in: Add a test for lconv.ovf.u8.un.
6690 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
6692         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
6693         Array:Address. Fixes #372410.
6695         * iltests.il.in: New tests for readonly prefix.
6697 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
6699         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
6700         mini-trampolines.c.
6702         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
6703         mini-exceptions.c.
6705         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
6706         
6707         * mini.c (mono_decompose_op_imm): New helper function.
6709         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
6710         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6711         return value.
6713         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
6714         mono_arch_output_basic_block. Fix warnings.
6716         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
6717         for now.
6719 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
6721         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
6722         since the extra frame is now detected automatically inside the loop.
6724         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
6725         opts which are now in mono_peephole_ins ().
6726         
6727         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
6729         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
6730         frames and skip duplicate managed-to-native frames. Fixes #367665.
6732         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6733         opts which are now in mono_peephole_ins ().
6734         (mono_arch_peephole_pass_2): Ditto.
6736         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
6738         * mini-codegen.c (mono_peephole_ins): New helper function containing the
6739         arch independent peephole optimizations.
6741         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6742         opts which are now in mono_peephole_ins ().
6744         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
6745         
6746         * mini-s390.c (mono_arch_output_basic_block): Fix build.
6748         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
6749         pattern.
6751         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
6752         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
6753         opcode. 
6755 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
6757         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
6758         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6759         return value.
6761         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
6762         mono_arch_output_basic_block. Fix warnings.
6764 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6766         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6767         conv.ovf.u.un.
6769 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6771         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6772         conv.ovf.u.un.
6774         * iltests.il: Add new tests.
6776 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6778         * mini.c: Removed Windows version macros.
6780 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6782         * generic-sharing.c: Put reflection types in the extensible part
6783         of the runtime generic context.
6785         * mini.c: Generic sharing of the GetTypeHandle special case of the
6786         ldtoken instruction.
6788 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6790         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
6792         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
6793         
6794         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
6795         consistency with the other version on the linear IR branch.
6797         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
6799         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
6801         * iltests.il.in: Add new tests.
6803 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
6805         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
6807         * iltests.il.in: Add new tests.
6809 2008-03-19  Mark Probst  <mark.probst@gmail.com>
6811         * mini.c: Two variables with the same name were declared in
6812         nesting contexts and one wasn't initialized.  Fixed.
6814 2008-03-19  Mark Probst  <mark.probst@gmail.com>
6816         * mini.c: Generic sharing of the initobj instruction.
6818 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6820         * mini.c: make the test to optimize ldtoken from typeof() more
6821         precise.
6823 2008-03-18  Mark Probst  <mark.probst@gmail.com>
6825         * mini.c: Generic sharing of the initobj instruction for reference
6826         types.
6828 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6830         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
6831         the mono_breakpoint_clean_code() code to perform bound checks.
6833 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
6835         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
6836         mono_arch_patch_callsite() to include the start of the managed method
6837         to be able to perform bound checks.
6839 2008-03-17  Mark Probst  <mark.probst@gmail.com>
6841         * mini.c: Generic sharing for the isinst instruction.
6843 2008-03-17  Mark Probst  <mark.probst@gmail.com>
6845         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6846         inssel-long32-mips.brg: Added opcodes for doing indirect calls
6847         with the runtime generic context argument.
6849         * mini.c: Share calls to several types of unsharable methods by
6850         putting the address of the method code in the runtime generic
6851         context and doing an indirect call.
6853         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6854         to switches.
6856 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6858         * generic-sharing.c: Change due to a change in the runtime genric
6859         context API.
6861 2008-03-15  Martin Baulig  <martin@ximian.com>
6863         * tramp-x86.c
6864         (mono_arch_nullify_class_init_trampoline): Add call to
6865         mono_breakpoint_clean_code() to make things work when running
6866         inside the debugger.
6868         * tramp-amd64.c
6869         (mono_arch_nullify_class_init_trampoline): Add call to
6870         mono_breakpoint_clean_code() to make things work when running
6871         inside the debugger.
6873 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6875         * inssel-long.brg (reg): Fix 64 bit build.
6877 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6879         * mini.c, mini.h: Share static generic code by passing it an
6880         implicit argument pointing to the runtime generic context.
6882         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6883         inssel-long32-mips.brg: New opcodes for calling shared static,
6884         which need to be passed the runtime generic context.
6886         * mini-amd64.c, mini-x86.c: Save the runtime generic context
6887         argument on the stack in the prologue if needed.  New function for
6888         finding the runtime generic context argument from the registers
6889         saved by the trampoline.
6891         * mini-amd64.h, mini-x86.h: Specify which register to use for the
6892         runtime generic context argument.
6894         * tramp-amd64.c: Also restore the register used for the runtime
6895         generic context argument.
6897         * mini-trampoline.c: Resolve shared static calls by consulting the
6898         runtime generic context via the new argument.
6900         * generic-sharing.c: Add an argument to sharability-checking
6901         functions that specifies whether type variables should be treated
6902         as sharable type arguments.
6904         * inssel-x86.brg: Removed a superfluous, buggy rule.
6906         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6907         to switches.
6909 2008-03-14  Martin Baulig  <martin@ximian.com>
6911         * debug-debugger.c (main_thread_handler): Call
6912         mono_runtime_run_main() without sending any notifications.
6914         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
6916 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6918         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
6920 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6922         * tramp-x86.c: Fixed register restore offsets in the trampoline
6923         code for ECX and EDX.
6925 2008-03-12  Geoff Norton  <gnorton@novell.com>
6927         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
6928         different ucontext_t implementations.
6929         * exceptions-arm.c: Use the above defines to get exceptions working on 
6930         iPhone (based on a patch by Luke Howard lukeh@padl.com)
6931         * mini-arm.c: Implement iPhone icache support (based on a patch by
6932         Luke Howard lukeh@padl.com)
6934 2008-03-12  Mark Probst  <mark.probst@gmail.com>
6936         * mini.c: Enable generic sharing of calls to non-static
6937         non-interface non-generic non-value-type methods.
6939         * mini-trampolines.c: Resolve calls from shared generic code.
6941 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
6943         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
6945         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
6947 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
6949         * mini.c: some fixes for the AOT compiler.
6951 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6953         * cpu-amd64.md: Add clob:1 to some float opcodes.
6955 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
6957         * mini.h: Added MiniVerifierMode enumeration.
6959         * mini.c: Added mini_verifier_set_mode to control
6960         the usage of the new verifier.
6962         * mini.c (mono_method): Integrated the new verifier.
6964         * driver.c: Extended --security option with validil and
6965         verifiable options to activate the new verifier.
6967 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6969         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
6970         optimization to ctors taking 0 or 2 arguments too.
6972         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
6973         a bit.
6975         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
6977         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
6979 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6981         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
6982         non-aot case as well.
6984         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
6986         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
6987         changes.
6989         * aot-compiler.c (encode_patch): Ditto.
6991         * mini.h (G_MININT32): Fix the definition of this.
6993 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
6995         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
6997         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
6999 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
7001         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
7002         methods returning vtypes in registers.
7003         (mono_arch_allocate_vars): Ditto.
7005         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
7007         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
7009         * generics.cs: Add a test from the linear IR branch.
7011         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
7013         * mini.c (inline_method): Cache failed inline attempts.
7015 2008-03-04  Mark Probst  <mark.probst@gmail.com>
7017         * mini.c: For shared methods of generic classes put the location
7018         of "this" into the MonoGenericJitInfo.
7020         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
7021         register out of a MonoContext by register number.  Add the generic
7022         sharing context as an argument to mono_arch_find_this_argument().
7024         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
7025         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
7026         for new arch function.
7028         * mini-exception.c: Handle open exception clauses in shared
7029         generic code.
7031         * mini-trampolines.c: Supply additional argument to
7032         mono_arch_find_this_argument().
7034 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
7036         * Makefile.am (regtests): Run the bench.exe tests last.
7038 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
7040         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
7041         a bit.
7043 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
7045         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
7046         with MS.
7048         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
7049         
7050         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
7052         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
7053         whose class has no cctor.
7055         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
7057 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
7059         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
7060         unverified.
7062 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
7064         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
7065         to be in sync with the code on the linear IR branch.
7067         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
7069         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
7071 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
7073         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
7075         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
7077         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
7079         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
7081         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
7082         
7083         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
7084         body.
7086 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
7088         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
7089         OP_LOADR4_MEMBASE emission.
7091         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
7092         (mono_spillvar_offset_float): Ditto.
7094         * mini-mips.c (mono_arch_emit_prolog): Ditto.
7096         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
7097         emission.
7099         * basic-long.cs: Add regression tests for them.
7101         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
7102         use.
7103         (mono_arch_allocate_vars): Fix representation of single-precision float
7104         argument.
7105         (mono_arch_output_basic_block): Ditto.
7107         * inssel-mips.brg: Ditto, remove duplicate items.
7109         * mini-mips.c (emit_load_volatile_arguments): New function to handle
7110         arguments of tail calls as on other platforms.
7111         (mono_arch_output_basic_block): Handle tail calls.
7113         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
7114         register.
7116         * objects.cs (test_5_pass_static_struct): Add test for it.
7118         Contributed under MIT/X11 license.
7120 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
7122         * Makefile.am: Use gmcs for compiling the regression tests.
7124         * *.2.cs *.2.il: Rename to *.cs and *.il.
7126 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
7128         * regalloc.h: Make the vassign array smaller.
7130         * mini.c (mini_method_compile): Remove an unused field in cfg.
7132         * mini-codegen.c: Add a bunch of micro optimizations.
7134 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
7136         * regalloc.h: Remove some unused fields.
7138 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
7140         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
7142         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
7144 2008-02-22  Mark Probst  <mark.probst@gmail.com>
7146         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
7148         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
7149         trampoline: Fetch an entry from the runtime generic context.  If
7150         it's NULL, jump to the actual trampoline to fill the runtime
7151         generic context.  Otherwise, return it.
7153         * mini.c: Call the lazy fetch trampoline to get entries out of the
7154         runtime generic context.
7156         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
7157         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
7158         tramp-sparc.c: Stubs for the lazy fetch trampoline.
7160 2008-02-21  Mark Probst  <mark.probst@gmail.com>
7162         * mini.c: Fetch data out of the extensible part of the runtime
7163         generic context instead of calling a helper function.
7165         * generic-sharing.c: Some functions moved into
7166         metadata/generic-sharing.c.  Helper function for fetching other
7167         types now checks and asserts against extensible rgctx (just for
7168         debugging purposes - the helper function isn't called anymore
7169         unless for debugging).
7171 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
7173         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
7174         for tail calls up to the point that the tests in iltests.exe run. Also add a
7175         dummy CKFINITE implementation.
7176         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
7177         needed for trampoline LMF frames.
7179         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
7180         trampoline LMF frames.
7182 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
7184         * mini.c (inline_method): clean any pending loader error when inlining fail.
7185         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
7187 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
7189         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
7191         * aot-runtime.c (decode_patch_info): Ditto.
7193         * mini.c (mono_resolve_patch_target): Ditto.
7194         
7195         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
7196         icall wrappers.
7198         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
7199         
7200         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
7201         if it references an icall address.
7203 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
7205         * cpu-s390x.md: Remove some more unused opcodes.
7206         
7207         * cpu-s390x.md: Remove some unused opcodes.
7209         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
7210         mono_op_imm_to_op ().
7212         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
7213         instead of a switch statement.
7214         
7215         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
7216         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
7218         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
7219         
7220         * mini-codegen.c: Remove unused mono_regstate2_... functions.
7222         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
7223         -1.
7225 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
7227         * driver.c (mono_main): Improve error reporting when an assembly cannot be
7228         opened. Fixes #362607.
7230         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
7232         * iltests.il.in: Add a test for static methods in interfaces.
7234 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
7236         * genmdesc.c (build_table): Fix a crash on older glib versions.
7238         * cpu-sparc.md: Remove some unused opcodes.
7239         
7240         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
7241         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
7243         * cpu-amd64.md: Remove some unused opcodes.
7245         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
7246         like the other opcodes.
7248 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
7250         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
7252         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
7254         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
7255         variables 'cfg' instead of 'm' for consistency.
7257         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
7259         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
7260         argument holding the vtype return address, to avoid the ambigious use of
7261         cfg->ret for this purpose.
7263         * mini.c (NEW_RETLOADA): Use vret_addr if set.
7265         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
7266         
7267         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
7268         new mono_print_ins () function which only takes one argument.
7270 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
7272         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
7273         macro arguments.
7275 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
7277         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
7279         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
7281         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
7282         opcodes and other small changes.
7284         * mini-ops.h: Add some new opcodes from the linear IR branch.
7286         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
7288         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
7289         opcodes, use the REG_MEMBASE opcodes instead.
7290         
7291         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
7292         opcodes, use the REG_MEMBASE opcodes instead.
7293         
7294         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
7295         linear IR branch.
7297         * mini.c (mono_op_imm_to_op): New helper function.
7299         * mini-ops.h: Add some opcodes from linear IR branch.
7301 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
7303         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
7304         <tsv@solvo.ru>.
7306 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
7308         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
7309         OP_ICONV_TO_R4/R8.
7311         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
7313 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
7315         * aot-compiler.c (emit_method_code): Add an assert.
7317         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
7318         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
7319         methods.
7321 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
7323         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
7324         some load/store opcodes so they are consistent. 
7325         (mono_arch_emit_prolog): Simplify some code.
7327         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
7329         * objects.cs: Add tests for large argument offsets on ARM.
7331         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
7332         stack offsets. Fixes #359651.
7334         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
7336         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
7338         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
7340         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
7342         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
7344         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
7345         rid of CEE_CONV_R_UN.
7347         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
7349 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
7351         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
7353         * mini.c (mono_normalize_opcodes): Add some more opcodes.
7355         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
7357         * cpu-amd64.md: Remove some unused opcodes.
7359         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
7361         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
7363         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
7364         arch specific functions for its parts. Call the peephole pass after local
7365         regalloc so the prolog can compute a more accurate max_offset.
7366         
7367         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
7368         the corresponding OP_I/OP_L opcodes.
7370         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
7372         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
7374 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7376         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
7377         as they are handled in mini.c.
7379         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
7380         
7381         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
7382         case since it is handled in mini.c.
7384         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
7386         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
7388         * *.c: Use the new opcodes in the IR and back end code.
7390         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
7392         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
7394 2008-02-06  Mark Probst  <mark.probst@gmail.com>
7396         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
7397         an assert because it has a race condition.
7399 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7401         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
7403         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
7405         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
7407         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
7408         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
7410 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
7412         * cpu-amd64.md (move): Correct the maximum size of move.
7414 2008-02-05  Mark Probst  <mark.probst@gmail.com>
7416         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
7417         the generic class init trampoline to return quickly if the class
7418         is already inited.
7420 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
7422         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
7423         issues where an 32 bit callsite cannot be patched by a 64 bit address.
7425 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
7427         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
7428         branch.
7430 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
7432         * objects.cs: Add some soft-float tests.
7434         * mini.c: Fix a couple more soft-float issues.
7436         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
7438         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
7439         avoid a REX prefix.
7441 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
7443         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
7444         exception happens while compiling a virtual method.
7446 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
7448         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
7449         
7450         * mini-sparc.c: Fix build.
7452         * mini-sparc.c (get_call_info): Add support for generic sharing.
7454         * mini-exceptions.c: Add a FIXME.
7456 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
7458         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
7459         altstack handling code.
7461         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
7462         
7463         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
7465         * mini-s390.c: Add support for generic sharing.
7467         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
7468         Fix CAS on s390.
7469         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7471         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
7473         * mini-s390x.c: Add support for generic sharing.
7474         
7475         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
7476         Fix CAS on ia64.
7477         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7479         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
7480         can be used since it takes a 16 bit signed immediate.
7482         * inssel-s390x.brg: Fix OP_SETRET.
7484         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
7486         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
7488         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
7490         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
7492         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
7493         in one place.
7495         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
7496         stuff.
7498         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
7499         of the unused mono_arch_patch_delegate_trampoline stuff.
7501 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
7503         * basic-long.cs: Move the fp related tests to basic-float.cs.
7505         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
7507         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
7509         * basic-calls.cs: Add a test for proper float argument passing.
7511         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
7512         if the context corresponds to an exception received through a signal.
7514         * exceptions.cs: Add a test for nullref handling at the start of a try
7515         clause.
7517         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
7519         * jit-icalls.c (mono_break): New JIT icall.
7521         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
7523         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
7525 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
7527         * cpu-*.md: Get rid of unused opcodes.
7529         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
7531         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
7532         by all platforms.
7534         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
7535         define.
7537         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
7538         the arch independent trampoline code in mini-trampolines.c.
7540         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
7542         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
7544         * mini-s390.h: Remove an unused define.
7545         
7546         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
7547         the arch independent trampoline code in mini-trampolines.c.
7549         * mini-arm.c (mono_arch_emit_prolog): Fix build.
7551 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
7553         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
7555         * mini-s390.c (mono_arch_emit_prolog): Fix build.
7557         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
7559         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
7561         * cpu-amd64.md: Use smaller sizes for int opcodes.
7563         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
7565         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
7566         objects.cs.
7568         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
7569         debugging.
7571         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
7572         instead of though a pointer to save an indirection when accessing elements of
7573         the array.
7575         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
7576         some typos.
7577         (NOT_IMPLEMENTED): New helper macro.
7578         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
7579         of a bb.
7581         * *.c: Use the new helper macro.
7583 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
7585         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
7587 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7589         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
7590         stack slots.
7592 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
7594         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
7595         profiling is enabled.
7596         
7597         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
7598         the end.
7599         (mono_arch_emit_prolog): Add more first bblock optimizations.
7601         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
7602         in order if possible.
7603         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
7604         bblock, since the arguments are still in their original registers.
7606         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
7608 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7610         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
7611         as well.
7613         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
7614         offset 0.
7616         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
7618         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
7619         process async exceptions received while in unmanaged code.
7621         * mini.c (mini_init): Install a callback with the runtime which will be called
7622         when a thread receives an async exception while in unmanaged code.
7624         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
7626         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
7628 2008-01-16  Wade Berrier  <wberrier@novell.com>
7630         * cpu-g4.md:
7631         * cpu-arm.md:
7632         * cpu-s390x.md:
7633         fix build
7635 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7637         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
7638         compilation with sun cc.
7640         * cpu-*.md: Fix the build.
7642         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
7644         * mini-amd64.h: Add some comments to the MonoLMF structure.
7646         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
7647         
7648         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
7649         in the LMF structure if possible. This saves two instructions in the
7650         managed->native wrappers.
7652         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
7654 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7656         * generic-sharing.c: New type argument lookup code which uses the
7657         runtime generic context template.
7659 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7661         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
7663         * mini-arm.c (add_general): Fix arm eabi parameter passing.
7664         (mono_arch_output_basic_block): Fix localloc implementation.
7666         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
7668         * mini-ia64.c (peephole_pass): Fix ia64 build.
7670         * mini-amd64.c (peephole_pass): Fix a warning.
7671         
7672         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
7673         at a constant offset from sp/fp.
7675         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
7676         instead of obtaining it from *lmf in the managed method case.
7678 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7680         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
7682 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
7684         * mini.h (MonoInstList): New type.
7685         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
7686         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
7687         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
7688         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
7689         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
7690         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
7691         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
7692         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
7693         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
7694         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
7695         MONO_INST_LIST_FOR_EACH_ENTRY,
7696         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
7697         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
7698         mono_inst_list_first, mono_inst_list_last,
7699         mono_inst_list_next, mono_inst_list_prev): New instruction
7700         list handling interfaces.
7701         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
7702         list head 'ins_list'.
7703         (MonoInst): Replace next pointer with list head 'node'.
7704         (MonoCallInst): Make 'out_args' a MonoInstList.
7705         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
7706         (MonoCompile): Delete reverse_inst_list and
7707         reverse_inst_list_len.
7708         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
7709         mono_arch_lowering_pass, mono_arch_local_regalloc,
7710         mono_arch_output_basic_block, mono_arch_emit_prolog):
7711         Convert to new instruction lists.
7712         (insert_after_ins): Delete.
7713         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
7714         instruction lists.
7715         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
7716         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
7717         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
7718         mono_emulate_opcode, mono_emit_load_got_addr,
7719         inline_method, mono_method_to_ir, mono_print_bb_code,
7720         print_dfn, decompose_pass, nullify_basic_block,
7721         replace_out_block_in_code, remove_block_if_useless,
7722         merge_basic_blocks, move_basic_block_to_end,
7723         try_unsigned_compare, optimize_branches, mono_print_code,
7724         mini_select_instructions, remove_critical_edges): Likewise.
7725         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
7726         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
7727         mono_arch_output_basic_block, mono_arch_emit_prolog):
7728         Likewise.
7729         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
7730         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7731         mono_arch_output_basic_block): Likewise.
7732         (inst_list_prepend, insert_after_ins): Delete.
7733         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
7734         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
7735         instruction lists.
7736         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
7737         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
7738         mono_arch_emit_prolog): Likewise.
7739         * cfold.c (mono_constant_fold): Likewise.
7740         * liveness.c (visit_bb, mono_analyze_liveness,
7741         optimize_initlocals): Likewise.
7742         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
7743         * graph.c (mono_draw_code_cfg): Likewise.
7744         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
7745         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
7746         mono_ssa_cprop): Likewise.
7747         * abcremoval (get_relations_from_previous_bb, process_block):
7748         Likewise.
7749         * local-propagation (mono_cprop_invalidate_values,
7750         mono_local_cprop_bb): Likewise.
7751         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
7752         peephole_pass, mono_arch_output_basic_block,
7753         mono_arch_emit_prolog): Likewise.
7754         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
7755         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7756         mono_arch_emit_prolog): Likewise.
7757         (insert_after_ins): Delete.
7758         * aliasing.c (print_code_with_aliasing_information,
7759         mono_build_aliasing_information, mono_aliasing_deadce):
7760         Convert to new instruction lists.
7761         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
7762         peephole_pass, NEW_INS, mono_arch_lowering_pass,
7763         mono_arch_local_regalloc, mono_arch_output_basic_block):
7764         Likewise.
7765         (insert_after_ins): Delete.
7766         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
7767         peephole_pass, mono_arch_output_basic_block): Convert to
7768         new instruction lists.
7769         * mini-codegen (InstList, inst_list_prepend,
7770         insert_after_ins): Delete.
7771         (insert_before_ins, get_register_force_spilling,
7772         get_register_spilling, free_up_ireg, free_up_reg,
7773         create_copy_ins, create_spilled_store, alloc_int_reg,
7774         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
7775         to new instruction lists.
7776         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
7777         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7778         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
7779         (insert_after_ins): Delete.
7780         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
7781         mono_arch_local_regalloc, mono_arch_output_basic_block,
7782         mono_arch_call_opcode): Convert to new instruction lists.
7783         (insert_after_ins): Delete.
7784         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
7785         peephole_pass, mono_arch_output_basic_block,
7786         mono_arch_emit_prolog): Convert to new instruction lists.
7788 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7790         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
7792         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
7793         Fixes #353182.
7795         * Makefile.am (version.h): Make this work with non-bash shells.
7797 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7799         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
7801 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7803         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
7804         the InitializeArray optimization.
7806 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7808         * mini.c driver.c: Don't include os/gc_wrapper.h.
7810 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7812         * mini.c (print_jit_stats): Print GC statistics if available.
7814 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
7816         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
7818 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
7820         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
7822 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7824         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
7825         
7826         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7828         * driver.c (mono_main): Ditto.
7830 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7832         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
7834         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
7835         in the vtable can't be encoded.
7836         (compile_method): Ditto.
7838 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7840         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
7841         defined.
7843         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
7844         lmf->rbp.
7846         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
7847         the top LMF entry belongs to the current method.
7849         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
7851 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7853         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
7854         
7855         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
7857         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
7859         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
7861         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
7863         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
7864         implementation.
7866         * basic-float.cs: Add an ulong->double cast test.
7868 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
7870         * mini.c (mono_method_to_ir): Fix a warning.
7872 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
7874         * mini-ops.h: Add OP_SWITCH.
7876         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
7877         CEE_SWITCH in back-end code, use OP_SWITCH instead.
7879 2007-12-11  Geoff Norton  <gnorton@novell.com>
7881         * mini-s390x.c: Minor change to the MAX() define to allow
7882         it to compile with other gcc versions.
7884 2007-12-11  Geoff Norton  <gnorton@novell.com>
7886         * cpu-s390x.md:
7887         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
7889 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7891         exceptions-arm.c (mono_arch_get_restore_context): Restore
7892         the frame pointer.
7894         exceptions-arm.c (throw_exception): Save the frame pointer.
7895         This is a partial fix for #323747. Only the client side is
7896         fixed.
7898 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7900         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
7901         was using an unrelated variable to log the class which
7902         needed the cctor to be called. This was crashing on arm.
7904 2007-12-09  Robert Jordan  <robertj@gmx.net>
7906         * mini-x86.c (mono_arch_emit_epilog):
7907         Consider all kinds of 64-bit types. Fixes #323114.
7909 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
7911         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
7913 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
7915         * mini-amd64.c (peephole_pass): Add a missing instruction check.
7917 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7919         * mini.c: run type ctor before allocating an object, not only
7920         when running it's constructor method (fixes at least part of bug #342507).
7922 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
7923         
7924         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
7925         
7926         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
7927         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
7928         function.
7930         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
7931         mono_generic_class_init_trampoline () the same as it is done with the other
7932         trampolines.
7934         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
7935         aot-runtime.c aot-compiler.c: Implement AOT support.    
7937 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7939         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
7940         build for archs which don't have the vtable trampoline defined
7941         yet.
7943 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
7945         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
7947         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
7949         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
7951         * tramp-<ARCH>.c: Use the new helper function.
7953 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7955         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
7956         trampoline call, which takes a vtable argument.
7958         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
7959         OP_TRAMPCALL_VTABLEs like other calls.
7961         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
7962         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
7963         call.  Implemented a support function which fetches the vtable
7964         from a register set.
7966         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
7967         Implemented a generic class init trampoline, using the
7968         OP_TRAMPCALL_VTABLE opcode.
7970         * mini.c: Implemented static field access when sharing generic
7971         code.  This implies initing the class using the new
7972         OP_TRAMPCALL_VTABLE call.
7974 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7976         * mini.c: Don't compile methods with sharing enabled if their
7977         classes are disabled for sharing.
7979 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
7981         * inssel.brg: Add a missing sign extension to the GETCHR and array access
7982         opcodes. Fixes #346563.
7984         * objects.cs: Add a new test.
7986         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
7988         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
7989         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
7991 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
7993         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
7995 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
7997         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
7998         code stream.
8000 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
8002         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
8004         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
8005         optimization in the AOT case.
8006         
8007 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
8009         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
8010         
8011         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
8013         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
8015         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
8017         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
8018         is created by the inlined delegate ctor.
8020         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
8022         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
8024 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
8026         * cpu-x86.md: Fix the length of ckfinite.
8028 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
8030         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
8031         
8032         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
8033         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
8035         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
8037         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
8038         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
8040 2007-11-28  Martin Baulig  <martin@ximian.com>
8042         * mini-x86.c
8043         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
8044         after creating the trampoline.
8046 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
8048         * aot-runtime.c (load_aot_module): Check runtime version if needed.
8050         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
8051         the same version.
8053         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
8054         instead of the calling method to help AOT.
8056         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
8058 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
8060         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
8061         is defined.
8063 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
8065         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
8066         
8067         * aot-compiler.c (compile_method): Correct check for generic method definitions.
8068         (encode_method_ref): No need to handle generic method definitions specially.
8070         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
8072         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
8073         decode_klass_info.
8075         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
8076         encode_klass_info.
8077         (compile_method): Enable generic sharing.
8079 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
8081         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
8082         (mini_method_compile): Add preliminary support for AOTing shared generic code.
8084         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
8085         generic code.
8087         * mini-trampolines.c: Fix a warning.
8089         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
8090         NEW_PCONST.
8091         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
8092         (generic_class_is_reference_type): Remove unused function.
8094         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
8095         in the generic vtable trampoline case.
8097         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
8098         
8099         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
8100         return an AOT method based on a vtable slot.
8102         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
8104         * mini.c (mini_get_vtable_trampoline): Export this.
8106 2007-11-22  Martin Baulig  <martin@ximian.com>
8108         * debug-debugger.h
8109         (MonoDebuggerInfo): Move `debugger_version' up.
8111 2007-11-22  Martin Baulig  <martin@ximian.com>
8113         * mini-amd64.c
8114         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
8116         * mini-trampolines.c
8117         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
8118         after compiling the method.
8120 2007-11-20  Martin Baulig  <martin@ximian.com>
8122         * debug-mini.c
8123         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
8124         (mono_debugger_remove_breakpoint): Likewise.
8125         (mono_debugger_check_breakpoints): Likewise.
8127         * debug-debugger.c: Implement the new breakpoint interface here.
8129 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
8131         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
8132         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
8134         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
8136 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
8138         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
8140         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
8141         mini.c.
8143         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
8144         mini.c.
8146         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
8147         returning a vtype in a register.
8149         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
8150         here from the arch specific code.
8152         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
8153         mini.c.
8155         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
8156         (mono_arch_emit_prolog): Increment maximum prolog size.
8158         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
8159         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
8161         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
8162         MonoGenericSharingContext.
8164         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
8165         MonoGenericSharingContext. Allocate memory from the cfg mempool.
8167 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8169         * mini.c, mini.h, generic-sharing.c: Functions for producing code
8170         which extract fields out of the runtime generic context.  Full
8171         sharing of the NEWARR opcode.
8173 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8175         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
8176         --enable-minimal=ssa.
8178 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8180         * mini-trampolines.c (mono_delegate_trampoline): Update after 
8181         mono_marshal_get_delegate_invoke () signature change.
8183 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8185         * mini.c: Removed the shared context in favor of the generic
8186         sharing context.  Allocate the MonoJitInfo structure with room for
8187         the generic sharing context if it's needed.
8189         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
8190         domain-internals.h now.
8192         * mini-x86.c: Pass the generic sharing context to get_call_info ().
8194         * generic-sharing.c: Several changes for working without a shared
8195         context and instead operating on open types instead.
8197 2007-11-12  David S. Miller  <davem@davemloft.net>
8199        * inssel-sparc.brg: Fix double instruction emit.
8201 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8203         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
8204         Get/Set/Address methods.
8205         
8206         * mini.c debug-debugger.c mini-trampolines.c: Update after 
8207         mono_marshal_get_delegate_invoke signature change.
8209 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8211         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
8212         This can happens with dynamic methods. Fixes the other bug in #322722.
8214 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8216         * tramp-arm.c (mono_arch_patch_callsite): Support patching
8217         BX call sequence.
8219         * mini-arm.c (arm_patch): Implement patching of BX call
8220         sequence. Fixes one of the bugs in #322722.
8222 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
8224        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
8225        under Linux.  We only need to flush every 32-byte cache line.    
8227 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8229         * mini.c:
8230         move_basic_block_to_end: Add branches when needed, eventually creating
8231         a new BB.
8232         optimize_branches: added a parameter that tells if it's ok to create
8233         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
8234         and avoid calling move_basic_block_to_end when it's not ok.
8235         Fixes bug 318677.
8237 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8239         * mini.c: Abort inlining call to InitializeArray if something
8240         looks wrong.  Let the icall handle it, which now has proper safety
8241         checks.
8243 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8245         * mini.c (mono_spill_call): add support for soft-float.
8247         * mini.c (mono_method_to_ir): add support for soft-float
8248         to inlined functions that return float.
8250         * mini.c (mono_method_to_ir): add support for soft-float
8251         to cee_stsfld opcode on float fields.
8253 2007-11-05  Geoff Norton  <gnorton@novell.com>
8255         * mini-x86.h: Fix the structure access for X86 Leopard.
8258 2007-11-05  Martin Baulig  <martin@ximian.com>
8260         * mini-trampolines.c
8261         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
8262         after compiling the method to notify the debugger.
8264 2007-11-05  Martin Baulig  <martin@ximian.com>
8266         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
8268 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
8270         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
8271         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
8273 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
8275         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
8276         native-to-managed wrappers.
8277         
8278 2007-11-01  Geoff Norton  <gnorton@novell.com>
8280         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
8281         members.
8283 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
8285         * mini.c, mini-x86.c: when getting back from unmanaged code
8286         to managed via a marshaled delegate we also need to set the
8287         right domain.
8289 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
8291         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
8292         for amd64.
8294 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8296         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
8297         let the debugger or other external agents to tell the JIT when
8298         a sw breakpoint has been inserted in the code that the JIT needs
8299         to be able to inspect.
8301 2007-10-31  Martin Baulig  <martin@ximian.com>
8303         * debug-debugger.h
8304         (MonoDebuggerInfo): Remove `runtime_class_init'.
8306 2007-10-30  Martin Baulig  <martin@ximian.com>
8308         * debug-mini.h
8309         (mono_debugger_thread_created): Added `MonoThread *' argument.
8310         (mono_debugger_extended_notification): New public method.
8311         (mono_debugger_trampoline_compiled): New public method.
8313         * debug-mini.c
8314         (MonoDebuggerThreadInfo): Added `thread' and
8315         `extended_notifications' fields.
8317         * debug-debugger.c
8318         (debugger_executable_code_buffer): New static variable.
8320         * debug-debugger.h
8321         (MonoDebuggerInfo): Added `executable_code_buffer',
8322         `executable_code_buffer_size', `breakpoint_info_area',
8323         `breakpoint_table' and `breakpoint_table_size'.
8325 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
8327         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
8328         that IP  either is an unused value or the vtable pointer. IMT 
8329         calls use vtable + offset now. Reduced by almost half the size
8330         of IMT entries.
8332 2007-10-26  Jonathan Chambers <joncham@gmail.com>
8334         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
8335         defines to access param registers. Replace long usage with
8336         gsize as sizeof(long) != sizeof(void*) on Win64.
8338         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
8339         on Win64. Fix intrinsic, use _AddressOfReturnAddress
8340         instead of non-existant _GetAddressOfReturnAddress.
8342         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
8343         param registers. Save/restore %rdi and %rsi in MonoLMF.
8345         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
8346         param registers. Modify (throw_exception) signature to take 
8347         %rdi and %rsi on Win64. 
8349         Code is contributed under MIT/X11 license.
8351 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8353         * helpers.c: unlink debugging output files.
8355 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8357         * mini.c: Move mono_create_ftnptr () to object.c.
8359 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8361         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
8362         optional. This function can now be used to disassemble code generated
8363         outside the JIT such as trampolines and IMT thunks.
8365         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
8367         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
8368         vtable pointer from a ldr instruction.
8370         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
8371         new IMT call sequence.
8373         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
8374         call sequence for interface invocations.
8376         * mini-arm.c (mono_arch_emit_imt_argument): added, required
8377         for imt support. This function is empty since IMT on ARM requires no
8378         special handling on the IR side.
8380         * mini-arm.c (mono_arch_find_imt_method): added, required for
8381         imt support.
8383         * mini-arm.c (mono_arch_find_this_argument): added, required
8384         for imt support.
8386         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
8387         a ldr instruction to load a value stored in the code stream.
8389         * mini-arm.c (mono_arch_build_imt_thunk):added, required
8390         for imt support.
8393 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8395         * mini.c (mini_init): Install the jump trampoline callback.
8397 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8399         * mini-trampolines.c: handle synchronized methods with the common
8400         vtable trampoline (bug #335601).
8402 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
8404         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
8406         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
8407         64 bit platforms.
8409         * mini-ia64.h mini-ia64.c: Add support for IMT.
8411         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
8412         prolog. Fixes #331958.
8414 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
8416         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
8418 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8420         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
8421         trampoline.
8423 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8425         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
8426         trampoline.
8428 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
8430         * mini-x86.c, mini-x86.h: x86 support for the common vtable
8431         trampoline.
8433 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
8435         * mini-trampolines.c: changed the magic rampoline to understand
8436         the common vtable trampoline method: the method to invoke is
8437         determined by the vtable displacement of the call.
8439 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8441         * mini.c, mini.h: register the common vtable trampoline if the
8442         architecture supports it.
8444 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8446         * cpu-amd64.md: use the correct max length for tls_get.
8448 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
8450         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
8451         CEE_STELEM_ANY. Fixes #333696.
8453 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
8455         * exceptions-x86.c: provide more graceful handling of the case where
8456         we followed a bogus function pointer from managed code (bug #332866).
8458 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8460         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
8461         replaces the generic_shared flag and will carry more information
8462         in the future.
8464         * generic-sharing.c: Added mini_type_stack_size() which allows
8465         allows open types if given a generic sharing context.
8466         mini_get_basic_type_from_generic() takes a
8467         MonoGenericSharingContext* instead of a MonoCompile* now.
8469         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
8470         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
8471         mini-sparc.c, mini-x86.c: Trivial changes required by the two
8472         changes above.  Just passing arguments through to the right
8473         places.
8475 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8477         * mini-arm.c: unify the call emission to emit_code_seq().
8479 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
8481         * tramp-arm.c: reduced the trampoline size.
8483 2007-10-10  Mark Probst  <mark.probst@gmail.com>
8485         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
8486         variable handling out of arch-specific code.
8488 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
8490         * mini-arm.c: implemented fast delegate dispatch.
8492 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
8494         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
8495         that fp elimination is turned off if the space required by locals is too
8496         big. Fixes #331958.
8498 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8500         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
8501         ARM to the new style trampoline.
8503 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
8505         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
8507         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
8509 2007-10-09  Martin Baulig  <martin@ximian.com>
8511         * debug-debugger.h
8512         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
8513         `field_info_offset_offset'.     
8515 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
8517         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
8518         removed more internal usage of the r11 register and made it available
8519         to the register allocator.
8521 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8523         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
8524         when sharing generics and treat type variables as references.
8526 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8528         * mini-ppc.c: started removing the internal uses of register r11
8529         to eventually allow the register allocator to manage it as an
8530         additional available register.
8532 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
8534         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
8536 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
8538         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
8539         specific trampolines as they are not performance critical as a jump
8540         target (maybe align as before only for AOT code?). This saves about
8541         200 KB of native code on x86 for monodevelop startup.
8543 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8545         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
8546         monodevelop startup.
8548 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
8550         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
8552         * mini-sparc.h mini-sparc.c: Implement IMT support.
8554         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
8555         its smaller and doesn't clobber sparc_g1.
8557         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
8559 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8561         * mini-ppc.c: optimized the size of the IMT thunks a bit.
8563 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
8565         * mini-ppc.c: implemented fast delegate invocation.
8567 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8569         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
8571 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8573         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
8574         code to the new style trampoline in preparation for IMT support.
8576 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8578         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
8579         systems already. This also reduces the specific trampiline sizes and
8580         prepares for the use of r12 as the IMT identifier register.
8582 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8584         * mini-mips.h: endianess fix (simplified from a patch by
8585         Thomas Kunze <thommy@tabao.de>, bug #323737).
8587 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8589         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
8590         to access ucontext fields and enable netbsd support
8591         (partially from Magnus Henoch <mange@freemail.hu>).
8593 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8595         * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
8596         use the preprocessor from the CPP env var if it is set.
8598 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8600         * mini-trampolines.c: fixed an assertion and moved it earlier in the
8601         code, before interface_offset gets used.
8603 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
8605         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
8606         mono_class_setup_vtable () before accessing klass->vtable.
8608 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
8610         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
8611         hackish.
8613 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8615         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
8616         IMT slots (this saves hundreds of KB of memory in programs like
8617         IronPython and Monodevelop).
8619 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8621         * mini.c: print the delegate counter.
8623 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
8625         * mini-x86.c: make it easier to enable the debugging code for IMT
8626         slots.
8628 2007-09-28  Martin Baulig  <martin@ximian.com>
8630         * debug-debugger.h
8631         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
8632         `mono_method_klass_offset' and `mono_method_token_offset'.
8634 2007-09-20  Mark Probst  <mark.probst@gmail.com>
8636         * mini.c: First generics sharing implementation.  Can only share
8637         in very simple cases.  If sharing doesn't work it falls back to
8638         dedicated compilation.
8640         * mini.h: Flag in MonoCompile to specify whether generic
8641         compilation is shared.  Flags enum for marking which generic inst
8642         of a context is used.  Prototypes for helper functions.
8644         * generic-sharing.c: Helper functions for generic method sharing.
8646         * optflags-def.h: Optimization flag (gshared) for enabling generic
8647         method sharing added.
8649         * Makefile.am: generic-sharing.c added.
8651 2007-09-19 Daniel Nauck <dna@mono-project.de>
8653         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
8655 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
8656         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
8657         fixes bug 325507.
8659 2007-09-19  Martin Baulig  <martin@ximian.com>
8661         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
8662         mono_debug_cleanup() is now part of mono_cleanup().
8664 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8666         * driver.c (mono_main): Fix a warning.
8668 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
8670         * aot-compiler.c: Optimize various parts when processing large assemblies.
8671         Fixes ##325568.
8673         * mini.c (mono_patch_info_hash): Improve hash function.
8675 2007-09-14  Jonathan Chambers <joncham@gmail.com>
8677         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
8678         
8679         Code is contributed under MIT/X11 license.
8681 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8683         * mini.c (mini_init): Fix a leak.
8685         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
8687 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8689         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
8691 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8693         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
8695 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8697         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
8698         variance tests.
8700         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
8702         * mini.c (handle_alloc): Enable managed allocators in AOT code.
8704         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
8706         * aot-runtime.c (decode_patch_info): Ditto.
8708 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8710         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
8711         static case. Cache delegates in architecture specific code, 
8712         based on number of parameters.
8713         
8714         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
8715         in architecture specific code, based on number of parameters.
8716         
8717         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
8718         caching happen in architecture specific code now.
8719         
8720         Code is contributed under MIT/X11 license.
8722 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8724         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
8725         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
8726         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
8728         Code is contributed under MIT/X11 license.
8730 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8731         * mini.c: (mono_thread_abort) Fixed bug #82416.
8733 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8735         * mini.: hook the new managed GC allocation feature into the JIT.
8737 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
8739         * mini.c: implementation for the new runtime tls opcode.
8741 2007-09-11  Martin Baulig  <martin@ximian.com>
8743         * debug-debugger.h
8744         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
8745         `mono_method_inflated_offset'.
8747 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
8749         * driver.c mini.h mini.c: Add a new devel command line option for injecting
8750         async exceptions into a method.
8752         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
8753         purpose of testing whenever the unwinder works at every instruction.
8755 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8757         * mini.c: check accessibility of method used in ldftn (fixes
8758         bug #82635).
8760 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
8762         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
8764         * inssel.brg: Fix a warning.
8766 2007-09-03  Martin Baulig  <martin@ximian.com>
8768         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
8769         now takes the `main_method' as argument.
8771 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
8773         * cpu-sparc.md (endfilter): Add missing src1:i argument.
8775 2007-08-30  Jonathan Chambers <joncham@gmail.com>
8777         * driver.c: include the cil-coff.h header on Windows.
8778         
8779         Code is contributed under MIT/X11 license.
8781 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
8783         * mini.c, driver.c: don't include the cil-coff.h header.
8785 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8787         * mini.c: flag places that needs fixes fo soft-float support.
8789 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
8791         * mini.h, inssel-float.brg: fix soft-float constant loads on big
8792         endian systems (partially from Dean Jenkins, bug #81924).
8794 2007-08-28  Mark Probst  <mark.probst@gmail.com>
8796         * mini.c (check_linkdemand): Remove embedded reference object in
8797         call to LinkDemandSecurityException.
8798         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
8799         with an IntPtr instead of a reference object.
8801 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
8803         * mini.c (handle_initobj): Handle alignment properly.
8805         * inssel.brg (mini_emit_memset): Ditto. 
8807         * inssel.brg (mini_emit_memcpy): Ditto. 
8809         * inssel-sparc.brg: Ditto.              
8811         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
8813 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
8815         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
8816         exceptions raised in unmanaged code. Fixes part of #82594.
8818 2007-08-24  Mark Probst  <mark.probst@gmail.com>
8820         * mini.c (mono_method_to_ir), declsec.c
8821         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
8823 2007-08-22  Martin Baulig  <martin@ximian.com>
8825         * debug-mini.h
8826         (MonoDebuggerThreadInfo): New typedef.
8827         (mono_debugger_thread_table): New global variable.
8828         (mono_debugger_thread_created): New public function.
8829         (mono_debugger_thread_cleanup): New public function.
8831         * debug-debugger.h
8832         (MonoDebuggerInfo):
8833         - removed `get_current_thread' and `lookup_assembly'.
8834         - removed `data_table'.
8835         - added `thread_table'.
8837         * mini.c
8838         (mono_thread_start_cb): Call mono_debugger_thread_created().
8839         (mono_thread_attach_cb): Likewise.
8840         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
8841         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
8842         initial domain.
8844         * driver.c (mono_main): Move mono_debug_init() up, before calling
8845         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
8847 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8849         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
8850         together when passing several arguments of type double (gives a small
8851         speedup and saves a few bytes of generated code).
8853 2007-08-20  Jb Evain  <jbevain@novell.com>
8855         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
8857 2007-08-20  Jb Evain  <jbevain@novell.com>
8859         * mini.c (mono_method_to_ir): throw MethodAccessException
8860         and FieldAccessException instead of InvalidProgramException.
8862 2007-08-20  Mark Probst  <mark.probst@gmail.com>
8864         * mini.c: CoreCLR security checks.
8866         * mini.h: Removed MonoSecurityMode (moved to
8867         metadata/security-manager.h) and mono_security_mode global var
8868         (replaced by set/get functions in security-manager.h).
8870         * driver.c: Added "core-clr-test" security mode for testing.  Used
8871         set-function for setting security mode.
8873 2007-08-17  Mark Probst  <mark.probst@gmail.com>
8875         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
8876         the new jit_info_table.
8878         * driver.c: Test code for the new jit_info_table (enabled by the
8879         define MONO_JIT_INFO_TABLE_TEST).
8881 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
8883         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
8884         detection of call <REG> instruction sequence. Fixes build on freebsd.
8886 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
8888         * mini-exceptions.c: Fix a warning.
8890 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
8892         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
8893         stack overflow handling code on amd64 too.
8895         * mini-exceptions.c (mono_setup_altstack): Make this use 
8896         mono_thread_get_stack_bounds ().
8898         * mini-x86.h: Disable sigaltstack on solaris x86.
8900 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
8902         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
8904 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
8906         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
8908 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
8910         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
8912         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
8914 2007-08-03  Neale Ferguson <neale@sinenomine.net>
8916         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
8917         due to alignment.
8919 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
8921         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
8922         to be emitted (bug #82281).
8924 2007-08-01  Martin Baulig  <martin@ximian.com>
8926         Merged the `debugger-dublin' branch.
8928         * debug-debugger.h (MonoDebuggerInfo):
8929         Removed the `old_*' compatibility entries.
8930         Added `debugger_version' and `data_table'.
8931         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
8932         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
8934         * debug-mini.c
8935         (MiniDebugMethodBreakpointInfo): Add `address_list'.
8936         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
8937         instead of a `gconstpointer'.
8938         (mono_debugger_insert_method_breakpoint): Return a
8939         `MonoDebugMethodAddressList *'.
8941 2007-06-28  Martin Baulig  <martin@ximian.com>
8943         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
8945 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
8947         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
8948         __builtin_frame_address () since it is broken on older gcc versions.
8950 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8952         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
8953         on the stack overflow handling and made the managed stack overflows
8954         catchable in most cases using soft guard pages.
8955         * exceptions-x86.c: added code to restore the protection in the soft
8956         guard pages at the end of exception handling.
8958 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
8960         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
8962 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8964         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
8965         exception handling.
8967 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8969         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
8970         signal handling support until it has been ported to the new mechanism.
8971         * mini.c: fixed stack overflow detection and use the new
8972         architecture code  to handle signals on the altstack.
8974 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
8976         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
8977         stack overflows on the alt stack.
8979 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
8981         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
8982         stack overflows on the alt stack.
8984 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
8986         * exceptions-ppc.c: cleanup preparing for altstack support.
8988 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
8990         * exceptions-arm.c: cleanup preparing for altstack support.
8992 2007-07-27  Mark Probst  <mark.probst@gmail.com>
8994         * mini.c (print_jit_stats): Output hazard pointer stats.
8996 2007-07-26  Mark Probst  <mark.probst@gmail.com>
8998         * driver.c, mini.c: Replaced security mode flags with a single
8999         enum variable.
9001 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9003         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
9005 2007-07-25  Mark Probst  <mark.probst@gmail.com>
9007         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
9008         (which doesn't do anything yet) for activating Core CLR
9009         (Silverlight) security.
9011 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
9013         * mini-codegen.c: work around a possible gcc bug on arm.
9015 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9017         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
9018         message for platforms that don't support AOT compilation.
9020 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
9022         * mini.h, mini.c, driver.c: temporary smcs hack.
9024 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
9026         * mini-arm.h, mini-arm.c: arm EABI fixes.
9028 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
9030         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
9031         case.
9033         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
9034         trampolines taking a method argument.
9036         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
9038         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
9039         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
9041         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
9042         JIT compilation throws an exception. Fixes #82050.
9044 2007-07-19  Mark Probst  <mark.probst@gmail.com>
9046         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
9047         with the MONO_EXCEPTION_ defines.
9049 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
9051         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
9052         #82117.
9053         
9054         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
9055         the cause of an assertion.
9057 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
9059         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
9060         removed.
9062 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
9064         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
9065         assert. Should fix #82103.
9067 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
9069         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
9070         here too. Fixes #82095.
9072         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
9073         addresses.
9075         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
9077         * mini-amd64.h: Enable IMT for amd64.
9078         
9079         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
9081 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
9083         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
9085 2007-07-12  Mark Probst  <mark.probst@gmail.com>
9087         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
9088         as soon as check_linkdemand sets an exception_type.
9090 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9092         * mini-x86.c: fixed offsets for IMT call sequence.
9093         * mini-x86.h: enable IMT again.
9095 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9097         * trace.c (mono_trace_enter_method): Decode MonoType too.
9099         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
9101         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
9103         * mini-amd64.c: Add preliminary IMT implementation.
9104         
9105 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
9107         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
9108         understand the new IMT-base interface invocation (thanks to
9109         Daniel Nauck for the report and the remote debugging session).
9111 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9113         * mini-x86.c: size and speed optimizations for the IMT bsearch.
9115 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9117         * Makefile.am (aotcheck): Make this actually use the AOTed code.
9119 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
9121         * mini-trampolines.c: implement AOT IMT support.
9122         * mini-x86.h: enable IMT support for wider testing.
9124 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9126         * inssel.brg (emit_imt_argument): Add aot support here.
9128         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
9130 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9132         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
9133         of the IMT implementation, partially from massi, with my
9134         implementation of the bsearch sequence. Disabled by default until
9135         the AOT code is implemented.
9137 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9139         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
9141         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
9143 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9145         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
9146         arch-independent IMT JIT code from Massimiliano
9147         Mantione (massi@ximian.com) with small cleanups from me.
9149 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9151         * Makefile.am: fix svn invocation to get the svn revision to be
9152         independent of the local language (build fix).
9154 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9156         * mini.c (inline_method): Reset cfg->exception_type if the
9157         inlining is aborted.  Fixes: 82049.
9159 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
9161         * mini.c: remove assert from exception handling code when exception_ptr
9162         is not set.
9164 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9166         * mini.c (mono_codegen): Add an assert.
9168         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
9169         enter and leave code.
9170         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
9172 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9174         * mini-ppc.c: fixed memory corruption for localloc(0)
9175         (bug #81852).
9177 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9178         
9179         * mini.c: Fix warnings.
9181 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9183         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
9184         to emit better double->int conversions.
9186 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9188         * mini.c: the provided Min/Max optimizations are valid for unisgned
9189         ints.
9191 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
9193         * mini.c (can_access_method, can_access_field): methods moved to metadata/class.c and renamed to mono_method_can_access_method and mono_method_can_acesss_field
9195 2007-06-28  Miguel de Icaza  <miguel@novell.com>
9197         * mini.c (mono_running_on_valgrind): Add support for reporting the
9198         method and  its boundaries to valgrind.
9200 2007-06-28  Martin Baulig  <martin@ximian.com>
9202         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
9204 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
9206         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
9208         * generic.2.cs: Add new test case.
9210 2007-06-25  Martin Baulig  <martin@ximian.com>
9212         Merged the `debugger-dublin' branch.
9214         * debug-mini.c
9215         (mono_debugger_insert_method_breakpoint): New public method.
9216         (mono_debugger_remove_method_breakpoint): Likewise.
9217         (mono_debugger_check_breakpoints): New static method.
9218         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
9220         * debug-debugger.h (MonoDebuggerInfo):
9221         Renamed (to keep backward compatibility in the vtable):
9222         `insert_breakpoint' -> `old_insert_breakpoint'.
9223         `remove_breakpoint' -> `old_remove_breakpoint'.
9224         `create_string' -> `old_create_string'.
9225         `lookup_class' -> `old_lookup_class'.
9226         `lookup_type' -> removed; changed into a dummy field.
9227         `lookup_assembly' -> `old_lookup_assembly'.
9228         Added (same functionality, but different signature):
9229         `create_string', `lookup_class', `lookup_assembly'
9230         Added new:
9231         `get_method_addr_or_bpt', `remove_method_breakpoint',
9232         `runtime_class_init'.
9234         * debug-debugger.c: Merged the `debugger-dublin' branch.
9236 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
9238         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
9239         well.
9240         (peephole_pass): Likewise.
9242 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9244         * driver.c: hopefully make setaffinity work also for ancient
9245         versions of linux.
9247 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
9249         * driver.c : win32 build fix.
9251 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
9253         * driver.c: check for the MONO_NO_SMP env var and bind to a single
9254         processor if it is set.
9256 2007-06-21  Martin Baulig  <martin@ximian.com>
9258         * debug-mini.h: New file.
9260         * debug-mini.c
9261         (mono_debugger_insert_breakpoint_full): Moved here from
9262         ../metadata/mono-debug-debugger.c.
9263         (mono_debugger_remove_breakpoint): Likewise.
9264         (mono_debugger_breakpoint_callback): Likewise.
9266 2007-06-15  Raja R Harinath  <rharinath@novell.com>
9268         * jit-icalls.c (mono_helper_compile_generic_method): Update to
9269         changes in MonoGenericClass.
9271 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
9273         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
9275 2007-06-14  Raja R Harinath  <rharinath@novell.com>
9277         * jit-icalls.c (mono_helper_compile_generic_method): Update to
9278         removal of MonoGenericMethod.
9280 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9282         * mini-exceptions.c: hooks for the exception events profiling API.
9284 2007-06-14  Randolph Chung  <tausq@debian.org>
9286         * Makefile.ma: Add hppa target.
9287         * mini-arch.h: Include mini-hppa.h
9288         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
9289         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
9290         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9292 2007-06-14  Randolph Chung  <tausq@debian.org>
9294         * inssel.brg: Add rules for "chained" compare-branch operations so that
9295         a single compare op can affect multiple branches.  Adjust cost for
9296         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
9297         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
9298         cost for some rules so that they can more easily be overridden by
9299         per-arch rules (with fixes from lupus).
9300         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9302 2007-06-13  Randolph Chung  <tausq@debian.org>
9304         * mini-ops.h: Reorder branch ops so that they match the order of the
9305         corresponding CEE_* ops.  The code expects them this way.
9306         Add new ops for HPPA target.
9307         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9309 2007-06-13  Randolph Chung  <tausq@debian.org>
9311         * mini-exceptions.c: Handle cases where the stack grows towards
9312         larger addresses.
9313         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9315 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9317         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
9318         counter.
9319         * driver.c: explain where a non-matching corlib is found.
9321 2007-06-13  Mark Probst  <mark.probst@gmail.com>
9323         * mini.c (print_jit_stats): Output dynamic code allocation stats.
9325 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
9327         * mini-exceptions.c: Generate a method profile leave event during
9328         an exception to ensure that the profiler gets notified.
9330 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
9332         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
9333         branch.
9335         * cpu-amd64.md: Add long_and/or/xor opcodes.
9337 2007-06-06  Wade Berrier  <wberrier@novell.com>
9339         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
9340         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
9341         length of instruction shr_imm (expected 8, got 10)
9343 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
9345         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
9347 2007-06-06  Mark Probst  <mark.probst@gmail.com>
9349         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9350         MonoInternalHashTable again (fixed bug in the internal hash table
9351         code).
9353 2007-06-06  Mark Probst  <mark.probst@gmail.com>
9355         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
9356         Have to figure out what makes it crash the SWF regression.
9358 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
9360         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
9362 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9364         * mini.c: optimize out the type check when storing null in a
9365         reference array.
9367 2007-06-04  Mark Probst  <mark.probst@gmail.com>
9369         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9370         MonoInternalHashTable.
9372 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9374         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
9375         signed integer methods.
9377 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
9379         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
9380         permanently since the current approach doesn't work.
9382 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
9384         * inssel.brg (stmt): Only call delegate->invoke_impl if 
9385         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
9387 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
9389         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
9390         the sreg2==rdx case.
9391         
9392         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
9393         account if it contains a rex prefix.
9394         (peephole_pass): Handle OP_FMOVE as well.
9396 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
9398         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
9399         as it causes regressions.
9401 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
9403         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
9404         static case as well.
9406         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
9408         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9409         (mono_arch_get_this_arg_from_call): Ditto.
9411         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
9413         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
9414         invoke_impl field.
9416         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9417         (mono_arch_get_this_arg_from_call): Ditto.
9419         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
9420         
9421         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
9422         try to create optimized invoke code and use that for further invocations. 
9423         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
9425         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
9427 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
9429         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
9430         sealed classes or methods.
9431         *devirtualization.cs: tests for the new optimization
9433 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
9435         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
9436         by the update_volatile () function.
9438 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
9440         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
9441         require it.
9443         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
9445 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
9447         * mini.c: Add configure checks for header files.
9448         * mini-x86.c: Add configure checks for header files.
9449         * trace.c: Add configure checks for header files.
9450         * aot-runtime.c: Add configure checks for header files.
9451         * aot-compiler.c: Add configure checks for header files.
9452         * driver.c: Add configure checks for header files.
9453         * mini-codegen.c: Add configure checks for header files.
9454         
9455         Code is contributed under MIT/X11 license.
9457 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
9459         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
9460         icompare_imm -128 + op_iclt. Fixes #81703.
9462 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
9464         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
9466 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
9468         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
9469         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
9470         so that all isinst checks now use "interface_bitmap".
9472 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
9474         * cpu-amd64.md (jmp): Fix a warning.
9476         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
9478         * basic.cs: Add new regression test.
9480         * basic.cs: Remove test which is now in basic-long.cs.
9482         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
9484         * basic-long.cs: Add new test.
9485         
9486 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
9488         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
9490 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
9492         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
9494         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
9495         places.
9496         
9497         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
9498         throwing code a bit.
9500         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
9501         the exception throwing code a bit.
9503         * mini-x86.c (get_call_info): Allocate result from a mempool.
9505 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
9507         * aot-compiler.c (find_typespec_for_class): Fix the assert.
9509         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
9511         * mini.h (MonoCompile): Add 'token_info_hash' field.
9513         * mini.c: Save token->method associations during compilation so the AOT 
9514         compiler can use it.
9515         
9516         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
9517         which reference generic classes and methods.
9519 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
9521         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
9523         * aot-compiler.c (compile_method): Fix a typo in a comment.
9525         * aot-runtime.c (decode_cached_class_info): Skip generic types.
9527         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
9528         everything generic.
9530         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
9532 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
9534         * mini.h (MonoCompile): Add 'args' field.
9536         * mini.c (mono_compile_create_vars): Store variables representing the arguments
9537         into cfg->args.
9539         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
9541 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
9543         * mini.c (mono_compile_get_interface_var): Remove this unused function.
9545         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
9547         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
9548         opcodes for some opcodes.
9550         * mini.h *.brg *.c: Use the new opcodes.
9552 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
9554         * mini.h: Bumped aot revision.
9556         * inssel.brg: modified code generation of type checks for interfaces
9557         to use the new "MonoClass.interface_bitmap" instead of the old
9558         "MonoClass.interface_offsets".
9560 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
9562         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
9564 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
9566         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
9567         64 bit platforms.
9569 2007-04-27  Neale Ferguson <neale@sinenomine.net>
9571         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
9573 2007-04-27  Wade Berrier  <wberrier@novell.com>
9575         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
9576         mini.h) to fix build.
9578 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
9580         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
9581         
9582         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
9583         causes the corlib unit tests to fail.
9585 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
9587         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
9589         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
9591         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
9592         opcodes to the comparison relations.
9594         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
9595         opcodes to their types.
9596         
9597         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
9599         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
9600         it in cfg->arch.cinfo.
9602         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
9604         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
9605         cfg->cil_offset_to_bb.
9607 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
9609         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
9610         created becase of initlocals.
9612 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
9614         * mini-alpha.c cpu-alpha.md: More alpha port work from 
9615         Sergey Tikhonov <tsv@solvo.ru>.
9617 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
9619         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
9621 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
9623         * cpu-s390.md (break): Correct the length of break instruction.
9625 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9627         * mini.c: fix a couple of soft-float issues and comments.
9629 2007-04-15  Miguel de Icaza  <miguel@novell.com>
9631         * trace.c (is_filenamechar): - is also a filename char.
9633 2007-04-15  Neale Ferguson <neale@sinenomine.net>
9635         * mini-s390.c: Correct checking for enum type in return value processing.
9637 2007-04-14  Raja R Harinath  <rharinath@novell.com>
9639         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
9640         (version.h): Makefile is in the build directory.
9642 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
9644         * mini-amd64.h: fix for assertion failure on Solaris/amd64
9646 2007-04-11  Martin Baulig  <martin@ximian.com>
9648         * mini.c (can_access_member): Fix handling of generic classes;
9649         fixes #81259.
9651 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
9653         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
9655 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
9657         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
9659 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
9661         * mini-codegen.c: make sure the right spill amount is
9662         used for fp or integer registers (fixes the float_sub_spill() on ppc).
9664 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
9666         * mini-ppc.c: fixes for the fp_branch_nan test.
9668 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
9670         * basic.cs: Comment out new test which still fails on ia64.
9672 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9674         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
9676 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9678         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
9680 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
9682         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
9683         on 64 bit machines. Fixes part of #80738.
9685         * basic.cs: Add regression test.
9687 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
9689         * inssel.brg basic.cs: Revert previous change to fix build.
9691         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
9692         platforms.
9693         
9694         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
9696         * basic.cs: Add new regression test.
9698 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
9700         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
9701         many arguments.
9703 2007-03-16  Neale Ferguson <neale@sinenomine.net>
9705         * cpu-s390x.md: Correct length of break instruction.
9707 2007-03-16  Neale Ferguson <neale@sinenomine.net>
9709         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
9710         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
9712 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
9714         * *.c: Begin WIN64 port.
9715         * mini.c:  Use correct register in profiler.
9716         * mini-amd64.c: No inline assembly on Win64.
9717         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
9718         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
9719         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
9720         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
9721         mono_arch_ip_from_context for Win64.
9722         
9723         Contributed under MIT/X11 license.
9725 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
9727         * exceptions-amd64.c (seh_handler): Ditto.
9729         * exceptions-x86.c (seh_handler): Fix a memory leak.
9731 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
9733         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
9734         mini-s390x.c: fixed peephole optimizations to deal
9735         correctly with 1 and 2 byte reload avoidance.
9737 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9739         * cpu-s390.md, cpu-s390x.md: update localloc length.
9741 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9743         * cpu-g4.md: added missing descriptions.
9745 2007-03-14  Miguel de Icaza  <miguel@novell.com>
9747         *  Makefile.am: Add support so the tail tests are not executed on
9748         PowerPC as that is a known limitation of the PowerPC port.
9750 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
9752         * runmdesc.bat:  Move to msvc directory.
9753         
9754 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
9756         * runmdesc.bat:  Run executable that was produced by the current
9757         target and sent via an argument.
9758         
9759 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
9761         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
9762         #81102.
9764         * generics.2.cs: Add regression test.
9766 2007-03-09  Wade berrier  <wberrier@novell.com>
9768         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
9770 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
9772         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
9773         AOT code depends on this.
9775 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
9777         * mini.c: more precise tracking of types in the eval stack
9778         (part of fix for bug #81044).
9780 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
9782         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
9784         * aot-compiler.c (encode_patch): Remove an obsolete comment.
9786 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
9788         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
9790         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
9792 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
9794         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
9795         a pointer on 64 bit systems. Fixes #80190.
9797         * iltests.il: Add new regression test.
9799 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9801         * mini.c: inline a constant for Environment.IsRunningOnWindows.
9803 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
9805         * trace.c: Remove an erroneous alignemnt check when tracing.
9806           Fixes --trace on OSX86.
9808 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
9810         * mini-$(arch).h: initialize SP in context for all the archs.
9812 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
9814         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
9815         regressions in the thread tests.
9817 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
9819         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
9820         - fixed implementation of LOCALLOC opcode
9821         - implemented non-un compare for floats
9822         - code cleanup
9823         - implementation of FDIV and CKFINITE opcodes
9824         - fixes for latest mono updates
9825         - additional arch opcodes
9827 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
9829         * Makefile.am: simplify and merge rules for cross-compilation.
9831 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
9833         * local-propagation.c: Actually *apply* the fix for bug 80591...
9835 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9837         * mini-exceptions.c: backuot part of the last change
9838         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
9840 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
9841         * inssel.brg: Fix bug 59286.
9844 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
9846         * mini-exceptions.c: patch from Zoltan to correctly check for
9847         stack boundaries (using the stack register, not the frame register),
9848         fixes bugs #80724, #79717.
9850 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
9852         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
9853         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
9855         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
9856         presence of frame pointer elimination.
9858 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
9859         
9860         * mini-x86.h: NetBSD UCONTEX_REG defines.
9862 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
9864         * inssel-amd64.brg: Fix amd64 build.
9866 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
9868         * mini.h: remove extern to workaround what looks likes gcc bug 26905
9869         on amd64.
9871 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
9873         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
9874         ends.
9876         * mini-<ARCH>.c: Use mono_is_regsize_var ().
9878 2007-01-30 Mark Mason <mason@broadcom.com>
9880            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
9881            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
9882            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
9883            beginning support for CEE_JMP [not quite working yet]
9884            * tramp-mips.c: LMF handling now works
9885         
9886 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
9888         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
9890         * mini.h (NULLIFY_INS): New macro.
9892 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
9894         * mini.c: statistical profiler fix for windows, patch
9895         from Tor Lillqvist (tml@novell.com).
9897 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
9898         * local-propagation.c: Fix bug 80591.
9900 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
9902         * Makefile.am: put back the --export-dynamic option as with
9903         the previous gmodule flags (thanks to Robert Jordan).
9905 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
9907         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
9909         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
9910         simplify and speed up the local register allocator. Also rename some fields
9911         like iassign->vassign.
9912         
9913         * regalloc.c: Remove some functions which are no longer used since their
9914         inlined version is in mini-codegen.c.
9915         
9916         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
9918         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
9920 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
9922         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
9923         narrowing. Fixes #80622.
9925         * iltests.il: Add new regresssion test. 
9927 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
9929         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
9930         debug-debugger.c, debug-debugger.h: warning fixes.
9931         * driver.c: updated copyright year and made it fit in one line.
9933 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
9935         * aot-runtime.c: updated to use mono-dl instead of gmodule.
9937 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
9939         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
9941         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
9943         * iltests.il: Add new test for bug #80507.
9945 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9947         * mini-arm.h: use soft-float also on vfp for now.
9949 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
9951         * mini.c: fix some more soft-float issues.
9953 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
9955         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
9957 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
9958         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
9959         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
9960         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
9962 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
9964         * mini-arm.c: typo fix.
9966 2007-01-23  Neale Ferguson <neale@sinenomine.net>
9968         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
9970 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
9972         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
9973         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
9975         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
9977         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
9979         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
9980         
9981         * inssel.brg: Fix a warning.
9983         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
9985         * abcremoval.c ssa.c ssapre.c: Update after this change.
9986         
9987         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
9989         * dominators.c (df_set): Use mono_bitset_union_fast.    
9991 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
9993         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
9994         mini-codegen.c: reduce relocations and memory usage for the cpu
9995         description.
9997 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
9999         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
10001         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
10002         to reduce their size.
10004 2007-01-19 Mark Mason <mason@broadcom.com>
10006         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
10007         * mini-mips.c: more configuration macros, support long conditional branches, additional
10008         asserts, fix epilog instrumentation.
10009         * mini-mips.h: use standard stack walk
10010         * cpu-mips.md: increase size of div, rem and conditional branches
10011         
10012 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
10014         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
10015         to cpu spec data.
10017 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
10019         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
10020         (compile_method): Ditto.
10022         * aot-runtime.c (decode_klass_info): Ditto.
10024         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
10025         needed by the code generated by inssel.brg. Also fix a warning.
10027 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
10029         * mini.c: deal with enums that become genericinsts by
10030         being nested in a generic class (bug #79956).
10032 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
10034         * mini.c: match the generic definition to check for
10035         private access with generic types (bug #78431).
10037 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
10039         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
10040         to make life easier for people cross-compiling that insist on not
10041         using scratchbox.
10043 2007-01-17 Mark Mason <mason@broadcom.com>
10045         * inssel-long.brg: patch to deal with mips missing flags
10046         * inssel-long32-mips.brg: implement overflow checks
10047         * insset-mips.brg: implement overflow checks
10048         * mini-mips.h: implement conditional exception handling
10049         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
10050           Remove unused code, minor cleanups.
10051         * exceptions-mips.c: minor cleanups
10052         * mini-ops.h: add mips conditional exception ops
10053         * cpu-mips.md: add mips conditional exception ops
10055         
10056 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
10058         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
10059         to deal with mips missing of flags.
10061 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10063         * exceptions-ppc.c: execute fault handlers.
10065 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
10067         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
10069 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
10071         * mini.c: handle also floating point values in initialize_array.
10073 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10075         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
10076         array initialization and make it conditional on the intrins option.
10078 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10080         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
10081         relocations and put the patch info names close to the enum definition.
10083 2007-01-15 Mark Mason <mason@broadcom.com>
10085         * basic.cs, exceptions.cs: break up large tests to increase debugability.
10087 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
10089         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
10091 2007-01-12  Raja R Harinath  <rharinath@novell.com>
10093         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
10095 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10097         * Makefile.am: distribute the mips sources.
10099 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
10101         * mini-codegen.h: handle bug #80489 here, by excluding ecx
10102         directly.
10104 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
10106         * cpu-x86.md: back out for now as this triggers other regressions.
10108 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
10110         * cpu-x86.md: force src1 and dest regpair for long shift instructions
10111         to eax:edx, so ecx can't get allocated to them (bug #80489).
10113 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
10115         * mini.c, mini-exceptions.c: enabled running fault handlers
10116         (bug #80469).
10118 2007-01-03  Miguel de Icaza  <miguel@novell.com>
10120         * driver.c: If nothing fail, do not use the string "failed",
10121         because it makes it very annoying to view test result logs on the
10122         web. 
10124 2006-12-30  Miguel de Icaza  <miguel@novell.com>
10126         * debug-debugger.c (mono_debugger_main): Rename "main" to
10127         "main_method" to prevent a warning.
10129         Remove a warning for unused field.
10131 2006-12-28  Martin Baulig  <martin@ximian.com>
10133         * debug-debugger.c
10134         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
10136 2006-12-22  Martin Baulig  <martin@ximian.com>
10138         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
10139         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
10140         seperate `.mdb_debug_info' section, so we can access it from the
10141         debugger even if the binary is stripped.
10143         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
10144         from the `.mdb_debug_info' here to prevent the linker from
10145         removing that section.
10147         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
10148         mdb-debug-info64.s.
10150 2006-12-19  Robert Jordan  <robertj@gmx.net>
10152         * mini-x86: enable the code to return small structures in
10153         registers for FreeBSD as well. Fixes bug #80278.
10154         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
10156 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10158         * mini-x86.c: align the stack when calling the profiler
10159         function instrumenting the prolog (on OSX).
10161 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10163         * mini.c: emit a break opcode where Debugger.Break () is called.
10165 2006-12-13  Miguel de Icaza  <miguel@novell.com>
10167         * mini.c (mono_method_to_ir): Provide useful information on this
10168         assert, to prevent others from debugging like I did.
10170 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10172         * mini.c: enable code which was incorrectly commented
10173         (bug #80235).
10175 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10177         * mini-x86.c: enable on OSX, too, the code to return small
10178         structures in registers.
10180 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
10182         * mini-x86.c: remove the use of the dynamic code manager here, too.
10184 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
10186         * mini.h, debug-debugger.c, tramp-*.c: fixed 
10187         mono_debugger_create_notification_function() to use
10188         mono_global_codeman_reserve () instead of a dynamic code manager.
10190 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
10192         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
10193         ves_array_element_address() jit icall and use a generated
10194         managed method instead (which is about 4 times faster for a rank 3
10195         array access).
10197 2006-11-29  Mark Mason  <mason@broadcom.com>
10199         * basic-calls.cs: additional tests for passing
10200         structures as function arguments.
10202 2006-11-29  Mark Mason  <mason@broadcom.com>
10204         * mini-mips.h: disable custom exception handling
10205         * mini-mips.c: throw/rethrow should use jalr to call
10206         exception stubs.  Fixed bug with passing structures
10207         by value. More support for tracing floating point
10208         functions.
10210 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10212         * mini.c: fixed typo in the soft-float ldind.r4 handling
10213         (bug #80086).
10215 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10217         * mini.c, mini.h, driver.c: added --runtime command line
10218         option to select a different runtime than the autodetected one.
10219         * jit.h: added API for embedders to initialize with a specific
10220         runtime version.
10222 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
10224         * mini.c: handle also boxing of r4 values (bug #80024).
10226 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10228         * mini-ppc.c: force indirect calls until we reserve
10229         enough address space for all the generated code.
10231 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
10233         * exceptions-arm.c: workaround bugs in the libc definition
10234         of struct ucontext.
10236 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10238         * inssel.brg: fixes from me and Mark Mason.
10240 2006-11-23  Dick Porter  <dick@ximian.com>
10242         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
10243         semaphore display now we've fixed the initial value
10245 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10247         * inssel.brg: partially revert the last change to fix the build.
10249 2006-11-21  Mark Mason  <mason@broadcom.com>
10251         * inssel.brg: Add and use compare-and-branch macros to support
10252         architectures that do not have condition code registers (ie. MIPS).
10253         * *-mips.{c,brg,md}: Fix copyright statements
10255 2006-11-20  Mark Mason  <mason@broadcom.com>
10257         * Makefile.am: remove mini-codegen.c from list of MIPS sources
10258         * mini.c: Allow GET_CONTEXT to be specified by the arch port
10259         * mini.h: Added declaration for mono_print_ins()
10260         * mini-codegen.c: added ins_spec initializer for MIPS
10261         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
10262         vreg to be virtual and hreg to be non-virtual.
10263         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
10264         is not yet working/implemented correctly.
10265         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
10266         non-static, fixup calls to print_ins() from other parts in the file.
10268 2006-11-20  Mark Mason  <mason@broadcom.com>
10270         * basic-calls.cs: added tests for passing structures as arguments
10271         to calls.
10273 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10275         * inssel-long32.brg: optimize signed division by power of two.
10277 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
10279         * mini-arm.c: added support for interworking with thumb code
10280         (mono must be still be built using the ARM instruction encoding).
10282 2006-11-19  Miguel de Icaza  <miguel@novell.com>
10284         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
10285         verifier has different rules for it.   Fixes a few verifier issues
10286         in the test suite.
10288         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
10289         at the end, so people know what happened.
10291 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10293         * brach-opts.c: in optimize_exception_target() make sure we
10294         are in a catch clause (fixes bug #79871).
10296 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10298         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
10299         more soft-float support fixes.
10301 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
10303         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
10304         that are passed half on the stack and half in registers.
10306 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10308         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
10309         more mips integration work from Mark E Mason 
10310         <mark.e.mason@broadcom.com>.
10312 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10314         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
10315         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
10316         tramp-mips.c: added sources for the mips port, not
10317         integrated in the build yet. Contributed by
10318         Mark E Mason <mark.e.mason@broadcom.com>.
10320 2006-11-14  Neale Ferguson <neale@sinenomine.net>
10322         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
10324 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10326         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
10327         put the soft-float rules in its own file since it seems to
10328         break s390 compilation.
10330 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10332         * mini-arm.c: fixed wrnings.
10334 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
10336         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
10337         inssel-arm.brg: ARM support for soft-float.
10339 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10341         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
10342         loads and stores of 32 bit fp values.
10344 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
10346         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
10348         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
10349         works. Fixes #79852 and #79463.
10351 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10353         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
10354         more soft-float support WIP and fixes.
10356 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
10358         * mini-arm.c: some VFP updates.
10360 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
10362         * mini-exceptions.c: 0 is a valid local var offset in some
10363         architectures, don't assert (bug #78508).
10365 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
10367         * exceptions-arm.c: fixed off by one error in stack walk code.
10369 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10371         * mini.h, mini.c: more precise tracking of type load exceptions.
10373 2006-11-03  Robert Jordan  <robertj@gmx.net>
10375         * Makefile.am: [WIN32] Add monow.exe target.
10376         * driver.c: [WIN32] Don't detach the console when debugging.
10377         Fixes bug #79797.
10378         
10379 2006-10-30  Miguel de Icaza  <miguel@novell.com>
10381         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
10383 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
10385         * aot-compiler.c (emit_method_info): Add a case missed earlier.
10387         * driver.c (mini_regression): Fix --regression with AOT.
10389         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
10391 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
10393         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
10395         * mini-sparc.h: Don't use sigaction on sparc/linux.
10397         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
10399         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
10401         * mini-exceptions.c: Add proper include files for getpid ().
10403 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
10405         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
10406         address instead of a MonoJitInfo* to avoid decoding the exception info for the
10407         method.
10409         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
10410         name cache to reduce its size.
10412         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10414 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
10416         * mini-x86.c: Save/restore the current LMF structure more efficiently using
10417         the mono_lmf TLS variable.
10419         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
10420         trampoline lmf frames.  
10422         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
10424 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
10426         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
10427         the mono_lmf TLS variable.
10429         * mini-exceptions.c: Access the LMF structure through accessors.
10431         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
10432         variable instead of in jit_tls->lmf.
10434         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
10435         
10436         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
10437         trampoline lmf frames.
10439         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
10441 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
10443        * mini.c trace.c mini-x86.c: Revert these too.
10444         
10445        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
10446        signature change.
10448 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
10450         * genmdesc.c: removed now dead code.
10452 2006-10-09  Robert Jordan <robertj@gmx.net>
10454         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
10456 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
10458         * mini.h: do not leave gaps in the opcode values.
10460 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
10462         * jit-icalls.h: flag functions as internal here, too.
10464 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
10466         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
10467         functions with the internal attribute.
10469 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
10471         * aot-compiler.c: fclose the file descriptor in the profile read loop.
10473 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10475         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
10476         for soft-float.
10478 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
10480         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
10481         tail calls as on other platforms.
10483         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
10485         * iltests.il: Add a few tailcall tests.
10487 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10489         * driver.c: fix loop for old compilers (bug #79521).
10491 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
10493         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
10495         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
10497         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
10498         metadata without any code.
10500         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
10501         more precise debugging information using gdb.
10503 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
10505         * inssel-ia64.brg: Make the helper methods static.
10507 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10509         * inssel-x86.brg: make the helper methods static.
10511 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
10513         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
10515 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10517         * mini.c: updates for monoburg changes.
10518         * inssel.brg: make a few helper functions static as they should.
10520 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
10522         * Makefile.am: Move mini-codegen.c to common_sources.
10524 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10526         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
10527         instructions.
10528         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
10529         mini-ppc.h: port to use the common local register allocator.
10531 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10533         * mini.h: Remove the comment too then.
10535 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
10537         * mini.h: put back backend.data which is to be used shortly and
10538         doesn't increase the size of MonoInst. If any 64 bit arch aligned
10539         pointers on 4 byte boundaries it'd have much bigger issues running
10540         and you can ifdef it out anyway.
10542 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10544         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
10545         MonoInst size by 4 bytes on 64 bit machines.
10547 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10549         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
10550         replacement with more meaningful field names. Arch maintainers, please
10551         check the assigned names are good enough for your arch.
10553 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10555         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
10556         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
10558 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10560         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
10561         relocations and memory requirements, put the optimization flags
10562         definitions in their own file.
10564 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
10566         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
10568         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
10570 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
10572         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
10574 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
10576         * inssel.brg: use the correct function to get the size of an item
10577         in an array, given an element class.
10578         * aot-compiler.c: do not access class->class_size directly.
10580 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10582         * mini.h, debug-mini.c: added a debugging function to print
10583         info about local variables and arguments in a jitted method.
10585 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
10587         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10589         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
10591 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
10593         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
10594         inner and outer loops when passing vtypes.
10596 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
10598         * mini-ppc.c: take into account the cpu errata for cache flushing
10599         which caused some random errors (bug #79381).
10601 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
10603         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
10604         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
10606 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
10608         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
10609         loaded.
10611         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
10612         freebsd ports tree.
10614         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
10615         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
10617         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
10618         displacement.
10620 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
10622         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
10624 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
10626         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
10627         macro does not have to be changed during debugging.
10629         * cpu-alpha.md inssel-alpha.brg mini-alpha.h mini-alpha.c exceptions-alpha.c tramp-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10631         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
10633         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
10634         
10635         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
10636         MONO_ARCH_NO_EMULATE_MUL is defined.
10638         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
10640         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
10642         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
10644         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
10645         
10646 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
10648         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
10649         stuff to mini-exceptions.c where it is used.
10651         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
10652         setup code, the real one is in mini-exceptions.c.
10654         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
10655         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
10656         some changes from the freebsd ports tree.
10658         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
10659         constants.
10660         
10661         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
10663 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
10665         * mini.c: on Linux, check for /proc to be mounted
10666         (bug# 79351, novell bug#201204).
10668 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
10670         * mini.c: handle cases where pthread_attr_getstack() behaves
10671         incorrectly (bug #78096).
10673 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
10675         * mini-arm.c: support larger stack frames (bug #79272).
10677 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
10679         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
10681         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
10682         tokens.
10684         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
10685         mono_class_from_name () to find a class from its name.
10687         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
10689 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
10691         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
10693 2006-09-05  Kornél Pál  <kornelpal@gmail.com>
10695         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
10697 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
10699         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
10700         callinfo->trampoline.
10702         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
10703         fixes #79271.
10704         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
10705         future.
10707 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
10709         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
10711 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
10713         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
10714         stats.method_trampolines, it is already done by the generic trampoline code.
10716         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
10717         
10718 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
10720         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
10722         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
10724         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
10726         * mini.c (print_jit_stats): Print mscorlib mempool size too.
10727         
10728         * mini.c (print_jit_stats): Print new stats.
10730         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10732 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
10734         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
10735         Address on two dimensional arrays. Fixes #78729.
10737         * mini.h (MonoCompile): Add a 'skip_visibility' field.
10739         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
10740         a method.
10742         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
10744         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
10745         #79130.
10746         
10747         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
10748         a race condition.
10749         (mini_get_ldelema_ins): Ditto.
10751 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
10753         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
10754         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
10755         Fixes #79213.
10757 2006-08-29 Neale Ferguson <neale@sinenomine.net>
10759         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
10760         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
10762         * exceptions-s390x.c: Cosmetic change.
10764         * tramp-s390.c: Fix warning.
10766         * cpu-s390.md: Correct length of mul_imm.
10768 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10770         * aot-compiler.c: added binary writer with ELF backend
10771         implementation (only on Linux/x86 for now).
10773 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
10775         * Makefile.am: Don't run net 2.0 AOT tests.
10777         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
10778         (mono_compile_assembly): Skip net 2.0 assemblies as well.
10780         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
10782 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10784         * aot-compiler.c: simplified and refactored the asm-writing code
10785         to allow different backends.
10787 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
10789         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
10791         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
10792         little. Share patches of type TYPE_FROM_HANDLE as well.
10794         * mini.c (mono_patch_info_equal): New helper function.
10795         (mono_patch_info_hash): Ditto.
10797         * aot-compiler.c (emit_method_code): Fix s390 build.
10799         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
10800         is not handled because it is stored as a flag and not as a type ctor. Fixes
10801         #79016.
10803 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10805         * aot-compiler.c: Fix computation of GOT slot statistics.
10806         
10807         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
10808         Also remove support for not PIC AOT.
10810         * mini.h: Bump AOT file format version.
10812         * objects.cs: Add a test for #78990.
10814         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
10815         (peter.dettman@iinet.net.au). Fixes #79087.
10817         * basic-long.cs: Add a test for the above.
10819 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
10821         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
10822         
10823         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
10824         code somewhat.
10826 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
10828         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
10829         exceptions.
10831 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
10833         * mini.c: Don't verify COM proxy invoke calls
10834         
10836 2006-08-10  Dick Porter  <dick@ximian.com>
10838         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
10839         which process is holding semaphores locked.
10841 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
10843         * mini-ia64.c mini-amd64.c: Fix #79027.
10845         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
10847         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
10849         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
10850         implicit arguments in a vararg call. Fixes #79027.
10852 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
10854         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
10855         (mono_get_array_new_va_signature): Ditto.
10857 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
10859         * aot-runtime.c: Call init_plt lazily.
10861         * inssel-long.brg: Fix unsigned long->int conversion.
10863         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
10865         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
10866         that most data is now in the .rss/.data section.
10868 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
10870         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
10872         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
10874         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
10876         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
10878         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
10879         virtual call. Fixes #79010.
10881         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
10882         and use the result as the this argument in the real call.
10884         * generics.2.cs: Add a new test for #79010.
10885         
10886 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
10888         * mini-x86.c: Fix a warning.
10890         * aot-compiler.c: Add a bunch of statistics.
10892         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
10894 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
10896         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
10898 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
10900         * cpu-alpha.md inssel-alpha.brg mini-alpha.h mini-alpha.c exceptions-alpha.c tramp-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10902 2006-07-13  Miguel de Icaza  <miguel@novell.com>
10904         * mini.c (mono_method_to_ir): Obtain the original method in the
10905         CIL stream and use this to perform validation.
10907         Fixed: #78816
10909 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
10911         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
10912         (mono_arch_call_opcode): Ditto.
10914         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
10915         #78826.
10917         * mini.c (mono_patch_info_dup_mp): New helper function.
10918         
10919         * aot-compiler.c (compile_method): Fix some of the memory allocated during
10920         compilation. Fixes #78827.
10922 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
10924         * declsec.c: Use original security informations for
10925           MONO_WRAPPER_MANAGED_TO_MANAGED.
10927 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
10929         * mini.c: Allow Com Interop methods/classes and
10930         don't verify COM wrapper calls
10931         
10933 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
10935         * inssel-long32.brg: Fix long->i4 checked conversion.
10937         * exceptions.cs: Add a test for the above.
10939 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
10941         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
10943         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
10944         leaks.
10946         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
10947         #78775.
10949 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
10951         * mini.c: Fix solaris/x86 exception handling.
10953         * Makefile.am: Get rid of $(ICU_LIBS).
10955 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
10957         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
10958         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
10959         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
10961         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
10963         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
10964         this function causes a SIGSEGV.
10966 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
10968         * mini.c: Remove unused solaris/x86 includes.
10970 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
10972         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
10974 2006-06-20  Jb Evain  <jbevain@gmail.com>
10976         * cpu-g4.md: fix max length of start_handler instruction.
10978 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
10979         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
10981 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
10982         * ssa.c: Fixed bug 78653 for SSA based deadce.
10983         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
10984         MonoInst.flags, used in SSA based deadce.
10985         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
10986         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
10988 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10990         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
10991         it can end up using non executable memory on ppc64 systems
10992         running ppc32 userspace (fix from Johannes Berg).
10994 2006-06-14  Dick Porter  <dick@ximian.com>
10996         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
10997         4.1.1
10999 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
11000         * mini.c: Made so that inline is locally disabled if it would
11001         trigger a .cctor, because too many apps depend on this behavior
11002         (which seems to be also the one of the MS CLR).
11004 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
11006         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
11007         No idea why this worked before.
11009         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
11010         which branch to outer exception clauses since they could skip the
11011         inner finally clauses. Fixes #78633.
11013         * exceptions.cs: Add a test for the above.
11015         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
11016         Fixes #78629.
11018         * iltests.il: Add a test for the above.
11020 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
11022         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
11023         after the end of a try bblock, to prevent asserts in mini_method_compile ().
11025         * iltests.il: Add a test for the above.
11027 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
11029         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
11030         
11031         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
11032         methods as instrinsics.
11034 2006-06-09  Wade Berrier <wberrier@novell.com>
11036         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
11037         (simple-cee-ops.h ssapre-mini-ops.h)
11039 2006-06-09  Neale Ferguson <neale@sinenomine.net>
11041         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
11042         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
11043         instruction).
11044         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
11045         * cpu-s390x.md: Fix max. length values for a couple of instructions.
11047 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11049         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
11051 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
11053         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
11054         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
11055         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
11056         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
11057         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
11058         of opcodes, so that bug 78549 should not happen again.
11059         * ssapre.c: Updated to use the renamed files.
11061 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
11063         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
11064         in OP_ATOMIC_EXCHANGE_I4.
11066 2006-06-07  Wade Berrier <wberrier@novell.com>
11068         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
11069         in mono_debugger_create_notification_function)
11071 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
11073         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
11074         
11075         * mini.c (type_from_stack_type): Disable some changes which do not
11076         seem to work.
11078         * driver.c: Reenable opts.
11080         * mini.h (MonoStackSlot): New structure to keep track of the verification state
11081         of the evaluation stack.
11082         
11083         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
11084         evaluation stack trace at entry to the bblock.
11086         * mini.c (merge_stacks): New function to perform verification of stack merges.
11087         Turned off by default.
11089         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
11090         STACK_MP.
11091         
11092 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
11094         * local-propagation.c: Fixed bug 78549.
11096 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
11098         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
11100 2006-06-02  Miguel de Icaza  <miguel@novell.com>
11102         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
11103         tramp-arm.c, tramp-ia64.c
11104         (mono_debugger_create_notification_function): Update signature to
11105         new signature and use new protocol for creating the notification
11106         function.  
11108         Should fix the build.
11110 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
11112         * exceptions-ppc.c (mono_jit_walk_stack)
11113         (ves_icall_get_frame_info): Fix the build
11115 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
11117         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
11119 2006-05-31  Raja R Harinath  <rharinath@novell.com>
11121         * il2tests.2.il: New file for generics CIL tests.  Add test for
11122         #78019.
11123         * Makefile.am: Update.
11125         Fix #78019
11126         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
11127         to nullable types.
11129 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
11131         * aliasing.c: Fixed bug 78311.
11133 2006-05-29  Martin Baulig  <martin@ximian.com>
11135         * mini-exceptions.c (mono_find_jit_info): When computing the
11136         native offset, check whether we're actually inside the method's
11137         code; call mono_debug_print_stack_frame() to format the frame.
11138         (ves_icall_System_Exception_get_trace): Call
11139         mono_debug_print_stack_frame() to format the stack frame.
11140         (ves_icall_get_trace): Update to the new debugging API.
11141         (mono_jit_walk_stack_from_ctx): Likewise.
11142         (ves_icall_get_frame_info): Likewise.
11144         * mini.c (get_method_from_ip): Use the new debugging API.
11145         (mono_print_method_from_ip): Likewise.
11147         * exceptions-ppc.c
11148         (mono_jit_walk_stack): Use the new debugging API.
11149         (ves_icall_get_frame_info): Likewise.   
11151 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
11153         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
11155 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
11157         * mini.c: Added "limitator" to inline for debugging.
11159 2006-05-24  Martin Baulig  <martin@ximian.com>
11161         * debug-debugger.c (mono_debugger_init): Create a private,
11162         malloc()-based code manager for the notification function and
11163         intentionally leak it on exit.  This fixes the crash-on-exit race
11164         condition.
11166         * tramp-amd64.c
11167         (mono_debugger_create_notification_function): Added
11168         `MonoCodeManager *' argument.
11170         * tramp-x86.c
11171         (mono_debugger_create_notification_function): Added
11172         `MonoCodeManager *' argument.
11174 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
11176         * aliasing.c: Fixed 64 bit issue.
11177         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11178         default since all known bugs are fixed (one more time!).
11180 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11182         * mini.c: write barrier support.
11184 2006-05-23  Martin Baulig  <martin@ximian.com>
11186         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
11187         check at the top of the file.
11189 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
11191         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
11192         reverting changes without reason and without changelog entries.
11194 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
11196         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
11197         to a few opcodes. Fixes #78439.
11199         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
11200         consistency with other archs.
11202         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
11204 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11206         * debug-debugger.c: fix the build.
11208 2006-05-17  Martin Baulig  <martin@ximian.com>
11210         * debug-debugger.c
11211         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
11212         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
11213         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
11214         (debugger_attach): Call GC_mono_debugger_add_all_threads().
11216 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
11218         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
11220 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
11222         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
11223         MONO_TYPE_GENERICINST.
11224         
11225         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
11226         MONO_TYPE_GENERICINST.
11228 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
11230         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
11231         #78325.
11233 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
11235         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
11236         mempool.
11237         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
11239 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
11241         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
11242         mono_trace_cleanup ().
11244         * iltests.il: Fix problem with the newly added test.
11246         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
11247         due to register constraints, free up the previous hreg. Fixes #78314.
11249         * iltests.il: Add new test for #78314.  
11251         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
11252         Interlocked.Add. Fixes #78312.
11254         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
11255         
11256 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
11258         * inssel.brg (mini_emit_virtual_call): Fix a warning.
11260 2006-05-05  Martin Baulig  <martin@ximian.com>
11262         * debug-mini.c (mono_debug_open_block): New method.
11264         * mini-amd64.c
11265         (mono_arch_output_basic_block): Call mono_debug_open_block() at
11266         the beginning of each basic block.
11268         * mini-x86.c
11269         (mono_arch_output_basic_block): Call mono_debug_open_block() at
11270         the beginning of each basic block.
11272 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
11274         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11275         default until I understand why they break the build on amd64.
11277 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
11279         * mini.c (mini_cleanup): Call mono_cleanup ().
11281         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
11282         errors.
11284 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
11286         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
11287         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11288         default since all known bugs are fixed, and I cannot reproduce bug
11289         77944... I'm asking Matt Hargett to test again after this commit.
11291 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
11293         * mini-codegen.c: Fixed typo that thrashed inline.
11295 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
11297         * dominators.c (compute_dominators): Avoid using a worklist since
11298         it is not correct in some cases. Instead, iterate over all bblocks as
11299         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
11301 2006-04-28  Miguel de Icaza  <miguel@novell.com>
11303         * mini.c (mono_jit_compile_method_inner): Use
11304         mono_prepare_exception_from_error that resets the value
11305         internally.
11307 2006-04-27  Miguel de Icaza  <miguel@novell.com>
11309         * mini.c: Move the mini_loader_error_to_exception to metadata. 
11310         
11311 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
11313         * aliasing.c: Fixed bug 78210.
11315 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
11317         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11318         default until all their problems (or the ones they trigger) are fixed.
11320 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
11322         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
11323         
11324         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
11325         as loaded only after resolving patches since that could invoke the same method.
11327         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
11329         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
11330         functions.
11332         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
11333         AOT loader.
11335         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
11336         stack.
11338         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
11339         made from AOT code through the PLT table.
11341         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
11342         holding the plt offset when a call is made to the aot plt trampoline.
11343         
11344 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
11346         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
11347         amd64 AOT support.
11349         * Makefile.am (common_sources): Fix build breakage.
11351         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
11352         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
11353         intra-assembly calls if possible.
11354         
11355         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
11357         * mini-trampolines.c: Handle PLT entries.
11359         * mini.c: Avoid creating a GOT var for calls.
11361         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
11362         from mscorlib code.
11364         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
11365         from mscorlib code.
11367         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
11368         AOT code.       
11370         * mini.h: Bump AOT file format version.
11371         
11372         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
11373         covers more cases.
11375 2006-04-25  Martin Baulig  <martin@ximian.com>
11377         * driver.c: Disable copyprop, consprop and inline when running
11378         inside the debugger.
11380 2006-04-25  Martin Baulig  <martin@ximian.com>
11382         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
11383         with `get_current_thread' and added `detach'.
11384         (MonoDebuggerMetadataInfo): Added `thread_size',
11385         `thread_tid_offset', `thread_stack_ptr_offset' and
11386         `thread_end_stack_offset'.
11388 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
11390         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
11391         aot-runtime.c.
11393         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
11394         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
11396         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
11398         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
11400         * aot.c: Add support for ADJUSTED_IID.  
11402 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
11404         * aot.c (emit_method_order): Don't align method_order_end.
11406         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
11407         the interface ID changes.
11409 2006-04-21  Dick Porter  <dick@ximian.com>
11411         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
11412         cleaning up a thread.  Fixes the new part of bug 77470.
11414 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
11416         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
11417         to managed wrapper.
11418                      
11419 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
11421         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
11422         
11423         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
11424         SIGSEGV. Fixes #78072.
11426         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
11427         unregister our SIGABRT handler.
11429 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
11431         * mini.c: Disabled inline where it can alter the call stack in a
11432         way visible from managed code.
11433         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
11434         default.
11436 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
11438         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
11439         on other platforms. Fixes #78089.
11441 2006-04-13  Martin Baulig  <martin@ximian.com>
11443         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
11444         determine whether we're inside the debugger.
11446         * debug-debugger.h
11447         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
11449 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11451         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
11452         handler clauses. Fixes #78024.
11454         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
11455         in the CALL_MEMBASE opcodes. Fixes #78088.
11456         (mono_arch_get_vcall_slot_addr): Ditto.
11458 2006-04-10  Martin Baulig  <martin@ximian.com>
11460         * debug-debugger.c: The thread handling code has now been moved
11461         into ../metadata/threads.c.
11463 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11465         * driver.c (mono_main): Fix --with-gc=none build.
11467         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
11468         (mono_spillvar_offset_float): Ditto.
11469         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
11470         hreg, not when its !global, since on ia64, there is a third category: stacked
11471         registers.      
11473 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
11475         * mini.c: set MonoInst->klass for load field address and a few other
11476         places.
11478 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11480         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
11482 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11484         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
11485         the branch opt changes.
11487 2006-04-06  Dick Porter  <dick@ximian.com>
11489         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
11490         
11491         * wapihandles.c (mini_wapi_seminfo): 
11492         * driver.c (mono_main): Add semaphore info option
11494 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11496         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
11497         branch optimization changes. Fixes #78009.
11499 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11501         * mini.c: ignore accessibility of methods in managed->native wrappers.
11503 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11505         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
11506         
11507         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
11509 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11511         * mini.c: Modify the branch optimizations to preserve the invariant that
11512         the entries inside the in_bb and out_bb arrays are unique.
11513         (mono_unlink_bblock): Avoid creation of new arrays.
11515 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
11517         * mini.c (mono_unlink_bblock): Fix regression caused by previous
11518         change (#77992).
11520 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
11522         * mini.c (optimize_branches): Remove the "optimizations" in
11523         the cbranch1/cbranch2 -> branch cases which were causing several
11524         problems in the past. Fixes #77986.
11526 2006-03-31  Chris Toshok  <toshok@ximian.com>
11528         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
11529         default optimizations :(
11531 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11533         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
11534         branch.
11536 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
11538         * local-propagation.c: Added comments to structs and removed
11539         "Mono" prefixes from local tree mover types.
11541 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
11543         * Makefile.am (arch_sources): Define this for each architecture so 
11544         libmono_la_SOURCES is defined in one place.
11546 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
11548         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
11549         from handles/.
11551 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
11553         * driver.c: print the GC name supplied by configure.
11555 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
11557         * local-propagation.c: Added tree mover, and moved here all the
11558         local propagation code from mini.c
11559         * mini.c: Added support for treeprop, and moved all the local
11560         propagation code to local-propagation.c
11561         * mini.h: Added support for treeprop
11562         * driver.c: Added support for treeprop, enabled consprop, copyprop,
11563         treeprop, inline and deadce by default
11564         * Makefile.am: Added local-propagation.c
11566 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
11568         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
11570 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
11572         * debug-debugger.c: make it compile without the Boehm GC.
11574 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11576         * mini.c: fixed issue with mismatch when an icall is registered
11577         with multiple names but same address.
11579 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11581         * declsec.c, mini-exceptions.c: use write barrier to set reference
11582         fields of managed objects.
11584 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
11586         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
11587         (can_access_internals): Fix a warning.
11589         * mini.c (print_method_from_ip): Rename this to 
11590         mono_print_method_from_ip so it gets exported.
11592         * trace.c: Deal with strings inside StringBuilder's containing garbage
11593         and fix memory leaks. Fixes #77848.
11595 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
11597         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
11598         fixes #77787.
11600 2006-03-16 Neale Ferguson <neale@sinenomine.net>
11601         
11602         * mini-s390.c: Remove OP_X86_TEST_NULL.
11604 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11606         * mini.c: use the correct GetHashCode() for the moving collector.
11608 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
11610         * liveness.c: Regalloc spill cost tuning.
11612 2006-03-15 Neale Ferguson <neale@sinenomine.net>
11613         
11614         * mini-s390x.h: Correct S390_LONG macro.
11616         * mini-s390x.c: Cleanup unused code.
11618 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11620         * jit-icalls.h: New file.
11622         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
11623         icalls and include that instead of including jit-icalls.c.
11625         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
11626         OP_X86 opcodes.
11628 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
11630         * mini.c: when checking for member accessibility, also check for
11631         friend assemblies and for explicit interface implementations.
11633 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11635         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
11637         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
11639         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11640         common cases are done first.    
11642         * mini-ops.h: Only define platform specific opcodes on the given platform.
11644         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
11645         branch.
11646         
11647 2006-03-14  Martin Baulig  <martin@ximian.com>
11649         Revert Paolo's change from r57348:
11651         * mini.h: don't use gboolean for bitfields.
11652         * mini.c: verifier changes for fields and methods accessibility.
11654 2006-03-13  Neale Ferguson <neale@sinenomine.net>
11656         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
11658         * mini-s390x.c: Fix conv_r_un.
11660         * cpu-s390, cpu-s390x.md: Fix lengths.
11662 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11664         * mini.c: nested types have access to all the nesting
11665         levels, not just the enclosing types.
11667 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11669         * mini.c: added a few more verification checks.
11671 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
11673         * liveness.c: Merge optimizations from the linear-il branch.
11675 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11677         * mini-ia64.c (emit_call): Add a comment.
11679         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
11681         * tramp-ia64.c: Fix some warnings.
11683 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11685         * mini.h: don't use gboolean for bitfields.
11686         * mini.c: verifier changes for fields and methods accessibility.
11688 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11690         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
11691         lazy icall wrapper changes.
11693         * dominators.c: Replace all the dominator algorithms with faster
11694         ones from the linear-il branch.
11696         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
11697         the mempool.
11699         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11700         common cases are done first.
11702         * mini-amd64.c: Fix some warnings.
11704         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
11705         from the mempool.
11707         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
11708         added code.
11710         * mini.h: Add a missing prototype.
11712 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11714         * mini.c: Compile icall wrappers lazily.
11716         * mini-codegen.c: Use printf instead of g_print since its much faster.
11718         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
11719         function.
11721         * mini.c (optimize_branches): Cache the negative result from 
11722         remove_block_if_useless ().
11724         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
11725         Also fix some bblock linking issues.
11727         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
11728         assembly files.
11730         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
11732         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
11733         accessed fields first, for better cache behavior.
11734         
11735 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11737         * mini.c: speedup IList<T> array accesses.
11739 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11741         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
11742         inline_costs counter. Fixes #77190.
11744 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
11746         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
11747         trace messages. Fixes #77706.
11749 2006-03-04  Martin Baulig  <martin@ximian.com>
11751         * tramp-amd64.c, tramp-x86.c
11752         (mono_debugger_create_notification_function): Use
11753         mono_global_codeman_reserve() to allocate a buffer at runtime and
11754         return it.
11756         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
11758         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
11759         notification function at runtime and then call `initialize' in the
11760         `MONO_DEBUGGER__debugger_info' vtable.
11762 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11764         * iltests.il: Fix a visibility problem.
11766 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11768         * driver.c, mini.c: add hooks for the counters API.
11770 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11772         * driver.c: show disabled options.
11774 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11776         * linear-scan.c: always use cost-driven selection.
11778 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11780         * jit-icalls.c (helper_compile_generic_method): Revert change from
11781         2006-02-24.
11783 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
11785         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
11787 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11789         * inssel.brg: style fixes, mostly to force the updated monoburg
11790         to run for people using svn.
11792 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11794         * mini.c: match monoburg changes.
11796 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11798         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
11799         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
11800         declaration in the header file.
11802 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11804         * helpers.c: reduce relocations and mem usage.
11806 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11808         * mini.h, mini-codegen.c: disable logging features if
11809         requested by configure.
11811 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
11813         * mini.c: tiny verifier changes.
11815 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11817         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
11818         cpu-pentium.md: stack alignment changes for osx/x86,
11819         partially from Geoff Norton <gnorton@customerdna.com>.
11821 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11823         * jit-icalls.c (helper_compile_generic_method): Update to changes
11824         in metadata/class.c.
11826 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11827         
11828         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
11829         
11830         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
11831         interface calls with large offsets.
11833 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11835         * jit-icalls.c (helper_compile_generic_method): Document the
11836         special-case we depend on so that we can inflate the method twice
11837         with the same context with no bad side-effects.
11839 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11841         * mini-x86.c, mini-amd64.c: fix for case when xen support
11842         is disabled.
11844 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11846         * mini-x86.c, mini-amd64.c: generate code to access tls items
11847         in a faster way for Xen systems.
11849 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11851         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
11852         updates and compilation fixes for the OSX/x86 port, mostly from
11853         Geoff Norton <gnorton@customerdna.com>.
11855 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
11857         * inssel.brg: faster interface call implementation
11858         to sync with the interface_offsets MonoVTable changes.
11860 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11862         * mini.c: more verification checks.
11864 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
11866         * mini.c: added a few more verification checks.
11868 2006-02-17      Neale Ferguson <neale@sinenomine.net>
11870         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
11871         facility on the processor and use it if available.
11873 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11875         * driver.c, aot.c, mini.c: throw exception if the IL code is
11876         invalid or unverifiable.
11878 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11880         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
11881         m.StructField.
11883 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
11885         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
11887 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11889         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
11890         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
11891         handling of instantiated generic valuetypes.
11893 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11895         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
11896         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
11897         instead.
11899         * generics.2.cs: Revert the nullable reftypes tests.
11901 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
11903         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
11904         using __builtin_frame_address (1) as it doesn't work in the presence
11905         of optimizations. Hopefully fixes #77273.
11907         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
11908         -> generics.cs change as it doesn't work with some automake versions.
11910 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11912         * mini.c: handle systems that sue a different way to
11913         retrieve the stack address of the current thread.
11915 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11917         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
11918         it specially in the makefile.
11920         * generics.2.cs: Add tests for nullable reference types.
11922 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11924         * mini.c: always handle the case when mono_jit_init()
11925         is called in a thread different from the main thread,
11926         confusing libgc (bug #77309).
11928 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
11930         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
11932 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11934         * mini.c: change optimize_branches () to use a single loop
11935         and introduce a new optimization to simplify some range checks.
11937 2006-02-03  Martin Baulig  <martin@ximian.com>
11939         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
11940         and merged with debugger_thread_manager_add_thread().
11941         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
11942         inform the debugger about the main thread.
11944 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
11946         * basic.cs: Add test for div.un/rem.un constant folding.
11948 2006-02-03  Neale Ferguson <neale@sinenomine.net>
11950         * cpu-s390x.md: correct int_xor_imm length
11952 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
11954         * generics.2.cs: New test for #77442.
11956         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
11957         #77442.
11959 2006-02-02  Martin Baulig  <martin@ximian.com>
11961         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
11962         <mono/metadata/mono-debug-debugger.h>   
11964         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
11966 2006-02-02  Martin Baulig  <martin@ximian.com>
11968         * debug-debugger.h: New header file for debug-debugger.c.
11970         * debug-debugger.c: Big API cleanup; don't run the managed Main()
11971         function is a separate thread anymore; add support for attaching.
11973 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11975         * tramp-x86.c: Fix a warning.
11977 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11979         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
11980         on very large methods.
11982         * aot.c (load_patch_info): Fix a warning.
11984 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11986         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
11987         mini-ops.h: alu membase optimizations.
11989 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
11991         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
11992         to speedup StringBuilder.
11994 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
11996         * dominators.c (mono_compute_natural_loops): Fix detection of
11997         loop body start blocks.
11999         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
12001 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
12003         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
12004         #75145.
12006 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
12008         * aliasing.c: Fixed aliasing issue on 64 bit archs.
12010 2006-01-25  Martin Baulig  <martin@ximian.com>
12012         * debug-debugger.c: Moved the `MonoDebuggerManager' and
12013         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
12014         started to cleanup this file a little bit.
12016 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
12018         * mini.c: optimize a codepath frequently happening in generics code.
12020 2006-01-23  Martin Baulig  <martin@ximian.com>
12022         * Makefile.am: Only compile debug-debugger.c on supported platforms.
12024         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
12025         functions directly.
12027         * driver.c: debug-debugger.c is only available if
12028         `MONO_DEBUGGER_SUPPORTED' is defined.   
12030 2006-01-23  Martin Baulig  <martin@ximian.com>
12032         * debug-debugger.c: Only enable this on platforms where the Mono
12033         Debugger is working (x86 and x86_64).
12035 2006-01-21  Martin Baulig  <martin@ximian.com>
12037         The Mono Debugger is now using the normal `mono' instead of the
12038         `mono-debugger-mini-wrapper' when executing managed code.
12040         * debug-debugger.c: New file; previously known as
12041         debugger/wrapper/wrapper.c.
12043         * debug-mini.c (mono_init_debugger): Removed.
12045         * driver.c (mono_main): Added new `--inside-mdb' command line
12046         argument which is used when running inside the debugger.
12048 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
12050         * liveness.c (mono_analyze_liveness): Remove some unused data
12051         structures.
12053 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
12055         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
12057 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
12059         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
12060         depends on implementation details of monobitset.
12062         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
12063         Fixes #77271.
12065 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
12067         * liveness.c: Update after monobitset changes.
12069 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
12071         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
12073 2006-01-11 Neale Ferguson <neale@sinenomine.net>
12075         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
12077         * mini-s390x.c: Remove warning messages.
12079 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
12081         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
12083 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
12085         * generics.2.cs: Add ldelem/stelem_any test.
12087 2006-01-10 Neale Ferguson <neale@sinenomine.net>
12089         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
12091 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
12093         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
12094         
12095 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
12097         * generics.2.cs: Reenable vtype tests.
12099         * inssel-x86.brg: Remove an icorrect valuetype rule.
12101 2006-01-06 Neale Ferguson <neale@sinenomine.net>
12103         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
12104         initial support for OP_ABS.
12106 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12108         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
12110 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12112         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
12113         conversion and implement LADD/LSUB.
12115         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
12116         architectures.
12118 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12120         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
12122         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
12123         architectures.
12125 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12127         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
12128         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
12129         (stack walk problem).
12131 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
12133         * aot.c (mono_aot_load_method): Fix a warning.
12135 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12137         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
12139 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12141         * iltests.il: Add test for #77148.
12143         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
12144         #77148.
12146 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12148         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
12150 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12152         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
12153         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
12155         * basic-long.cs: Add lconv-to-r4/r8 tests.
12157 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12159         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
12161         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
12162         here as on other archs.
12164 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12166         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
12168 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12170         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
12171         
12172         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
12174         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
12175         instrument_prolog; Add memory_barrier instruction.
12177 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
12179         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
12181 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
12183         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
12185         * aliasing.c inssel.brg: Fix warnings.
12187         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
12188         could skip initialization of some parts of memory.
12190         * mini.c mini-ia64.c: Fix warnings.
12192         * inssel-sparc.brg: Add an implementation of lneg which actually works.
12194 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12196         * aliasing.c (mono_build_aliasing_information): Add a workaround for
12197         a crash seen on sparc.
12199         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
12200         
12201         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
12203 2005-12-21 Neale Ferguson <neale@sinenomine.net>
12205         * mini-ops.h: Add s390_backchain instruction
12207         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
12209         * cpu-s390.md: Add s390_backchain instruction
12211         * mini-s390.c: Significant ABI changes
12213         * mini-s390.h: Cater for zero length structures
12215 2005-12-20 Neale Ferguson <neale@sinenomine.net>
12217         * mini-s390.c: ABI fixes
12219         * inssel-s390.brg: Remove debug statements
12221         * cpu-s390.md: Fix length of ATOMIC_xx operations
12223 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
12225         * basic-float.cs: Add float<->long conversion tests.
12227 2005-12-16 Neale Ferguson <neale@sinenomine.net>
12229         * mini-s390.c: Fix LOCALLOC processing.
12231         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
12233 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12235         * iltests.il: Add tests for some opcodes not covered by the other
12236         tests.
12238 2005-12-15 Neale Ferguson <neale@sinenomine.net>
12240         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
12241         register loading for Tail processing; Correct trace output.
12243         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
12245         * cpu-s390.md: Correct size of jmp instruction. 
12247 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12249         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
12251 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12253         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
12254           Bring s390 up to current level.
12256 2005-12-12  Zltan Varga  <vargaz@gmail.com>
12258         * generics.2.cs: Disable the newly added tests as they do not work yet.
12259         
12260         * generics.2.cs: Add valuetype tests.
12262 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
12264         * basic-long.cs: Add i4->u8 test.
12266         * objects.cs: Add tests for JIT intrinsic.
12268         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
12269         optimizations lost by a mistake.
12271 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12273         * basic-long.cs: Remove a test moved to objects.cs.
12275         * arrays.cs: Add more array tests.
12277 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12279         * arrays.cs: Add new tests for multi-dimensional arrays.
12281 2005-12-06  Raja R Harinath  <rharinath@novell.com>
12283         * Makefile.am (test_sources2): Add generics.2.cs.
12284         (EXTRA_DIST): Add test_sources2.
12286 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12288         Support for boxing and unboxing nullable types as well as the
12289         isinst operation on nullables, per the CLI ammendment.
12291         * inssel.brg (CEE_ISINST): Special case for nullable
12293         * mini.c (handle_unbox_nullable): new method
12294         (handle_box): Special case for nullable types
12295         (mono_method_to_ir): Call handle_unbox_nullable in correct
12296         places.
12298         * generics.2.cs: New test suite
12300         * Makefile.am: Support for regression tests with generics.
12302 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
12304         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
12305         allocated to registers. Fixes #76800.
12307 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
12309         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
12311 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
12313         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
12314         of platforms.
12316 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
12318         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
12319         objects.cs.
12321         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
12322         
12323         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
12324 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
12326         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
12327         single precision before storing to a single precision location.
12329 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12331         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
12333 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
12335         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
12336         correct files.
12338         * basic.cs: Remove test_0_byte_compares test which was moved to
12339         objects.cs a long time ago.
12341 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
12343         * aliasing.c: Fixed aliasing issue on 64 bit archs.
12345 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
12347         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
12348         handlers are called.
12350         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
12351         throwing code.
12353          * mini-ia64.c: Add support for the throw->branch exception 
12354         optimization.   
12356         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
12358 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
12360         * mini.c: Enabled "fastpath" deadce :-)
12361         
12362 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
12364         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
12365         alias analysis pass to support it.
12366         * mini.h: Likewise.
12367         * ssa.c: Likewise.
12368         * liveness.c: Likewise (liveness computation can use aliasing
12369         information to be more accurate).
12370         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
12371         moreover made so that "--compile-all" uses the given optimization
12372         flags and not the default ones.
12373         * aliasing.c: Alias analysis (new file).
12374         * aliasing.h: Likewise.
12375         * Makefile.am: added "aliasing.c" and "aliasing.h".
12376         
12377 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12379         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
12380         OP_L opcodes.
12382 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
12384         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
12385         fp >= end_of_stack exit condition, as it is not needed, and it might
12386         become true for fp eliminated frames.
12388 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12390         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
12391         coded offsets.
12393 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
12395         * mini-arm.c: fixed alignment of doubles/longs to match
12396         the C ABI (bug #76635).
12398 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
12400         * aot.c: fix compilation with --enable-minimal=aot.
12402 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
12404         * mini-arm.c: fixed compatibility with the new
12405         floating point emulator package for compares.
12407 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
12409         * mini.c : reverted sig->pinvoke changes (r51396-51397).
12411 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
12413         * mini-exceptions.c (print_stack_frame): Output to stderr.
12414         (mono_handle_native_sigsegv): Ditto.
12416 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12418         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
12419         OP_LCONV_TO_OVF_I implementation.
12421         * mini-amd64.c: Add support for the throw->branch exception 
12422         optimization.
12424         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
12425         when the catch clause catches a more general exception, i.e. Object.
12427 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
12429         * cpu-ia64.md: Remove unused opcodes.
12431         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
12432         specific defines for architectures defining USE_SIGACTION.
12434         * mini-ia64.c: Fix some warnings.
12436         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
12437         version seemed to skip a frame.
12439 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12441         * mini.c: Clean up the usage of sig->pinvoke flag. Now
12442         only calls which are made to native code use this flag.
12444 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12446         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
12447         varargs methods as well.
12448         
12449         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
12450         which have save_lmf set. Reorganize methods prologs a bit.
12452         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
12453         debugger to the proper place.
12455 2005-10-29  Martin Baulig  <martin@ximian.com>
12457         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
12458         when running inside the debugger until the debugger has support
12459         for it.
12461 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12463         * mini.h: Fix a warning.
12465 2005-10-24  Miguel de Icaza  <miguel@novell.com>
12467         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
12468         we expose publicly, this returns the string.
12470 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
12472         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
12473         with fp elimination.
12475 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12477         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
12478         native stacktrace using the glibc 'backtrace' function if available.
12480 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
12482         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
12484         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
12485         handle SIGSEGVs received while in native code.
12487         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
12488         code, call mono_handle_native_sigsegv which will abort the runtime
12489         after printing some diagnostics, instead of converting it into a
12490         confusing NullReferenceException.
12492 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12494         * cpu-pentium.md: Remove unused opcodes.
12496 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
12498         * mini-amd64.h (MonoLMF): Add rsp field.
12500         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
12501         the lmf too.
12503 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
12505         * mini-codegen.c (get_register_spilling): Fix some warnings.
12507 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
12509         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
12510         elimination during exception handling. Enable fp elimination by
12511         default.
12513         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
12514         elimination.
12516 2005-10-16  Martin Baulig  <martin@ximian.com>
12518         * mini-exceptions.c
12519         (mono_debugger_run_finally): New public method for the debugger.
12521 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12523         * debug-mini.c (mono_debug_init_method): Fix warning.
12525         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
12526         the 'exname' parameter const to fix some warnings.
12528 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
12530         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
12531         introduced by the previous patch.
12533 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
12535         * basic-float.cs: Add test for precision of float arithmetic.
12537         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
12538         when loading/storing single values from/to memory.
12540         * mini.c (mono_jit_compile_method_with_opt): Create the function
12541         pointers in the correct domain.
12543 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12545         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
12546         introduced by previous patch.
12547         
12548         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
12549         when out_filter_idx is NULL.
12551         * mini-exceptions.c: Don't run filter clauses twice during exception
12552         handling. Fixes #75755.
12554 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12556         * aot.c: Add support for ldflda wrappers.
12558         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
12559         #75902.
12561 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
12563         * mini.c, mini.h: do not consider exception handlers blocks when
12564         setting up interface variables.
12566 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
12568         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
12570 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
12572         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
12573         causes a regression.
12575         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
12577 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
12579         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
12580         of the OP_P definitions.
12582         * TODO: Add a proposal for dealing with the CEE/OP mess.
12584         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
12585         optimizations from the x86 port.
12587         * cpu-amd64.md: Ditto.
12589         * basic.cs basic-long.cs: Add tests.
12591 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
12593         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
12594         Patrik Torstensson's implementation of my exception-handling
12595         optimization idea, when the exception object is not used
12596         (bug #62150).
12598 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
12600         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
12601         of the mul_imm optimizations from the old jit.
12603 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
12605         * mini.c, liveness.c: patch by Patrik Torstensson and
12606         Zoltan Varga to improve performance in methods with
12607         exception clauses.
12609 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12611         * driver.c: Remove 'Globalization' entry from --version.
12613 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
12615         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
12616         there is a profiler interested in JIT events.
12618         * aot.c: Load profile files produced by the AOT profiling module, and
12619         reorder methods based on the profiling info. Add a 'method_order' table
12620         to the AOT file to make mono_aot_find_jit_info work with the reordered
12621         methods.
12623         * mini.h: Bump AOT file version info.
12625 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
12627         * mini-arm.h: work around what looks like a gcc bug when optimizations
12628         are enabled.
12630 2005-09-28  Raja R Harinath  <rharinath@novell.com>
12632         * Makefile.am (AM_CFLAGS): Don't use += to append inside
12633         conditionals.  Use ...
12634         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
12636 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
12638         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
12639         to determine the amount of memory to copy when passing valuetypes.
12641         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
12642         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
12644 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
12646         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
12647         information about aot.
12649 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12651         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12652         macros. This will allow a deadlock debugger to easily be plugged
12653         in.
12655 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
12657         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
12659 2005-09-27  Raja R Harinath  <rharinath@novell.com>
12661         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
12662         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
12663         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
12664         ($(arch_built)) [CROSS_COMPILING]: Error out.
12666 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12668         * aot.c: Add support for the no_special_static flag for classes.
12670 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12672         * Reapply reverted patches.
12674         * *: Revert r50174 as well.
12676         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
12678 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12680         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
12682 2005-09-23  Miguel de Icaza  <miguel@novell.com>
12684         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
12685         part of the SIG_HANDLER_SIGNATURE.  
12687 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12689         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
12690         statistics.
12692         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
12693         introduced by previous patch.
12695 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
12697         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
12698         saved registers too.
12700         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
12701         upon the information returned by get_call_info ().
12702         
12703         * mini-x86.c (add_float): Fix stack size calculation.
12704         (mono_arch_call_opcode): Rewrite this so it works based up the
12705         information returned by get_call_info ().
12706         (mono_arch_get_this_vret_args): Ditto.
12708 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
12710         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
12711         in cinfo to determine the registers which need to be used.
12713 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12715         * driver.c (mono_main): Add --server and --desktop flags. 
12717 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
12719         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
12720         registers as global registers.
12722         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
12723         longer needed with the new register allocator.
12725         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
12727         * cpu-ia64.md: Remove unused opcodes.
12728         
12729         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
12730         
12731 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
12733         * cpu-amd64.md: Remove unused opcodes.
12735         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
12736         needed with the new register allocator.
12738         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
12739         reg-reg moves.
12741 2005-09-16  Raja R Harinath  <rharinath@novell.com>
12743         * Makefile.am (check-local): Don't invoke semdel-wrapper.
12745 2005-09-16  Martin Baulig  <martin@ximian.com>
12747         * exceptions-amd64.c
12748         (throw_exception): Don't call mono_debugger_throw_exception() if
12749         we're a rethrow - see the FIXME in the code.
12751 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
12753         * mini.c (mono_init_exceptions): This only works on some architectures.
12754         
12755 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
12757         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
12758         on ia64.
12760         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
12762         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
12763         now in mini-exceptions.c.
12765 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
12767         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
12768         now in mini-exceptions.c.
12770 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
12772         * exceptions-x86.c: Applied patch from Patrik Torstensson 
12773         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
12775         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
12776         code into mini-exceptions.c. Add some assertions to it.
12778 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12780         * aot.c (emit_section_change): Applied patch from "The Software Team" 
12781         (<software@solmersa.com>). Fix as errors on windows.
12783 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
12785         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
12786         method info into the LMF.
12788 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12789         
12790         * mini-ia64.c: Add proper unwind info for method epilogs.
12792         * exceptions-ia64.c: Add some code to help debugging.
12793         
12794         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
12796         * mini-exceptions.c: Fix warning.
12798 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
12800         * mini.c: Really fix build.
12802         * mini-x86.c mini-amd64.c: Fix build.
12804 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12806         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
12808         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
12809         some Interlocked methods as intrinsics.
12811         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
12812         for Thread methods as well.
12814         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
12816         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
12818         * mini-ia64.c mini-x86.c mini-amd64.c 
12819         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
12820         OP_MEMORY_BARRIER.
12821         
12822         * mini.c (mono_init_exceptions): Fix build breakage.
12824 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
12826         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
12827         of instructions. Use the new ia64_unw_op macros for emitting unwind
12828         info.
12830         * mini.c (mono_init_exceptions): Initialize exception handling
12831         related trampolines at startup.
12833 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
12835         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
12837 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12839         * mini.c: Handle type loading errors gracefully during compilation and
12840         throw the appropriate exception.
12842 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
12844         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
12845         for the mono binary.
12847 2005-09-09  Martin Baulig  <martin@ximian.com>
12849         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
12850         the release.
12852 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12854         * mini-arm.h: use emulation for conv.r.un for the release.
12856 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12858         * mini-arm.c, objects.cs: more fixes and tests for them.
12860 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12862         * mini-arm.c: align structures to at least 4 bytes to be able
12863         to keep our current optimized memcpy.
12865 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
12867         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
12869 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12871         * mini.c: ignore SIGPIPE.
12873 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
12875         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
12877         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
12879 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
12881         * mini.h: Add prototype for mono_allocate_stack_slots_full.
12883 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12885         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
12886         exception handling support.
12887         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
12888         patch by Brian Koropoff <briank@marakicorp.com>).
12890 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
12892         * mini.c: revert another 'optimization' which breaks when
12893         items on the eval stack need to be saved at a basic block end
12894         (bug #75940).
12896 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
12898         * jit-icalls.c: for arrays, ensure we always provide
12899         lower bounds.
12901 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
12903         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
12904         
12905         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
12907 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
12909         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
12910         arguments in their original register.
12912 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
12914         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
12915         memset/memcpy.
12917         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
12918         when ssapre is enabled.
12920         * inssel-long.brg: Fix bug in previous patch.
12922         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
12923         multiplication by a constant.
12925 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
12927         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
12928         icc.
12930         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
12931         saving registers.
12933 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
12935         * inssel-arm.brg: apply changes tested by Brian Koropoff
12936         <briank@marakicorp.com>.
12938 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
12940         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
12941         
12942 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
12944         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
12945         to the same register if dreg is just a base register.
12946         (print_ins): Improve printing of membase opcodes.
12948         * inssel-x86.brg: Add optimized ldind(reg) rules.
12950         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
12952 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
12954         * mini.c: when running under valgrind, set the stack bottom for
12955         the GC at the actual approximate stack for the app (fixes running
12956         mono with valgrind).
12958 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
12960         * mini.c: do no break at the first valuetype to init found
12961         (fixes bug #75791).
12963 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
12965         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
12967 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
12969         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
12971 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
12973         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
12975 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12977         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
12979         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
12980         code.
12982         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
12983         code.
12985         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
12986         methods.
12988 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
12990         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
12992 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12994         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
12995         in the tail recursion optimization.
12997         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
12998         debug info into the assembly file.
13000         * iltests.il: Add test for filter regions.
13002         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
13003         initial stack of filter regions. Fixes #75755.
13005 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
13007         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
13008         stack requirements.
13010 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13012         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
13013         the check for an already compiled method on non-ia64 platforms.
13014         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
13015         proper domain.
13017         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
13019         * inssel-x86.brg: Add some optimized call rules.
13021 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
13023         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
13024         method here.
13026         * mini.h mini-trampolines.c: Pass the trampoline argument to 
13027         mono_arch_patch_delegate_trampoline.
13029         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
13031         * mini-trampolines.c: Fix build.
13033         * mini-amd64.h: Add delegate trampolines.
13035         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
13037         * inssel-amd64.brg: Add optimized call rules.
13038         
13039         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
13041         * inssel-ia64.brg: Add optimized ldind(reg) rules.
13043 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
13045         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
13046         change.
13048         * mini-ia64.c: Remove LMF fixmes.
13050         * mini-ia64.h: Remove most fields from LMF.
13052         * inssel-ia64.brg (stmt): Fix unaligned access errors.
13054         * mini-trampolines.c: Add support for IA64 function descriptors.
13056         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
13057         for IA64 function descriptors.
13059 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
13061         * tramp-arm.c: patch the vtable for virtual calls. Added
13062         support code to register/unregister the LMF.
13063         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
13064         more LMF work.
13066 2005-08-19  Dick Porter  <dick@ximian.com>
13068         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
13069         bit value if needed.
13071 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13073         * mini.c (mini_get_method): Move handling of wrapper data here.
13075         * mini.c (mono_method_to_ir): Add support for dynamic methods.
13077         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
13078         virtual.
13080         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
13081         bblock->code does not remain empty.
13083 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
13085         * arrays.cs: Add regression test for #75832.
13087         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
13088         rules. Fixes #75832.
13090         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
13091         instruction scheduling.
13093 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
13095         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
13097 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13099         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
13101         * mini-codegen.c: Fix VC build.
13103         * cpu-pentium.md: Increase length of atomic_exhange_i4.
13105 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13107         * mini.h: fix signature for mono_register_opcode_emulation.
13109 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
13111         * mini.c: Get rid of most of the helper_sig_... constants using
13112         mono_create_icall_signature ().
13114 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13116         * jit-icalls.c (helper_ldstr): New helper function.
13118         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
13120         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
13121         throw, load the string using a helper call instead of creating a string object.
13123         * aot.c: Update after LDSTR changes.
13125         * mini.h: Bump AOT file version.
13126         
13127         * aot.c: Save class size info into the AOT file. Print more statistics during
13128         compilation.
13130         * mini.h: Bump AOT file version.
13132         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
13133         ordering of disasm cases. Fixes #74957.
13135 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
13137         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
13138         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
13139         the generic code needed for the ARM port.
13141 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
13143         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
13144         inssel-arm.brg: more ARM features and fixes.
13146 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
13148         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
13149         ARM port work in progress.
13151 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13153         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
13155         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
13157         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
13159         * inssel.brg (mini_emit_memset): Add support for unaligned access.
13161         * *-ia64.*: Ongoing IA64 work.
13162         
13163         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
13165 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13167         * TODO: Remove out-of-data todo stuff.
13169         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
13170         dead code.
13172         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
13174         * mini.h: Bump corlib version.
13176 2005-07-27  Martin Baulig  <martin@ximian.com>
13178         * mini-codegen.c
13179         (create_copy_ins): Added `const unsigned char *ip' argument; set
13180         `copy->cil_code' from it.
13182 2005-07-27  Martin Baulig  <martin@ximian.com>
13184         * mini-exceptions.c (mono_handle_exception): Don't call
13185         mono_debugger_handle_exception() for filters.
13187 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
13189         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
13190         as well.
13192 2005-07-26  Martin Baulig  <martin@ximian.com>
13194         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
13196         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
13197         helper_compile_generic_method() if the method is actually virtual
13198         and non-final.
13200 2005-07-26  Martin Baulig  <martin@ximian.com>
13202         * mini.c
13203         (trampoline_code): Renamed to `mono_trampoline_code' and made it
13204         public; this is now accessed directly by the debugger.
13205         (mono_generic_trampoline_code): Removed.
13207         * debug-mini.c
13208         (mono_debug_init_method): Also add interncalls and wrappers.
13210 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
13212         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
13214 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13216         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
13218 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13220         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
13222 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13224         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
13225         getting TLS offsets on AMD64 too.
13227 2005-07-20  Kornél Pál <kornelpal@hotmail.com>
13229         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
13231 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
13233         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
13234         inssel-arm.brg, mini-arm.h: ARM port work in progress.
13236 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13238         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
13240         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
13241         to mini.c.
13243         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
13244         mono_sparc_is_virtual_call ().
13245         
13246         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
13248         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
13249         trampoline parameters.
13251         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
13252         
13253         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
13254         to mono_arch_get_vcall_slot_addr.
13256         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
13257         trampoline code.
13259         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
13261 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
13263         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
13265 2005-07-19  Martin Baulig  <martin@ximian.com>
13267         * exceptions-amd64.c (throw_exception): Call
13268         mono_debugger_throw_exception() here like we're doing it on i386.
13270 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
13272         * mini-ia64.c: Add optimized TLS access support.
13274 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
13276         * mini-exceptions.c: Ongoing IA64 work.
13278         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
13280         * mini.c: Use the default optimization set when embedding. Fixes
13281         #75194.
13283 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
13285         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
13286         of trampolines to a separate file.
13288         * mini-trampolines.c: New file.
13290         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
13291         separate file.
13292         
13293         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
13294         amd64/ia64 code.
13296         * mini-codegen.c: Fix cygwin build.
13298 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
13300         * mini.c: Add some minor changes needed by the IA64 port.
13302         * *-ia64.*: Ongoing IA64 work.
13304 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
13306         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
13307         trampolines into arch-independent and arch-dependent parts.
13309         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
13311 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
13313         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
13315         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
13316         the xp-regalloc-branch for amd64.
13318         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
13319         xp-regalloc-branch for x86.
13321 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13323         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
13325 2005-07-06  Martin Baulig  <martin@ximian.com>
13327         * mini.c
13328         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
13329         (mono_jit_runtime_invoke): Likewise.
13331 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13333         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
13334         on x86 too.
13335         
13336         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
13337         without loading their metadata. Reorganize the file format so exception handling+
13338         debug info is kept separate from normal method info. Create MonoJitInfo 
13339         structures for methods lazily.
13341         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
13342         loading metadata.
13343         (x86_class_init_trampoline): Patch AOT class init trampolines too.
13345         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
13347         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
13348         in AOT code.
13350         * mini.h: Bump AOT file version.
13352 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
13354         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13356 2005-07-01  Raja R Harinath  <rharinath@novell.com>
13358         * Makefile.am (check-local): Call semdel-wrapper.
13360 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
13362         * mini-x86.c: Revert the last change as it seems to break the build..
13364 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13366         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13367         
13368         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
13370 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
13372         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
13373         outside of the macro, so strange stuff doesn't happen with gcc4
13374         (NEW_AOTCONST_TOKEN): Likewise.
13376 2005-06-28  Martin Baulig  <martin@ximian.com>
13378         * mini.c (mini_class_is_system_array): New static method; use this
13379         instead of `klass->parent == mono_defaults.array_class' everywhere
13380         since this also works for the new generic array class.
13382 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13384         * inssel.brg: Remove warnings.
13386 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
13388         * mini-ia64.c: Ongoing IA64 work.
13390         * basic-float.cs: Add float->i1 conversion test.
13392         * iltests.il: Add conv.u4 test.
13394 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
13396         * inssel-long.brg: Fix bug caused by last change.
13398 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
13400         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
13401         BSDs.  Allows the x86 JIT to work on OSX86
13403 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
13405         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
13406         u4->i8 conversion.
13408         * mini-ia64.c: Ongoing IA64 work.
13410 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13412         * mini-ia64.c: Ongoing IA64 work.
13414         * driver.c: Clean up jit_code_hash as well when using --regression.
13416         * inssel-long.brg: Fix long->i4/u4 conversion rules.
13418         * basic-long.cs: Add tests for long->u4 conversion.
13420 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
13422         * mini.c: Take mono_get_domainvar out of macros. This makes sure
13423         that we do not depend on undefined C behavior: the order stuff
13424         gets evaluated within an expression. Fixes mono when compiled on
13425         GCC 4.
13427 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
13429         * *-ia64.*: Ongoing IA64 work.
13431         * aot.c: Lower memory usage while loading AOT methods.
13433         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
13435         * mini.h: Bump AOT file format version.
13437 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13439         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
13441 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
13443         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
13444         not on callee assembly). Fixed some comments.
13446 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
13448         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
13449         it gets proper disassembly.
13450         (emit_method_info): Remove some dead code.
13452         * mini.c (mini_method_compile): Allways allocate the GOT var in
13453         mono_method_to_ir for emulating opcodes.
13455 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
13457         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
13458         before freeing the code memory. Fixes #74990.
13460         * objects.cs: Add regression test for #74992.
13462         * liveness.c: Extend live ranges of arguments to the beginning of the
13463         method. Fixes #74992.
13465         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
13466         so it points into the faulting instruction.
13468 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
13470         * jit-icalls.c (mono_imul_ovf): Add exception handling.
13472         * *-ia64.*: Ongoing IA64 work.
13474         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
13476 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
13478         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
13480         * *-ia64.*: Ongoing IA64 work.
13482 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
13484         * basic-long.cs: Add tests for add/sub.ovf.
13486         * basic.cs: Add tests for sub.ovf.
13488         * *-ia64.*: Ongoing IA64 work.
13490 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
13492         * *-ia64.*: Ongoing IA64 work.
13494         * basic.cs: Add conv.ovf.i4.un test.
13496 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
13498         * mini.c: (remove_block_if_useless) Fixed bug 75061.
13499         
13500 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13502         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
13504 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13506         * *-ia64.*: Ongoing IA64 work.
13508 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13510         * trace.[ch]:
13511         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
13513 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
13515         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
13517 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
13519         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
13521         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
13522         of a call is callable by a near call.
13524 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
13526         * mini-ia64.c: Ongoing IA64 work.
13528 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
13530         * genmdesc.c: Make the generated array non-static.
13532         * inssel-long.brg: Fix LSHR_IMM rule.
13534         * *-ia64.*: Ongoing IA64 work.
13536         * *-ia64.*: Ongoing IA64 work.
13538 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
13540         * *-ia64.*: Ongoing IA64 work.
13542         * *-ia64.*: Ongoing IA64 work.
13543         
13544         * mini-ia64.c: Ongoing IA64 work.
13546         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
13548 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
13550         * objects.cs basic-calls.cs: Move some tests to objects.cs.
13551         
13552         * objects.cs basic-long.cs: Move some tests to objects.cs.
13554 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
13556         * *-ia64.*: Ongoing IA64 work.
13558         * iltests.il: Add a new test.
13560         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
13561         newobj. Fixes #75042.
13563 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
13565         * *-ia64.*: Ongoing IA64 work.
13566         
13567         * *-ia64.*: Ongoing IA64 work.
13568         
13569         * *-ia64.*: Ongoing IA64 work.
13571         * basic.cs objects.cs: Move tests accessing static variables as well.
13573         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
13575 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
13577         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
13579         * driver.c: Always print failed tests.
13581         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
13582         frame pointer.
13584         * *ia64*: Ongoing IA64 work.
13586 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13588         * basic.cs: Add tests for add.ovf. Fix warnings.
13590 2005-05-18  Miguel de Icaza  <miguel@novell.com>
13592         * driver.c (mono_main): Avoid crash if no argument is passed to
13593         --break;  Do not use g_error, but f_printf.   And fix all other
13594         ocurrences of the same crash.
13596 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
13598         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
13599         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
13600         Fixes #74742.
13602 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
13604         * *-ia64.*: Add beginnings of IA64 backend.
13606         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
13608 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
13610         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
13611         Fixes #74925.
13613         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
13615         * mini-amd64.c: Fix a warning.
13617 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
13619         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
13620         in float_neg. Fixes #74897.
13622         * mini-amd64.c (emit_call): Fix another near call bug.
13624 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
13626         * declsec.c: Keep the appdomain information in the structure. Added a 
13627         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
13628         value gets overwritten).
13629         * declsec.h: Set the default MonoArray for the the stack to 6. Added
13630         an MonoAppDomain member to MonoSecurityFrame.
13631         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
13632         used in the stack walk. Now use a MonoArray which grow (double) when
13633         it gets full.
13635 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13637         * mini.c: Re-enabled runtime cleanup, since running threads should
13638         now properly stop when exiting.
13640 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13642         * mini-codegen.c: New file contaning the arch-independent local
13643         register allocator. Not used by any architectures yet.
13645         * mini.h linear-scan.c: Merge some changes from the 
13646         mini-xp-local-regalloc branch.
13648 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13650         * mini-amd64.c (emit_call): Fix calls to native functions when the
13651         runtime is compiled as a shared library. Fixes #74756.
13653         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
13654         on a literal field. Fixes #74751.
13656 2005-04-25  Raja R Harinath  <rharinath@novell.com>
13658         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
13660 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13662         * objects.cs: Add missing null casting test.
13664 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13666         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
13667         in wrapper methods. Also rename 'address' variable to 'offset'.
13669 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13671         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
13672         warnings.
13673         
13674         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
13676         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
13677         work on windows.
13679 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
13681         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
13683 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
13685         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
13686         just the last bytes.
13688 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
13690         * aot.c (mono_compile_assembly): Fix warning.
13692         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
13693         by the _MSC_VER stuff.
13695 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
13697         * inssel-long.brg: Fix #74588.
13699         * cpu-amd64.md: Fix #74591.
13701         * iltests.il: Add new regression tests.
13703 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
13705         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
13706         valuetype.
13708 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
13710         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
13712         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
13713         from Bill Middleton <flashdict@gmail.com>.
13715 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
13717         * arrays.cs: Add new regression test. Fix warnings.
13719 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
13721         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
13722         and leakage in CKFINITE.
13724         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
13725         this to a null op since it is called on amd64 too.
13727         * exceptions-amd64.c (get_throw_trampoline): Align stack.
13729         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
13730         body since this is not used on amd64.
13731         
13732         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
13734         * mini-amd64.c: Remove obsolete fixmes.
13736         * mini.c (print_method_from_ip): Fix debugging support.
13738 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
13740         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
13741         so that expressions that don't give much gain are not reduced.
13742         * ssapre.h: Likewise.
13744 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
13746         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
13748         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
13750         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
13752 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
13754         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
13756         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
13758 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
13760         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
13761         stack touching.
13763         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
13765         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
13767         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
13769         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
13770         MONO_ARCH_USE_SIGACTION. Fixes #74252.
13772         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
13774         * mini-x86.c: Fix up stack overflow handling.   
13776         * exceptions.cs: Add new regression test.
13778 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
13780         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
13781         mono_jit_thread_attach.
13783         * mini.c (mono_method_to_ir): Verify called method is not abstract.
13785 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13787         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
13788         avoid calling constructors using callvirt.
13790         * inssel.brg: Fix #74073.
13792 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
13794         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
13795         compilation with non-GCC compilers.
13796         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
13797         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
13799 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
13801         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
13802         klass->interface_offsets (will likely fix bug#74073).
13804 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13806         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
13808 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
13810         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
13811         to amd64_div_reg_size ().
13812         
13813         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
13815 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
13817         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
13819 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13821         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
13823 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13825         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
13826         
13827         * mini.c (mono_precompile_assembly): Load and precompile referenced
13828         assemblies as well. Fixes #74015.
13830 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13832         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
13834 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
13836         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
13837         a lot of checks and (anyway) permissions cannot work until corlib is 
13838         loaded.
13840 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
13842         * mini-ppc.c: fixed ABI issue on sysv/ppc.
13844 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13846         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
13847         calls (fixes bug#72824).
13849 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
13851         * mini.c: fix tail recursion elimination (see test in bug#73936).
13853 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
13855         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
13856         some fp functions in sse2 mode.
13858 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
13860         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
13862 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
13864         * mini.h mini.c: Add mono_get_jit_tls_key ().
13866         * mini-x86.c: Enable fast TLS support on windows.
13868 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
13870         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
13871         * mini.c: Check for p/invoke method when generating code. If a
13872         p/invoke method, or it's class, isn't decorated with [Suppress
13873         UnmanagedCodeSecurity] then generate code to call System.Security.
13874         UnmanagedDemand (only if the security manager is active).
13876 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13878         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
13879         last change as it seems to cause strange crashes.
13880         
13881 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
13883         * *.c: handle unsafe function pointers where needed.
13885 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13887         * mini.c (mono_jit_free_method): Remove the fixme too.
13889 2005-03-15  Miguel de Icaza  <miguel@novell.com>
13891         * mini.c: As discussed, make the code actually free the delegate
13892         thunk now, to enable the debugging of delegate problems, use
13893         MONO_DEBUG=1 when running Mono. 
13895         This takes also care of parts of the leaks as seen by Joe.
13897 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
13899         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
13900         thread_tls_offset calculation.
13902 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
13904         * declsec.c: Reworked linkdemand checks for icall. The previous code
13905         was using the declaration code (untrusted) and didn't work as expected
13906         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
13907         specific case.
13909 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
13911         * iltests.il: Add new localloc test.
13913         * mini-amd64.c: Handle large stack allocations the same way as on
13914         windows if stack overflow handling is working.
13915         
13916         * mini-amd64.c: Allocate the signal stack using mmap.
13918         * mini.c (sigsegv_signal_handler): Fix reading of context.
13920         * mini-exceptions.c: Fix up stack overflow handling.
13922         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
13924         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
13926         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
13928         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
13930         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
13931         tramp_init functions as they are no longer needed.
13933 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
13935         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
13936         
13937         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
13939         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
13940         
13941         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
13942         support that now.
13944         * mini-ops.h: Add OP_LMUL_IMM.
13946         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
13947         long mul/div opcodes as intrinsic.
13949         * mini-amd64.c (emit_call): Handle the case when the callee might be
13950         an AOT method.
13952 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
13954         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
13955         extra safe.
13956         
13957         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
13959         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
13961 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
13963         * mini.c (mono_codegen): Don't leak here, to help people running
13964         monogrind.
13966 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
13968         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
13969         conversions in sse2 mode.
13971         * basic-float.cs: Add regression test.
13972         
13973         * mini-amd64.c: Reenable sse2.
13975 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
13977         * mini-amd64.c: Disable sse2 until some regressions are fixed.
13979 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
13981         * driver.c: Copyright text should include 2005.
13982         
13983 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
13985         * cpu-amd64.md (load_membase): Fix more max lengths.
13987 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
13989         * cpu-amd64.md (load_membase): Fix max length.
13991         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
13993         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
13995         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
13996         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
13998         * basic-float.cs: Add rounding regression test.
14000         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
14002 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
14004         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
14005         structures in registers for pinvoke wrappers.
14007 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14009         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
14011 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14013         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
14014         wrapper to mono_jit_thread_attach.
14016         * mini.c (mini_jit_thread_attach): New jit icall.
14018         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
14019         native->managed wrappers.
14021         * exceptions.cs: Add new regression test.
14023         * mini.c (optimize_branches): Check regions in the cbranch to throw
14024         block case as well. Fixes #73242.
14026 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14028         * mini.c: thread safety fixes.
14030 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
14032         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
14033         patching stuff, since delegates use jump trampolines so there is
14034         no caller.
14036         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
14037         jump trampolines.
14038         
14039         * tramp-amd64.c: Fix build.
14041         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
14042         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
14044         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
14045         Rename this to mono_arch....
14046         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
14048         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
14050         * mini-amd64.c (emit_call): If both the caller and the callee is
14051         guaranteed to have 32 bit addresses, emit a normal call.
14053         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
14055         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
14056         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
14057         method_ptr inside delegates.
14059 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
14061         * mini.c (mono_jit_free_method): Free the method info even if the native code is
14062         invalidated. Fixes #73001.
14064         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
14066         * mini-x86.c: Only use stdcall for pinvokes on windows.
14068 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14070         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
14071         * mini-x86.c: remove unreliable __thread var offset detection,
14072         use the correct accessors and enable by default.
14074 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14076         * mini.c (mono_jit_free_method): Fix memory leak.
14078 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
14080         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
14082 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
14084         * cpu-amd64.md: Fix lengths of atomic opcodes.
14086 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14088         * driver.c: try to not imply using ICU is any good.
14090 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14092         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
14093         functions as inline ops.
14095         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
14096         some Interlocked functions as inline ops.
14098         * mini.c (move_basic_block_to_end): Fix bug in last patch.
14100         * mini.h (MonoBasicBlock): Reorganize fields a bit.
14102         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
14104         * mini.c: Add support for OP_NOT_TAKEN.
14106         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
14107         structures in registers for pinvoke wrappers.
14109         * mini-amd64.c: Fix warnings.
14111 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
14113         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
14115         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
14117         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
14118         address instead of loading the address from it.
14120         * mini-x86.c: Add support for returning small structs in registers
14121         on Win32. Fixes part of #70864.
14122         
14123 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
14125         * trace.c (get_token): Improve error checking.
14127 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14129         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
14131 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
14133         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
14134         it can be reused for MonoClass.
14135         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
14136         _LINKDEMAND.
14138 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
14140         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
14141         instead of a MonoReflectionMethod. The method information wasn't used
14142         when displaying SecurityException details (but will be now).
14144 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
14146         * Makefile.am : windows build fix.
14148 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14150         * iltests.il: Add new regression test.
14152         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
14153         #72522.
14155 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
14157         * mini.c: Moved linkdemand check into helper function check_linkdemand
14158         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
14159         LDFTN, LDVIRTFTN).
14161 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
14163         * declsec.c: Added statistics counter for different kinds of 
14164         LinkDemands.
14165         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
14166         (and commented) declaration.
14167         * mini.c: Added statistics counter for security Demand code 
14168         generation. Added display of security statistics.
14170 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14172         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
14173         Fix compilation errors under gcc-2.95.
14175 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14177         * mini.c, driver.c: Use the new jit trampoline hashtable
14179 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14181         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
14183 2005-02-11  Martin Baulig  <martin@ximian.com>
14185         * debug-mini.c (mono_debug_close_method): Free the line number array.
14187 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
14189         * aot.c: Break up large methods into smaller ones. Share GOT slots for
14190         icalls.
14192         * mini.h: Bump AOT file format version. 
14194 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14196         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
14197         APTC and P/Invoke.
14198         * declsec.h: Added macros to get/set lazyly initialized security 
14199         informations about assemblies. Added new enum for different type of
14200         possible LinkDemand violation. Added function to check LinkDemands.
14201         * mini.h: Added a field to MonoCompile to hold any security violation
14202         detected when JITting a method (so it can be thrown later).
14203         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
14204         and CEE_CALLVIRT. Added code to throw exception at the end of
14205         mini_method_compile (note: the exception is unhandled right now).
14207 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14209         * mini.c, jit-icalls.c: use the managed implementation of
14210         memset for initobj and memset, to avoid managed <-> unmanaged
14211         transitions.
14213 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
14215         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
14216         optimization if it would need a GOT var.
14218         * basic.cs: Add tests for constant propagation and switch statements.
14220         * ssa.c: Fix out-of-range constant propagation and switch statements.
14222 2005-02-09    <vargaz@freemail.hu>
14224         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
14226 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
14228         * cpu-amd64.md (load_membase): Fix max length of load_membase.
14230 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14232         * mini.c: update to new signature of mono_class_get_allocation_ftn().
14234 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
14236         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
14237         arithmetic operations.
14239 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
14241         * mini-ppc.c: add a workaround for broken user code that
14242         DllImports vararg functions with non-vararg signatures.
14244 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14246         * mini.c (mono_jit_compile_method_inner): Add detection and a 
14247         meaningfull error message for assemblies written in Managed C++.
14249         * tramp-amd64.c mini-amd64.h: Add support for 
14250         create_trampoline_from_token ().
14252         * aot.c mini-x86.c abcremoval.c: Applied patch from
14253         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14255 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14257         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
14258         which takes a MonoImage/token as parameter instead of a MonoMethod.
14260         * aot.c: Use the new trampoline for initializing vtables.
14262         * aot.c: Add support for ldfld/stfld_remote wrappers.
14264         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
14265         rules for compare <MEM>, IMM.
14267         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
14269         * aot.c: Handle inherited finalizers correctly.
14271 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14273         * inssel.brg (stmt): Add a missing _setup_... ().
14275         * aot.c: Save some parts of the class state to the AOT file and use it
14276         to recompute that state when a class is initialized.
14278         * mini.c: Install AOT hooks into the runtime.
14280         * mini.h: Bump AOT file format version.
14281         
14282         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
14283         Fixes #72148.
14285         * iltests.il: Add new test.
14287 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14289         * mini.c: fix typo.
14291 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
14293         * mini.c: setup the statistical profiler in the thread attach
14294         callback to cope with the new single thread code.
14296 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14298         * mini-ppc.c: ensure we have enough room for the profiler
14299         calls (fixed bug#72084).
14301 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
14303         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
14304         it.
14306 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14308         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
14310 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14312         * ssapre.c: Fixed an issue with down safety (this allows IronPython
14313         to succesfully execute parrotbench).
14314         * ssapre.h: Likewise.
14316 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14318         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
14319         variable for stores to method arguments (fixes a SSAPRE issue).
14321 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14323         * mini.c: handle value types in dup, fixes gen-112.cs.
14325 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
14327         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
14328         sequence for calls in dynamic methods to avoid thunks.
14330 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14332         * mini.c: correctly remove dynamic methods from the hashtable.
14334 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14336         * driver.c: Disabled SSAPRE until fix the bug that appears
14337         in IronPython's parrotbench.
14339 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
14341         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
14343         * mini.c (mono_method_to_ir): Revert the previous change.
14344         
14345         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
14346         when AOT compiling.
14348         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
14349         mono_jit_info_table_find () etc. when running under valgrind.
14351         * inssel.brg: Fix warnings.
14353         * mini-exceptions.c: Fix warnings.
14355 2005-01-31  Martin Baulig  <martin@ximian.com>
14357         * driver.c (compile_all_methods_thread_main): Don't try to compile
14358         generic methods or anything which has type parameters.
14360 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
14362         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
14364         * TestDriver.cs: Add --verbose flags.
14366         * graph.c ssa.c: Fix 64 bit warnings.
14367         
14368         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
14369         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
14370         Fix 64 bit warnings.
14372         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
14373         variable not spotted by gcc.
14374         
14375         * mini-amd64.c inssel-amd64.brg: Applied patch from  
14376         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
14377         X86_COMPARE_MEMBASE opcodes.
14379         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
14381 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
14383         * *: MonoMethod->signature might be NULL now. You *MUST* use
14384         mono_method_signature.
14386 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14388         * driver.c (compile_all_methods_thread_main): Compile the methods
14389         without invoking cctors.
14391 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14393         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
14394         * basic-calls.cs: test for the above.
14396 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14398         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
14399         MonoJitInfo changes.
14401 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
14403         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
14404         eagerly if it contains dynamic methods.
14405         
14406         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
14408         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
14409         trace, it is now computed by an icall from trace_ips.
14410         
14411         * mini-exceptions.c: Fix a warning.
14413 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14415         * mini-exceptions.c: don't bother getting stack trace info if
14416         it's not going to be used.
14418 2005-01-27  Raja R Harinath  <rharinath@novell.com>
14420         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
14421         ssapre-mini-ops.h.
14423 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
14425         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
14427         * aot.c: Avoid calling mono_method_get_header () if not needed.
14429         * mini.h: Bump AOT file format version.
14430         
14431         * mini.c (mono_emit_native_call): Allocate a GOT var here.
14433         * mini.c (mono_print_tree): Print more info for calls.
14435 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
14437         * declsec.h: Remove warning by adding missing include for marshal.h
14439 2005-01-26  Martin Baulig  <martin@ximian.com>
14441         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
14442         `ip' twice.
14444 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
14446         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
14447         flags.
14449         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
14451         * aot.c (mono_compile_assembly): Fix a warning.
14453 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
14455         * declsec.c: Look for security attributes on the original MonoMethod 
14456         (and not the wrapped one). This fix permissions on icalls.
14458 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
14460         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14462         * mini.c (mono_allocate_stack_slots): Add a fixme.
14464         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14466 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14468         * inssel.brg: optimize casts of sealed types (more
14469         optimizations waiting for fixes in remoting).
14471 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
14473         * inssel.brg (stmt): Add another dummy rule.
14475         * driver.c: Fix warnings.
14477         * driver.c (mono_main): If running under valgrind, instruct glib to use
14478         the system allocation functions so valgrind can track the memory
14479         allocated by the g_... functions.
14481         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
14483         * mini-ops.h: Add OP_DUMMY_STORE opcode.
14485         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
14487         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
14488         variables in try regions.
14490         * mini.c (mini_method_compile): Don't disable optimizations on large
14491         methods when AOT compiling.
14493         * mini.c (mono_allocate_stack_slots): New arch independent method to 
14494         allocate stack slots. Not yet used.
14496 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
14498         * debug-mini.c (mono_debug_close_method): Plug some leaks.
14500 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
14502         * mini-ppc.c: make the branch info relative as the code
14503         buffer can be reallocated.
14505 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
14507         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
14508         * driver.c: Removed the AOT/security restriction. Now initialize the
14509         security manager (in metadata) if --security is used.
14510         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
14511         rather than the pointer to declarative security, when AOT is used.
14513 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
14515         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
14516         basic blocks, reduced intrinsic exception throwing code size.
14518 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14520         * driver.c (mini_usage): Reorder the usage screen.
14522 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
14524         * mini.c (mono_resolve_patch_target): Fix warning.
14526 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
14528         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
14529         previous patch.
14531         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
14533         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
14534         breaks the amd64 build.
14536         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
14537         register allocation. Fixes #71454.
14539         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
14541         * arrays.cs: Add new regression test.   
14543 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14545         * ssapre.c: Turned usage of snprintf to GString.
14546         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
14547         (I left it on by mistake in my previous commit).
14549 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
14551         * mini.c, cfold.c, basic-calls.cs: preserve side effects
14552         on cond branch optimization (fixes bug# 71515).
14554 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14556         * abcremoval.c: Fixed bug 71062.
14557         * abcremoval.h: Likewise.
14559 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14561         * mini.c: Added a new functionality to optimize_branches, the removal
14562         of useless basic blocks, and fixed some problem in the removal of
14563         critical edges; some utility functions added for both purposes.
14564         * ssapre.c: Added complex expression support, and fixed bug 70637.
14565         * ssapre.h: Likewise.
14566         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
14567         enabled in SSAPRE.
14568         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
14569         * driver.c: Re-enabled SSAPRE.
14571 2005-01-19  Martin Baulig  <martin@ximian.com>
14573         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
14574         the result of mono_get_method_constrained().
14576 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
14578         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
14579         manager.
14581 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
14583         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
14584         be detected.  Fixes #59296.
14586 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14588         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
14589         which can happen. Fixes #71361.
14591 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14593         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
14594         manager.
14596 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14598         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
14599         appdomain-unload.exe to fail.
14600         
14601         * mini.c: Fix some memory leaks.
14603 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
14605         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
14606         Fixed bug and sped up some codepaths.
14608 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14610         * mini.c: Fix some memory leaks.
14612         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
14613         conversion.
14615         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
14617         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
14618         #71320.
14620         * iltests.il: Add regression test for #71320.
14622 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
14624         * mini.c (mono_codegen): Fix installation of profiler hooks.
14626         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
14628 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14630         * mini.h, mini.c, cfold.c: optimize access to enum
14631         readonly fields, too. Eval conditional branches if possible
14632         to perform unreachable code removal in more cases.
14634 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
14636         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
14638         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
14639         code manager.
14641         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
14642         WinXP DEP. Fixes #71244.
14644 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
14646         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
14648 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
14650         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
14652 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
14654         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
14655         changes.
14657         * mini.h: Bump AOT version.
14659         * mini.h (MonoCompile): Change exvar to a hash table.
14661         * mini.c: Allocate a separate exvar for each handler block.
14663         * mini.c: Get rid of the computation of filter_lengths, its not needed.
14665         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
14666         ex var with the pending exception and only throw if the two are equal.
14667         Fixes #68552.
14668         
14669         * exceptions.cs: Add tests for rethrow and nested catch clauses.
14671         * mini-x86.c: Fix warnings.
14673         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
14674         used by all the ports now.
14676         * aot.c: Add write-symbols and save-temps options.
14678 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
14680         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
14682 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
14684         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
14685         operations.
14687         * tramp-s390.c: Check vtable slot belongs to the domain.
14689         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
14690         as per other platforms.
14692         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
14694 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14696         * driver.c: we don't run the Main() code in a subthread anymore.
14698 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
14700         * mini.c: added experimental rtc support in the statistical
14701         profiler: if the user has the permission, more accurate statistics
14702         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
14703         The MONO_RTC value must be restricted to what the linux rtc allows:
14704         power of two from 64 to 8192 Hz.
14706 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
14708         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
14710 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
14712         * mini-ppc.c: better icache flush for smp.
14714 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
14716         * mini-amd64.c (emit_move_return_value): Fix memory leak.
14718         * mini-x86.c (get_call_info): Add the get_call_info () code from the
14719         amd64 port, not yet used.
14721 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14723         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
14724         a struct type.
14726 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
14728         * driver.c: Added --security option to activate the security manager.
14729         Right now this will allow code generation for declarative demands and
14730         is disabled when AOT is specified.
14731         * mini.c: Add code generation for declarative security demands.
14732         * mini.h: Add mono_use_security_manager as an extern gboolean.
14734 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14736         * aot.c (mono_compile_assembly): Speed up compilation a bit by
14737         emitting more dense assembly code.
14739         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
14740         exception throwing stuff.
14742 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
14744         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
14745         dead code.
14747         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
14748         left in by mistake.
14750         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
14751         fixed.
14753         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
14755         * tramp-*.c: Only patch vtable slots if the object is in the current
14756         domain. Fixes appdomain-unload.exe.
14758         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
14759         
14760         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
14761         x86 branch.
14763 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14765         * mini.c (reverse_branch_op): New helper function.
14767         * mini.c (optimize_branches): Run the new optimization only on 
14768         platforms which support it. Also reverse all kinds of branches.
14770         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
14772         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
14773         a throw statement.
14775         * mini.c (optimize_branches): Reverse not-equals branches if the false
14776         bblock is a throw. This happens a lot of time with argument checking in
14777         corlib.
14779         * mini.c (mono_codegen): Add support for placing basic blocks after
14780         the function epilogue.
14782         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
14783         function epilogue.
14784         
14785 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
14787         * mini.c (setup_stat_profiler): Only set this up if the platform
14788         supports ITIMER_PROF.
14790 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14792         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
14793         previous patch.
14795         * inssel.brg: Fix a warning.
14797 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
14799         * mini.c: added support for statistical profiler 
14800         (run with: --profile=default:stat).
14802 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
14804         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
14806         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
14808         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
14809         related to global registers from the amd64 port.
14811 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
14813         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
14815         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
14816         with global registers.
14817         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
14819         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
14821 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
14823         * debug-mini.c (encode_value): Fix off-by-one.
14825         * aot.c (encode_value): Likewise.
14827         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
14829 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
14831         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
14832         AOT.
14834         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
14835         
14836         * aot.c (emit_method_info): Increase size of temp buffer.
14838         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
14839         the AOT case.
14841 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
14843         * aot.c (emit_method_info): Fix build.
14844         
14845         * aot.c: Further rework of the AOT file format to reduce the size of
14846         the method info data.
14848         * mini.h: Bump AOT file format version.
14850 2004-12-27  Martin Baulig  <martin@ximian.com>
14852         * mini.c (mini_get_method): New static method; call
14853         mono_get_method_full() and mono_get_inflated_method().
14854         (mono_method_to_ir): Use mini_get_method() instead of
14855         mono_get_method_full(). 
14857 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
14859         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
14861 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
14863         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
14865         * inssel-amd64.brg: Add some optimization rules.
14867 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
14869         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
14870         standard not GC'd stuff is fine.
14872 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
14874         * aot.c: Rework the AOT file format to get rid of most of the global
14875         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
14877         * mini.h: Bump AOT file format version.
14878         
14879 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
14881         * mini.h: Bump AOT file format version.
14883         * aot.c (mono_aot_is_got_entry): New function to determine if an 
14884         address is inside a GOT.
14886         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
14888         * cpu-pentium.md: Increase the maximum size of some instructions which
14889         might involve a got access.
14890         
14891         * mini.c (get_method_from_ip): Another debug helper function.
14893         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
14894         when got var accesses are created during the decompose phase.
14896         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
14898         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
14899         argument mini_compile_method and to MonoCompile, and use this to
14900         determine whenever a given method is compiled for AOT. This allows the
14901         other methods compiled during AOT compilation to be free of AOT stuff,
14902         so the backends does not need to add special support for them by
14903         creating a fake GOT etc.
14905         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
14906         longer needed.
14908 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
14910         * mini.c (mono_method_to_ir): It turns out that some of the
14911         x-appdomain wrappers are lax with types, so just ignore this for
14912         all wrappers.
14914         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
14915         at the vtable->klass. If it is non-shared code we can just use the
14916         vtable.
14918 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
14920         * mini-ppc.c: access MonoDomain from tls, too.
14922 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
14924         * declsec.c: Removed unused variable (and related warning ;-)
14926 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
14928         * iltests.il: New test for LDELEMA on an array of ref types.
14930         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
14931         all ldelema's on reftypes.
14932         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
14933         it was the wrong place to put it.
14935         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
14936         register to pop to make this cleaner, at the request of Paolo.
14938 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
14940         * mini-ops.h (OP_GETHASHCODE): New op.
14942         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
14944         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
14945         operation.
14947         For a microbenchmark, this reduces the cost of Hashtable.get_Item
14948         by 25%.
14949         
14950         * mini-x86.c (mono_arch_output_basic_block): Rather than
14952         add ebp, 4
14954         Emit
14956         pop edx
14958         The first is 3 bytes while the second is 1. This saves 36 kb on
14959         mscorlib, quite a big saving. When bootstraping mcs, I was able to
14960         see a small boost because of icache locality.
14962         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
14964 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
14966         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
14967         started code sharing with the generic code.
14969 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
14971         * mini-ppc.c, cpu-g4.md: added code for direct access to
14972         tls data slots.
14974 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
14976         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
14977          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
14978         to OP_TLS_GET.
14980 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
14982         * declsec.c|h: Added functions to cache the declarative stack modifiers
14983         in MonoJitInfo and to create a security frame from a MonoJitInfo 
14984         structure.
14985         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
14986         created. Register internal calls for System.Security.SecurityFrame::
14987         _GetSecurityFrame and _GetSecurityStack.
14988         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
14989         the definitions for the new stack walk/callback mechanism.
14990         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
14991         first security frame for LinkDemands and InheritanceDemands) and
14992         GetSecurityStack for Demands. Both use the new mono_walk_stack code
14993         from lupus.
14994         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
14995         walk initialization (lupus).
14997 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
14999         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
15000         idiom.
15001         (handle_loaded_temps): Do not create a temporary variable for
15002         things that we know are temps. They will never be modified.
15003         (mono_spill_call): Set MONO_INST_IS_TEMP
15004         (mono_emulate_opcode): ditto
15005         (emit_tree): ditto
15006         (mono_method_to_ir.CEE_DUP): ditto
15008 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
15010         * mini.c (type_to_eval_stack_type): Make this handle the void type
15011         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
15012         (emit_tree): use ip_in_bb to special case some common idioms
15013         Update all callers to pass in the IP.
15014         (mono_method_to_ir): Make CEE_CALL* do the above as well.
15016         This gives us a nice 2% speedup in mcs bootstrap.
15018         * mini-x86.c (peephole_pass): Peephole pass to make
15019         mov  [foo], eax
15020         push [foo]
15022         into
15024         mov [foo], eax
15025         push eax
15027         * mini.c (ip_in_bb): new method.
15028         (mono_method_to_ir): use this method rather than doing the hash
15029         lookup ourselves.
15031         * linear-scan.c (mono_linear_scan): When expiring actives, you
15032         don't need to keep around variables that expire on this
15033         instruction. This makes it so that:
15034              a = b + 1
15035         will turn into:
15036              store (ebx add (ebx, 1))
15037         which will become
15038              add ebx, 1
15040 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
15042         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
15043         combination to avoid doing two copies. Fix up problems with previous
15044         patch.
15046         * mini.c: Fix 64 bit warnings.
15048         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
15050 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
15052         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
15053         changes from the x86 code.
15055         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
15057 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15059         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
15060         throwing code to reduce its size, unify the AOT and non-aot code and 
15061         get rid of relocations in the AOT case.
15063         * mini-x86.h mini.c exceptions-x86.c 
15064         (mono_arch_get_throw_corlib_exception): New arch specific function to 
15065         raise corlib exceptions which doesn't require relocations in the 
15066         caller.
15068         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
15070 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15072         * mini.c (mono_emit_method_call): Only allocate the got var when it is
15073         needed.
15075         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
15076         in the AOT case.
15078 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15080         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
15081         with add function when used from Inc/dec atomic 
15082         functions. Re-enabled optimization on x86.
15083         * mini-ops.h: renamed atomic_add functions to
15084         allow _add to match the Interlocked::Add and
15085         _add_next to match Interlocked::Inc/Dec.
15087 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
15089         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
15090         linking of BBs to the end BB, and enabled SSAPRE also with
15091         consprop and copyprop (which was prevented by that bug).
15093 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15095         * mini-x86.c: disabling the Interlocked optimizing code. 
15097 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15099         * aot.c (load_aot_module): Move reading of got_addr after the AOT
15100         file version check.
15101         
15102 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15104         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
15105         interlocked optimization due lack of support on x86, rewrote 
15106         exchange to take into account that base may be in eax.
15107         
15108         xsp works again; activated Interlocked optimizing code.
15109         
15110 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15112         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15114 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
15116         * mini-ops.h: Add new opcodes.
15118         * mini.h: Add new patch types. Add got_var to MonoCompile.
15120         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
15121         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
15122         make it work with all kinds of patchable code.
15124         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
15125         address of the GOT, and referencing entries in the GOT.
15127         * mini.c: Add code to load the GOT address if needed by an opcode.
15129         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
15130         independent AOT code on the x86 using an elf-style Global Offset Table.
15132 2004-12-14  Raja R Harinath  <rharinath@novell.com>
15134         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
15136 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15138         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
15139         when running xsp.
15141 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
15143         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
15144         of Interlocked:Increment/Decrement/Add as inline ops.
15145         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
15147 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
15149         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
15150         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
15152 2004-12-12  Duncan Mak  <duncan@ximian.com>
15154         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
15155         again. `patch_info->table_size' is no longer valid after Zoltan's
15156         commit #37636.
15158 2004-12-12  Martin Baulig  <martin@ximian.com>
15160         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
15161         if we are the "real" method, ie. not an inlined method inside it.
15163 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
15165         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
15166         before we look in the special fields table. This fixes
15167         ../tests/thread-static-init.cs.
15169 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15171         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
15172         for Array get_Rank and get_Length. Fixes bug #70465.
15174 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
15176         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
15177         separate structure to reduce the size of MonoJumpInfo.
15179 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15181         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
15183 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
15185         * mini.c (mini_get_inst_for_method): Changed to allow ports
15186         to return a MonoInst instead of opcode 
15187         (renamed mini_get_opcode_for_method to better reflect the new functionality)
15188         
15189         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
15190         Allow ports to return a created MonoInst instead of op-code, will enable
15191         new optimizations.
15192         (renamed mini_get_opcode_for_method to better reflected the functionality)
15194 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
15196         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
15198 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15200         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
15201         Fixes #69985.
15203 2004-12-08  Martin Baulig  <martin@ximian.com>
15205         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
15206         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
15208 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15210         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
15211         correctly.
15213         * exceptions.cs: Disable some tests which depend on properties of x86 fp
15214         arithmetic.
15216 2004-12-08  Raja R Harinath  <rharinath@novell.com>
15218         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
15220 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15222         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
15223         bug introduced by the previous patch.
15225 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15227         * mini-ppc.c, objectc.cs: handle large structs passed by value
15228         (fixes bug #69972).
15230 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15232         * mini-ppc.c: OP_ARGLIST implementation from
15233         Geoff Norton  <gnorton@customerdna.com>.
15235 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
15237         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
15238         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
15240 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15242         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
15244 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15246         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
15247         support.
15249 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15251         * mini-sparc.c: Zero out localled-ed memory.
15253         * iltests.il: Add tests for zeroing out localloc-ed memory.
15255 2004-12-04  Martin Baulig  <martin@ximian.com>
15257         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
15258         mono_method_get_signature_full().       
15260 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
15262         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
15263         and some utility functions (always for SSAPRE), integrated SSAPRE.
15264         * mini.h: Likewise.
15265         * driver.c: Added ssapre option.
15266         * ssa.c: Small fix on OP_ARG handling.
15267         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
15268         * Makefile.am: Likewise.
15270 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15272         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
15273         now in the xp code.
15275         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
15276         icall.
15278 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15280         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
15281         
15282         * cpu-s390.md : Increase instruction length of oparglist.
15284         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
15286 2004-11-30  Martin Baulig  <martin@ximian.com>
15288         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
15289         virtual generic methods.  We call a special helper_compile_generic_method()
15290         icall to retrieve the method from the vtable, inflate and compile
15291         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
15293         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
15295 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
15297         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
15299 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
15301         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
15302         Fixes #69929.
15304 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
15306         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
15307         platforms with PIC aot.
15309 2004-11-28  Martin Baulig  <martin@ximian.com>
15311         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
15312         Fixes gen-112.cs.
15314 2004-11-28  Martin Baulig  <martin@ximian.com>
15316         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
15317         the result of mono_type_get_underlying_type() to check whether
15318         we're byref.
15320 2004-11-26  Martin Baulig  <martin@ximian.com>
15322         * mini.c
15323         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
15324         in the g_assert().
15326 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
15328         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
15329         the same way as the other arguments so they won't get clobbered.
15331         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
15332         calls through R11 since it is clobbered by the trampoline code.
15334 2004-11-26  Raja R Harinath  <rharinath@novell.com>
15336         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
15337         pick up in-tree mscorlib.dll.
15339 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
15341         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
15343         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
15344         runtime data/code are now stored in a table similar to the GOT in ELF. 
15345         This allows the code itself to be position independent.
15347         * aot.c: Fix loading of referenced assemblies after the lazy assembly
15348         loading changes.
15350         * aot.c: Attach ELF type (object/function) directives to all global
15351         symbols.
15353         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
15355         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
15357         * mini-amd64.h: Turn on PIC AOT code.
15359         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
15360         returning the offset within an OP_AOTCONST instruction where the GOT
15361         offset needs to be added.
15363         * mini.h: Bump AOT file format version.
15365 2004-11-25  Martin Baulig  <martin@ximian.com>
15367         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
15368         uninflated generic methods.
15370 2004-11-25  Martin Baulig  <martin@ximian.com>
15372         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
15374 2004-11-24  Martin Baulig  <martin@ximian.com>
15376         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
15377         original klass (this only applies for generic instances).
15379 2004-11-24  Martin Baulig  <martin@ximian.com>
15381         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
15382         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
15383         that array).
15385 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
15387         * mini.c (mono_method_to_ir): Disable inlining for methods containing
15388         localloc. Fixes #69678.
15390         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
15391         
15392 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
15394         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
15395         used SSE registers on pinvoke calls. Fixes #69774.
15397 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
15399         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
15400         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
15402 2004-11-23  Raja R Harinath  <rharinath@novell.com>
15404         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
15405         Refer directly to the mcs/ tree.
15407 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15409         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
15410         Check if a trampoline for a synchronized method is required. 
15412 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
15414         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
15415         with localloc if needed. Throe arithmetric exception in
15416         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
15417         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
15419 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
15421         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
15422         types before switching on type.  Fixes #69622.
15424 2004-11-19  Raja R Harinath  <rharinath@novell.com>
15426         * Makefile.am (check-local): New.  Integrate into 'make check'.
15427         (MCS,RUNTIME): Define using in-tree mono and mcs.
15428         (ILASM): New.
15429         (%.exe): Use $(ILASM).
15431 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
15433         * mini-ppc.c: adjust initial prolog size (bug #69691).
15435 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
15437         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
15438         #69664.
15440 2004-11-17  Raja R Harinath  <rharinath@novell.com>
15442         * Makefile.am (clean-local): Rename from 'clean'.
15444 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15446         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
15447         to mono_arch_is_int_overflow. 
15448         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
15449         SIGFPE events.
15451 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
15453         * declsec.c|h: New files to support declarative security attributes.
15454         Added function to check if a method has (applicable) security.
15455         * mini.c|h: Add check for declarative security attributes in
15456         mono_method_check_inlining.
15457         * Makefile.am: Added declsec.c and declsec.h to the build.
15459 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15461         * mini.c, mini.h: update to keep dynamic code info per-domain.
15463 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
15465         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
15466         (mini_init): Get rid of it from here too.
15468 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
15470         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
15471         implemented OP_RETHROW (patch by Geoff Norton
15472         <gnorton@customerdna.com>).
15474 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
15476         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
15477         between appdomains.  Fixes appdomain-unload on PPC.
15479 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
15481         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15482         mini-exceptions.c: handle the new wrapper types.
15483         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
15484         token value as a MonoClass* when compiling a wrapper.
15485         mono_jit_create_remoting_trampoline now takes an additional
15486         MonoRemotingTarget parameter.
15487         
15488 2004-11-10  Martin Baulig  <martin@localhost>
15490         * mini.c (mono_method_to_ir): Use `generic_container->context'
15491         rather than creating a new one.
15493 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15495         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
15497         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
15499 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
15501         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
15502         the experimental aot cache stuff.
15504 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
15506         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15507         mini-exceptions.c: update to exception clause structure changes.
15509 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15511         * exceptions-x86.c (throw_exception): Fix warnings.
15513         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
15514         for OP_RETHROW.
15516 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15518         * exceptions-sparc.c (get_throw_exception): Really fix this.
15520 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
15522         * tramp-*.c: we no longer support icalls without wrappers, so
15523         a bit of code can be removed here
15525 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
15527         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
15528         patch.
15530         * cpu-sparc.md: Add op_rethrow.
15532         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
15534         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
15536         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
15537         * mini-ops.h: Add OP_RETHROW.
15539         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
15541         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
15543 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
15544         
15545         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
15546         Makes the output much easier to read
15548 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
15550         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
15551         prevents another huge leak when compiling with ssa. Secondly, the
15552         performance of doing this rather than freeing the lists is much
15553         better. GList does a lock every time you allocate a list link,
15554         so that it can use a memory pool. So, it is better to just use
15555         a memory pool of our own.
15556         
15557         * ssa.c, linear-scan.c: replace g_list_remove_link with
15558         g_list_delete.  The remove one does not free the GList, so we were
15559         leaking memory. On -O=all --compile-all with corlib, this cut down
15560         3 MB of allocations.
15562 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
15564         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
15566         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
15568         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
15569         into a new function mono_create_jit_trampoline ().
15571 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
15573         * trace.c (get_spec): Allow tracing of classes without a namespace.
15575 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
15577         * mini.c: Fix pointer overwrite in mini_method_compile.
15579 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
15581         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
15582         The darwin ABI needs some special handling for 1 and 2 byte structs
15583         Lets use lbz/lhz instead of lwz everywhere.
15584         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
15585         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
15586         Use stb/sth for the former, and put the latter always on stack instead of in
15587         argument registers.
15589 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
15591         * trace.c (is_filenamechar): Add '_'.
15593 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
15595         * mini-s390.c: Fix prolog length to allow for large trace requirements.
15597         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
15599 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
15601         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
15602         depends on libmonogc. Fixes #68805.
15604 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
15606         * mini.c (mono_jit_free_method): Provide extra information for
15607         this error.  Currently this leaks, but will be turned into a
15608         developer option in the future.
15610 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
15612         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
15614 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
15616         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
15617         boundary. Fixes reading of PATCH_INFO_R4 and R8.
15618         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
15620 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
15622         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
15623         trampolines for AOT code.
15625 2004-10-22    <vargaz@freemail.hu>
15627         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
15628         constructed types. Fixes #68136.
15630 2004-10-21  Martin Baulig  <martin@ximian.com>
15632         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
15633         if it returns true, unwind the stack to the call instruction.
15635 2004-10-21    <vargaz@freemail.hu>
15637         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
15639         * mini.h: Bump AOT version number.
15641         * objects.cs: Add another test for unbox trampolines.
15643         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
15644         valuetype methods.
15646 2004-10-20    <vargaz@freemail.hu>
15648         * driver.c: Add SHARED to the set of optimizations tested.
15650         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
15652         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
15653         used by CEE_NEWARR.
15655         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
15657 2004-10-20  Martin Baulig  <martin@ximian.com>
15659         * mini-exceptions.c (mono_handle_exception): Call
15660         mono_debugger_handle_exception() to tell the debugger about
15661         catch/finally clauses.
15663 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
15665         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
15667         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
15668         #68447.
15670 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
15672         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
15673         methods as their native size, fixed bug #57543, #57545.
15674         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
15675         This saves a temporary register and mullw call down into 1 (minor perf
15676         increase for cases like sum = sum * 5;  This use to translate into:
15677             li r11,5
15678             mullw r28,r28,r11
15679         It now translates to
15680             mulli r28,r28,5
15682 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
15684         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
15685         #68388.
15687 2004-10-11  Martin Baulig  <martin@ximian.com>
15689         * mini.c (mono_method_to_ir): If we're a generic method, get the
15690         MonoGenericContainer from our MonoMethodNormal and create a
15691         MonoGenericContext from it.
15693 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
15695         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
15697         * basic-long.cs: Add test for checked i8->i2 cast.
15699 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
15701         * inssel-ppc.brg: added a couple of speedup rules.
15703 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
15705         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
15706         to speed up rebuilds.
15708 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15710         * mini-s390.c: Minor fix to OP_OR_IMM.
15712 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
15714         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
15715         better. Fixes appdomain-unload.exe on sparc.
15717 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
15719         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
15720         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
15721         see bug 67324.
15723 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
15725         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
15727 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
15729         * mini.c: Always generate a field read/write wrapper for members
15730         of the class MarshalByRefObject since the actual instance could
15731         be a CBO.
15733 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
15735         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
15737 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
15739         * driver.c mini.h trace.c: Move the setting of the main assembly into
15740         a separate function called mono_trace_set_assembly () and call it after
15741         actually loading the main assembly. Fixes #66872.
15743 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
15745         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
15746         using the code manager.
15748 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
15750         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
15752 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
15754         * cpu-amd64.md: Fix bug in previous patch.
15755         
15756         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
15757         #66650.
15759 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
15761         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15762         mini-exceptions.c: updates for changed stack walk interface.
15764 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15766         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
15768 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
15770         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
15772 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
15774         * driver.c (mini_regression_list): Do not call mono_assembly_close 
15775         since assemblies can't be unloaded.
15776         
15777 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15779         * cpu-amd64.md: Fix more instruction lengths.
15781         * cpu-amd64.md: Fix lengths of some instructions.
15783 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
15785         * inssel.brg: Make the array ldelema check aot friendly.
15787 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15789         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
15791         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
15793 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
15795         * mini-x86.c: Fix build.
15797         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
15798         mono_type_get_underlying_type () helper function to simplify code.
15799         
15800 2004-09-09  Martin Baulig  <martin@ximian.com>
15802         * mini-amd64.c: Don't access `type->data.klass' directly, call
15803         mono_class_from_mono_type() instead since the type may be a
15804         generic instance.
15806 2004-09-09  Martin Baulig  <martin@ximian.com>
15808         * mini-amd64.c (get_call_info): Fix support for generic instances.
15809         (add_valuetype): Use mono_class_from_mono_type() to get the class
15810         since we can be a generic instance.
15812 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
15814         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
15816 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
15818         * liveness.c: reset spill costs on each scan: bug 62107
15820 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
15822         * exceptions-sparc.c (mono_arch_find_jit_info): remove
15823         unnecessary line that doesn't compile
15825 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
15827         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
15828         trampolines, make them call an error function so people can fix their
15829         code.
15831 2004-09-06  Martin Baulig  <martin@ximian.com>
15833         * mini.c (mono_method_to_ir): When initializing locals, handle a
15834         generic instances like a valuetype if it's a valuetype and like a
15835         class if it's a class.
15837 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15839         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
15840         stack. Fixes #64674.
15842         * exceptions.cs: Add test for unwinding of call arguments.
15844 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
15846         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
15847         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
15848         set the carry/borrow flag). The sparc and s390 implementations
15849         can now use optimized versions (and simplify the code). ppc bugfixes.
15851 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15853         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
15855 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
15857         * inssel-amd64.brg: Remove leftover 32 bit rule.
15859         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
15861 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
15863         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
15864         mono_arch_find_jit_info functions into a new function. Fix a memory
15865         leak.
15867         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
15868         refactored code.
15869         
15870 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15872         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
15873         as well.
15874         
15875         * exceptions.cs: Add array size tests.
15877         * mini.c: Allocate a separate icall wrapper for each arity of 
15878         mono_array_new_va. Fixes #59509.
15880         * exceptions.cs: Add testcase for 64578.
15882         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
15884         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
15885         
15886 2004-09-02  Martin Baulig  <martin@ximian.com>
15888         * mini.c (mono_method_to_ir): When initializing the locals, call
15889         handle_initobj() on the generic instance itself, not its
15890         underlying type.
15892 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15894         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
15895         MonoJitInfo for dynamic methods.
15897         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
15899         * mini.c: Add support for freeing JIT data for dynamic methods.
15900         
15901 2004-09-01  Martin Baulig  <martin@ximian.com>
15903         * mini-x86.c (is_regsize_var): Added support for generic
15904         instances.
15905         (mono_arch_emit_prolog): Make this compile again, use
15906         `x86_push_imm_template (code)'.
15908 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
15910         * mini-x86.c: make all push_imm instructions that get
15911         patched always emit the long form
15913 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
15915         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
15916         in a per-domain hash.
15918         * mini-amd64.c (merge_argument_class_from_type): Handle generic
15919         types.
15921 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
15923         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
15924         work.
15925         
15926         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
15927         work.
15929         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
15930         Beginnings of SSE2 support.
15932         * exceptions.cs: Add more tests for checked int<->uint casts.
15934 2004-08-28  Martin Baulig  <martin@ximian.com>
15936         * mini-x86.c (mono_arch_instrument_epilog): Added support for
15937         generic instances.
15939         * mini.c
15940         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
15941         Handle generic instances recursively.
15943 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
15945         * iltests.il: test for conv.u8 on a constant
15947 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
15949         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
15950         LCONV_x4 (shrun_32 (membase)).
15952 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
15954         * inssel-x86.brg: c&p rules for push/setret of long
15956 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
15958         * inssel-x86.brg: c&p rules for compare (base, regvar) and
15959         compare (regvar, base)
15961         * inssel-x86.brg: more burg love
15963         * inssel.brg: more cleanup
15965         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
15967 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
15969         * basic-long.cs, basic-calls.cs: new tests for optimization.
15971 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
15973         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
15974         patch.
15976 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
15978         * mini-amd64.c (read_tls_offset_from_method): Add another case.
15979         
15980 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
15982         * inssel.brg (mini_emit_memcpy): use 
15983         NO_UNALIGNED_ACCESS to disable memcpy optimization
15985 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
15987         * mini-amd64.c: Handle generic types in various places.
15989         * mini.c (mono_method_to_ir): Handle generic types in init locals.
15991 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
15993         * mini.c (handle_box): Fix warning.
15995         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
15997         * mini-amd64.h: Enable the emit_state optimization.
15999         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
16001         * mini-amd64.c: Add some new 64 bit peephole opts.
16003         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
16005         * cpu-amd64.md: sreg1 of div instructions must be %rax.
16007         * mini-amd64.c: Register allocator fixes.
16009         * mini.c: Add an optimization to emit_state to avoid allocation of new
16010         registers on some platforms.
16012 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
16014         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
16016         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
16017         allocation. Fixes #63085.
16019         * basic-long.cs: Add new regression test.
16021         * mini-amd64.c: Register allocator improvements.
16023 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
16025         * mini-amd64.c (read_tls_offset_from_method): Add another code
16026         sequence.
16028         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
16029         instruction sequence for nullifying class init trampolines.
16031         * objects.cs: Add new regalloc test.
16033         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
16035 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
16037         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
16038         
16039         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
16040         arguments.
16042         * driver.c: Fix profiling after TLS changes.
16043         
16044         * driver.c (mono_main): Set mono_stats.enabled if needed.
16046         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
16047         CEE_BOX.
16049 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
16051         * mini-x86.c: use a 1 op rather than a 2 op tls access
16052         instruction -> faster.
16054 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
16056         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16057         x86 backend.
16059 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
16061         * exceptions-sparc.c (throw_exception): fix typo
16063 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
16065         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
16066         set tree->dreg correctly with tls. Allow any
16067         register to be used.
16069         * mini-x86.c (read_tls_offset_from_method): add new code
16070         generation pattern seen with GCC.
16073 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
16075         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
16076         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
16077         exceptions-sparc.c: fix some performance issues in exception
16078         handling and setting of the stack trace for exceptions that were
16079         already thrown.
16081 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16083         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
16084         x86 backend.
16085         
16086         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
16087         registers.
16089 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
16091         This patch inlines tls access, when possible.
16092         
16093         * mini.h: new arch functions for TLS intrinsics.
16094         All platforms updated with a stub.
16096         * mini.c: use the new intrinsics
16098         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
16099         arch specific intrinsic for tls variables
16101 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16103         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
16104         under windows.
16106 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16108         * mini.c: thread local allocation
16110 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
16112         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
16114         * Makefile.am: Link against the static version of libmonogc.
16115         
16116         * Makefile.am: Link the static versions of the convenience libraries
16117         into the mono executable.
16119         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
16121 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
16123         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
16124         on integer overflow.
16126         * mini-amd64.c: Reorganize function call code.
16128         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
16130 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16132         * inssel-x86.brg: use xor eax,eax.
16133         
16134         * basic.cs: new tests
16136 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16138         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
16139         in exception throwing code.
16140         
16141 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16143         * inssel-x86.brg: use xor esi,esi.
16145 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16147         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
16148         can trace methods compiled during mini_init () too.
16150         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
16151         CEE_CONV_U4.
16153 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16155         * Makefile.am: static link on x86 (r=zoltan)
16157 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16159         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
16160         code since it causes some programs to fail.
16162 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
16164         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
16166 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
16168         * mini.c: ovfops_op_map - add STACK_OBJ case for
16169         CONV_I 
16170         * basic.cs: add test_0_pin_string as test
16171         case for above.
16173 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
16175         * Makefile.am: build C# if srcdir != builddir
16177 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
16179         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
16180         fall-through blocks.
16182 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16184         * driver.c: enable loop by default again and include abcrem in -O=all.
16186 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
16188         * iltests.il: Add some localloc tests.
16190         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
16192         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
16193         Fixes #62574.
16195         * inssel-amd64.brg: Add some optimizations.
16197         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
16198         for gcc-3.4.
16200         * Makefile.am: Statically link mono against libmono on AMD64.
16201         
16202         * mini-amd64.c inssel-amd64.brg: Optimizations.
16204 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
16206         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
16208         * tramp-amd64.c: Patch calling code in trampolines.
16210 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
16212         * mini-amd64.c: pinvoke struct passing fixes.
16214 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
16216         * mini-sparc.c: redo change, make mono_arch_cpu_init call
16217         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
16219 2004-08-05  Duncan Mak  <duncan@ximian.com>
16221         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16222         CEE_LDELEM_ANY.
16224 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16226         * mini-amd64.c (emit_move_return_value): Move return value for normal
16227         calls too.
16229 2004-08-05  Martin Baulig  <martin@ximian.com>
16231         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
16232         `type->type'; just modify `type' itself when dealing with enums
16233         and generic instances.
16234         (check_call_signature): Make `simple_type' a `MonoType *'.
16236 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16238         * mini.c: Use OP_PADD to add offsets to addresses.
16240         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
16242 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
16244         * mini-sparc.c (mono_arch_emit_epilog): fix check
16245         for folding last op into restore instruction
16247 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16249         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
16250         helper methods using the code manager.
16251         
16252         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
16254         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
16256 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16257         
16258         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
16259           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
16261         * mini-s390.c: fix tail processing
16263 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
16265         * mini-ppc.c: mul.ovf.un exception name fix.
16267 2004-08-03  Martin Baulig  <martin@ximian.com>
16269         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
16270         instances; before jumping to `handle_enum', also modify `ptype'.
16272 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
16274         * cpu-sparc.md: fcall maximal length too small.
16276 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
16278         * mini-amd64.c mini.h: Add initial support for passing/returning 
16279         structures to/from pinvoked methods.
16281 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
16283         * mini-ppc.c: reg allocator fix.
16285 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
16287         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
16289         * inssel.brg: Optimize memset on 64 bit machines.
16291         * mini-amd64.c: Fix some vararg cases.
16293 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16295         * mini-s390.c: Corrected macro in emit_float_to_int
16297         * s390-abi.cs: Tests to exercise the s390 ABI
16299 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16301         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
16302         caller saved regs.
16304         * basic.cs: Add a test for add.ovf.un.
16306 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
16308         * mini-sparc.c: add case for OP_IDIV_UN
16310 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16312         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
16313         
16314         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
16316 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
16318         * basic.cs: regression tests.
16320         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
16321         regressions.
16323 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16325         * basic.cs: Add a new test.
16327         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
16328         and AOT. Various fixes and optimizations.
16330         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
16332 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16334         * mini-ppc.c: make sure temp regs are not used for global reg
16335         allocation.
16337 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
16339         * cpu-sparc.md: conv_i8 fix for 64bits
16341         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
16343 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
16344         
16345         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
16346         add opcode for cmp BYTE PTR [eax], imm.
16348         * inssel.brg: Make memcpy and memset takes bases.
16350 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
16352         * *-amd64.*: More AMD64 work.
16353         
16354 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
16356         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
16357         add a compare-not-equal opcode.
16358         
16359 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
16361         * mini.c: Use mono_init_from_assembly instead of mono_init.
16362         
16363 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
16365         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
16367         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
16369         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
16371         * inssel.brg: 64 bit fixes.
16373         * mini.h (MonoCallInst): Add some AMD64 specific data.
16375         * mini.h: Add some OP_P opcodes.
16377 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
16379         * basic.cs: tests for 61797 and 61740
16381 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16383         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
16384         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
16386 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
16388         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
16390         * *-amd64*.*: Ongoing AMD64 work.
16392 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
16394         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
16396         * *-amd64*: Ongoing AMD64 work.
16398         * mini-arch.h: Add AMD64 support.
16400         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
16402         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
16404         * mini-ops.h: Add new opcodes.
16406         * Makefile.am: Add AMD64 support.
16408         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
16409         rules into the inssel-long*.brg files.
16411         * *-amd64.*: Add beginnings of AMD64 backend.
16413 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
16415         * mini.c (print_dfn): commenting out the code that prints
16416         the cil. With -O=deadce, this makes -v -v crash.
16417         
16418         * cpu-pentium.md: make checkthis have a length of 2
16420 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
16422         * mini-sparc.h: fix implementations of __builtin
16423         functions for Sun compiler for V9.
16425 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
16427         * mini.c: use the new stelem.ref wrapper
16428         * exceptions.cs, arrays.cs: new stelem.ref tests
16430 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16432         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
16433         new XSP should work with these changes).
16435 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
16436         
16437         * inssel-{long32,x86,}.brg: trivial optimizations.
16438         
16439 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
16441         * mini.c: load value when emitting box operation in
16442         constrained calls.
16444 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
16446         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
16447         is one byte shorter than cmp DWORD PTR [eax], 0.
16449 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
16451         * inssel-ppc.brg: arguments on the stack are always
16452         relative to the stack pointer (spotted by Neale Ferguson).
16454 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16456         * exceptions-x86.c: delay appending the method name to the trace until
16457         after mono_jit_info_table_find is called, as this gets the real
16458         MonoMethod.
16460 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
16462         * aot.c: register roots
16464 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16466         * aot.c : I could just use PLATFORM_WIN32 flag.
16468 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16470         * aot.c : Reverting the previous fix. This time it broke linux build.
16472 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16474         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
16476 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
16478         * mini.c (handle_stack_args): Remove some more debugging code.
16479         
16480         * mini.c (handle_stack_args): Remove debug output left in by mistake.
16482         * driver.c mini.h aot.c: Allow additional options to be specified with
16483         --aot and pass them to mono_compile_assembly.
16485         * aot.c: Add experimental code to AOT compile all loaded assemblies
16486         on demand and save the code into a cache in the filesystem.
16488         * aot.c: Add support for more wrapper methods.
16489         
16490         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
16491         58863.
16493         * cpu-*.md: Remove removed opcodes.
16495         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
16496         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
16497         related icalls to marshal.c.
16499 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
16501         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
16503         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
16505         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
16507 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
16508         * liveness.c: If liveness is recomputated we need to reset the information
16509         for each variable. This way, if the liveness range has been narrowed
16510         by optimizations that happened after the last computation, we can return
16511         a smaller range.
16512         
16513         For example, if you have
16514         
16515         {
16516                 int i = 0;
16517                 
16518                 // Tons of code that does not affect i
16519                 
16520                 i = foo ();
16521                 ...
16522         }
16523         
16524         i = 0 is dead code and will be removed by SSA. However, when
16525         linear scan gets to the code, i will still appear to be live
16526         throughout the entire block. This prevents good register allocation.
16528 2004-07-06  Martin Baulig  <martin@ximian.com>
16530         * debug-mini.c (mono_debug_init_method): Allow
16531         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
16532         (mono_debug_add_icall_wrapper): New method.
16534         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
16536 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
16538         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
16539         optimization.
16541 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
16543         * aot.c (mono_aot_load_method): Fix loading of debug info.
16545 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16547         * aot.c: Add logging support.
16549 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
16551         * mini.h: Add prototype for mono_print_method_from_ip.
16553         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
16555         * inssel.brg: 64 bit fixes.
16557         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
16558         inssel-long32.brg.
16560         * Makefile.am: Add SPARC64 support.
16562 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16564         * aot.c: Fix alignment problems on 32 bit platforms.
16566 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
16568         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
16569         SPARC64.
16571         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
16572         problems.
16574         * mini.h: Bump AOT file version. Some 64 bit fixes.
16576 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16578         * inssel-sparc.brg: Add new rule to avoid register moves.
16580         * inssel.brg: Add ldind_to_load_membase helper function.
16582 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
16584         * mini.c: OffsetToStringData intrinsic.
16585         
16586 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16588         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
16590         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
16591         regression tests.
16593         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
16594 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
16596         * mini.c: reinstated mono_compile_get_interface_var()
16597         on x86, too, since the change breaks the Gtk# build there as well.
16599 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16601         * driver.c: remove loop from the default optimizations: it seems to
16602         interact badly with some of the other options (see bug #60613).
16604 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
16606         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
16607         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
16609 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
16611         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
16612         vararg-using methods.
16614 2004-06-21  Martin Baulig  <martin@ximian.com>
16616         * mini/mini-exceptions.c
16617         (mono_handle_exception): Added `gpointer original_ip' argument.
16618         After calling mono_unhandled_exception(), call
16619         mono_debugger_unhandled_exception() and if that returns true,
16620         restore the context and return.
16622 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16624         * mini-ppc.c: prefer the use of relative branches so
16625         they won't need to be patched in aot code (patch from Patrick Beard).
16627 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16629         * aot.c: patch from Patrick Beard to make the output assembly
16630         more correct for the MacOSX assembler. Small tweak to
16631         generate sane images on Linux/PPC, too.
16633 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16635         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
16636         case until bug #59509 is fixed (shows up in #60332).
16638 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16640         * mini.c: make sure the needed wrappers are compiled, too, with
16641         precomp.
16643 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
16645         * driver.c: remove NPTL reference in --version output.
16647 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16649         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
16650         generate valid assembly for the Mach-O assembler.
16652 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
16654         * driver.c: don't include abcrem in the all optimization specifier
16655         since it slows down jit compilation too much for now.
16657 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
16659         * mini.c: use BIGMUL only if both operands have the same signage.
16660         * iltests.il: Test for bug 60056. (errors related to signage in
16661         BIGMUL).
16663         r=lupus.
16665 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
16667         * mini.c, aot.c: memory leak fixes.
16669 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16671         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
16673 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
16675         * Makefile.am: remove the -static hack completely, it links in
16676         statically glib as well.
16678 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
16680         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
16681         * exceptions.cs: make it compile with new mcs/csc.
16683 2004-06-03 Massimiliano Mantione <massi@ximian.com>
16684         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
16685         and added relevant test case.
16687 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16689         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
16690         regressions in gtk-sharp.
16692 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
16694         * exceptions.cs: New regression tests.
16696         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
16698 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
16700         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
16702 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
16704         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
16706         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
16708 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
16710         * mini.c (mono_jit_runtime_invoke): Init class in this
16711         method instead of trusting mono_jit_compile_method to
16712         do the work (because wrappers can be in object class)
16714 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
16716         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
16718         * basic-long.cs: New regression test.
16720 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
16722         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
16723         and div/rem checks.
16725 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16727         * Makefile.am: fix miguel's change to build mono statically against
16728         libmono (track build dependencies).
16730 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
16732         * cfold.c: Some glib versions do not have G_MININT32.
16734 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
16736         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
16737         with precision of tan, atan, sin and cos, and implemented related
16738         regressions tests (fixes bug 54467, but one new problem appeared and
16739         is not fixed yet).
16741 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
16743         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
16745         * exceptions.cs: Add test for constant folding && division by zero.
16747         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
16748         since driver.c is in libmono too, so the optimization was useless.
16750         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
16751         variable to driver.c so the compiler can emit more efficient code to
16752         access them.
16754 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16756         * Makefile.am: don't distribute generated inssel.[ch] files.
16758 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
16760         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
16761         into the default appdomain. Fixes #58707.
16763         * jit-icalls.c: Remove the broken approximation for truncl, doing
16764         no conversion is better.
16766         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
16767         Fixes #58863.
16769 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
16771         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
16772         of the mcrxr instruction which is not available on some processors
16773         even if it's documented to be. Implement add and sub overflow correctly
16774         (still not complete for long unsigned). Speed up icalls a bit.
16776 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
16778         * mini.c (mono_jit_compile_method_with_opt): Make sure that
16779         we run .cctor in the current domain instead of target_domain.
16780         
16781         Fixes bug #58558, .cctor not being called in -O=shared.
16783 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16785         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
16787 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
16789         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
16790         which can be done with an imm8, do it that way.
16791         (mono_arch_output_basic_block): ditto for a jmp
16792         (mono_arch_emit_prolog): Computate maximum offset of a label.
16794 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
16796         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
16797         now tries to allocate prefered physical reg's for virtual
16798         regs. This reduces the number of emited spills/loads with
16799         20-30% on our core assemblies.
16801 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16803         * jit-icalls.c: truncl() is not needed and trunc() is
16804         the correct thing to do anyway (bug #58287).
16806 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
16808         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
16809         if available.
16811 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16813         * driver.c: enable loop optimizations by default.
16815 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16817         * mini-x86.c: fix calc of max loop size when aligning loops start.
16819 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
16821         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
16822         the stack.
16824 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
16826         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
16827         should set carry.
16829         * basic-long.cs: Add tests for add/subtract of immediates with carry.
16831         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
16832         
16833         * mini.c (inline_method): Allways inline some wrappers even if the cost
16834         is too large. Fixes #58785.
16836         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
16837         
16838 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
16840         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
16841         (crichton@gimp.org). Beginning of support for sparc/linux.
16843         * mini-sparc.c: Optimize retrieval of LMF address.
16845 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
16847         * exceptions-ppc.c:  handle alloca in methods with clauses.
16849 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
16851         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
16853 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
16855         * mini.c: Delegate most of the abort signal work to 
16856           mono_thread_request_interruption, which also handles Stop and Suspend
16857           states.
16859 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
16861         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
16862         supports the save/restore lmf opcodes.
16864 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
16866         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
16867         by gcc-3.4 as well.
16869         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
16871 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
16873         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
16874         methods which contain array accesses.
16876         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
16877         boundaries. Fixes #58537.
16879         * iltests.il: Add regression test for #58537.
16881 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
16883         * mini-x86.c (mono_arch_local_regalloc): Last part of
16884         fix for bug #58633 (releasing register to early).
16886 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
16888         * basic-long.cs: Add new regression test.
16890 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
16892         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
16893         register too early on the chain.
16895 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
16897         * mini.c (create_helper_signature): Use a helper function to reduce
16898         the code which needs to be written. Also set the calling convention of
16899         icalls on windows. Fixes #57840.
16901 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16903         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
16904         exceptions-ppc.c: added helper function to get the instruction address
16905         from a signal handler context.
16907 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16909         * helpers.c: use g_get_tmp_dir. Invokes happyness 
16910         from gonzalo.
16912 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16914         * helpers.c: Add new env variable to pass args to objdump.
16915         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
16917 2004-05-17  Radek Doulik  <rodo@ximian.com>
16919         * Makefile.am (common_sources): added abcremoval.h so it get
16920         disted and daily mono packages on go-mono.com will build again
16922 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
16924         * abcremoval.c: Fixed coding style, added copyright header.
16926         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
16928         * mini.h: Added prototype for abc removal main function.
16930         * build_relations_propagation_table.pl: Added copyright header.
16932 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
16934         * basic-long.cs: reg test for complex ceq_long bug.
16936 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
16938         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
16939         reg in long and clob case (bug #58343). Fixed/added comments.
16941 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
16943         * mini.c (mono_jit_runtime_invoke): Follow new convention
16944         of calling the invoke method with an function pointer.
16946 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
16948         * ChangeLog: Fix author of memory leak patch.
16950 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
16952         * Makefile.am: fix make dist as well...
16955 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
16957         * cfold.c: Made so that conversions from pointer to int4 are no-ops
16958         on archs where pointers are 4 bytes long.
16960         * Makefile.am: Added abcremoval.c source file.
16962         * abcremoval.c: Added abcremoval.c.
16964         * abcremoval.h: Added abcremoval.h.
16966         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
16968         * inssel.brg: Enabled bounds check removal.
16970         * mini.c: Added support for abcrem optimization.
16972         * mini.h: Added abcrem optimization label.
16974         * driver.c: Added support for abcrem optimization.
16976         * propagated_relations_table.def: Added propagated_relations_table.def.
16978 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
16980         * mini.c, cfold.c: fix style.
16982 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16984         * mini.c: handle issue with the low-level implementation of
16985         some long opcodes (bug #54209).
16987 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
16989         * basic.cs: test for my new cmov stuff.
16991 2004-05-13      Patrik Torstensson
16993         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
16994         opt and added peephole documentation.
16996 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
16998         * tramp-ppc.c: rewrote the generic trampoline code.
17000 2004-05-11      Patrik Torstensson
17002         * mini-x86.c: optimize long shl/shr asm code (one less branch)
17004 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
17006         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
17008         * mini.h mini.c dominators.c: Applied patch from Derek Woo
17009         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
17011         * mini.c: Add new icalls for AsAny marshalling.
17013 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
17015         * tramp-ppc.c, mini-ppc.c: more cleanups.
17017 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17019         * mini.c: no warnings.
17021 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17023         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
17025 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
17027         * mini.c: In the thread abort signal handler, if the thread is in the
17028         process of being stoped, don't throw the Abort exception, just stop the
17029         thread.
17031 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
17033         * tramp-ppc.c: removed old code.
17035 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17037         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
17038         do some simple speed optimizations on ppc.
17040 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
17042         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
17043         and large offsets in load/store.
17045 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
17047         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
17048         it causes regressions.
17050 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
17052         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
17053         support.
17055 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17057         * jit-icalls.c: remove warnings.
17058         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
17059         speedups for unsafe code.
17061 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
17063         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
17065 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
17067         * basic-calls.cs: Add new regression test.
17069         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
17070         more portable.
17072         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
17074         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
17075         is no longer used.
17077 2004-05-06      Patrik Torstensson
17079         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
17080         long reg allocation in any reg (not only eax:edx) and implemented 
17081         long shl/shr ops in asm instead of helpers.
17083 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
17085         * mini-sparc.h: Fix warnings.
17087         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
17088         stack.
17090         * mini-exceptions.c (mono_handle_exception): Call the filter in a
17091         separate statement for clarity.
17093         * mini-sparc.c: Update status.
17095 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
17097         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
17098         here.
17100 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17102         * inssel-ppc.brg: another small pre-release workaround:
17103         we don't do overflow detection for long_sub_un.
17105 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17107         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
17108         (also works around a weird ppc bug: 57957).
17110 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
17112         * tramp-ppc.c: trampoline fixes.
17114 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
17116         * mini-ppc.c: fixed typos.
17118 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17120         * mini-ppc.c, exceptions-ppc.c: more code saves registers
17121         at the top of the stack. Fixed typos. Use a frame registers
17122         for all the methods with exception clauses.
17124 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17126         * exceptions-ppc.c: restore fp registers.
17128 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
17130         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
17131         order from the stack top (moved the stack room to save the
17132         return value for trace after the param area). Fixed corruption
17133         in restoring registers on unwind.
17135 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17137         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
17139 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17141         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
17142         and prolog/epilog for methods that use it. Allow
17143         enough param area room for varargs methods. Fix miguel's
17144         breakage in exception handling.
17146 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17148         * Makefile.am: run genmdesc only on current arch.
17150 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17152         * exceptions-x86.c:
17153         * mini-x86.h: fix the build on windows.
17155 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
17157         * Makefile.am mini.h mini-exceptions.c mini-x86.h mini-sparc.h exceptions-sparc.c: Move parts of the sparc exception handling code to XP code.
17159         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
17161         * mini-exceptions.c: New file.
17162         
17163         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
17164         Move some parts of the x86 exception handling code to an 
17165         arch-independent file so it can be shared with other ports.
17167 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17169         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
17171 2004-04-26  David Waite  <mass@akuma.org>
17173         * driver.c: remove comma from end of enumeration declaration
17175 2004-04-26  Jackson Harper  <jackson@ximian.com>
17177         * driver.c: parse config file before loading first assembly. This
17178         allows the user gac to be enabled/disabled. 
17179         
17180 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
17182         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
17183         simpler mechanism: we do not care what is encoded initially
17184         (branch absolute or relative), we care about the code and its
17185         target.  I kept the old code for reference for now.
17187         The new code tries first to determine if the jump is anywhere in
17188         the -/+32 absolute meg range, if it succeeds, it encodes using the
17189         absolute branch;  If not, it tried to find something in the
17190         relative range, if not, it uses the handle_thunk code. 
17192 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
17194         * exceptions-ppc.c: use the correct ip register on macosx.
17196 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
17198         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
17200 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
17202         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
17203         Raise exception on integer divide by zero by hand since the hw
17204         doesn't support it. Handle NaNs in FP compares.
17206 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17208         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
17209         code reducing duplication between the platforms and enabled
17210         signal exception handling (on linux for now).
17212 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
17214         * exceptions-ppc.c: more macosx support.
17216 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17218         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
17220 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17222         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
17224 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
17226         * iltests.il: more tests.
17228 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17230         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
17231         vars as well.
17233 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17235         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
17237 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17239         * liveness.c: Mark variables as volatile in all basic blocks reachable
17240         from exception clauses.
17242 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
17244         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
17245         inlining.
17247 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17249         * iltests.il, basic.cs: more tests for regalloc.
17251 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17253         * iltests.il: Some tests for register allocation modifications
17254         I have locally.
17256 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
17258         * exceptions.cs: Add regression test for bug #56782.
17260         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
17261         original stack trace if an exception is rethrown. Fixes #56782. Oh,
17262         the beauty of fixing the same thing in 5 different files...
17264 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
17266         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
17267         methods.
17269 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
17271         * mini.c: Add support for STRWLPARRAY marshalling convention.
17273 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17275         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
17276         to init the context to setup the regs pointer).
17278 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17280         * exceptions-ppc.c: more exceptions work.
17282 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17284         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
17285         not allowed.
17287 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17289         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
17290         can use the memory directly.
17292         * cpu-pentium.md: Update documentation from a post from Zoltan. 
17294         add x86_add_membase, x86_sub_membase, x86_mul_membase
17296 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17298         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
17299         GENERAL_REGS they were also hardcoded for all PPC ports.
17301         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
17303         Remove hard-coded limit for floating point registers, use
17304         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
17306         Notice that in MacOS X calling conventions you can fit a lot more
17307         floating point values in registers, so I should update the PInvoke
17308         test to excercise the passing of floating point values on the
17309         stack (currently broken).
17310         
17311 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
17313         * tramp-ppc.c (create_trampoline_code): Added
17314         JUMP_TRAMPOLINE_SIZE. 
17315         (ppc_magic_trampoline): Follow the pattern from
17316         x86_magic_trampoline: if code is set to zero, return. 
17317         (create_trampoline_code): Always pass MonoMethod to the jump
17318         trampoline, before it was passing a null.
17319         (mono_arch_create_jump_trampoline): Implement the jump stub, could
17320         share the code with mono_arch_create_jit_trampoline. 
17322         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
17323         implemented.
17324         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
17325         implemented.  
17327         * cpu-g4.md: Added length for jmp instruction, the worst case
17328         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
17329         for save_lmf).
17331 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
17333         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
17335 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
17337         * mini.c: Only set bblock->real_offset when adding a new bblock, and
17338         before each IL instruction.
17340         * mini.c (CEE_BOX): Fix warnings.
17342 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17344         * mini.c: removed a few unused vars and extra whitespace.
17346 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
17348         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
17349         checks.
17350         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
17351         index.
17352         (OP_GETCHR): use the above
17353         (CEE_LDELEMA): use the above.
17355         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
17356         version of the generic impl.
17357         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
17358         (CEE_LDELEMA): use the above.
17360 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17362         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
17363         Fixes #56317.
17365         * iltests.il: Added new regression test for #56317.
17367 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17369         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
17370         under NetBSD. Fixes #56450.
17372         * liveness.c (update_gen_kill_set): Fix previous patch.
17374 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17376         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
17378 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
17380         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
17381         ldsfld and ldsflda.
17383         * inssel-sparc.brg: Add more optimizations.
17385         * mini-sparc.c: Replace multiply/divide with shifts if possible.
17387 2004-04-01  Martin Baulig  <martin@ximian.com>
17389         * mini.c (handle_box): New static function; moved the
17390         implementation of CEE_BOX here.
17391         (mono_method_to_ir): Added `constrained_call' variable.
17392         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
17393         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
17394         mono_method_get_constrained() to get the method.
17396 2004-04-01  Martin Baulig  <martin@ximian.com>
17398         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
17399         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
17400         (mono_method_to_ir): We don't need these macros anymore since
17401         mono_class_get_full() already takes care of it. 
17403 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17405         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
17406         use @function (as doesn't accept #function here) and check the return
17407         value of system and stop if fails.
17409 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17411         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
17413 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
17415         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
17417         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
17419         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
17420         #56223.
17422         * basic-long.cs: Add test for negation of Int64.MinValue.
17424 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
17426         * mini-sparc.c: Update status.
17428         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
17430         * exceptions-sparc.c: Fix return value in filters.
17432         * inssel-sparc.brg: Fix register allocation in some rules.
17434 2004-03-28  Martin Baulig  <martin@ximian.com>
17436         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
17437         if neccessary.  
17439 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
17441         * mini-x86.c (mono_arch_patch_code): Fix warnings.
17442         
17443         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
17444         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
17445         remove unused conv_u4 opcode.
17447         * mini-x86.c: Remove valgrind workaround since it slows down things
17448         even when mono is not run under valgrind.
17450 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
17452         * mini-sparc.c: Update status.
17454         * inssel-sparc.brg: Add some optimizations.
17456         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
17457         future delay slot filling. Add support for varargs, tail calls and JMP.
17459         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
17460         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
17462         * inssel.brg: Fix register allocation in OP_ARGLIST.
17464         * inssel.brg: Fix warnings.
17466 2004-03-25  Martin Baulig  <martin@ximian.com>
17468         * mini.c (inflate_generic_field): Removed.
17469         (mini_get_method): Removed, use mono_get_method_full(),
17470         (mini_get_class): Removed, use mono_class_get_full().
17471         (mono_method_to_ir): Pass our generic context to
17472         mono_field_from_token().        
17474 2004-03-25  Martin Baulig  <martin@ximian.com>
17476         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
17477         of a `MonoMethod *'.
17478         (mini_get_method): Take a `MonoGenericContext *' instead
17479         of a `MonoMethod *'.
17480         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
17481         a new local variable called `generic_context' which holds the
17482         current `MonoGenericContext *'; use it to lookup things.
17484 2004-03-24  Martin Baulig  <martin@ximian.com>
17486         * mini.c (mini_get_class): New static method; if we're inside a
17487         generic instance, inflate the class if neccessary.
17488         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
17490 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
17492         * iltests.il: New regression test for #55976.
17494         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
17495         #55976.
17497 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
17499         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
17500         output.
17502 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
17504         * liveness.c: Consider SSA stores as well as loads when making vars
17505         volatile.
17507         * exceptions.cs: New regression tests for register allocation.
17508         
17509 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
17511         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
17512         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
17513           domain lock only to protect puntual access to data structures.
17514           Added access lock for sighash, jit_icall_hash_name, 
17515           jit_icall_hash_addr and domain->code_mp.
17517 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
17519         * driver.c: Print SIGSEGV handling method.
17521         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
17523         * mini.c (setup_jit_tls_data): Handle case when this is called
17524         multiple times for a thread.
17526         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
17527         is different from fbxx_un. Fixes #54303. Also use constants instead of
17528         magic numbers in a lot of places.
17530 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
17532         * exceptions.cs: Fix cctor test when --regression is used.
17534 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
17536         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
17537         for Linux/ppc.
17539 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17541         * inssel-ppc.brg: fixed register assignments for some rules.
17543 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
17545         * exceptions.cs: Add test for exceptions in static constructors.
17547         * mini.c (mono_jit_compile_method_with_out): Move the calling of
17548         static constructors outside the domain lock. Fixes #55720.
17550 2004-03-17  Martin Baulig  <martin@ximian.com>
17552         * mini.c (get_generic_field_inst): Removed, this'll never happen.
17553         (inflate_generic_field): Take the `MonoMethod *' instead of the
17554         `MonoClass *' and added support for generic method.
17555         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
17556         have a `field->parent->gen_params', only inflate the field if it's
17557         an open constructed type.
17559 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
17561         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
17562         exception object instead of the preconstructed ones.
17564 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17566         * mini.c: reverted changed to sigsegv_signal_handler commited
17567         accidentally in the previous patch.
17569 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17571         * mini.c:
17572         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
17573         running --aot with an old assembly.
17575 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
17577         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
17578         point values.
17580         * mini-sparc.c: Add support for v9 branches with prediction.
17582 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
17584         * mini.c (mini_init): #warning is GNUC only
17586         * mini-sparc.h: implement __builtin_frame_address
17587         and __builtin_return_address for Sun C compiler
17589 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
17591         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
17593 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
17595         * basic-calls.cs: Add test for unaligned byref long argument passing.
17597         * mini-ops.h: Add sparcv9 compare and branch instructions.
17599         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
17600         v9 instructions if we have a v9 cpu.
17602         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
17603         registers for global allocation.
17605         * exceptions-sparc.c: Fixes.
17606         
17607 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
17609         * liveness.c (mono_analyze_liveness): Optimized version.
17611         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
17613         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
17614         sparc work.
17616         * basic-float.cs basic-calls.cs: New regression tests.
17618 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
17620         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
17621         sigaltstack implementation.
17623         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
17624         
17625         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
17626         stuff if SIGSEGV_ON_ALTSTACK is not defined.
17628 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
17630         * mini.c: Fix warnings.
17631         
17632         * mini.c (mono_resolve_patch_target): New function which contains the
17633         arch independent part of the patching process.
17635         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
17636         patching code to a separate function.
17638 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
17640         * mini.c (add_signal_handler): ifdef out on Windows
17642 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
17644         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
17645         cpu-sparc.md: Add exception handling support + other fixes.
17647         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
17648         typed GC detection in --version.
17650         * basic.cs exceptions.cs: New regression tests.
17652         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
17653         the arch specific code can store data during a compilation.
17655         * mini-ops.h: Add OP_SETFRET.
17657         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
17658         function, register a separate icall for each arity, so the icalls can
17659         get a wrapper.
17660         
17661         * mini.c (mono_print_tree): Print negative offsets in a more readable
17662         form.
17663         
17664         * mini.c: Make signal handling work on sparc.
17665         
17666         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
17668         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
17670         * jit-icalls.c: Emulate truncl by aintl on solaris.
17672         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
17674 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
17676         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
17678 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
17680         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
17681         a MarshalByRef type, inline a method that performs the check, taking into
17682         account that the object can be a proxy. Also implemented tow new opcodes:
17683         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17684         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
17685         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17687 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17689         * mini-ppc.c: if a relative branch displacement is too big
17690         but it points to and area reachable with an absolute branch, 
17691         avoid the thunks.
17693 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17695         * mini.c: optimize small copies in cpblk.
17697 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
17699         * basic-calls.cs basic-float.cs: New regression tests.
17701         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
17702         negative offsets from %fp. Implement localloc. Fix local register 
17703         allocation. Fix the case when the this argument needs to be saved to
17704         the stack. Implement some missing opcodes.
17706 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
17708         * mini.c (mini_method_compile): Reenable global regalloc in methods
17709         with exception handlers.
17711         * linear-scan.c (mono_varlist_sort): Fix warning.
17713         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
17715         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
17716         regalloc costs.
17718         * liveness.c: Make all variables uses in exception clauses volatile, to
17719         prevent them from being allocated to registers. Fixes #42136.
17721 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
17723         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
17724         causes regressions.
17726         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
17727         argument to mono_arch_regalloc_cost.
17729         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
17730         precisely.
17732 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
17734         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
17735         Make the cost of allocating a variable to a register arch dependent.
17737         * basic-calls.cs: Fix compilation of tests.
17738         
17739         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
17740         helper function to cut back on the number of #ifdefs needed.
17742         * mini-ppc.c: Fix compilation.
17744         * basic-calls.cs: New regression tests.
17746         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
17748         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
17749         of l0 since that is callee saved.
17751         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
17752         to virtual calls.
17754         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
17755         of delay instruction.
17757         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
17759         * mini.h (MonoCallInst): Add 'virtual' flag.
17761         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
17763 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
17765         * *.cs: New regression tests.
17767         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
17768         work.
17770         * mini.c (mono_runtime_install_handlers): Fix build.
17772         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
17773         'signal_stack_size' members.
17775         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
17776         alternate signal stack.
17778         * exceptions-x86.c: Add stack overflow handling.
17780         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
17781         functions to arch independent code.
17783         * mini.c (mono_print_tree): Print more detailed info for load_membase
17784         opcodes.
17785         
17786 2004-02-23  Martin Baulig  <martin@ximian.com>
17788         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
17790 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17792         * mini-x86.c: fixed reg allocation for div/rem.
17794 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
17796         * driver.c (mono_main): Report some configuratio options on --version.
17798 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
17800         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
17801         low in the address space. Correctly flush memory in thunks where we
17802         output native code.
17804 2004-02-20  Martin Baulig  <martin@ximian.com>
17806         * mini.c (mini_get_method): New static method; inflate all generic
17807         methods and methods in open generic instances.
17808         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
17809         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
17811 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
17813         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
17815         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
17817 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
17819         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
17821         * mini-sparc.c (flushi mono_arch_output_basic_block): make
17822         it compile using Sun's compiler.
17824 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
17826         * mini-ops.h inssel-sparc.brg cpu-sparc.md mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Sparc port, part I.
17828         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
17830 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
17832         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
17833         code.
17834         * mini-ppc.c: handle calls outside of the allowed range with thunks
17835         allocated using the code manager.
17836         * tramp-ppc.c: use the code manager to hold generated native code.
17837         Fixed the magic trampoline to just patch vtable entries.
17839 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
17841         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
17842         independent file.
17844 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
17846         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
17847         PPC.
17849         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
17850         if we have a working __thread implementation.
17852         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
17853         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
17855 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
17857         * mini-x86.c: Fix compilation under gcc 2.
17858         
17859 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
17861         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
17862         contains a call to the wrapped function.
17864         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
17865         OP_<CALL>_IMM opcodes, and use them under X86.
17866         
17867         * mini.c (mono_jit_find_compiled_method): Fix warning.
17869         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
17871         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
17873         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
17874         functionality to mini.c.
17876         * mini.c (mono_create_jump_trampoline): New function to create a jump
17877         trampoline. Return a compiled method instead of a trampoline if it
17878         exists. Add a cache for jump trampolines.
17880         * mini.c (mono_jit_find_compiled_method): New function to return a
17881         compiled method if it exists.
17883         * mini-x86.c: Call mono_create_jump_trampoline instead of 
17884         mono_arch_create_jit_trampoline.
17886         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
17887         a jump trampoline. Fixes #52092.
17888         
17889 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
17891         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
17892         which is not up-to-date. Add check_corlib_version () instead.
17894         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
17895         have to call it.
17896         
17897         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
17898         since newer valgrind versions do not need it.
17900         * mini.c (mono_jit_compile_method_with_opt): New helper function to
17901         compile a method with a given set of optimizations.
17903         * mini.c: Compile icall wrappers on-demand instead of at startup.
17905         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
17906         wrapper for an icall.
17908 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
17910         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
17911         #54063.
17913         * iltests.il: Add test for non-empty stack before switch instruction.
17915 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
17917         * mini.c: Add support for new stringbuilder marshalling conventions.
17919         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
17921 2004-02-01  Martin Baulig  <martin@ximian.com>
17923         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
17924         in `ginst->mtype_argv'.
17926 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
17928         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
17929         facilitate grepping.
17931 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
17933         * mini.c: fixed buglet in initobj generic implementation for references.
17935 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
17937         * Makefile.am: make the version script conditional.
17938         * jit-icalls.c: handle missing truncl().
17940 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
17942         * exceptions.cs: Add more tests for double->int conversion.
17944         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
17945         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
17947 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
17949         * driver.c: make --verbose --version emit an error
17950         if the loaded corlib doesn't match the runtime version.
17952 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
17954         * mini-ppc.h: export ppc_patch().
17955         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
17956         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
17957         on par or better than on MacOSX.
17959 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
17961         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
17962         mono_lookup_pinvoke_call.
17964         * mini-x86.c: Under windows, the default pinvoke calling convention is
17965         stdcall. Fixes #52834.
17967         * mini.c (optimize_branches): Add an upper bound to the number of
17968         iterations to prevent infinite loops on strange loops. Fixes #53003.
17970 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
17972         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
17973         and ISINST. Fixes #52093.
17975         * objects.cs (test_0_vector_array_cast): New tests.
17976         
17977 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
17979         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
17980         checking in Array.Set ().
17982         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
17983         #52590.
17985         * object.cs (test_0_multi_array_cast): New regression test.
17987 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
17989         * exceptions-ppc.c: fix build on Linux/PPC.
17991 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
17993         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
17994         running under valgrind.
17995         (x86_magic_trampoline): Fix build bustage.
17997         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
17998         negative values as well. This is needed for the encoding of the line number
17999         info, since sometimes the line numbers are not in increasing order.
18001 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
18003         * cpu-pentium.md (localloc): Increase the size of the localloc 
18004         instruction since it is a loop under Win32.
18006         * debug-mini.c (record_line_number): Get rid of unneccesary memory
18007         allocation.
18009 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
18011         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
18012         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
18013         Max Horn (max@quendi.de). Fix file names in comments.
18015 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
18017         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
18018         avoid stack overflow.
18019         (replace_usage): Avoid uninitialized variable warnings.
18021         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
18022         and taking the address of valuetype variables.
18024 2004-01-03  Patrik Torstensson
18026         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
18027         for other purposes than FP later on.
18029 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
18031         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
18032         of tail calls.
18034 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
18036         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
18038 2003-12-30  Patrik Torstensson <p@rxc.se>
18040         * mini-x86.h: Decreased number of availiable fp regs.
18041         Solves corner cases with FP spilling.
18043 2003-12-23  Patrik Torstensson <p@rxc.se>
18045         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
18046         for floating point stack tracking / spilling on x86. 
18047         Fixes bug #49012.
18048         
18049         * basic-float.cs: added float mul overflow test.
18051 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
18053         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
18055 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18057         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
18058         supports for cond branches that overflow the immediate
18059         overflow offset. mcs can compile simple programs.
18061 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18063         * exceptions-ppc.c: exception handling support wip:
18064         finally handlers get run on exception.
18066 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
18068         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
18069         profiling.
18071 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18073         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
18074         initial support for stack walking and unwinding.
18076 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
18078         * driver.c (mono_main): Make corlib-out-of-sync message more 
18079         descriptive. Also remove verify_corlib call.
18081 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18083         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
18084         not overlap with other call's arguments, too.
18086 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
18088         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
18089         move to arch-specific code the choice of arch-specific
18090         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
18091         * mini.c: ensure emulation calls will not interleave
18092         with other calls.
18094 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
18096         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
18097         the magic trampoline stack frame is dropped before executing
18098         the new method.
18100 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18102         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
18103         and integer to fp conversions. Added support for overflowing
18104         arguments on the stack. Reserve a couple more registers as temps.
18105         Added support for aot compilation (as output still needs to be
18106         tweaked, though).
18108 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18110         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
18111         Don't overwrite return register in some corner cases.
18113 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
18115         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
18116         static constructors when AOT compiling.
18118         * driver.c (mono_main): Call mono_check_corlib_version.
18120 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18122         * cpu-g4.md, basic.cs: fixed div target register.
18124 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18126         * mini-ppc.c, basic.cs: shl_imm fix with test.
18128 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18130         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
18131         structures by value. Misc fixes.
18132         * objects.cs: more tests.
18134 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
18136         * mini-ppc.c: lconv.ovf.i implemented.
18138 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18140         * mini.c:
18141         (mini_init): don't error out if someone already called g_thread_init.
18143 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18145         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
18146         to be any type per the spec. Fix abnormal memory usage when
18147         the same object is repeatedly thrown.
18149 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
18151         * mini.c: check for overruns in IL code.
18153 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
18155         * TODO: Add/remove some todo entries.
18157 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
18159         * driver.c (mono_main): Call mono_verify_corlib.
18161 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
18163         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
18164         This has been moved to mini.c
18165         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
18166         type being casted is marshalbyref it could be a proxy, so instead of
18167         emitting the type check code, emit a call to a runtime method that will
18168         perform the check by calling CanCastTo if needed.
18170 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
18172         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
18173         methods with large stack frames under Win32.
18175 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
18177         * Makefile.am: Distribute regression tests.
18179         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
18180         at the end instead of inserting each variable into the sorted list.
18182         * linear-scan.c (mono_varlist_sort): New helper function.
18183         
18184 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18186         * mini.c: ensure arguments and locals are within bounds.
18188 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18190         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
18191         related fixes.
18193 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
18195         * mini.c (mono_cprop_copy_values): Fix crash.
18197         * aot.c: Set verbosity back to 0.
18198         
18199 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18201         * regalloc.c: complete memory leak fix by Laurent Morichetti
18202         (l_m@pacbell.net).
18204 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
18206         * driver.c (main_thread_handler): Revert the previous patch.
18208         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
18209         under valgrind.
18211         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
18212         memory from the memory pool.
18214         * driver.c (main_thread_handler): Turn on all optimizations when
18215         --aot is used.
18217         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
18218         an array for better performance.
18220         * regalloc.c (mono_regstate_assign): Fix memory leak.
18222         * debug-mini.c (mono_debug_serialize_debug_info): New function to
18223         serialize the debug info.
18225         * debug-mini.c (mono_debug_add_aot_method): New function to load the
18226         debug info from the serialized representation.
18228         * aot.c: Save debug info into the generated file and load it when 
18229         loading a method.
18231         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18233 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18235         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
18236         More FP-related fixes.
18238 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18240         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
18241         and register allocation buglet. Hello world now runs.
18243 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18245         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
18246         * tramp-ppc.c: fixed class init trampoline.
18247         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
18249 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18251         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
18252         mini.c: more ppc changes/fixes.
18254 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
18256         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
18257         Also optimize the case when the arguments are the same in the caller 
18258         and in the callee.
18260         * iltests.il: Add tests for tail calls with valuetype arguments.
18262 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18264         * mini-ppc.c: fixes for struct return type.
18266 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
18268         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
18269         mono_spillvar_offset() to arch-specific code.
18271 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18273         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
18275 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
18277         * exceptions-x86.c: Fix stack space leaks.
18278         
18279         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
18280         registers from the lmf if the method has save_lmf set.
18282 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
18284         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
18285         of icall wrappers into InvokeInDomain, since these are now per-domain.
18287 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
18289         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
18290         make some opcode emulation and intrinsic ops enabled/disabled 
18291         according to the architecture. More fixes.
18293 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18295         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
18297 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18299         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18300         arch-specific handling for 'this' and struct return type to
18301         arch-specific code.
18303 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18305         * aot.c: prevent divide by zero error when reporting (it happened with
18306         Accessibility.dll).
18308 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
18310         * mini.h (inst_switch): Remove unused macro.
18312 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18314         * aot.c:
18315         (load_aot_module): free 'info->methods' and 'info' properly. No more
18316         "free(): invalid pointer blah" messages when you have an old aot
18317         compiled assembly.
18319 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
18321         * jit-icalls.c, mini.c: Added support for context static fields.
18323 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18325         * mini.c (mono_method_blittable): Methods which set LastError are not 
18326         blittable either. Fixes #51108.
18327         
18328 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18330         * mini.c: flush icache.
18331         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
18333 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18335         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
18337 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
18339         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
18340         safe on IA32.
18342         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
18343         vararg calls.
18345         * inssel.brg (CEE_MKREFANY): Fix AOT case.
18347 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
18349         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
18350         instruction when the result is discarded.
18352         * iltests.il (test_0_div_regalloc): New regression test.
18354         * arrays.cs: Fix compilation error.
18356 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18358         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
18359         float rules to inssel-x86.brg: sane architectures with FP registers
18360         don't need to implement these rules.
18362 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18364         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
18366 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18368         * mini.h, inssel-long32.brg: fixed endianess issues in int64
18369         implementation of 32 bit systems.
18371 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18373         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
18374         (Jeroen Zwartepoorte).
18376 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
18378         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
18379         the caller and the callee matches.
18380         
18381         * mini.c (mono_method_to_ir): Add comment.
18383         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
18384         signbit is missing on some platforms.
18386 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
18388         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
18390         * mini.c (setup_jit_tls_data): Call the new function.
18391         
18392         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
18394         * mini-x86.c: Add experimental support for fast access to the lmf
18395         structure under NPTL/Linux 2.6.x.
18397 2003-11-06  Martin Baulig  <martin@ximian.com>
18399         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
18400         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
18401         the debugger.
18403 2003-11-02  Martin Baulig  <martin@ximian.com>
18405         * mini.c (inflate_generic_field): New static method.
18406         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
18407         generic instance and the field is declared in a generic type, call
18408         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
18410 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
18412         * mini.h mini.c (mono_method_same_domain): New function to return
18413         whenever the caller and the callee are in the same domain.
18415         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
18417 2003-10-30  Martin Baulig  <martin@ximian.com>
18419         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
18420         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
18421         method parameters.
18422         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
18423         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
18425 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
18427         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
18428         propagation.
18430         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
18431         object here, so it is in the correct appdomain etc.
18433 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
18435         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
18436         already done.
18437         (mono_method_to_ir): Avoid freeing the type created returned from
18438         mono_type_create_from_typespec, since it is put into an internal cache
18439         by the function. Fixes pointer.exe.
18441         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
18442         trampolines for icalls and pinvokes as well. Fixes #33569.
18444 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
18446         * mini.c: Update after appdomain changes.
18448         * mini.c (mono_jit_compile_method_inner): Allways compile native
18449         method wrappers in the root domain, since there can only be one
18450         instance of them, whose address is stored in method->info.
18452 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18454         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
18455         environment variable. Instead detect automatically whenever running
18456         under valgrind using the magic macro RUNNING_ON_VALGRIND from
18457         valgrind.h.
18459 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
18461         * trace.c, trace.h: New files that implement the new trace option
18462         parsing. 
18464         * driver.c: Document new --trace options.
18466         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
18467         mini-x86.c: Apply:
18469         -       if (mono_jit_trace_calls)
18470         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
18472         * mini.h: prototypes.
18473         
18474 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18476         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
18478         * mini.c inssel.brg: Implement typedefbyref opcodes.
18480         * mini.c (mono_jit_compile_method): Remove unused local variable.
18482         * mini.c (mono_jit_compile_method_inner): Ditto.
18483         
18484 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
18486         * tramp-x86.c (x86_class_init_trampoline): Fix build.
18487         
18488         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
18490 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18492         * mini.c (mono_no_aot): Remove unused global variable.
18494         * mini.c: Thread safety fixes.
18496 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18498         * mini.c (mono_create_class_init_trampoline): Add a lock around
18499         class_init_hash_addr.
18501         * arrays.cs (test_0_newarr_emulation): Add new regression test for
18502         #30073.
18504         * mini.c: Decompose the NEWARR instruction before decomposing its
18505         arguments. Fixes #30073.
18507 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
18509         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
18510         convention.
18512 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
18514         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
18516         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
18518         * driver.c: Add support for compiling icall wrappers to --compile.
18520 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
18522         * inssel.brg: The empty value in class->interface_offsets is -1, not
18523         0. Fixes #49287.
18525 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
18527         * objects.cs: New test for 'is' operator on an array of interfaces.
18529 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
18531         * tramp-ppc.c: update trampoline code to support jumps
18532         and class initialization.
18534 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
18536         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
18538         * inssel.brg (OP_UNBOXCAST): Fix #46027.
18540         * inssel.brg (OP_UNBOX): Remove unused rule.
18542         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
18543         region instead of one for each method. Fixes #47813.
18545 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
18547         * exceptions.cs (test_0_nested_finally): New regression test for
18548         nested exception handlers.
18550         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
18552         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
18554         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
18555         inlining.
18557         * mini.c (mono_method_check_inlining): Make the inlining limit 
18558         configurable by an environment variable.
18559         
18560         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
18562         * mini.h: Bump AOT file version.
18564         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
18565         token, store the image along with the token, since the token might not 
18566         refer to the same image as the method containing the relocation, 
18567         because of inlining.
18569 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
18571         * mini.c (mono_precompile_assemblies): New function to compile
18572         all methods in all loaded assemblies.
18574         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
18576         * regalloc.h regalloc.c (MonoRegState): Change the type of 
18577         iassign and fassign to int*, since they can contain large negative
18578         values if the register is spilled. Also added some comments. Fixes
18579         #45817.
18581         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
18582         under Win32. Fixes #42964.
18584 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
18586         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
18588         * aot.c: Added support for AOT compiling methods which contain calls
18589         to wrappers. Currently, only remoting-invoke-with-check wrappers are
18590         handled.
18591         
18592         * driver.c (compile_all_methods): Run the compilation in a thread
18593         managed by mono. Fixes #44023.
18595         * mini.c (mono_codegen): Print full method name in verbose output.
18597         * mini-x86.c (mono_arch_patch_code): Fix warning.
18598         
18599         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
18600         jumps, since the method we are jumping to might be domain-specific.
18602         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
18604 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
18606         * inssel.brg: string chars are unsigned.
18608 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
18610         * TODO: New todo item.
18612         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
18613         which calls mono_runtime_class_init and patches the call site to
18614         avoid further calls.
18615         (mono_arch_create_class_init_trampoline): New arch specific function 
18616         to create a class init trampoline.
18617         (create_trampoline_code): Generalized so it can create
18618         class init trampolines as well.
18620         * mini.c (helper_sig_class_init_trampoline): New helper variable.
18621         (mono_create_class_init_trampoline): New function to create and cache
18622         class init trampolines.
18623         (mono_find_class_init_trampoline_by_addr): New function to lookup the
18624         vtable given the address of a class init trampoline. Used by the
18625         patching process.
18626         (mono_codegen): Generate a call to a trampoline instead of
18627         mono_runtime_class_init in LDSFLD[A].
18628         (mono_codegen): Add relocations for the new trampoline.
18629         
18630         * mini.h mini-x86.c aot.c: Added a new relocation type: 
18631         MONO_PATCH_INFO_CLASS_INIT.
18633         * mini.h: Bump AOT version number.
18635         * aot.c: Create a copy of the loaded code instead of using the original
18636         so methods which call each other will be close in memory, improving
18637         cache behaviour.
18638         
18639         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
18640         patch since it breaks the regression tests.
18641         
18642         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
18643         for the register saving instruction sequence since the 
18644         frame_state_for function in glibc 2.3.2 don't seem to detect it.
18646 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
18648         * TODO: Fix todo item && remove another.
18650 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
18652         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
18653         previous checkin.
18655         * aot.c: Moved the check for MONO_LASTAOT into the initialization
18656         function of the module.
18658         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
18659         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
18660         --no-aot command line option.
18662 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
18664         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
18665         by Bernie Solomon (bernard@ugsolutions.com).
18667         * inssel.brg: Refactor the interface offset table related code into
18668         its separate functions and add support for the AOT case.
18670 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
18672         * aot.c (mono_aot_get_method_inner): Fix memory leak.
18673         
18674         * aot.c: Added mono_aot_verbose variable and made all debugging
18675         output depend on the value of this variable.
18677         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
18678         method_label and info_label.
18680         * mini.h mini-x86.c aot.c: Added a new relocation type 
18681         MONO_PATCH_INFO_IID for klass->interface_id.
18683         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
18684         the MonoJitInfo structure.
18686         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
18687         a non-root appdomain in shared mode.
18689 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
18691         * aot.c: make aot loader less verbose. Remove free of unused variable.
18693 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
18695         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
18697         * .cvsignore: Added *.dll.
18699         * mini.c (mono_print_tree_nl): New function callable while debugging.
18701         * mini.c (mono_print_code): Export this.
18703         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
18704         patched code.
18706 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
18708         * mini.h (MonoCompile): Added 'jit_info' field.
18710         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
18711         the cfg structure, since it is needed by the AOT compiler.
18713         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18715         * aot.c: A major rewrite. Changes include:
18716         - save exception tables for methods which have them.
18717         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
18718         to g_module_symbol.
18719         - reworked the file format so it is now much smaller and needs
18720         fewer relocation entries.
18721         
18722 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18724         * aot.c (load_aot_module): Fix build bustage on platforms without
18725         Boehm GC.
18727 2003-09-04  Martin Baulig  <martin@ximian.com>
18729         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
18731 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18733         * TODO: Some new optimization ideas.
18735         * aot.c: Move AOT module loading logic here from mono_assembly_open.
18737         * aot.c: Save the optimization flags used to compile the code into
18738         the AOT module.
18740         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
18741         support emitting domain specific code.
18742         
18743         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
18744         no longer domain neutral. It can be made domain neutral by compiling 
18745         with --optimize=shared.
18747         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
18748         between appdomains.
18750         * driver.c mini.h mini.c: New --no-aot debugging option which disables
18751         loading of AOT code.
18753         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
18754         
18755         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
18756         if there is no domain neutrality information.
18758 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
18760         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
18761         format version into the generated library.
18763         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
18764         callee method into the caller since one of them could be shared.
18766         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
18767         system exceptions from AOT code now works.
18769         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
18770         method if it is domain neutral and the callee is not.
18772         * graph.c (cfg_emit_one_loop_level): Fix warning.
18774 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
18776         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
18777         last checkin.
18779 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
18781         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
18782         is needed  by code which is executed before mono_runtime_init ().
18783         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
18784         
18785         * mini.c (mono_thread_abort): Fix warning.
18786         (mono_jit_compile_method): Call static constructor in the AOT case too.
18788         * aot.c (mono_compile_assembly): Fix warning.
18790 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18792         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
18794 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
18796         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
18798         * cpu-pentium.md: Fix the length of call opcodes so they include the
18799         ESP restoring instruction. Fixes #47968.
18801 2003-08-28  Martin Baulig  <martin@ximian.com>
18803         * mini-x86.c (mono_arch_call_opcode): Added support for
18804         MONO_TYPE_GENERICINST.
18806         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
18808 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
18810         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
18811         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
18813         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
18814         metadata_section.
18816 2003-08-26  Martin Baulig  <martin@ximian.com>
18818         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
18819         when reporting an error, set this to the actual error location.
18820         (mono_method_to_ir): Report the correct error location if
18821         get_basic_blocks() returned an error.
18823 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
18825         * mini.c (mono_type_blittable): OBJECT is not blittable.
18826         (mono_method_blittable): Methods which have marshalling descriptors
18827         are not blittable either. Fixes #47842.
18829 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
18831         * driver.c mini.c: Use an environment variable instead of a global 
18832         variable. Also fix the build.
18834         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
18835         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
18836         reporting this. 
18838         * driver.c mini.c: Added --with-valgrind option to turn off some
18839         code which prevents mono from running under valgrind.
18841         * mini.c (mono_emit_call_args): Fixed warning.
18843         * mini.c (mono_emulate_opcode): Fixed warning.
18845 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18847         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
18848         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
18849         regalloc.c, regalloc.h: specify available registers in arch-specific
18850         code and support floats in the regallocator (patch by Laurent Morichetti 
18851         <l_m@pacbell.net>)
18853 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
18855         * mini.c: mono_thread_current() can be called only after
18856         mono_runtime_init(): rearrange code to not call it early on.
18858 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18860         * mini.c: allocate jump tables in the code mempools.
18862 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
18864         * mini.c, mini.h: make sure per-thread data allocated by the jit is
18865         freed.
18867 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
18869         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
18870         12 to 16.  This fixes bug #47453.
18873 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18875         * mini-ppc.c: fixed indexed load and unsigned compares.
18877 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
18879         * mini.c: reenabled installation of handler for
18880           thread abort signal.
18882 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18884         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
18885         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
18886         until it's fixed and actually useful.
18888 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
18890         * inssel-long32.brg: couple more opcodes implemented.
18892 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18893         
18894         * mini-sparc.c: Even more opcodes implemeted.
18896 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
18898         * mini-sparc.c: More opcodes implemented.
18900 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
18902         * mini-sparc.c: More opcodes implemented.
18904 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18906         * inssel-sparc.brg: Add some needed rules.  Direct
18907         copy from PPC.
18908         * Makefile.am: Use inssel-sparc.brg
18909         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
18910         an assert happy for now.
18912 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
18914         * mini-sparc.c: Fixed compile errors.
18915         * exceptions-sparc.c: Same.  We now produce a mono binary 
18916         on sparc-linux.  Yea.
18918 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
18920         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
18921         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
18922         They compile, but do not work.
18924 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18926         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
18927         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
18928         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
18929         (ct@gentoo.org).
18931 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18933         * mini.c: more opcodes implemented and better support for generics.
18935 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
18937         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
18938         * mini.c, mini.h: first cut at generics support: some new instructions 
18939         added and changed the behaviour of some of the existing ones.
18941 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
18943         * mini.c: Removed definition of metadata_shared mutex here.
18945 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
18947         * mini-x86.c: make vararg calls work for instance methods.
18949 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
18951         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
18952         returns the arguments in a separte list, now.
18954 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
18956         * aot.c, mini.c: updates for array type representation changes.
18958 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
18960         * mini.c: register function to perform jit shutdown.
18962 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18964         * mini.c: use a faster allocator if possible.
18966 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
18968         * aot.c: some cleanups and portability changes.
18970 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
18972         * mini.c: use faster allocation for CEE_BOX if possible.
18974 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
18976         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
18977         Moved inlined mempcy code to its own function so that is can be
18978         reused. Added an inline memset function as well (optimized initobj).
18979         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
18981 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
18983         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
18985 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
18987         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
18988         arch code can setup the cpu for CLR execution, if needed.
18989         We use it on x86 to set the precision of FP operations.
18991 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
18993         * mini.c: disable some optimizations if we can guess they'll cost too
18994         much for a given method.
18996 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
18998         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
18999         
19000 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19001         * mini.h mini.c mini-x86.c: Added instruction level coverage 
19002         info collection support.
19004 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19006         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
19007         is now implemented in the profiling API. Get rid of a couple of
19008         unnecessary global variables.
19010 2003-06-15  Nick Drochak <ndrochak@gol.com>
19012         * basic-long.cs: tests for negative values for bigmul, and unsigned.
19013         * cpu-g4.md: add op_bigmul and op_bigmul_un
19014         * cpu_pentium.md: add op_bigmul_un
19015         * inssel-long32.brg: add rule for unsigned bigmul
19016         * mini-ops.h: define OP_BIGMUL_UN
19017         * mini-x86.c: THE BUG: handle (un)signed properly
19018         * mini.c: choose unsigned opcode if needed.
19019         This set of patches fixes bug #44291
19021 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
19023         * mini.c (optimize_branches): improved to handle all kinds of
19024         conditional branches.
19026 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19028         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
19029         don't raise exceptions.
19031 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19033         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
19034         to arch-specific files.
19036 2003-06-09  Martin Baulig  <martin@ximian.com>
19038         * Makefile.am (libs): Added $(LIBGC_LIBS).
19040 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
19042         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
19043         and OP_ATAN (fixes bug#44293).
19045 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
19047         * Makefile.am, mini-x86.c: rename cpu description array to
19048         pentium_desc, since some compilers define the 'pentium' preprocessor
19049         symbol.
19051 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
19053         * mini.c (mini_select_instructions): add explicit branch if the
19054         following block is not the false target of a conditional branch -
19055         we need this with any optimization that reorder or remove bblocks
19057         * mini.c (optimize_branches): bug fixes
19059 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
19061         * mini.c (mono_method_to_ir): inline static readonly fields
19063         * ssa.c (fold_tree): start cfold support for long (very simple
19064         cases only)
19066         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
19068 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19070         * inssel.brg: fixed memcpy (bug #44219).
19072 2003-06-05  Dick Porter  <dick@ximian.com>
19074         * driver.c: Set the glib log levels to not abort if g_message
19075         recurses.
19077         g_set_prgname() has to happen before mini_init() so that the
19078         process handle gets the info.
19079         
19080 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19082         * driver.c: add intrins to the default optimizations to get wider
19083         exposure.
19085 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19087         * mini.h: some large basic blocks will overflow a 16-bit
19088         integers for symbolic registers.
19090 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19092         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
19093         (mono_arch_output_basic_block): fix bug 43499 
19095 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19097         * mini.c: kill duplicated definition of mono_debug_format.
19099 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19101         * mini-x86.c, arrays.cs: fixed register allocation bug.
19103 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19105         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
19107         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
19109 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19111         * mini.c:
19112         (print_method_from_ip): also print source location information if
19113         available.
19115 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
19117         * mini.c (mono_find_block_region): bug fix in region code
19118         (mini_method_compile): enable removing unreachable code again, but
19119         only in methods without exception clauses.
19121 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
19123         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
19124         Implemented arglist opcode and handling of TypedReference type.
19125         Fixed x86 call convention when a structure is returned.
19126         Minimal support for calling static vararg methods.
19128 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
19130         * mini.c (mini_method_compile):  always remove unreachable code,
19131         because the code in them may be inconsistent  (access to dead
19132         variables for example).
19134 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19136         * driver.c, debug-mini.c: warning fixes.
19138 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19140         * Makefile.am, jit.h, mini.h: install header for embedding mono.
19142 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
19144         * mini.c: thread-static fields are registered in mono_class_vtable(),
19145         so ensure the function is called before checking for them.
19147 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
19149         * mini.c (optimize_branches): fix for bug 43586
19151         * jit-icalls.c (mono_llmult_ovf): added an additional check for
19152         overflow (fixes Bug #43639)
19154 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19156         * mini.c, objects.cs: allow the use of stobj for primitive types.
19158 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19160         * mini.c: be less strict about argument checking until we support
19161         running the verifier.
19163 2003-05-27  Nick Drochak <ndrochak@gol.com>
19165         * basic-long.cs: tests for (ulong)int * (ulong)int also
19166         * mini.c: use the same trick for (ulong)int * (ulong)int
19168 2003-05-27  Nick Drochak <ndrochak@gol.com>
19170         * basic-long.cs: add regression test for (long)int * (long)int
19171         * cpu-pentium.md: add op_bigmul specification
19172         * inssel-long32.brg: add OP_BIGMUL rule
19173         * mini-ops.h: add OP_BIGMUL
19174         * mini-x86.c: register allocator: handle case where src1 needs to be
19175         in EAX.
19176         * mini.c: substitute special BIGMUL opcode in the tree for 
19177         (long)int * (long)int
19179 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19181         * jit-icalls.c: call the type ctor on field access if needed.
19183 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19185         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
19186         to a method (including results of ldelema, bug#43207).
19188 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
19190         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
19191         colors to show exception handler blocks.
19193         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
19194         (fix for pinvoke7.cs).
19196 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19198         * mini.h, mini.c: ensure correct initialization order for types that
19199         require it. Prepare for lazy compilation of jit icall wrappers.
19200         Provide a name for opcode emulation to reduce unneeded mallocing.
19202 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19204         * mini-x86.c: better register restoring code and profiling
19205         support for tail calls.
19207 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19209         * mini.h, driver.c: prepare for leaf methods optimization.
19211 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19213         * mini.c: get targets of branches before converting a method.
19215 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
19217         * mini.c (optimize_branches): added some experimental code (disbaled) 
19219 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
19221         * mini.c (optimize_branches): fix branch to branch optimization 
19223         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
19225         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
19227         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
19229         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
19230         if needed.
19232 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
19234         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
19235         enable use of interface variables again.
19237         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
19238         I1 to registers because there is no simply way to sign extend 8bit
19239         quantities in caller saved registers on x86.
19241         * inssel-float.brg: set costs of some rules to 2 so
19242         that monobure always select the arch. specific ones if supplied,
19243         regardless of the order we pass the files to monoburg.
19245 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19247         * mini.c, mini-x86.c: since the magic trampoline for jumps
19248         can't patch the code directly, we do it as soon as the
19249         method gets compiled.
19251 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19253         * mini-x86.c, mini.h: introduce a new patching method
19254         to support CEE_JMP and tail calls.
19255         * mini.c: obey tail.call. Don't precompile methods target
19256         of CEE_JMP.
19257         * tramp-x86.c: new trampoline code to handle methods
19258         reached through a jump.
19260 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
19262         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
19263         bit values to registers
19265 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
19267         * mini.c (mono_compile_get_interface_var): share interface
19268         variables if possible.
19270 2003-05-16  Martin Baulig  <martin@ximian.com>
19272         * debug-mini.c (mono_init_debugger): New function to initialize
19273         the debugger.  This is not in the debugger since it needs to
19274         access some of mini's internals.
19276 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
19278         * mini.c (mono_method_to_ir): inlining fixes/cleanups
19280 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
19282         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
19283         for value type handling.
19285 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
19287         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
19288         (mono_method_check_inlining): enable inlining of all kinds of wrappers
19290 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
19292         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
19293           the constructor through a proxy.
19295 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19297         * jit-icalls.c, inssel.brg: fixes to array element address
19298         calculations.
19300 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
19302         * mini-x86.c (is_regsize_var): allocate pointer to registers
19304 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19306         * driver.c: fixed typo, added intrins to the set of optimizations
19307         tested with regressions.
19309 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19311         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
19312         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
19313         test case.
19315 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
19317         * inssel.brg: remove some common pop instructions without side effects
19319 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19321         * inssel-x86.brg: fixed thinko in int to double conversions.
19323 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19325         * mini.c, jit-icalls.c: added runtime thread-static variable support.
19327 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19329         * inssel-long32.brg: two more missing instructions.
19331 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
19333         * mini.c (mono_emit_call_args): set the cil_code for all arguments
19334         if not already set.
19336 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
19338         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
19339         correctly.
19341         * basic-float.cs: Added tests for negative zero.
19343 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19345         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
19346         a couple of missing operations for long casts, with test cases.
19348 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19350         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
19352 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
19354         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
19355         code size estimation.
19357 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
19359         * mini.c (mono_jit_create_remoting_trampoline): make it work with
19360         abstract methods (fix bug 42542)
19362         * aot.c: add ability to handle array types
19363         
19364 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
19366         * mini.c: Call the _specific versions of the object allocation
19367         functions if possible.
19369 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19371         * driver.c: call setlocale ().
19373 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19375         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
19376         windows build.
19378 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
19380         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
19382         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
19383         wrappers (fix bug 42122)
19385 2003-05-04  Martin Baulig  <martin@ximian.com>
19387         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
19389         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
19390         s/mini_set_defaults/mono_set_defaults/g.
19392 2003-05-04  Martin Baulig  <martin@ximian.com>
19394         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
19396 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19398         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
19399         (reported by Don Roberts).
19401 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
19403         * mini.c: temporarily work around two bugs for this release.
19405 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19407         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
19408         that contains -export-dynamic and it makes using the ld script
19409         useless.
19410         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
19412 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19414         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
19415         specific cpu.
19417 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19419         * mini.c: make sure leave calls all the needed finally blocks,
19420         even when the target jumps out of multiple exception clauses.
19422 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19424         * ldscript, Makefile.am: add linker script to reduce the number of
19425         exported symbols (should also fix the issues with libwine defining
19426         some of the same symbols in io-layer).
19428 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
19430         * driver.c (mini_main): Avoid assertion when no file name is given on 
19431         the command line.
19433 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
19435         * driver.c: added --version/-V command line option.
19436         Added the inline optimization in the regression tests.
19438 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19440         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
19441         to the type in the method signature (fixes bug#42134).
19443 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
19445         * mini.c: when inlining, check this is not null only when needed (bug #42135).
19447 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
19449         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
19451 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19453         * driver.c: fixed bug #42100.
19455 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
19457         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
19459 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19461         * mini.c: moved most of the code required to do inlining to its own
19462         function so it can be reused. Inline also ctors if appropriate.
19464 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
19466         * Makefile.am: Link with -export-dynamic so shared libs loaded by
19467         the runtime can call mono API functions.
19469 2003-04-27  Martin Baulig  <martin@ximian.com>
19471         * debug-mini.c (mono_debug_init_method): Added
19472         `guint32 breakpoint_id' argument; if the method has a breakpoint,
19473         send a notification to the debugger.
19475         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
19476         running in the Mono Debugger, just pass the breakpoint number to
19477         mono_debug_init_method().
19479         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
19481 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
19483         * mini.c: allow some more unsafe compares.
19485 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19487         * mini-x86.c, Makefile.am: make distcheck works (partially from
19488         a patch by Richard Lee <r.h.lee@attbi.com>).
19489         * regset.c, regset.h: removed, they are unused.
19491 2003-04-25  Dick Porter  <dick@ximian.com>
19493         * driver.c: Usage reports the name as 'mono' not 'mini'
19494         * exceptions-x86.c: Build and run on freebsd
19496 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19498         * Makefile.am: install the program with the 'mono' name and
19499         the library as libmono instead of mini and libmini.
19501 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19503         * driver.c: provide the APIs for the embedding interface of the old jit.
19505 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
19507         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
19509 2003-04-23  Martin Baulig  <martin@ximian.com>
19511         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
19513         * driver.c: Added `--debug' command line argument to enable
19514         debugging support.
19516 2003-04-23  Martin Baulig  <martin@ximian.com>
19518         * debug.[ch]: Removed.  The code is now in
19519         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
19521         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
19522         last six months.
19524 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
19526         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
19528 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19530         * mini.c:
19531         (mini_cleanup): moved mono_runtime_cleanup call after the call to
19532         mono_domain_finalize.
19533         (mini_method_compile): use mono_method_profile* if the the option is
19534         enabled.
19536 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
19538         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19539         methods with their wrapper.
19541         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19542         methods with their wrapper.
19544         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
19545         their wrapper.
19547         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
19548         wrapper.
19550         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
19551         methods.
19553 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
19555         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
19557 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
19559         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
19560         of the mempool. This is slightly faster and uses less memory
19562 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19564         * mini.c: avoid O(n) allocation for variables.
19566 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19568         * mini.c: handle items on the stack after inlining methods.
19570 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19572         * mini.c: make the method->opcode optimization dependent
19573         on MONO_OPT_INSTRINS and do it lazily.
19575 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19577         * driver.c: print overall results at the end of regression run.
19579 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19581         * inssel.brg: don't overwrite symbolic registers.
19583 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19585         * inssel-x86.brg: fix conversion from long to float.
19587 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
19589         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
19591 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
19593         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
19595         * driver.c: Added --print-vtable option as in the old JIT.
19597 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19599         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
19601 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19603         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
19605 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
19607         * mini.c regalloc.c regalloc.h: Fix memory leak.
19609 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
19611         * aot.c (mono_aot_get_method): register all used strings
19613 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19615         * mini.c: always intern strings references with ldstr at compile time.
19617 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19619         * Makefile.am: add BUILT_SOURCES.
19621 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19623         * driver.c: give a better error message when the assembly to execute
19624         doesn't have an entry point.
19626 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
19628         * Makefile.am: added hack for automake
19630         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
19631         correct sematics.
19633         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
19635 22003-04-07  Martin Baulig  <martin@ximian.com>
19637         * Makefile.am: Added Makefile.am.
19639         * debugger-main.c: Removed, this is now in the debugger where it
19640         belongs.
19642         * mini.pc.in: Call this package `mini' for the moment.