2009-03-04 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git] / mono / mini / ChangeLog
blob7551845040e2dea565cd64fa28f9dac9c60606a6
1 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
3         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
4         down an assert.
6 2009-03-04  Mark Probst  <mark.probst@gmail.com>
8         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
9         #481403.
11 2009-03-04  Mark Probst  <mark.probst@gmail.com>
13         * exceptions-x86.c: Include debug-mini.h - fixes build.
15 2009-03-04  Martin Baulig  <martin@ximian.com>
17         * debug-mini.c: Clean up the exception API and add documentation.
18         (mono_debugger_handle_exception): New public method; this is
19         called when throwing an exception or encountering an unhandled one.
20         (mono_debugger_call_exception_handler): Formerly known as
21         mono_debugger_handle_exception(); this is used to tell the
22         debugger that we're about to invoke an exception handler.
24 2009-03-04  Martin Baulig  <martin@ximian.com>
26         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
27         ../metadata/mono-debug-debugger.c; save and reset exception state.
29 2009-03-02  Martin Baulig  <martin@ximian.com>
31         * debug-mini.c: Moved the debugger exception handling here from
32         ../metadata/mono-debug-debugger.c.
34         * debug-mini.h
35         (MonoDebuggerExceptionAction): New exception typedef.
37         * debug-mini.c
38         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
40         * exceptions-amd64.c
41         (mono_amd64_throw_exception): Use the new debugger exception
42         handling code.
44         * mini-exceptions.c
45         (mono_handle_exception_internal): Don't call
46         mono_debugger_unhandled_exception() here.
48 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
50         * mini.c aot-compiler.c: Update after the changes to 
51         mono_marshal_get_runtime_invoke ().
53         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
54         Virtual generic methods might not have method->slot set, work around
55         that.
57         * generics.cs: Add a test.
59 2009-03-02  Geoff Norton  <gnorton@novell.com>
61         * mini.c:
62         * driver.c: Allow signal chaining of SIGFPE as well.
64 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
66         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
67         this since it now receives the method not its generic context in the
68         IMT reg.
70         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
71         generic/imt thunks where some entries branch through the vtable, while
72         other entries branch directly.
74         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
76         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
77         support for interface methods as well.
79         * mini-trampolines.c: Add support for virtual generic methods in interfaces
80         using the normal IMT thunks.
82         generics.cs: Add new tests.
83         
84         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
85         the generic inst to the generic imt thunks. This fixes AOT support, 
86         improves consistency with the normal IMT thunks, and makes it easier to
87         add support for interface generic virtual methods later.
89         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
90         
91 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
93         * driver.c (mono_set_signal_chaining): New public API function to enable
94         signal chaining on POSIX platforms.
96         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
97         (si@lindenlab.com) to implement signal chaining. The original patch was
98         contributed under the MIT X/11 license:
99         https://bugzilla.novell.com/show_bug.cgi?id=318894
101 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
103         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
104         too until it can be made to run on amd64.
106 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
108         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
109         to  get_generic_context_from_code () + get_call_info () if possible.
111 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
113         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
114         suspend-on-sigsegv functionality.
116         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
117         to suspend when a native SIGSEGV is received. This is useful for debugging
118         crashes which don't happen under gdb, since a live process contains more
119         information than a core file.
121         * mini-exceptions.c (mono_print_thread_dump): Use 
122         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
124         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
126         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
127         
128         * basic-float.cs: Disable the tests which currently fail on amd64.
130         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
131         value to mono_arch_patch_callsite () to fix crashes.
132         
133         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
135 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
137         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
138         nop code by patching the call address to point to the nullified class init
139         trampoline, as the former does not seem to be safe on SMP machines.
141 2009-02-23  Mark Probst  <mark.probst@gmail.com>
143         * mini-ops.h: Fix the argument types for a few x86 opcodes where
144         they were wrong.
146 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
148         * basic-float.cs basic-calls.cs: Fix warnings.
150 2009-02-22  Mark Probst  <mark.probst@gmail.com>
152         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
153         correct frame pointer in the LMF.  Should fix #478394.
155 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
157         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
159         * image-writer.c: Make the binary writer less verbose.
161 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
163         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
164         are called from runtime invoke wrappers.
166 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
168         * cpu-ppc.md (store_memindex): Increase the size of this.
170 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
172         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
174         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
176         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
177         OP_LCONV_TO_R_UN.
179         Last fix for of #467201.
182 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
184         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
186         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
187         and long_conv_to_r8_2:
189         Fixed part of #467201.
191 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
193         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
195         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
196         conversion to 32 bits.
198         * cpu-x86.md: Increase the size of int_conv_to_r4.
200         * basic-float.cs: Add a test for this.
202         Fixed part of #467201.
204 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
206         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
208         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
209         conversion to 64 bits.
211         * basic-float.cs: Add a test for this.
213         Fixed part of #467201.
215 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
217         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
219         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
220         This behavior is compatible with MS.
222         * iltest.il.in: Add a test for this.
224         Fixed part of #467201.
226 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
228         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
230         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
231         change the precision of the value.
233         * cpu-x86.md: Define len for float_conv_to_r4.
235         * basic-float.cs: Add a test for this.
237         Fixed part of #467201.
239 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
241         * mini.c: Adjust locking order to the new semantics where the loader lock
242         comes first.
244 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
246         * aot-runtime.c:
247         * mini-amd64.c:
248         * mini-arm.c:
249         * mini-ia64.c:
250         * mini-mips.c:
251         * mini-ppc.c:
252         * mini-sparc.c:
253         * mini-trampolines.c:
254         * mini-x86.c:
255         * mini.c:
256         * tramp-alpha.c:
257         * tramp-amd64.c:
258         * tramp-arm.c:
259         * tramp-hppa.c:
260         * tramp-ia64.c:
261         * tramp-mips.c:
262         * tramp-ppc.c:
263         * tramp-s390.c:
264         * tramp-s390x.c:
265         * tramp-sparc.c:
266         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
268 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
270         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
271         as it is incorrect.
273 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
275         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
276         for cctors if needed.
278 2009-02-17  Mark Probst  <mark.probst@gmail.com>
280         * mini-ppc.c: Fix build on Darwin.
282 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
284         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
285         version instead of 3 as valgrind doesn't like version 3.
287         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
289         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
290         usable for hashing methods.
291         (emit_extra_methods): Use the new hash to avoid putting every method in the
292         same hash bucket.
294         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
296         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
297         whenever a method ref could match a method.
298         
299         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
300         test to fail.
301         
302         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
303         methods refs.
305         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
307         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
308         the encoding buffer.
310         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
311         mono_method_get_header () on inflated methods as an optimization.
313 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
315         * ssa.c (fold_ins): Fix another crash if the instruction following the
316         switch was optimized away.
318 2009-02-16  Mark Probst  <mark.probst@gmail.com>
320         Contributed under the terms of the MIT/X11 license by Steven
321         Munroe <munroesj@us.ibm.com>.
323         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
325 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
327         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
328         around the mono_domain_alloc calls, it is now done by the functions
329         themselves.
331         * aot-compiler.c (compile_method): Only add wrappers referenced by
332         the method if compiling with full AOT.
333         (mono_compile_assembly): Error out if --aot=full is specified on
334         a platform where it is not supported.
336         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
337         on ARM too.
339         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
340         AOT support.
342         * aot-runtime.c (load_named_code): Handle 
343         mono_arm_throw_exception_by_token.
345         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
347         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
348         unaligned.
350         * Makefile.am (fullaotcheck): Exit if a test fails.
352         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
353         on ARM.
354         (mono_compile_assembly): Handle the assembler failing.
356         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
357         accepting subsections of .bss.
359         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
360         was optimized away.
362         * aot-compiler.c: Remove some unused includes.
363         
364         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
365         now in MonoImageWriter.
367         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
368         code sequence which matches a non-virtual call. Fixes #472654.
370 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
372         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
373         xdebug code.
374         
375         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
376         use the image/dwarf writers directly.
378         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
379         field.
381         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
382         MonoDwarfWriter.
384         * image-writer.h: Fix some typos.
386         * dwarfwriter.h dwarfwriter.c: New files.
387         
388         * aot-compiler.c: Extract the DWARF info writing functionality into a 
389         separate module.
391         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
392         argument to return unwind info.
394         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
396         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
397         
398         * aot-runtime.c (decode_method_ref): Add a case for 
399         MONO_AOT_METHODREF_WRAPPER_NAME.
401         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
402         for AOT.
404         * aot-compiler.c (encode_method_ref): Use the new constants.
406         * aot-runtime.c (decode_method_ref): Ditto.
408         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
409         be compiled, not the icall itself.
411 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
413         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
414         using decode_method_ref ().
416         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
417         convert it to an in32. Fixes #475859.
419         * arrays.cs: Add a test.
421 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
423         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
424         OP_LCONV_TO_U2.
426         * basic-long.cs: Add a test.
428 2009-02-12  Mark Probst  <mark.probst@gmail.com>
430         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
431         remove the frame pointer in leaf methods which don't receive any
432         arguments, don't throw exceptions and don't do dynamic stack
433         allocations.
435 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
437         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
438         the fail_tramp changes. Hopefully fixes #475132.
440 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
442         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
443         instead of mono_metadata_signature_dup_full.
445 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
447         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
448         for processing jump tables. Fixes #473787.
450 2009-02-11  Mark Probst  <mark.probst@gmail.com>
452         * mini-generic-sharing.c: mini_method_get_context() just calls
453         mono_method_get_context_general() now.
455         * mini.c, mini.h: Moved get_object_generic_inst(),
456         construct_object_context_for_method() and
457         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
459 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
461         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
462         basic block fell through to its successor bblock without a branch. Fixes
463         #474718.
465         * iltests.il.in: Add a test.
466         
467         * aot-compiler.c (encode_method_ref): Encode methods of array types.
468         (can_encode_patch): We can now handle arrays of generic parameters and
469         array methods.
471         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
473         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
474         the AOT file to avoid some #ifdefs in aot-runtime.c
476         * mini.h: Bump AOT file format version.
478 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
480         * Makefile.am (fullaotcheck): Make this run the tests.
482         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
484 2009-02-10  Mark Probst  <mark.probst@gmail.com>
486         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
487         individually.  Fixes #473482.
489 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
491         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
493 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
495         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
496         (mono_compile_assembly): Hush compile warnings about
497         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
498         code path.
500 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
502         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
504         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
506         * aot-compiler.c: Fix arm support.
508         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
509         img_writer_emit_unset_mode () function.
511         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
512         (mono_unwind_get_dwarf_pc_reg): Ditto.
514         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
515         Move almost all platform specific code to a set of arch_ functions, 
516         and document them to ease porting.
517         
518         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
520         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
522         * aot-compiler.c: Extract the image writing functionality into a separate
523         module to reduce the size of this file.
525 2009-02-09  Geoff Norton  <gnorton@novell.com>
527         * mini-s390.c: Fix the signature of emit_sig_cookie.
529 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
531         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
533         * aot-runtime.c (is_shared_got_patch): Ditto.
535         * aot-runtime.c (load_named_code): Cope with the fact that 
536         decode_got_entry () won't decode the patch fully if its corresponding got
537         entry is already filled.
538         
539         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
540         Initialize *ji.
541         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
543         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
544         as the moving pointer instead of 'buf' for consistency with the rest of the
545         codebase.
546         (mono_arch_create_monitor_exit_trampoline): Ditto.
548         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
549         generic_class_init trampolines.
550         (add_generic_class): Extract some code from add_generic_instances () into a
551         separate function so it can be called from other places too.
552         (compile_method): Call add_generic_class () for the classes of inflated methods
553         referenced by the method.
554         (can_encode_patch): Allow references to generic parameters.
556         * aot-runtime.c: Add support the patches required by the new trampolines.
557         
558         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
559         support.
561         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
562         full-aot support.
564         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
565         this from get_throw_pending_exception, make the signature full aot compatible.
567         * Makefile.am (fullaotcheck): New target to run full-aot tests.
569         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
571         * exceptions.cs: Add a test.
573 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
575         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
576         use the DWARF_DATA_ALIGN constant instead.
578         * exception-<ARCH>.c: Update after the above change.
580         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
581         dwarf unwinder.
583         * mini-arm.c: Enable the dwarf unwinder.
585         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
586         instead of mono_class_setup_vtable ().
588 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
590         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
591         dwarf unwinder.
593         * mini-x86.h: Enable the dwarf unwinder.
595 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
597         Fix mcs/tests/test-7.cs
598         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
599         2009-02-03.
601 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
603         * mini.c (print_jit_stats): Remove some unused statistics.
605 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
607         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
609 2009-02-05  Mark Probst  <mark.probst@gmail.com>
611         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
612         the method we get from mono_object_get_virtual_method() because
613         that function does it properly, now.
615 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
617         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
618         opcodes. Fixes #472775.
620 2009-02-05  Mark Probst  <mark.probst@gmail.com>
622         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
623         fact that mono_find_jit_info() sometimes returns the context
624         corresponding to the jit info in new_ctx.  Fixes #472600.
626 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
628         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
629         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
630         klass->enum_basetype directly.
632         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
633         enum subtypes.
635         * unwind.c: Avoid 0 sized arrays.
637 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
639         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
640         size on systems with 64k pages. Fixes #471389.
642 2009-02-04  Mark Probst  <mark.probst@gmail.com>
644         Contributed under the terms of the MIT/X11 license by Steven
645         Munroe <munroesj@us.ibm.com>.
647         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
648         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
649         necessary.
651 2009-02-04  Mark Probst  <mark.probst@gmail.com>
653         Contributed under the terms of the MIT/X11 license by Steven
654         Munroe <munroesj@us.ibm.com>.
656         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
657         comparison fix.
659         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
660         The trampoline can be longer on PPC64.
662 2009-02-04  Mark Probst  <mark.probst@gmail.com>
664         Contributed under the terms of the MIT/X11 license by Steven
665         Munroe <munroesj@us.ibm.com>.
667         * mini-ppc.c: Compiler warning fixes and trivial code
668         simplifications.
670 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
672         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
673         ins->dreg which could be a hardware register, not a vreg.
675         * aot-compiler.c (emit_method_dwarf_info): Ditto.
676         
677         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
678         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
680         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
681         
682         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
683         ->dreg, that is not the vreg we are looking for.
685         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
687         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
688         LIVERANGE_END.
690         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
691         strange crashes.
693 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
695         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
697         * aot-compiler.c (emit_line_number_info): Fix line number emission when
698         the line diff is 0.
700         * aot-compiler.c: Add xdebug support on x86.
702         * unwind.c: Add x86 support.
703         
704         * aot-compiler.c (emit_exception_debug_info): Control the emission of
705         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
707         * mini.c (mini_method_compile): Ditto.
708         
709         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
710         the variable index.
712         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
713         which mimic .push_section/.pop_section in GAS.
714         
715         * aot-compiler.c: Emit precise live range information for variables.
717         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
719         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
720         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
721         them.
723         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
724         the live ranges of variables.
726         * mini.h (struct MonoMethodVar): Add two fields containing the live range
727         of the variable in terms of native offsets.
729 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
731         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
732         
733 2009-02-02  Mark Probst  <mark.probst@gmail.com>
735         Contributed under the terms of the MIT/X11 license by Steven
736         Munroe <munroesj@us.ibm.com>.
738         * exceptions-ppc.c (restore_regs_from_context): Correct operand
739         order (offset then base reg) for ppc_load_multiple_regs.
740         (emit_save_saved_regs) Correct operand order for
741         ppc_store_multiple_regs.
742         (mono_arch_get_call_filter): Correct operand order for
743         ppc_load_multiple_regs.
745         * mini-ppc.c (emit_memcpy): Fix operand order for
746         ppc_load_reg_update and ppc_store_reg_update.
747         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
748         (mono_arch_emit_epilog): Correct operand order for
749         ppc_load_multiple_regs.
751         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
752         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
754 2009-02-02  Mark Probst  <mark.probst@gmail.com>
756         * cpu-ppc64.md: Fixed storer4_memindex length.
758 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
760         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
761         line number info.
762         
763         * aot-compiler.c (emit_line_number_info): Optimize this.
765 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
767         * aot-compiler.c: Disassemble tokens in the IL disassembly.
768         
769         * aot-compiler.c: Add debug info for methods without debug info by
770         emitting an IL file and having the line number info referencing that file.
772         * aot-compiler.c: Optimize the size of the generated line number info.
774         * aot-compiler.c: Emit line number info in xdebug mode.
776         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
777         million arguments.
779 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
781         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
783         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
784         is used.
786 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
788         * basic-calls.cs: Test for the weird crash found on arm.
789         
790 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
792         * cpu-arm.md: Increase the size of storer8_membase_reg and
793         loadr8_membase_reg to 24 bytes to accomodate the extra add.
795         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
796         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
797         reg to LR otherwise we'll be loading/storing from just the offset.
799 2009-01-30  Miguel de Icaza  <miguel@novell.com>
801         Question: if we are storing gint32's inside the "*native_offset",
802         should we change the signature to "gint32 *native_offset" to
803         ensure that we do not have type definition problems?
804         
805         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
806         an int * as this is what the other function expects, causes
807         problems with Freescale's compiler that defined int32_t to be a
808         long and makes int incompatible 
810 2009-01-30  Miguel de Icaza  <miguel@novell.com>
812         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
813         filename conflict with bjam.
815 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
817         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
818         as it might use decomposed ops.
820 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
822         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
824         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
825         is defined.
827         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
829         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
830         offsets.
832         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
833         way registers are stored in MonoContext on arm.
835         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
836         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
838         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
840         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
842         * mini.c (mini_init): Register mono_isfinite.
844         * jit-icalls.c (mono_isfinite): New jit icall.
846         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
847         
848         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
849         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
850         the parent frame.
852 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
854         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
855         separate frame and stack pointers, so we must use FP to find the register
856         spill area.
857         The FP reg is retrieved from the MonoContext::regs array.
859 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
861         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
862         as FPA requires it.
864 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
866         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
867         return R4 and R8 when not running under softfloat.
869         Fixes basic-calls.exe
871 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
873         * mini-arm.c: Implement some overflow opcodes.
875 2009-01-29  Miguel de Icaza  <miguel@novell.com>
877         * ssa.c: handle another alloca.h
879         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
880         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
881         MONO_ARCH_USE_SIGACTION. 
883         * aot-runtime.c, mini-exceptions.c: Replace platform define with
884         capability defines.
886         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
888         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
889         PPC targets as sigaction does not exist on all platforms, define
890         this on a per-platform basis.
892         Instead of erroring out if the platform is not defined, include
893         mini-ppc-os.h, and expect that the OS specific setting provides
894         the required information.   
896 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
898         * aot-compiler.c: Fix --enable-minimal=aot.
900 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
902         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
903         previous change.
905 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
907         * exceptions-arm.c: Fix warnings.
909         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
910         ARM.
912         * mini-x86.c: Fix --enable-minimal=jit build.
914         * mini.c: Really fix --enable-minimal=jit build.
915         
916         * mini.c (construct_object_context_for_method): Move this outside
917         the DISABLE_JIT block to fix the --enable-minimal=jit build.
919         "Backported" of r124984 from 2.0 branch.
920         
921         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
923         "Backport" of r124977 + r124978 from 2.0 branch.
924         
925         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
926         to avoid calling mono_exception_from_token () from the throw trampoline.
927         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
928         for throwing corlib exceptions, this fixes full-aot support for corlib
929         exceptions.
931         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
933 2009-01-29  Miguel de Icaza  <miguel@novell.com>
935         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
936         part of the changes to split the code in mini into operating
937         system specific files.
939         This patch was done by copying mini.c to the respective files to
940         preserve SVN history.
942 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
944         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
946 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
948         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
949         remoting-invoke-with-check wrappers of shared methods.
951         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
953 2009-01-27  Mark Probst  <mark.probst@gmail.com>
955         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
956         optimization if the top of stack is the last instruction in the
957         bblock.  Otherwise it might have been used after its definition.
958         Fixes #469742.
960 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
962         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
963         method as well when get_vcall_slot () fails to match a code sequence.
965         * mini-arm.c: Fix the android build, which doesn't have
966         __aeabi_read_tp.
968 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
970         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
971         the s390x build.
973 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
975         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
977 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
979         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
980         and put its id into jinfo->used_regs. This is only used on amd64,
981         which is currently the only platform generating unwind info.
983         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
984         the dwarf unwinder. This is required to correctly handle async exceptions
985         like thread abort and stack overflows, which can happen while a method
986         is in the middle of its prolog or epilog.
987         
988         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
989         the unwind info belonging to an AOTed method.
991         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
992         into cfg->unwind_ops.
993         
994         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
996         * mini.c (mini_init): Call mono_unwind_init ().
997         (mini_cleanup): Call mono_unwind_cleanup ().
999         * unwind.c: Add functions for managing a set of unwind info entries, allowing
1000         unwind info to be shared between methods.
1002         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
1003         saved in the LMF.
1005         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
1006         get_throw_pending_exception () to avoid initialization races.
1008         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
1009         mono_arch_exceptions_init () function.
1011         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
1013 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
1015         * mini.c (mono_get_domain_intrinsic): New helper function.
1016         (mono_get_thread_intrinsic): Ditto.
1018         * mini-arm.c mini-ia64.c: Use the new helper functions.
1019         
1020         * method-to-ir.c (mono_method_to_ir): Fix the comment for
1021         the last constrained_call change, since it is needed in the non-AOT
1022         case as well.
1024         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
1025         
1026         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
1027         mono_get_lmf_addr () on arm eabi linux.
1029 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
1031         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
1032         code sequence which matches a non-virtual call.
1034 2009-01-23  Mark Probst  <mark.probst@gmail.com>
1036         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
1037         stack pointer (r1).
1039 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
1041         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
1042         runtime-invoke wrappers, since they are also shared based on signature.
1044 2009-01-22  Mark Probst  <mark.probst@gmail.com>
1046         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
1047         info from the (correct) context.
1049 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
1051         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
1052         
1053         * unwind.c (mono_unwind_frame): New function to unwind through a frame
1054         using dwarf unwinding info. Not yet used.
1056         * mini.c (mini_init): When using xdebug, disable freeing of domains.
1058 2009-01-21  Mark Probst  <mark.probst@gmail.com>
1060         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
1061         descriptors.
1063         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
1064         special case and handle mono_arch_delegate_invoke_impl() returning
1065         function descriptors.
1067         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
1068         trampolines return function descriptors, too.
1070 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
1072         * method-to-ir.c (handle_alloc): Avoid generic instances in the
1073         out_of_line optimization.
1075 2009-01-21  Martin Baulig  <martin@ximian.com>
1077         * mini.h
1078         (MonoCompile): Added `disable_deadce_vars' to disable removing
1079         unused variables.
1081         * mini.c
1082         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
1083         inside the debugger.
1085         * liveness.c (mono_analyze_liveness): Don't remove any unused
1086         variables if `cfg->disable_deadce_vars' is set.
1088 2009-01-21  Mark Probst  <mark.probst@gmail.com>
1090         * method-to-ir.c: Only apply exception constructor optimization if
1091         the the method actually belongs to an exception class.  Fixes
1092         #467456.
1094 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
1096         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
1097         change inside a #ifdef __mono_ppc64__.
1099         * aot-compiler.c (compile_method): Remove the previous limitation.
1101         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
1102         on type variables in AOTed code.
1103         
1104         * aot-compiler.c (compile_method): Skip generic methods having type 
1105         constraints on their generic parameters.
1107         * aot-compiler.c (compile_method): Check for methods which cannot be
1108         encoded inside RGCTX_FETCH patches as well.
1110         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
1111         build.
1113 2009-01-20  Mark Probst  <mark.probst@gmail.com>
1115         * method-to-ir.c: Force the vtable variable in shared generic code
1116         for the case that they might show up on a stack trace where they
1117         are needed.
1119         * mini-exceptions.c: Save and use generic sharing info as well as
1120         IP in stack traces to resolve shared generic instantiations.
1122 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
1124         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
1125         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
1127 2009-01-20  Mark Probst  <mark.probst@gmail.com>
1129         * method-to-ir.c: Do generic sharing for array constructors.
1131 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
1133         * mini-exceptions.c (mono_print_thread_dump): Add information
1134         about the thread state using wapi_current_thread_desc.
1136 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1138         * basic-simd.cs: Tests for the new constructors. 
1140 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1142         * mini-ops.h: Added OP_EXPAND_*
1144         * cpu-x86.md: Same.
1146         * mini-x86.c (mono_arch_output_basic_block): Same.
1147         
1148         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
1150 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
1152         * iltests.il.in: Add a test for #467385.
1154 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1156         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
1157         thread been cleaned up is not the same currently in execution.
1159         Fixes appdomain-unload crashes on windows, osx and linux variants
1160         without the __thread keyword.
1162 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
1164         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
1165         (koush@koushikdutta.com). Implement this for android.
1167         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
1168         begins with a digit.
1170         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
1171         mono_marshal_get_write_barrier ().
1173 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
1175         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
1176         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
1177         that pass them on a register pair.
1179         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
1180         test was crashing due to that.
1182 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
1184         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
1185         trampoline code. Include ucontext.h only if available.
1187 2009-01-15  Mark Probst  <mark.probst@gmail.com>
1189         * mini.c: mono_domain_lookup_shared_generic() takes an open method
1190         and doesn't check whether it's sharable, like it was before
1191         removing the shared generics hash.  This brings IronPython
1192         performance back to what it was before that change.
1194 2009-01-14  Mark Probst  <mark.probst@gmail.com>
1196         * method-to-ir.c: Handle delegate invocation optimization earlier,
1197         otherwise it would be handled (much more slowly) by the
1198         final/sealed optimization.
1200 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
1202         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
1203         domain is not set. Fixes #465864.
1205 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1207         * method-to-ir.c: Don't stop sharing of generic methods with catch
1208         clauses - we already handle those.
1210 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1212         * mini.c, mini.h: lookup_generic_method() is now
1213         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
1214         making the shared_generics_hash obsolete.
1216 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1218         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
1219         use the red zone.  Make room on the stack first and then use it,
1220         not the other way around.
1222 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
1224         * mini.c (mini_init): Call mono_xdebug_init ().
1226         * aot-compiler.c (mono_xdebug_init): Make this non-static.
1228 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
1230         * TestDriver.cs: Add an --iter argument to run tests multiple times.
1232         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
1233         trampolines.
1235         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
1236         debug+unwind info for trampolines.
1238         * mini.c (mono_create_unwind_op): New helper function.
1240         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
1242 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
1244         * aot-compiler.c: Fix the build.
1246 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
1248         * Makefile.am: Update dtrace-prelink.sh location.
1250 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
1252         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
1253         optimization. Fixes #464520.
1255 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
1257         * mini-amd64.c : Adding code to save/restore non-volatile registers
1258            on Winx64.
1260         * exceptions-amd64.c : Adding code to save/restore non-volatile 
1261           registers on Winx64.
1263         Contributed under MIT/X11 license.
1265 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
1267         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
1268         __GNUC_MINOR__ which can break when the major version changes.
1270 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1272         * basic-simd.cs: Add tests for usage of the sizeof opcode.
1274 2009-01-07  Geoff Norton  <gnorton@novell.com>
1276         * helpers.c:  Allow mono -v -v -v to work on darwin.
1278 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
1280         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
1281           pattern. 
1283         Contributed under MIT/X11 license.
1285 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
1287         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
1288         instead of directly accessing type->data.klass. Fixes #462016.
1289         (mono_allocate_stack_slots_full): Ditto.
1291         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
1292         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
1294         * aot-compiler.c (emit_plt): Fix ARM build.
1296 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
1298         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
1299         
1300         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
1301         change.
1303         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
1304         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
1305         #463357.
1307         * iltests.il.in: Add a regression test.
1309 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1311         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
1313 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1315         * basic-simd.cs: Add a regression test for #462457.
1317 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1319         * mini-ops.h: Add a definition of XPHI.
1321         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
1323         * ssa.c (op_phi_to_move): Handle XPHI.
1325         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
1327         Fixes #462457
1329 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1331         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
1333 2008-12-31  Geoff Norton  <gnorton@novell.com>
1335         * mini-ppc.c: The prolog size allocated can be too small for darwin
1336         ppc32 under certain circumstances.  Also fix a small logic bug.
1338 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
1340         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
1341         while loading AOT methods.
1343         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
1344         since only the former is nulled out after a successful cast. This prevents
1345         crashes with rethrown exceptions when using --debug=casts.
1347 2008-12-24  Mark Probst  <mark.probst@gmail.com>
1349         * mini.h: New macro for checking whether a method is final,
1350         i.e. whether the method or its class is marked final.
1352         * method-to-ir.c: Use the new macro for all final-checks
1353         consistently.  Fixes the crash in the System.ServiceModel tests.
1355 2008-12-23  Mark Probst  <mark.probst@gmail.com>
1357         * mini-exceptions.c (get_exception_catch_class): Corrected another
1358         overly strict assertion.
1360 2008-12-23  Mark Probst  <mark.probst@gmail.com>
1362         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
1363         Clobbering it is not allowed because the caller might use it as
1364         the vtable register in the interface call.
1366 2008-12-19  Mark Probst  <mark.probst@gmail.com>
1368         * mini-exceptions.c (get_exception_catch_class): Corrected an
1369         overly strict assertion.
1371 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
1372         
1373         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
1375         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
1377         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
1379         * cpu-mips.md: correct lengths for certain long_ opcodes.
1381         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
1383         * 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().
1384         
1385 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
1387         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
1388         
1389 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
1390         
1391         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
1392         
1393 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1395         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
1396         next basic block.
1397         
1398 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
1400         * 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
1402         * 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)
1403         
1404 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
1405         
1406         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
1407         
1408 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
1410         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
1411         gshared code. Fixes #458947.
1413         * generics.cs: Add a test.
1415 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
1416         
1417         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1418         
1419         * mini-mips.c: first pass n32 code generation.
1421         * mini-mips.h: datatypes and defines for n32 support.
1423         * exceptions-mips.c: first pass n32 code generation.
1424         
1425         * tramp-mips.c: first pass n32 code generation.
1426         
1427         * cpu-mips.md: add long_ opcodes.
1428         
1429 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
1431         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1433         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1434         
1435         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1436         
1437         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1439         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1441         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1443         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1445         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1447         * helpers.c: for mips/n32, don't pass -mips32 to objdump
1449 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
1451         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
1453 2008-12-12  Andrés G. Aragoneses  <aaragoneses@novell.com>
1455         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
1457 2008-12-12  Mark Probst  <mark.probst@gmail.com>
1459         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
1460         descriptors for helper functions directly in front of the code.
1462 2008-12-11  Mark Probst  <mark.probst@gmail.com>
1464         * method-to-ir.c: Removed an unnecessary assertion.
1466 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
1468         * method-to-ir.c: Merge SGEN changes from the old JIT.
1470 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
1472         * driver.c (compile_all_methods_thread_main): Handle failure of
1473         mono_get_method ().
1475 2008-12-10  Mark Probst  <mark.probst@gmail.com>
1477         * mini-ppc.c: Merged with mini-ppc64.c.
1479         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
1481         * Makefile.am: Use the same sources for PPC and PPC64.
1483         * mini-ppc64.c: Removed.
1485 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1487         * branch-opts.c (remove_block_if_useless): Extract fall through detection
1488         code to mono_bb_is_fall_through.
1489         
1490         * branch-opts.c (mono_remove_critical_edges): Same.
1492 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1494         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
1495         expect that an OP_BR_REG will be there.
1497 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1499         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
1500         for the many branch ops. The original check miss OP_BR_REG.
1502         Fixes #457574.
1503         
1504 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1506         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
1508 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
1510         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
1511         while holding the aot lock.
1513 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1515         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
1516         
1517 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
1519         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
1520           to release all runtime callable wrappers held by the runtime.
1522         Contributed under MIT/X11 license.
1524 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
1526         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
1527           for Winx64.
1529         Contributed under MIT/X11 license.
1531 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
1533         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
1534         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
1536 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1538         * cpu-mips.md: fix ckfinite length
1540         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
1541         (mono_arch_lowering_pass): cleanup, rearrange for clarity
1542         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
1543         
1544 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
1546         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
1547         
1548 2008-12-08  Geoff Norton  <gnorton@novell.com>
1550         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
1551         size by 8 bytes as well.
1553 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1555         * basic-simd.cs: Fix method names for Vector16b.
1556         
1557 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1559         * basic-simd.cs: Fix method names for Vector16sb.
1561 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1563         * basic-simd.cs: Fix method names for Vector8us.
1564         
1565 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1567         * basic-simd.cs: Fix method names for Vector8s.
1568         
1569 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1571         * basic-simd.cs: Fix method names for Vector4ui.
1573 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1575         * basic-simd.cs: Fix method names for Vector2l.
1577 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1579         * basic-simd.cs: Fix method names for Vector2d.
1581 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1583         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
1584         that are extension methods.
1586 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1588         * basic-simd.cs: Fix method names for Vector4f.
1590 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
1592         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
1593         as such. Fixes #456669.
1595 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
1597         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
1598         
1599 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
1601         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
1602         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
1603         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
1604         (mips_adjust_stackframe): handle FP spills
1605                 
1606         * mini-ops.h: add mips_mtc1_s2
1607         
1608         * cpu-mips.md: add mips_mtc1_s2
1609         
1610 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
1612         * unwind.c: New file, move the unwind info encoding functions here from
1613         aot-compiler.c, so they could be used at runtime too.
1615 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
1617         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
1618         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
1619         
1620 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
1622         * mini-mips.c: cleanup warnings
1623         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
1624         (mips_adjust_stackframe): handle case of taking the address of stack locals
1625         
1626 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1628         * aot-compiler.c: Implement a few functions missing from the asm writer.
1629         (emit_method_code): Only write symbols for methods when using the bin
1630         writer, since the assembler can't deal with the characters in our method
1631         names.
1633         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
1635         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
1636         call.
1638         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
1639         a bit to also restore %rax.
1641 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1643         * mini-ppc.c: Some simple merges from mini-ppc64.c.
1645 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1647         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
1648         arguments.
1650 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1652         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
1654         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
1655         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
1657         * exceptions-ppc64.c: Removed.
1659         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
1661 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1663         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
1664         tramp-ppc64.c.
1666         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
1668         * tramp-ppc64.c: Removed.
1670 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1672         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
1673         the TYPESPEC table.
1675 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1677         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
1679         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
1680         mini-ppc.h instead of mini-ppc64.h.
1682         * mini-ppc64.h: Removed.
1684 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1686         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
1687         
1688         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
1689         
1690 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1692         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
1693         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
1694         code easier.
1696 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1698         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
1700 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1702         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
1704 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1706         * basic-simd.cs: Tests for operator == and != on Vector4f.
1708 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1710         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
1712         * simd-intrinsics.c: Kill useless enum.
1714 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1716         * cpu-mips.md: add long_conv_to_ovf_i4_2
1717         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
1719 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1721         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
1722         
1723         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
1725 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1727         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
1728         
1729 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1731         * basic-simd.cs: Add tests for new methods.
1733 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1735         * simd-intrinsics.c: Add support for operator == and !=
1736         on Vector4(u)i.
1738         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
1740 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1742         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
1744 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
1746         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
1748         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
1749         MONO_PATCH_INFO_ICALL_ADDR.
1751         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
1753         * aot-compiler.c: Resurrect full-aot support.
1755 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1757         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
1758         
1759 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1761         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
1762         
1763 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
1765         * basic-simd.cs: Fix tests to work under ppc.
1766         Remove tests for methods that will be removed.
1768 2008-12-03  Mark Probst  <mark.probst@gmail.com>
1770         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
1771         generic type (via a typedef or typeref) correctly.
1773 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
1775         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
1776         diagnose an assertion failure.
1778 2008-12-02  Mark Probst  <mark.probst@gmail.com>
1780         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
1781         Fix trampoline size.
1783         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
1784         conversion opcodes are implemented natively instead via emulation.
1786 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1788         * cpu-mips.md: remove mips_xori
1790         * mini-ops.h:  remove mips_xori
1792         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
1794         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
1795         
1796         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
1797         
1798 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1800         * cpu-mips.md: fix instruction lengths.
1802         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
1804         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
1806         * mini-ops.h: fix slti / sltiu op profiles.
1807         
1808 2008-12-02  Martin Baulig  <martin@ximian.com>
1810         * method-to-ir.c (mono_method_to_ir): Disable debugging
1811         information for the init locals block to make the debugger stop
1812         after all locals have been initalized.
1814 2008-12-02  Martin Baulig  <martin@ximian.com>
1816         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
1817         running inside the debugger.
1819 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
1821         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
1822         is enabled.
1824         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
1825         alu->alu imm optimization which only shows if deadce is disabled.
1827         * aot-compiler.c: Rename the function names for the binary and asm writers
1828         so they can coexist in the same process. Rework the xdebug code to use the
1829         asm writer. This avoids the need to call into the runtime to dump the
1830         debugging info. Add more debugging info for types.
1832         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
1834         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
1835         cpu description tables, they can't occur in cpu-<ARCH>.md.
1837         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
1838         the stack in CEE_LDFLDA. Fixes #450542.
1840         * generics.cs: Add a new test.
1842 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1844         * mini-ops.h: updated MIPS opcodes
1845         * mini-mips.c: decompose long opts
1846         * mini-mips.h: decompose long opts
1847         
1848 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
1850         * cpu-mips.md: fix length on int_rem_un
1851         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
1852         
1853 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
1855         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
1857         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
1859 2008-11-29  Martin Baulig  <martin@ximian.com>
1861         * mini-exceptions.c (mono_handle_native_sigsegv): Check
1862         mono_debug_using_mono_debugger() in addition to the
1863         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
1865 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
1867         * mini-ops.h: updated more MIPS opcodes
1868         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
1869         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
1870         
1871 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1873         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
1875 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
1877         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
1878         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
1879         * mini-ops.h: correct selected mips opcode entries
1880         
1881 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1883         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
1884         make them work.
1886 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1888         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
1890 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
1892         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
1893         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
1894         * mini-mips.h: disable IMT
1895         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
1896         
1897 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1899         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
1901 2008-11-28  Mark Probst  <mark.probst@gmail.com>
1903         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
1905 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
1907         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
1908         consistency.
1910 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1912         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
1913         for Set/GetVector aligned versions.
1915 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1917         * basic-simd.cs: Add tests for Get/SetVector.
1919 2008-11-27  Mark Probst  <mark.probst@gmail.com>
1921         * mini.c: Removed g_slist_append_mempool().  Now in
1922         metadata/mempool.c.
1924 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1926         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
1927         size properly and make the bounds check optional.
1929         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
1930         for SetVector and IsAligned.
1932 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
1934         * mini.c: Remove unused mono_normalize_opcodes () function.
1936 2008-11-26  Mark Probst  <mark.probst@gmail.com>
1938         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
1939         using the new atomic add ops now.
1941         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
1942         add.
1944 2008-11-26  Mark Probst  <mark.probst@gmail.com>
1946         * mini-ppc64.c: Several fixes.
1948 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
1950         * cpu-mips.md: added jump_table
1951         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
1953 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
1955         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
1957 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
1959         * mini-ops.h: corrected a handful of MIPS opcodes.
1961 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
1963         * aot-compiler.c: MIPS to use ELF writer
1965 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
1967         * mini-codegen.c: remove MIPS specific assert.
1969 2008-11-25  Mark Probst  <mark.probst@gmail.com>
1971         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
1972         fixes.  PPC64 now passes most of the runtime regressions.
1974 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
1976         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
1977         volatile intervals a bit.
1979 2008-11-24  Mark Probst  <mark.probst@gmail.com>
1981         * basic-long.cs: New test case.
1983 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
1985         * mini.c (mini_method_compile): Disable globalra for large methods for 
1986         now.
1988         * regalloc2.c (order_moves): Add fp support.
1990         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
1991         source bblock ends with an OP_BR_REG.
1993         * ratests.cs: Add a new test.
1995 2008-11-23  Mark Probst  <mark.probst@gmail.com>
1997         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
1998         sharing.  PPC64 now passes generics.exe.
2000 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2002         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
2004 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
2006         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
2007         memory when mono_jit_info_table_find () can't find the method in the
2008         LMF case.
2010         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
2011         AOTed code too.
2012         
2013         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
2014         writer too.
2016 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2018         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
2019         Several fixes.  PPC64 now runs exceptions.exe and
2020         devirtualization.exe.
2022 2008-11-22  Mark Probst  <mark.probst@gmail.com>
2024         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
2025         arrays.exe and basic-math.exe.
2027 2008-11-22  Mark Probst  <mark.probst@gmail.com>
2029         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
2030         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
2032 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2034         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
2036 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2038         * method-to-ir.c: Move bounds checking macros to ir-emit.h
2040         * ir-emit.h: Move macros from method-to-ir.c to here.
2042 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2044         * mini-ops.h: Correct the long simd ops to use LREG.
2046 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
2048         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
2049         
2050         * mini-ops.h: Correct the dreg type of a few long opcodes.
2052         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
2053         Add netbsd support.
2055 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
2057         * mini-ppc.c: remove negative stack references in epilog
2058         for platforms that don't support the red zone.
2060 2008-11-21  Mark Probst  <mark.probst@gmail.com>
2062         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
2063         point regs.  Now PPC64 passes basic-calls.exe.
2065 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2067         * basic-simd.cs: Add tests for accessors of Vector2l.
2069 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2071         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
2073         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
2074         
2075         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
2077 2008-11-21  Mark Probst  <mark.probst@gmail.com>
2079         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
2080         PPC64 passes basic-long.exe.
2082 2008-11-20  Mark Probst  <mark.probst@gmail.com>
2084         * decompose.c: Decompose carry and overflow add on PPC64 like on
2085         other 64 bit archs.  Don't decompose sub at all on PPC64.
2087         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
2088         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
2089         basic-long.exe.
2091 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2093         * basic-simd.cs: Add tests for accessors of Vector2d.
2095 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2097         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
2099         * cpu-x86.md: Same.
2101         * mini-x86.c (mono_arch_output_basic_block): Same.
2102         
2103         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
2105 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2107         * basic-simd.cs: Add tests for accessors of Vector4f.
2109 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2111         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
2113         * cpu-x86.md: Same.
2115         * mini-x86.c (mono_arch_output_basic_block): Same.
2116         
2117         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
2119 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2121         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
2123 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2125         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
2127         * cpu-x86.md: Same.
2129         * mini-x86.c (mono_arch_output_basic_block): Same.
2130         
2131         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
2133 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2135         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
2137 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2139         * simd-intrinsics.c: Enable setters for Vector16sb.
2141 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2143         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
2145         * cpu-x86.md: Same.
2147         * mini-x86.c (mono_arch_output_basic_block): Same.
2148         
2149         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
2151 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
2153         * simd-intrinsics.c: Implement setter for Vector8us.
2155 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
2157         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
2158         for dead variables.
2160 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2162         * mini-ppc.c: remove references to the red zone in the prolog
2163         (for systems that don't support it).
2165 2008-11-19  Mark Probst  <mark.probst@gmail.com>
2167         * cpu-ppc64.md: Fixed a few instruction lengths.
2169         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
2170         now.
2172 2008-11-19  Mark Probst  <mark.probst@gmail.com>
2174         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
2175         basic.exe now.
2177 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
2179         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
2181 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
2183         * mini-ops.h: Added OP_INSERT_I2.
2185         * cpu-x86.md: Same.
2187         * mini-x86.c (mono_arch_output_basic_block): Same.
2188         
2189         * simd-intrinsics.c: Implement setter for Vector8s.
2191         * simd-methods.h: Add the names of get setters of Vector8s.
2193 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2195         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
2196         
2197         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
2198         parameters.
2200         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2202 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2204         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
2205         for PPC64.  An empty program runs now.
2207 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2209         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2211         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
2212         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
2213         info for JITted code is emitted into a shared library, loadable into gdb.
2215 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2217         * Makefile.am: Changes to build PPC64.
2219         * mini-arch.h: Include mini-ppc64.h on PPC64.
2221 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2223         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
2224         in PPC code up to r119147.
2226 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2228         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2229         cpu-ppc64.md: Changes for PPC64.
2231         Based on code submitted by andreas.faerber@web.de at
2232         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
2233         X11/MIT license.
2235 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2237         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2238         cpu-ppc64.md: Copied from the corresponding PPC files from
2239         r118846.
2241 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
2243         * mini-ops.h: Added OP_ROUND.
2245         * cpu-x86.md: Added round.
2247         * mini-x86.c: Added support for intrinsicing Math.Round (double).
2249         * basic-math.cs: Added test_0_round to test rounding.
2251         Contributed under MIT/X11 license.
2253 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2255         * aot-compiler.c : Fix the Winx64 build.
2257         Contributed under MIT/X11 license.
2259 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2261         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
2262         in OP_EXTRACT_R8 to avoid possible stack corruption.
2264 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2266         * mini-ops.h: Added OP_EXTRACT_R8/I8.
2268         * cpu-x86.md: Added extract_r8.
2270         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
2271         
2272         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
2273         a couple of OP_EXTRACT_I4.
2275         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
2277         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
2279 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2281         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
2282         and not 4.1. 
2284 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
2286         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
2287         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
2289         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
2290         are not needed any more.
2292         * mini.h: Remove the unused INS_LIST macros.
2294         * mini.c (mini_method_compile): Remove a disable globalra case which is no
2295         longer needed.
2297         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
2298         ir-emit.h.
2300         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
2301         mono_alloc_ireg () instead.
2303         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
2304         macros.
2306         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
2307         on amd64.
2309         * aot-runtime.c (load_aot_module): Disable AOT when running under
2310         CAS.
2312         * mini-amd64.h: Change the monitor fastpath defines to check for
2313         !PLATFORM_WIN32 so they work on *bsd too.
2315         * mini.h mini.c mini-hhpa.c: Remove more unused code.
2317         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
2319         * mini.h (MonoCompile): Remove new_ir flag.
2321         * regalloc.h regalloc.c: Remove unused code.
2323         * cpu-*.md: Remove more unused opcodes.
2325         * simple-cee-ops.h simple-mini-ops.h: Removed.
2327         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
2328         
2329 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
2331         * aliasing.h: Removed.
2333         * *.c: Remove references to aliasing.h and inssel.h.
2335         * mini.c: Remove additional unused functions.
2337         * mini-ops.h cpu-*.md: Remove unused opcodes.
2339 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
2341         Remove the old JIT code.
2343         * inssel*.brg: Removed.
2345         * ssa.c abcremoval.c aliasing.c: Removed.
2347         * ssa2.c: Renamed to ssa.c.
2349         * abcremoval2.c: Renamed to abcremoval.c.
2351         * *.c: Removed all !cfg->new_ir code.
2353         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
2354         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
2356         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
2357         
2358 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
2360         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
2361         to simplify the code and cut back on the number of global symbols in the AOT
2362         file.
2363         
2364         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
2366 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
2368         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
2369         with the got/got_info tables.
2371         * mini.h: Bump AOT file format version.
2372         
2373         * unwind.h: New file, contains definitions for stack unwinding.
2375         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
2376         to cfg->unwind_ops.
2377         
2378         * aot-compiler.c: Generalize the emitting of unwind information to use the
2379         information in cfg->unwind_ops.
2381         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
2383         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
2384         AOT method frames. Enable writing symbols for methods by default.
2386 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
2388         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
2389         and make it work with vectors of element sizes 1, 2 and 4.
2391         * simd-intrinsics.c: Enable getter for all vectors with element size
2392         1, 2 or 4.
2394         * simd-methods.h: Add the names of other getters.
2396         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
2398         * cpu-x86.md: Same.
2400         * mini-x86.c: Same.
2402 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
2404         * mini-ppc.h: portability fix.
2406 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2408         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
2409         buggy and will overwrite it.
2411 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2413         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
2414         Use it to emit local symbols for all methods so AOTed methods show up with
2415         their full name in gdb/valgrind output.
2417 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
2419         * mini-ppc.c: portability fixes.
2421 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2423         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
2424         entries out of the if (!generic_shared...) code so it is always done.
2425         (mono_class_init_trampoline): Do the patching when running under valgrind
2426         too, newer versions of valgrind have no problems with it.
2428 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
2430         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
2431         further sections.
2433 2008-11-13  Mark Probst  <mark.probst@gmail.com>
2435         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
2436         filters.
2438 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2440         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
2442 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2444         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
2446         * cpu-x86.md: Same.
2448         * mini-x86.c: Same.
2450         * simd-intrinsics.c: Same.
2452 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2454         * simd-intrinsics.c: Enable constructor intrinsics for all types.
2456 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2458         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
2459         to work with more Vector types.
2461 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2463         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
2464         store the elemens directly instead of using and intermediate.
2466 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
2468         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
2470         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
2471         to preserve %eax for aot plt trampolines.
2473         * aot-compiler.c (compile_method): Don't skip synchronized methods.
2474         (encode_method_ref): Flag synchronized methods so they won't go through
2475         the AOT trampoline.
2477         * aot-compiler.c: Additional work to support AOTing synchronized methods/
2478         wrappers.
2480         * cpu-ia64.md (jmp): Increase max length.
2482 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
2484         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
2485         open generic classes.
2487         * aot-compiler.c: Enable the ELF writer on ELF platforms.
2489         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
2490         box+brtrue optimization since it causes test failures on x86.
2492 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
2494         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
2496         * cpu-x86.md: Same.
2498         * mini-x86.c: Same.
2500         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
2501         for simd ctor values. 
2503         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
2504         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
2506 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
2508         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
2509         LogicalRightShift.
2511         * simd-instrincs.c: Same.
2513         * basic-simd.cs: Same.
2515 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
2517         * ratests.cs: Add more tests.
2519         * regalloc2.c (add_spill_code): Handle more corner cases.
2521 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
2523         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
2524         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
2525         both the source an destination of an instruction.
2527 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2529         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
2530         wapihandles.c: more portability changes.
2532 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
2534         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
2535         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
2536         safe to execute in a signal handler and the kernel provides better
2537         the info in /proc/self/smaps. Avoid the assert on sigaction during
2538         cleanup.
2540 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
2542         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
2543         do the bblock linking hack if it is actually needed.
2545         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
2546         up linking.
2548         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
2549         crash problem is fixed.
2551         * branch-opts.c (mono_remove_critical_edges): Link up newly added
2552         bblocks.
2554         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
2555         for catch clauses.
2556         (mini_method_compile): Set the starting value of next_vreg to 
2557         MAX_IREGS + MAX_FREGS when using globalra.
2559         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
2560         filter clauses with BB_EXCEPTION_HANDLER.
2562         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
2564 2008-11-10  Mark Probst  <mark.probst@gmail.com>
2566         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
2567         space for stdcall.  Fixes regressions on Win32.
2569 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
2571         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
2572         bblocks.
2573         (linear_scan): Remove an assert which doesn't seem to be needed.
2575         * local-propagation.c (mono_local_deadce): Avoid a call to
2576         MONO_DELETE_INS which would screw up the instruction linking.
2578         * mini.c (mono_decompose_op_imm): Make this work with globalra.
2580         * regalloc2.c: Upgrade to work the current JIT code.
2582 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
2584         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
2585         case.
2587         * aot-runtime.c: Remove some dead code.
2589         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
2590         consistency.
2591         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
2593         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
2594         trampolines using sscanf since atoi doesn't work on large unsigned values.
2596         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
2597         Initialize code_size.
2599 2008-11-08  Mark Probst  <mark.probst@gmail.com>
2601         * method-to-ir.c (mini_emit_inst_for_method): Make
2602         Interlocked.CompareExchange work for Int arguments on 32 bit
2603         archs, as well.
2605 2008-11-07  Mark Probst  <mark.probst@gmail.com>
2607         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
2609 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
2611         * main.c Fix MSVC build.
2613         Contributed under MIT/X11 license.
2615 2008-11-06  Mark Probst  <mark.probst@gmail.com>
2617         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
2618         alignment larger than 8 bytes are aligned correctly, too.
2620         * mini.c: Honor the min_align field of MonoClass when laying out
2621         the stack.
2623 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
2625         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
2627         * aot-compiler.c (emit_plt): Fix a warning.
2628         
2629         * aot-compiler.c: Implement ARM support in the binary writer.
2631 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2633         * basic-simd.cs: Add test for getter with byref arg.
2634         Fix the naming of a few tests.
2635         Add missing checks to a test.
2637 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
2639         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
2641         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
2642         most of the full-aot support for monitor enter/exit trampolines.
2644         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
2645         enter/exit trampoline creation functions.
2647         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
2648         make dist.
2650 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
2652         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
2653         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
2654         implement the needed functionality without adding crap to the runtime.
2656 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
2658         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
2659         non-x86 builds.
2661         * mini.c (mono_build_date): New global version holding the build date in
2662         string format.
2663         
2664         * Makefile.am (buildver.c): Generate a file containing the build date.
2666         * main.c: Set the build date from the generated file.
2668         * mini.c (mono_get_runtime_build_info): New helper function returning build
2669         information in a string format.
2670         
2671         * driver.c (mono_main): Print the build date in --version.
2673         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
2674         file when the bind-to-runtime-version option is used.
2676 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2678         * simd-intrinsics.c: Fix bug when using getters and byref args. 
2680 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2682         * simd-methods.h: Rename prefetch methods.
2684         * simd-intrinsics.c: Same.      
2686 2008-11-05  Mark Probst  <mark.probst@gmail.com>
2688         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
2689         sizes.
2691 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2693         * aot-compiler.c: Use the bundled elf header files instead of depending on
2694         the system one.
2695         
2696         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
2697         mempool.
2699         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
2700         on every call.
2702 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2704         * cpu-x86.md: Add store nta ops.
2706         * mini-ops.h: Same.
2708         * mini-x86.c: Same.
2710         * mini.h: Add an enum for simd prefetch modes.
2712         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
2713         of store. Use the changed code to support store nta.
2715         * simd-intrinsics.c: Add prefetch ops for all vector types.
2717 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2719         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
2720         threads.
2721         
2722         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
2723         names.
2725         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
2726         trampolines.
2728 2008-11-04  Mark Probst  <mark.probst@gmail.com>
2730         * mini-x86.c: Fixed commit.
2732 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2734         * aot-compiler.c (emit_plt): Align the plt section only on x86.
2736 2008-11-04  Mark Probst  <mark.probst@gmail.com>
2738         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
2739         and MONITOR_EXIT, for the ASM fastpaths.
2741         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
2742         available.
2744         * mini.c, patch-info.h: Signature and patch infos for
2745         Monitor.Enter/Exit trampolines.
2747         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
2749         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
2750         Monitor.Enter/Exit ASM fastpath for Linux.
2752 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2754         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
2756         * objects.cs: Add a new test.
2757         
2758         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
2760         * aot-runtime.c (load_method): Run class initialization in the PLT case even
2761         if MONO_LOG_LEVEL is set.
2763         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
2765         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
2767         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
2768         
2769         * aot-compiler.c: Change the relocation code to use virtual addresses instead
2770         of file offsets. Align the sections belonging to the data segment to 
2771         PAGESIZE.
2773 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
2775         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
2776         elf.h. Port it to amd64.
2778 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2780         * driver.c: Enable SIMD by default.
2782 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2784         * cpu-x86.md: Add prefetch op.
2786         * mini-ops.h: Same.
2788         * mini-x86.c: Same.
2790         * mini.h: Add an enum for simd prefetch modes.
2792         * simd-methods.h: Add prefetch function names.
2794         * simd-intrinsics.c: Add prefetch ops for all vector types.
2796 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
2798         * aot-compiler.c (emit_bytes): Speed this up a little.
2800 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
2802         * aot-compiler.c: Add JIT time etc. statistics.
2803         
2804         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
2806         * mini.h (MonoCompile): Add 'got_offset' field.
2808         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
2809         method_got_offsets array.
2811         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
2812         wrappers.
2814         * aot-compiler.c (compile_method): Add generic method instances referenced
2815         by the method to the list of methods to be compiled, this is required so if
2816         A<T> references B<T>, and another assembly references A<int>, then it will
2817         also get a copy of B<int>.
2819         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
2820         when checking for monitor enter/exit.
2822 2008-10-30  Mark Probst  <mark.probst@gmail.com>
2824         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
2825         for Monitor.Enter and Monitor.Exit if enabled.
2827         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
2828         Solaris.
2830 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
2832         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
2833         of an OP_MOVE. Fixes #440046.
2835         * basic-long.cs: Add a new test.
2837 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
2839         * mini.h: Add synchronization note for the managed counter-part.
2841         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
2842         returns the simd caps of the current cpu.
2844 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
2846         * basic-simd.cs: Remove Console.WriteLine.
2848 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2850         * basic-simd.cs: New tests for Vector2ul.
2852 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2854         * simd-intrinsics.c: Add new vector type Vector2ul.
2856 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2858         * basic-simd.cs: New tests for Vector2l.
2860 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2862         * cpu-x86.md: Add long version of most packed int ops.
2864         * mini-ops.h: Same.
2866         * mini-x86.h: Same.
2868         * simd-intrinsics.c: Add new vector type Vector2l.
2870 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
2872         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
2874         * simd-methods.h: Remove SN_op_BitwiseXor.
2876 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
2878         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
2879         alignment.
2881 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
2883         * basic-simd.cs: Test for Vector2d.
2885         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
2886         value.
2888 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
2890         * cpu-x86.md: Add double version of all packed float ops.
2892         * mini-ops.h: Same.
2894         * mini-x86.h: Same.
2896         * simd-intrinsics.c: Add new vector type Vector2d.
2898         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
2900         * simd-methods.h: Add Duplicate.
2902 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
2904         * basic-simd.cs: Test for packing with signed saturation.
2906 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
2908         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
2909         found in the TYPESPEC table.
2911 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
2913         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
2914         too.
2916         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
2918         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
2919         instead of the RVA, since the RVA can be changed by tools like the cil 
2920         stripper.
2922         * method-to-ir.c (mono_method_to_ir2): Ditto.
2924         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
2925         (deserialize_variable): Ditto.
2927 2008-10-25  Martin Baulig  <martin@ximian.com>
2929         * debug-mini.c (write_variable): Use
2930         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
2932 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
2934         * cpu-x86.md: Add unsigned variants of packd and packw.
2936         * mini-ops.h: Same.
2938         * mini-x86.h: Emit the right instruction for packd and packw.
2939         Add unsigned variants of packd and packw.
2941         * simd-intrinsics.c: Packd and packw were used in place of their
2942         unsigned variants. Change that.
2943         Add intrinsics for (Signed)PackWithSignedSaturation.
2945         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
2947 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
2949         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
2951 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
2953         * mini-ops.h: Remove dword packed add/sub with saturation ops.
2955         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
2957         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
2958         sse instructions.
2960         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
2962 2008-10-24  Mark Probst  <mark.probst@gmail.com>
2964         * method-to-ir.c, mini.c: Special casing for the synchronized
2965         wrapper for the ldtoken+GetTypeFromHandle case.
2967 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
2969         * mini.c (mono_replace_ins): Move this to branch-opts.c.
2971         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
2972         created/split bblocks.
2974 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
2976         * mini-ops.h: Add packed signed mul high.
2977         
2978         * cpu-x86.md: Same.
2980         * mini-x86.c (mono_arch_output_basic_block): Same.
2982         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
2984         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
2986 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
2988         * basic-simd.cs: Tests for Vector16sb.
2990 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
2992         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
2994 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2996         * mini-ops.h: Add packed signed min, max and compare greater.
2997         
2998         * cpu-x86.md: Same.
3000         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
3001         saturation.
3003         * simd-methods.h: Add CompareGreaterThan.
3005         * simd-methods.h: Remove CompareEquals.
3007         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
3009         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
3011         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
3012         CompareEqual.
3014 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3016         * basic-simd.cs: Fix tests due to change in the API.
3018 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3020         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
3022 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3024         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
3026         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
3027         inst_offset as this has invalid values for LDADDR.
3029 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3031         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3033         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
3035 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3037         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
3038         for accessing field->data.
3040 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3042         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3044 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3046         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
3048         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
3050 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3052         * dominators.c (mono_compute_natural_loops): Allocate GList enties
3053         from the cfg mempool.
3055 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
3057         * basic-simd.cs: Tests for new methods in Vector8us.
3059 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
3061         * mini-ops.h: Add multiply and store high.
3062         
3063         * cpu-x86.md: Same.
3065         * mini-x86.c (mono_arch_output_basic_block): Same.
3067         * simd-methods.h: Same.
3069         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
3070         and CompareEqual.
3072 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3074         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
3075         mono_class_setup_vtable ().
3077         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
3078         mono_class_get_vtable_entry () for accessing klass->vtable.
3080         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
3082         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
3083         found.
3085         * method-to-ir.c (mono_save_token_info): Don't save references made from
3086         wrappers.
3088         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
3089         of generic instances.
3091         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
3093 2008-10-19  Mark Probst  <mark.probst@gmail.com>
3095         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
3096         OP_JMP depends on the method signature.  Calculate it properly.
3098 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3099         
3100         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
3101         called directly.
3103         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
3104         instances.
3105         (emit_extra_methods): Add another table mapping method indexes to 
3106         offsets in the extra_method_info table.
3108         * mini.h: Bump AOT file format version.
3109         
3110         * aot-runtime.c: Merge most of the code from mono_aot_get_method
3111         and mono_aot_get_method_from_token () into one function.
3113 2008-10-19  Mark Probst  <mark.probst@gmail.com>
3115         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
3116         separate counter.
3118 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
3120         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
3121         methods.
3123         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
3124         disable_aot.
3126         * mini.c (mono_patch_info_equal): Compare the generic context as well.
3128         * mini.h: Bump aot file format version.
3130         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
3131         AOT file can contain native code for methods which are not in the METHOD
3132         table. Generate code for non-sharable generic instances of generic methods
3133         found in the METHODSPEC table.
3134         
3135         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
3136         encoding generic type handles.
3138         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
3139         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
3141         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
3142         macros + MONO_ADD_INS.
3144         * mini.c (mono_jump_info_token_new2): New function which takes a generic
3145         context as well.
3147         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
3149         * mini.h: Bump aot file format version.
3151         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
3153 2008-10-17  Mark Probst  <mark.probst@gmail.com>
3155         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
3156         platforms, with definable stack alignment value.  Set to 16 now
3157         for all platforms.
3159         * mini.c, mini.h, driver.c: Command line option for disabling
3160         stack alignment.
3162 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3164         * basic-simd.cs: Tests for new methods in Vector4ui.
3166 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3168         * mini-ops.h: Add packed int shuffle.
3169         
3170         * cpu-x86.md: Same.
3172         * mini-x86.c (mono_arch_output_basic_block): Same.
3174         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
3175         extract mask, max, min, shuffle.
3177         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
3179 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3181         * basic-simd.cs: Tests for new methods in Vector8us.
3183 2008-10-17  Mark Probst  <mark.probst@gmail.com>
3185         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
3186         RuntimeTypeHandle, not a TypedReference.
3188 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
3190         * simd-intrinsics.c: remove relocations.
3192 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
3194         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
3195         optimizations from the x86 backend.
3197 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
3199         * simd-methods.h, simd-intrinsics.c: debloat method names and
3200         prepare for no relocations.
3202 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3204         * mini-ops.h: Add packed min/equal and sum of absolute differences.
3205         
3206         * cpu-x86.md: Same.
3208         * mini-x86.c (mono_arch_output_basic_block): Same.
3210         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
3211         extract mask, max, min and sum of absolute differences.
3213         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
3214         method name.
3216 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3218         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
3219         Renamed one test for consistency.
3221 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3223         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
3224         fix to the code that deal with other blocks.
3226 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3228         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
3230 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3232         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
3233         that deals with vreg interference. Explicitly check for OP_LDADDR to be
3234         able to process the source reg.
3236 2008-10-16  Martin Baulig  <martin@ximian.com>
3238         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
3240         * inssel.brg: Add `OP_HARD_NOP'.
3242         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
3244         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
3245         `OP_HARD_NOP' instruction when running inside the debugger.
3247         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
3248         `OP_HARD_NOP' instruction when running inside the debugger.
3250 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3252         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
3253         now works. The issue with the regalloc tripping up no longer
3254         happens.
3256         * simd-intrinsics.c (load_simd_vreg): Same.
3258 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3259         
3260         * basic-simd.cs: Tests for new Vector8ui methods.
3262 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3264         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
3265         only for type. This fixes crashes where MonoInst::klass is checked
3266         for ops of type != VTYPE or OBJ.
3268         * simd-intrinsics.c (load_simd_vreg): Same.
3270 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3272         * mini-ops.h: Add ops for packed shuffle/max/avg and
3273         extract mask.
3274         
3275         * cpu-x86.md: Same.
3277         * mini-x86.c (mono_arch_output_basic_block): Same.
3279         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
3280         extract mask.
3282         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
3283         to emit extract mask op.
3285         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
3286         to emit word shuffles.
3288 2008-10-15  Mark Probst  <mark.probst@gmail.com>
3290         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
3291         the largest alignment needed by a variable, but at least
3292         sizeof(gpointer).
3294 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3296         * basic-simd.cs: Tests for the fixes in the last commit.
3298 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3300         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
3301         no longer handles STACK_PTR input.
3303         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
3305         * simd-intrinsics.c (load_simd_vreg): New function that works like 
3306         get_simd_vreg   but handles STACK_PTR input.
3308         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
3309         as the input can be an arbitrary pointer.
3311         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
3312         LDADDR local optimization directly otherwise use a store op.
3314 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3316         * basic-simd.cs: Tests for dup low and dup high.
3318 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3320         * mini-ops.h: Add dup low and dup high ops.
3321         
3322         * cpu-x86.md: Same.
3324         * mini-x86.c (mono_arch_output_basic_block): Same.
3326         * simd-intrinsics.c (vector4f_intrinsics): Same.
3328 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3330         * basic-simd.cs: Tests for recently added functionality.
3332 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3334         * mini-ops.h: Add remaining sse1 fp ops.
3335         
3336         * cpu-x86.md: Add remaining sse1 fp ops.
3338         * mini-x86.c (mono_arch_output_basic_block): Same.
3340         * mini.h: Add enum for simd FP compare conditions.
3342         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
3344         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
3345         so the backed can generate the appropriate op.
3347 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3348         This patch squeese one more byte from the SimdIntrinsc struct.
3350         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
3351         a a shift amount intead of simply or'ing it.
3353         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
3355         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
3356         byte so we can have an aditional flags field without increasing struct size.
3358         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
3359         against the simd_supported_versions bitmask.
3361         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
3363 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
3365         * mini.c: remove rawbuffer code (the only use here is unsafe because
3366         it takes locks during signal handling and the kernel now provides much
3367         better info in proc/pid/smaps these days).
3369 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3371         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
3372         OP_X86_PUSH_OBJ. Fixes #434620.
3374         * objects.cs: Add a test.
3375         
3376 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
3378         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
3379         that the packuswb/packusdw don't work with unsigned numbers for what
3380         would be negative numbers in signed format.
3382         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
3383         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
3385         * mini-ops.h: Add doubleword forms of many ops and packing ones.
3387         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
3389         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
3391         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
3393         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
3394         add more ops.
3396         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
3397         version as the enum in mini.h.
3399         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
3400         for sse3 ops, check the simd_version field if present. This way the code
3401         works with all versions of sse.
3403 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3405         * simd-intrinsics.c: Fixed intrinsic name typo.
3407         * mini.h: Added missing simd exported function.
3409         * basic-simd.cs: Added tests for Vector4ui.
3410         Fixed broken test for Vector16b.
3412 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3414         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
3415         the max length to 64.
3417 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3419         * method-to-ir.c: Only do the fast virtual generic method call for
3420         non-wrapper methods.
3422         * mini.h, mini-trampolines.c: The new generic virtual remoting
3423         trampoline handles virtual method calls via the vtable (as done by
3424         the fast virtual generic method calls) to remoting proxies.
3426         * mini.c (mono_jit_create_remoting_trampoline): For generic
3427         methods reate a generic virtual remoting trampoline.
3429         * mini-amd64.h: Enable fast virtual generic method calls again.
3431 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3433         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
3434         restore registers when doing tail calls.
3436 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3438         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
3439         Vector4ui.
3441 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3443         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
3445 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3447         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
3449 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3451         * basic-simd.cs: Retrofit for API changes.
3453 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3455         * mini-ppc.c: Handle integer stack arguments for tail calls.
3457 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3459         * optflags-def.h: Removed sse3 optimization.
3461         * driver.c: Same.
3463         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
3464         sse3.
3466         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
3468         * mini.h: Added enumeration with simd versions.
3470         * simd-intrinsics.c (emit_intrinsics): Use the new static var
3471         for detecting SSE3.
3473         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
3475         * mini.c (mini_init): Call mono_simd_intrinsics_init.
3477 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3479         * basic-simd.cs: Added tests for Vector8u and Vector16u.
3481         * basic-simd.cs: Fixed test naming.
3483 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3485         * mini-ops.h: Added ops for packed and saturated math, shifts
3486         and packing/unpacking.
3488         * cpu-x86.md: Added descriptors for the above ops.
3490         * mini-x86.c: Added code to emmit the above ops.
3492         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
3494 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3496         * aot-compiler.c (compile_method): Enable AOT for generic code.
3498         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
3500 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
3502         * mini.c: add a workaround for a common screwup that ends up blamed
3503         to mono (other processes blocking signal delivery).
3505 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3507         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
3508         in the LDFLD/STFLD opcodes. Fixes #432673.
3510         * iltests.il.in: Add a new test.
3512 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
3514         * mini-arm.c: attach the thread in unmanaged->managed transitions
3515         using delegates (bug #433148).
3517 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
3519        * basic-simd.cs: Use new ShuffleSel constants.
3521 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
3523         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
3525         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
3526         only disable simd intrinsics if no sse2 is detected.
3528         * optflags-def.h: Added sse3.
3530         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
3531         is disabled.
3533 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3535         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
3536         when adding delegate-invoke wrappers.
3538 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3540         * Makefile.am: Reenable the simd tests.
3542 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3544         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
3545           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
3546           other vreg is allocated to that hreg.
3548         Contributed under MIT/X11 license.
3550 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3552         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
3553         yet checked in.
3555 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
3557         * basic-simd.cs: New test suite for SIMD intrinsics.
3559         * Makefile.am: Added new tests.
3561 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
3563         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
3565         * mini-ops.h: Same.
3567         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
3569         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
3570         using SSE2 aware opcodes.
3572         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
3573         is enabled, this code path is only reachable if conversion ops are emmited after
3574         mono_method_to_ir.
3576         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
3578         This optimization saves 6 bytes per conversion against the old version.
3580 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3582         * aot-compiler.c (compile_method): Don't skip methods referencing 
3583         generic methods without a corresponding entry in token_info_hash, since
3584         encode_method_ref () can handle all generic methods now.
3586         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
3587         generic context is set.
3588         
3589         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
3590         generic sharing of LDTOKEN.
3592 2008-10-06  Mark Probst  <mark.probst@gmail.com>
3594         * mini-amd64.h: Temporarily disabled fast virtual generic method
3595         calls because it breaks the System.Runtime.Remoting tests.
3597 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3599         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
3601         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
3602         so inlining actually works.
3603         (check_inline_caller_method_name_limit): Ditto.
3605 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
3607         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
3608         64 bit safety (from Olaf Hering and Andreas Färber).
3610 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3611         
3612         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
3613         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
3614         unused virtual call support code.
3616         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
3617         
3618         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
3619         which can't use aot trampolines.
3620         (decode_patch): Don't create aot trampolines for methods which can't use
3621         them.
3623         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
3624         use aot trampolines.
3626         * mini.h: Bump AOT image format version.
3627         
3628 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
3630         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
3631         to save_token_info () since cmethod is inflated for constrained calls.
3633         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
3635 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3637         * Makefile.am: Add build rules for ppc64.
3638         This avoids the build failing at pedump with unresolved symbols
3639         due to lack of arch_sources. Instead it will now fail earlier
3640         due to lack of cpu-ppc64.md.
3642         Contributed under MIT/X11 license.
3644 2008-10-04  Mark Probst  <mark.probst@gmail.com>
3646         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
3647         tail calls.
3649         * iltests.il.in: Add test case for tail call with many arguments.
3651 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3653         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
3654         to the fast virtual generic method code until the aot case is fixed.
3656 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3658         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
3660 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3662         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
3663         thunks.
3665 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3666         
3667         * simd-intrinsics.c: Forgot to add this one.
3669         * mini-codegen.c: Fix macro in case SIMD is not supported.
3671 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3672         
3673         This patch land initial JIT support for simd intrinsics.
3675         * mini-x86.h: Added new define to make --enable_minimal work on x86.
3677         * Makefile.am: Added simd-intrinsics.c
3679         * simd-intrinsics.c: New file with simd instrinsic related
3680         code.
3682         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
3684         * cpu-x86.md: Add simd related instructions.
3686         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
3688         * driver.c: Added two new --regression variants.
3690         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
3692         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
3694         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
3695         extract some complicated logic to helper functions.
3697         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
3699         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
3701         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
3702         the specialized simplification pass.
3704         * method-to-ir.c (mono_spill_global_vars): Use new macro.
3706         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
3708         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
3709         table.
3711         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
3712         if MONO_ARCH_NEED_SIMD_BANK is defined.
3714         * mini-ops.h: Added the new simd ops.
3716         * mini-x86.c: Added mono_arch_xregname.
3718         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
3720         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
3722         * mini-x86.h: Define simd related MONO_ARCH macros.
3724         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
3726         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
3728         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
3729         MONO_CLASS_IS_SIMD to deal with simd related IR.
3731         * mini.h (MonoInst): Added spill_var to the backend union.
3733         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
3735         * mini.h: Added forward declarations of the new simd fuctions.
3737         * optflags-def.h: Added new optimization names SIMD.
3739         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
3741         * regalloc.h: Added support for working with 3 register banks.
3743         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
3745         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
3747 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
3749         * mini-exceptions.c: remove 64 bit related ifdef clutter.
3751 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3753         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
3754         instead of one on 64 bit systems.
3756         * method-to-ir.c: Remove unused includes.
3758 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
3760         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
3761         cfg->used_int_regs, since the two are different on arm.
3763 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3765         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
3766         mono_method_get_vtable_index() to get the vtable index.
3768 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3770         * method-to-ir.c (mono_method_to_ir2): Don't create native
3771         wrappers for array methods, because they're never called (and if
3772         they were called they wouldn't work).
3774 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3776         * method-to-ir.c (mono_method_to_ir2): Array methods are
3777         special-cased and must not be invoked indirectly via the (M)RGCTX
3778         when generic sharing is turned on.  Fixes #431413.
3780 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3782         * method-to-ir.c: When generic sharing is active, call
3783         non-interface virtual generic methods via the standard trampoline.
3785         * mini-trampolines.c: Handle virtual generic shared methods.
3787         * mini.h, mini-x86.c, mini-x86.h: New argument for
3788         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
3789         method thunks and which is the trampoline to call if the lookup
3790         fails.  Enable the virtual generic method thunk for x86.
3792         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
3793         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
3794         argument but assert that it's NULL, because these archs don't yet
3795         implement the virtual generic method thunk.  Changes in the IMT
3796         thunk data structures.
3798 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3800         * aot-compiler.c (emit_globals): Avoid invalid characters in
3801         the static linking symbol.
3803         * objects.cs: Add a test for the range check optimization. Fix warnings.
3805         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
3806         optimization from the current JIT.
3808         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
3809         later in decompose_array_access_opts () to allow more optimizations.
3811         * method-to-ir.c (mono_handle_soft_float): Rename this to 
3812         mono_decompose_soft_float () for consistency.
3814         * mini-ops.h: Fix arguments of OP_STRLEN.
3816         * method-to-ir.c (save_cast_details): Extract the cast details saving code
3817         into a separate function.
3818         (reset_cast_details): Ditto.
3819         (handle_unbox): Save cast details. Fixes #431254.
3821         * method-to-ir.c: Remove some obsolete FIXMEs.
3823 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3825         * ir-emit.h (alloc_dreg): Write a warning before crashing.
3827 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3829         * mini-codegen.c: More work on macros to make them
3830         ready for multiple regbanks.
3832 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3834         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
3836         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
3838 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3840         * mini-codegen.c (mono_spillvar_offset): Proper support for
3841         multiple regbanks.
3843 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
3845         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
3846         the stack overflow changes.
3848 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3850         * mini-codegen.c: Make all bank macros depend on reg_bank.
3852         * mini-codegen.c (mono_local_regalloc): Make free mask
3853         initialization regbank aware.
3855 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3857         * mini-codegen.c (mono_local_regalloc): Extract callee
3858         mask selection to a function and make it regbank aware.
3860 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3862         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
3863         code to deal with many regbanks.
3865 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
3867         * mini-codegen.c: More fp->regbank changes.
3869 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
3871         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
3872         of a hardcoded constant.
3874 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
3876         * method-to-ir.c (type_from_stack_type): Fix typo.
3878 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
3880         * mini-ia64.c (emit_move_return_value): Convert float return values to
3881         double.
3883         * objects.cs: Add a new test.
3884         
3885         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
3886         VARARG methods to fix an assert later.
3888         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
3889         end so it at least compiles.
3891 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
3893         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
3895 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
3897         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
3898         optimization to a new function (emit_optimized_ldloca_ir) and enable
3899         it for both ldloca and ldloca_s.
3901 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
3903         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
3904         gshared CASTCLASS code.
3906         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
3907         amd64, where the libc stack unwinder encounters stack frames referring to
3908         native code in unmapped memory.
3910         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
3911         sharing.
3913         * generics.cs: Add new test.
3915 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
3917         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
3918         add a check that one of the ARM_FPU_ constants is defined.
3920         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
3921         
3922         * mini-exceptions.c: Fix build on non-altstack platforms.
3924         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
3925         sharing of vtypes.
3927         * ir-emit.h: Add a comment to NEW_PCONST.
3929         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
3931         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
3933         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
3934         after the changes to MonoJitDomainInfo.
3936 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3938         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
3940 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3942         * mini-ppc.c: Compiler warning fixes.
3944 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3946         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
3947         for pinvokes.
3949 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3951         * exceptions-ppc.c, mini-ppc.h: Compile
3952         mono_arch_handle_altstack_exception() on Darwin, too.
3954 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3956         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
3957         work on archs which don't have generic sharing implemented, only
3958         without the vtable_arg.
3960 2008-09-26  Mark Probst  <mark.probst@gmail.com>
3962         * mini.c: Added comment explaining why delegate ctor icall
3963         wrappers are compiled.
3965 2008-09-26  Mark Probst  <mark.probst@gmail.com>
3967         * mini.c: Don't produce trampolines to delegate ctor icall
3968         wrappers but compile them upfront.
3970 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
3972         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
3973         runtime-set function when going back to managed code. Currently this
3974         is used to set back the protection on the soft ovf pages and/or to
3975         throw the stack overflow exception that happened in unmanaged code.
3977 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
3979         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
3980         runtime-set function when going back to managed code. Currently this
3981         is used to set back the protection on the soft ovf pages and/or to
3982         throw the stack overflow exception that happened in unmanaged code.
3984 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
3986         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
3987         the support code for restoring stack protection after stack overflows
3988         that happen in unmanaged code. Don't set the exec permission on the
3989         soft overflow area.
3991 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
3993         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
3994         delegate->method_ptr is set. Fixes #428054.
3996 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3998         * tests.cs: Rename to ratests.cs.
4000         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
4001         emit_get_rgctx_... functions.
4003 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4005         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
4007 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4009         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
4010         before asserting that method is sharable.
4012 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4014         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
4015         whether method needs a static RGCTX wrapper used instead of
4016         complex conditions.
4018         * generic-sharing.c, mini.h: A few functions moved to
4019         metadata/generic-sharing.c.
4021 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4023         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
4024         Generic code sharing for value types, which essentially means
4025         treating value type methods like static methods.  The RGCTX is
4026         passed in the same way.
4028 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
4030         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
4031         opcode when creating multi-dimensional arrays of open types.
4033         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
4034         open generic types.
4036         * generics.cs: Add a test.
4038         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
4040 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4042         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
4044         * mini.c (mini_method_compile): Set it when running under the debugger. 
4046         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
4047         vreg optimization if the flag is set.
4049         * driver.c (mono_main): Add --attach= option to pass options to
4050         the attach agent.
4052         * mini.c (sigquit_signal_handler): Start the attach agent.
4054         * ssapre.c: Disable this to save space since it is not yet ported to
4055         linear IR.
4057         * regalloc2.c: Disable this to save space.
4059         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
4061 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
4063         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
4064         the -v option useful again.
4066 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4068         * mini-amd64.c (mono_arch_output_basic_block): Add support for
4069         --break-at-bb.
4071         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
4072         arrays of arrays. Fixes #428406.
4074         * method-to-ir.c (mini_emit_castclass): Ditto.
4076         * objects.cs: Add new test.
4077         
4078 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
4080         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
4081         was wrong at it choked against target_type_is_incompatible for byref types.
4083 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
4085         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
4086         places.
4088 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
4090         * mini-exceptions.c: update a few more exceptions-related counters.
4092 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
4094         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
4095         new functions to allocate from persistent mempools.
4097 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
4099         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
4100         multiple register banks in the future.
4102         * mini-codegen.c (mono_local_regalloc): Fix a warning.
4104 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
4106         * mini.c (type_to_eval_stack_type): Remove duplicated function.
4108         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
4110         * mini.h: Export type_to_eval_stack_type.
4112         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
4113         is only ins->klass of byref types.
4115 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
4117         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
4118         (mini_emit_memcpy2): Ditto.
4120         * mini-amd64.c: Fix a warning.
4122 2008-09-21  Mark Probst  <mark.probst@gmail.com>
4124         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
4125         linking.
4127 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
4129         * method-to-ir.c: Extract stloc micro-optimization to a
4130         function and apply it to all cases.
4132 2008-09-19  Mark Probst  <mark.probst@gmail.com>
4134         * method-to-ir.c: Don't fail generic code sharing in cases we
4135         already support.
4137 2008-09-18  Mark Probst  <mark.probst@gmail.com>
4139         * mini-ppc.c: Handle structs in tailcalls on Darwin.
4141 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
4143         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
4144         implementation.
4146 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
4148         * trace.c: make tracing more useful and correct, with per-thread
4149         id and indent info.
4151 2008-09-15  Mark Probst  <mark.probst@gmail.com>
4153         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
4154         doing a method call and the argument is an R4.
4156 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
4158         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
4159         generic methods.
4161 2008-09-13  Mark Probst  <mark.probst@gmail.com>
4163         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
4165 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
4167         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
4168         (MONO_JUMP_TABLE_FROM_INS): Ditto.
4170 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
4172         * driver.c: Add a --agent argument (not supported yet) to load managed
4173         agent assemblies before loading the main assembly, similarly to how the
4174         Java VM handles agents.
4176 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4178         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
4179         function to do stack layout of local variables.
4181 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4183         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
4184         calculation.
4186 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
4188         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
4189         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
4190         JIT if DISABLE_JIT is defined.
4192         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
4193         defined.
4195 2008-09-10  Mark Probst  <mark.probst@gmail.com>
4197         * iltests.il.in: Disable the fconv test on PPC (the result is
4198         undefined according to ECMA).
4200 2008-09-10  Mark Probst  <mark.probst@gmail.com>
4202         * iltests.il.in: Enable tail call tests for PPC.
4204         * mini.h: Add variable for storing incoming valuetype argument
4205         addresses for tail calls.
4207         * mini-ppc.c: Implement valuetype arguments and return values for
4208         tailcalls on Linux.
4210 2008-09-09  Mark Probst  <mark.probst@gmail.com>
4212         * mini-ppc.c: Partially implement tail calls (struct arguments and
4213         return values not supported).
4215         * method-to-ir.c: Enable tail calls on PPC.
4217 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
4219         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
4220         runtime-invoke wrappers to work around the problem of them getting
4221         assigned to a random class.
4223         * aot-runtime.c (mono_aot_get_method): Ditto.
4224         
4225 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
4227         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
4228         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
4230 2008-09-07  Mark Probst  <mark.probst@gmail.com>
4232         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
4233         until they're implemented properly.
4235         * exceptions-ppc.c: Use arch-independent exception-handling code
4236         instead of custom one.
4238         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
4239         for Linear IR.
4241         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
4243         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
4244         applies when __powerpc__ is defined.
4246 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
4248         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
4249         methods to their code to avoid computing the full name of wrappers and
4250         doing a lookup in a string hash table.
4252 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
4254         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
4255         we identify bblocks before method_to_ir () is ran.
4257         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
4258         Also avoid optimizing branches pointing to themselves.
4260         * mini.c (mini_method_compile): Ditto. Fixes #422947.
4262 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
4264         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
4266 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
4268         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
4269         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
4270         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
4271         'buf'.
4273         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
4274         jumped to the same entry in plt_jump_table.
4276 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4278         * method-to-ir.c (initialize_array_data): Handle field with RVA from
4279         dynamic images.
4281 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
4283         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
4284         other assignment can be if converted. Saves 1.5% on corlib size and fixes
4285         #421807.
4287 2008-08-29  Geoff Norton  <gnorton@novell.com>
4289         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
4290         segment, and doesn't properly handle .space as .text.  Fixes
4291         AOT Mach/ARM
4293 2008-08-29  Geoff Norton  <gnorton@novell.com>
4295         * mini.c: Disable the mach exception handler when running on 
4296         ARM
4298 2008-08-29  Geoff Norton  <gnorton@novell.com>
4300         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
4301         globals on Darwin/ARM
4303 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
4305         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
4306         since too many things depend on it. Instead, call 
4307         mono_runtime_set_no_exec ().
4308         
4309         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
4310         the new JIT.
4312         * aot-compiler.c: Add an 'asm-only' AOT option.
4314         * mini.c: Avoid initializing the runtime when doing AOT compilation.
4315                 
4316         * aot-compiler.c (compile_method): Disable gshared support for now as it
4317         doesn't yet work.
4319 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
4321         * mini-amd64.h : Fix a compiler warning.
4323         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
4324           Changed to use a callback function to retrieve the unwind info.
4325           This avoids problems observed when code blocks were removed by
4326           unloading an app domain.
4328         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
4329           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
4330           to work properly.
4332         Contributed under MIT/X11 license.
4334 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
4336         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
4337           case to keep the stack aligned to 8.
4339         Contributed under MIT/X11 license.
4341 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
4343         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
4344         avoid repeated linear searches.
4346 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
4348         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
4349         methods it can't handle.
4350         
4351         * aot-compiler.c (add_method): Avoid adding a method twice.
4352         (add_wrappers): Add runtime invoke wrappers for all methods.
4354         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
4355         function to create an aot-compatible version of this trampoline.
4357         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
4359 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4361         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
4363         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
4364         with a generic sharing failure.
4366         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
4368         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
4369         CEE_RETHROW. Fixes #419634.
4371         * mini.c (mono_method_to_ir): Ditto.
4373         * exceptions.cs: Add a new test.
4374         
4375         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
4376         to mono_type_stack_size_internal () since some callers might not pass in
4377         an rgctx.
4379         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
4380         instrument_prolog. Fixes #419878.
4382         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
4383         doubles in soft float mode volatile.
4385 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
4387         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
4389         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
4390         to handle soft float correctly.
4392         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
4393         the fast path.
4395         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
4397         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
4398         to sp, since the generics catch code requires it.
4400         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
4401         copying.
4403         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
4404         mono_arch_emit_imt_argument ().
4406         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
4408         * mini-arm.c tramp-arm.c: Generic sharing updates.
4410 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
4412         * mini-arm.c: Fix the arm build.
4414         * generic-sharing.c (mini_type_get_underlying_type): New helper function
4415         handling enums, generic instances and generic sharing.
4416         (mini_type_stack_size_full): Ditto.
4418         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
4419         
4420         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
4422         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
4424         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
4425         trampolines.
4427         * mini-arm.c: Various small generic sharing changes.
4429         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
4430         this for x86.
4431         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
4432         custom code.
4434         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
4435         helper function to return a generic class init trampoline.
4437         * method-to-ir.c mini.c: Use it.
4438         
4439         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
4440         arch-specfic function to return a generic class init trampoline.
4442         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
4443         the GENERIC_CLASS_INIT custom code.
4445         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
4446         a fatal error, not a sharing failure.
4448         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
4449         needed.
4451         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
4452         trampoline argument from MONO_ARCH_VTABLE_REG.
4454         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4455         order of the arguments to the C trampoline: pass 'slot' as the trampoline
4456         argument, and pass the vtable in VTABLE_REG.
4458         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4459         order of the arguments to the C trampoline: pass 'slot' as the trampoline
4460         argument, and pass the vtable in VTABLE_REG.
4461         (mono_arch_create_trampoline_code_full): Remove some special casing for
4462         the rgctx fetch trampoline.
4464         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
4465         Fixes #419273.
4467         * iltests.il: Add a test for it.
4469 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
4471         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
4473         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
4474         no longer needed.
4476         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
4477         use mono_jit_info_table_find () to avoid recursion.
4478         (mono_delegate_trampoline): Add a sync wrapper here.
4480         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
4481         here.
4483         * mini.c (mono_method_to_ir): Ditto.
4484         
4485         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
4486         add_sync_wrapper argument. Don't add a sync wrapper here.
4487         (mono_create_jump_trampoline): Don't add a sync wrapper here.
4489         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
4490         
4491 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4493         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
4494           of nonvolatile registers back from MonoContext to CONTEXT.
4496         Contributed under MIT/X11 license.
4498 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4500         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
4501           arguments on Winx64 there are only 4 argument registers.  For this
4502           logic to work the last argument must be pulled from the stack.  
4504         Contributed under MIT/X11 license.
4506 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4508         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4510         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
4511         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
4512         encode/decode_method_ref ().
4514         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
4516         * aot-runtime.c (decode_patch): Ditto.  
4518         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
4519         MONO_PATCH_INFO_METHOD.
4521         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
4522         MonoGenericJitInfo.
4524         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
4525         MonoGenericJitInfo.
4527         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
4529         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
4530         one from the caller.
4532         * aot-runtime.c (decode_generic_inst): New function to decode and
4533         return a interned generic inst.
4534         (decode_klass_ref): Use it.
4535         (decode_method_ref): Ditto.
4537         * aot-compiler.c (emit_exception_debug_info): Save 
4538         jinfo->has_generic_jit_info too.
4540 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
4542         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
4544         * iltests.il.in: Add a test for fconv_to_i.
4546         * liveness.c: Disable the liveness2 pass for now to save space.
4548         * regalloc2.c: Include mempool-internals.h to fix warnings.
4550         * aot-compiler.c (encode_method_ref): Encode the context of generic
4551         instance methods.
4553         * aot-runtime.c (decode_method_ref): Inflate generic methods using
4554         the context saved in the aot file.
4556         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4558         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4560         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
4561         volatile so they won't be optimized away.
4563 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4565         * ssa.c:
4566         * ssa2.c:
4567         * mini.c:
4568         * regalloc2.c:
4569         * dominators.c: Remove duplicated functions that now are in
4570         mempool-internals.h.
4572 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
4574         * aot-compiler.c: Fix warnings.
4576         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
4578         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
4580         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
4581         as the patch type.
4583         * mini.c (mono_resolve_patch_target): Ditto.
4584         
4585         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
4586         (encode_klass_ref): Add support for encoding VARs/MVARs.
4588         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
4590         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
4591         the handling of the got entries into a separate 'decode_got_entry' function.
4592         Add support for RGCTX_FETCH.
4594         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
4595         clobbered by the trampoline code.
4597         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
4598         not clobbered by the indirect calling code.
4600 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
4602         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
4603         to fix the build.
4605 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4607         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
4608         signature using the compilation mempool otherwise we would leak it.
4610 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
4612         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
4613         mono_emit_abs_call ().
4615         * patch-info.h: Add GENERIC_CLASS_INIT.
4617         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
4619         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
4620         as their target as a near call.
4622         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
4623         ABS handling code.
4624         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
4626         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
4627         call to a runtime function described by a patch.
4629         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
4630         mono_emit_abs_call, this has the advantage that the ABS handling code in
4631         mono_codegen () can handle them both, and can handle other stuff in the
4632         future without additional code.
4634         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
4635         entry.
4636         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
4637         abs addresses.
4639         * mini.h: Add missing bblock related prototypes.
4641         * mini.h (MonoCompile): Remove unused reverse_inst_list and
4642         reverse_inst_list_len fields.
4644         * mini.c: Refactor this file a bit by moving branch optimizations to 
4645         branch-opts.c.
4647         * method-to-ir.c: Merge generic sharing changes missed earlier.
4649         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
4651         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
4652         shared patches. Process METHODCONST as a shared patch.
4654         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
4655         as it crashes on the 2.0 mscorlib.
4657         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
4658         to cause crashes.
4659         
4660         * aot-compiler.c: Use is_plt_patch () in a few additional places.
4661         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
4662         by IMT.
4664         * aot-compiler.c: Reorganize the got handling code to be a bit more
4665         understandable.
4667 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
4669         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
4670         mono_patch_info_equals/hash, and use it to massively simplify
4671         get_plt_index ().
4673         * mini.c (mono_patch_info_hash): Simplify this and add support for
4674         more patch types.
4676         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
4678         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
4679         handling code, since an offset is not enough to identify a trampoline.
4681         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
4683 2008-08-17  Mark Probst  <mark.probst@gmail.com>
4685         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
4687         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
4689         * mini-ops.h: Argument and result types for OVF_CARRY ops.
4691         * decompose.c: PPC decompositions for various ops.
4693         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
4695 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
4697         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
4698         call the generic trampoline code using a call, instead of a jump, to
4699         remove some special casing from the generic trampoline code.
4701         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
4702         (mono_codegen): Ditto.
4704         * aot-compiler.c aot-runtime.c: Ditto.
4706         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
4708         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
4709         helper function to find the offset corresponding to a lazy fetch trampoline.
4711         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
4712         when doing generic sharing.
4714         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
4715         places.
4716         
4717         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
4718         mini-trampolines.c to be with the other trampoline creation functions.
4720         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
4721         as it is equal to method->signature in most cases, add a 
4722         mono_emit_method_call_full variant which takes a signature and an imt
4723         argument as well.
4725 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4727         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
4728         to this function, since it could be computed easily from the method 
4729         argument.
4730         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
4731         more.
4733         * method-to-ir.c mini.c: Remove references to 
4734         compile_generic_method_wo_context.
4736         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
4737         generic method calls.
4738         
4739         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
4740         dimensional non-szarrays.
4742         * mini.c (mini_init): Register mono_array_new_1.
4744         * jit-icalls.c (mono_array_new_1): New jit icall.
4746         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
4747         pointing to the method.
4749         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
4750         method addresses belonging to METHOD_JUMP patches in the 
4751         jump_target_got_slot_hash.
4752         (mono_aot_load_method): Ditto.
4754         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
4755         METHOD_JUMP patches.
4757         * mini.c (mini_create_jit_domain_info): New helper function which 
4758         initializes/frees domain->runtime_info.
4759         (mini_free_jit_domain_info): Ditto.
4760         (mini_init): Install the domain hook functions with the runtime.
4762         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
4763         information maintained by the JIT.
4765         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
4766         insertion into jump_table_hash into mono_codegen (), also implement proper
4767         locking.
4769         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
4770         tail calls, it is already done by the aot code.
4771         
4772         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
4773         mechanism on amd64.
4775         * iltests.il.in: Make the jmp test a bit more complex.
4777         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
4778         generic instances which doesn't have a token.
4780         * aot-runtime.c (decode_method_ref): Ditto.
4781         
4782         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
4783         can handle this case now.
4784         (handle_box): Ditto.
4786 2008-08-15  Geoff Norton  <gnorton@novell.com>
4788         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
4789         debugging check.
4791 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4793         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
4794         calling generic methods.
4796         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
4798         * aot-runtime.c (decode_patch_info): Ditto.
4800         * mini.c (mono_resolve_patch_target): Ditto.
4801         
4802         * patch-info.h: Add METHOD_RGCTX.
4804         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
4806 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
4808         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
4809         arguments in registers.
4811         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
4812         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
4814         * mini.c (mini_method_compile): Abort aot compilation for generic
4815         methods if generic sharing is disabled.
4816         
4817         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
4818         an mrgctx.
4820         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
4821         requiring an mrgctx.
4823         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
4824         store instructions when converting a vcall to a normal call.
4826         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
4827         mono_arch_find_jit_info.
4829 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
4831         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
4832         avoid calling mono_method_full_name () for every method even if the
4833         env var is not set.
4834         (check_inline_caller_method_name_limit): Ditto.
4836 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4838         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
4839         assemblies in one run.
4841         * aot-compiler.c (mono_compile_assembly): Only print out a count of
4842         skipped methods if it is not 0.
4844         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
4846 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
4848         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
4849           MONO_ARCH_HAVE_UNWIND_TABLE.
4851         Contributed under MIT/X11 license.
4853 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
4855         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
4856           from default optimizaton list on Winx64.
4858         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
4860         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
4861           the LMF from the MonoJitTlsData structure.
4863         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
4865         Contributed under MIT/X11 license.
4867 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4869         * mini.c (sigsegv_signal_handler): Fix the build.
4871         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
4872         assembly->aot_module.
4874         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
4875         hash table. This simplifies and speeds up a lot of code, and fixes support
4876         for .netmodules.
4878         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
4879         with the runtime.
4881         * mini-exceptions.c: Ditto.
4882         
4883         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
4884         'native_offset' argument, since these are computed in the 
4885         mono_find_jit_info () function.
4887         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
4888         is used by exceptions-ppc.c.
4890         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
4891         mono_arch_find_jit_info ().
4892         
4893         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
4894         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
4895         generic code in mini-exceptions.c.
4897 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
4899         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
4901         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
4902         
4903         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
4904         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
4905         called while holding the loader lock. Fixes #415608.
4906         (mono_aot_get_method_from_token_inner): Ditto.
4908 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
4910         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
4911         to reduce differences between this and the generic implementation in
4912         mini-exceptions.c.
4913         (ves_icall_get_frame_info): Ditto.
4915         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
4917         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
4918         longer neccesarry.
4920         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
4921         mono_arch_get_call_filter () and make it non-static, for consistency with the
4922         other architectures.
4924 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
4926         * mini.c:
4927         * local-propagation.c:
4928         * mini-x86.c: Correct the name of arch defines.
4930 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
4932         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
4933         NO_EMULATE_LONG_SHIFT_OPS define.
4935 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4937         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
4938         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
4940         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
4941         MACH fixes. Merged from the 2.0 branch.
4943         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
4945         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
4946         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
4948         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
4950         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
4951         mono_marshal_get_native_wrapper () signature changes.
4953 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
4955         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
4956         conversion bug under arm.
4958 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4960         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
4962         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
4963         with overflow checking.
4965 2008-08-05  Marek Habersack  <mhabersack@novell.com>
4967         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
4968         to the genmdesc.pl file
4970 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
4972         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
4973         arg_array in the soft-float versions of the LOAD/STORE macros.
4975         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
4976         implementation.
4978         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
4980 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
4982         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
4983         a float HFA. Fixes #413621.
4985 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
4987         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
4988         frame_size to args_size. Fixes build.
4990 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
4992         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
4993         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
4995         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
4996         the stack are not unaligned. Fixes #413247.
4997         
4998 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
5000         * mini.c: update jitted methods performance counters.
5002 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
5004         * mini-exceptions.c: increase the exceptions thrown performance
5005         counter in mono_handle_exception ().
5007 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
5009         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
5010         can work with netmodules.
5012 2008-07-28  Geoff Norton  <gnorton@novell.com>
5014         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
5015         regression tests.
5017 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
5019         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
5020         correct place.
5022 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
5024         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5025           The float param registers and other param registers must be the 
5026           same index on Windows x64.
5028         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
5029           ArgValuetypeAddrInIReg argument case.  Setting the argument
5030           op to OP_VTARG_ADDR (OP_REGOFFSET)).
5032         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
5033           variable computed above as the copy length for arguments of storage
5034           type ArgValuetypeAddrInIReg.
5036         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
5037           ArgValuetypeAddrInIReg argument case.  This case will rely on
5038           mono_arch_emit_outarg_vt to emit the correct code later in the process.
5040         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
5041           a 32 byte stack allocation for all calls.  We will omit the adjustment for
5042           jump and tail call instructoins as they do not follow the typical call behavior.
5044         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
5045           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
5046           local variable and pass the local variable by reference to the called method.
5048         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
5049           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
5050           of a struct is passed in a register it must be saved with the other
5051           volatile argument on the stack.
5053         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
5054           frame pointer the stack adjustment value must be saved to the unwind 
5055           info structure.
5057         Contributed under MIT/X11 license.
5059 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
5061         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
5062         which got lost in the merge.
5064 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
5066         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
5067         build.
5069         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
5070         
5071         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
5072         icalls, since they won't be patched.
5074         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
5075         different code sequence when running under valgrind to prevent some valgrind
5076         errors.
5078         * iltests.il.in: Add new regression test.
5080         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
5081         end with a throw.
5083         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
5084         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
5086         * iltests.il.in: Add new test.
5088         * aot-compiler.c: Fix some warnings.
5090         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
5091         Fixes #412494.
5093 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
5095         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
5096         (mini_usage_jitdeveloper): Add a missing --wapi option.
5098 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5100         * mini-codegen.c: Simplify the is_fp macros.
5101         (free_up_ireg): Remove, use free_up_reg instead.
5102         (free_up_reg): Fix the fp case.
5104 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
5106         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
5107         lowered earlier.
5109         * exceptions-x86.c: Merge some changes which seemed to have got lost
5110         in the linear-ir merge.
5112         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
5114         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
5115         long vreg volatile even if the variable was already created.
5117         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
5118         volatile variables.
5120 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
5122         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
5124         * mini.c (mono_jit_compile_method_inner): Add support for 
5125         MONO_EXCEPTION_BAD_IMAGE.
5127         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
5128         mini_method_get_context () returns NULL. Fixes #356531.
5130         * mini.c (mono_method_to_ir): Ditto.
5131         
5132         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
5133         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
5135 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5137         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
5138         in the LDFTN implementation.
5140 2008-07-25  Mark Probst  <mark.probst@gmail.com>
5142         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
5143         code, patch calls to icalls, too, even if they're not in the
5144         shared generic code hash.  Fixes #411962.
5146 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5148         * cpu-x86.md: Increase the length of the fcall opcodes.
5150         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
5151         calls returning floats.
5153         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
5154         on NEWARR.
5155         
5156         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
5157         missed earlier.
5159         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
5160         into the domain->method_code_hash.
5162         * aot-compiler.c: Fix win32 build.
5164         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
5165         
5166         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
5167         gshared NEWARR implementation.
5169         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
5171         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
5172         can be used outside of method_to_ir.
5174         * mini.h (MonoCompile): Add arg_types field.
5176         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
5177         
5178         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
5179         the values of the local arg_array and param_types array.
5181 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
5183         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
5184         got accesses might only get generated later when NEWOBJ is decomposed.
5185         
5186         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
5187         looking up the native code of the target method when a delegate is called
5188         for the first time.
5190         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
5191         optimization.
5193         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
5195         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
5196         AOT work on platforms without a working dlsym implementation.
5198         * mini.h: Bump AOT image format version.
5199         
5200 2008-07-24  Mark Probst  <mark.probst@gmail.com>
5202         * mini-exceptions.c: Free a MonoType with
5203         mono_metadata_free_type() instead of g_free().
5205         * aot-runtime.c: Free a MonoType.
5207 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
5209         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
5210         optimization.
5212         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
5213         fp stack on x86.
5215 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
5216         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
5217         profiler hook.
5219 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
5221         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
5222         NEWOBJ calls on valuetypes.
5224         * iltests.il.in: Add new test.
5226         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
5228 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
5230         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
5231         is no longer needed.
5233         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
5234         non register sized integer arguments.
5235         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
5236         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
5237         emit_memcpy2 ().
5239         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
5240         CEE_MONO_RETOBJ.
5241         
5242         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
5243         two a binop with different sized arguments is emitted.
5245         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
5246         instruction in the ins==NULL case.
5248 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
5250         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
5252         * mini-x86.c: Fix osx build.
5254         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
5255         opcodes as well.
5257         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
5258         instruction for non int sized variables.
5260         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
5261         implementation.
5263 2008-07-23  Robert Jordan  <robertj@gmx.net>
5265         * method-to-ir.c: Fix MSVC build.
5267 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
5269         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
5270         a non int sized type, widen it to an int since newer versions of gcc seem to
5271         generate code which needs this.
5273         * ssa2.c abcremoval2.c: Fix warnings.
5275         * *: Merge the Linear IR branch.
5277         The original branch is at trunk/branches/vargaz/mini-linear-il, and
5278         the ChangeLog file there describes all the changes done over the years. 
5279         Further documentation can be found at www.mono-project.com/Linear_IL.
5281 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
5283         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5284           The float param registers and other param registers must be the 
5285           same index on Windows x64.
5287         Contributed under MIT/X11 license.
5289 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
5291         * mini.c: Make the previous fix GC safe.
5293 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
5295         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
5297 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
5299         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
5300           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
5301           ArgValuetypeAddrInIReg instead.
5303         Contributed under MIT/X11 license.
5305 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
5307         * mini-codegen.c (get_register_spilling): Fix a warning.
5309 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
5311         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
5312         for types which the initialization fails. Raises the provided exception
5313         at the right stop after cleanup.
5315 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
5317         * aot-compiler.c: Free most of the memory allocated during compilation.
5319         * mini.c (mini_parse_debug_options): Fix a leak.
5320         
5321         * mini.c (mini_method_compile): Don't add the method to the jit info tables
5322         during aot compilation.
5324 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
5326         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
5327         it has too much register pressure.
5329 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
5331         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
5333 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
5335         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5336         on x86.
5338         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5339         on amd64 similar to the way it is done on arm.
5341         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5343         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
5344         consistency, normalize error messages, avoid loading aot-only modules in
5345         normal mode.
5347         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
5348         for consistency.
5350         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
5352 2008-07-11  Martin Baulig  <martin@ximian.com>
5354         * debug-debugger.h
5355         (MonoDebuggerInfo): Add `interruption_request'.
5357 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
5359         * aot-compiler.c (emit_plt): Remove some dead code.
5361         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
5363         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
5364         return the plt info offset belonging to a given plt entry.
5366         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
5367         mono_aot_get_plt_info_offset.
5368         
5369         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
5370         similar to the amd64 code by makeing jumps through a separate jump table 
5371         instead of embedding the jump addresses into the code.
5373 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
5375         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
5376         method.
5378 2008-07-10  Martin Baulig  <martin@ximian.com>
5380         * mini.c (mini_method_compile): Disable generics sharing when
5381         running in the debugger.
5383 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
5385         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
5387         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
5388         the local register allocator from running out of registers on x86 when 
5389         using aot.
5391 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
5393         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
5394         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
5395         C4146.
5397         Contributed under MIT/X11 license.
5399 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
5401         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
5402         speed up the assembler.
5404 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
5406         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
5407         support.
5409         * mini.c: Move the soft float handling macros a bit earlier, add 
5410         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
5411         place.
5413         * mini.h: Add prototype for mono_arch_fixup_jinfo.
5415         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
5416         read-only to help catch code allocation requests.
5417         
5418         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
5419         and turn it off when using --aot-only or when compiling with --aot=full.
5421         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
5422         jump table for switches from the normal domain mempool, not the code
5423         manager.
5425         * mini-trampolines.c (get_unbox_trampoline): New function to return an
5426         unbox trampoline which handles aot-only mode too.
5428         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
5429         an AOTed unbox trampoline.
5431         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
5433 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
5435         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
5436         ""
5438         Contributed under MIT/X11 license.
5440 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
5442         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
5443           the unwind information for the method at the end of the allocated block.
5444           
5445         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
5446           MonoCompileArch to hold the unwind info for SEH on Winx64
5447         
5448         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
5449           frame pointer info for the method being compiled.
5450           
5451         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
5452           the call to mono_exception_from_token.
5453           
5454         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
5455           storing the method prolog information in a format that the Winx64 SEH can understand.  This
5456           information is stored a the end of the method block because it is all 32-bit offset based.
5458         Contributed under MIT/X11 license.
5460 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
5462         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
5464         * wapihandles.c: Fix warnings.
5466         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
5467         mode.
5469         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
5470         mono_jit_compile_method in aot-only mode since that calls the type 
5471         initializer.
5472         
5473         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
5474         get_delegate_invoke_impl in aot-only mode.
5476         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
5478 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
5480         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
5482         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
5483         is on by default.
5485         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
5487         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
5488         init trampoline from the AOT file as well.
5490         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
5491         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
5492         code.
5494         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
5495         mono_init.
5497         * exceptions-amd64.c: Add _full variants for the remaining exception code
5498         creation functions as well, allow emission of relocatable code, remove
5499         caching since that is now done by the caller.
5501         * mini-exceptions.c: Add _full variants for the remaining exception code
5502         creation functions as well, add aot-only support.
5504         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
5505         if we can determine a proper token for them.
5506         (add_wrappers): Add a few more wrappers.
5507         (emit_method_code): Remove some dead code.
5508         (emit_trampolines): Emit exception code too.
5510         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
5512         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
5513         mono_array_new_va which avoids varargs.
5515         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
5517         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
5518         mono_arch_create_specific_trampoline () in all places.
5520         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
5521         a bit so it can be used for other things as well.
5522         
5523         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
5524         on demand as well.
5526         * exceptions-amd64.c: Rename the caching from the exception code creation
5527         functions, it is done by the caller instead.
5528         
5529         * exceptions-amd64.c: Change the signature of the exception code creation 
5530         functions to allow the creation of relocatable code later.
5532         * mini-exceptions.c: Add a set of functions to query the various 
5533         runtime-generated exception functions.
5535         * mini.c mini-exceptions.c: Use the newly added functions instead of the
5536         mono_arch_.. () functions.
5537         
5538 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
5540         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
5542         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
5544         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
5545         (mini_get_vtable_trampoline): Ditto.
5547         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
5548         code in the AOT case by returning the code size and a list of relocations to
5549         the caller.
5551         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
5553 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
5555         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
5556           clean the stack.
5558         Contributed under MIT/X11 license.
5560 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
5562         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
5563         so the buffer size can be computed correctly. Fixes #404735.
5565         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
5566         normally as cfg->debug_info is already freed.
5568 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
5570         * mini-amd64.c: For calls returning vtypes in registers, don't store
5571         the return address on the stack, instead allocate a separate local for
5572         it. Fixes #404729.
5574 2008-07-05  Mark Probst  <mark.probst@gmail.com>
5576         * mini-trampolines.c, mini.h: Add an argument to
5577         mono_create_jit_trampoline_in_domain() for turning off the adding
5578         of the sync wrapper.
5580         * mini.c: Use the JIT trampoline without sync instead of
5581         ldftn_nosync in static RGCTX invoke wrappers so that the call can
5582         be patched.
5584 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5586         * driver.c: Turn on GSHARED optimization by default.
5588 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
5590         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
5591         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
5593         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
5594         create a variant of the generic trampoline code callable from AOTed trampolines.
5596         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
5597         trampoline code callable from AOTed trampolines.
5599         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
5601 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5603         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
5604         pass-through manner.
5606         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
5607         and don't fail sharing for them anymore.
5609         * mini-exceptions.c: Handle exceptions in shared generic methods.
5611         * generic-sharing.c: When checking the context of a generic
5612         method, also check its class's context.  Don't treat wrappers as
5613         sharable.
5615         * mini-trampolines.c: Some code factored out to
5616         metadata/generic-sharing.c.  Handle the MRGCTX case.
5618         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
5619         we must deal with the method being of another instantiation of the
5620         class.  Add static rgctx invoke wrappers to generic methods.
5622 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5624         * mini.c: Provide all jit infos of generic shared methods with a
5625         generic jit info.
5627         * mini-exceptions.c: Handle the new situation that a generic info
5628         might be available, but not info about the this/vtable/mrgctx
5629         variable.
5631 2008-07-03  Mark Probst  <mark.probst@gmail.com>
5633         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
5634         generic methods.
5636 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
5638         * dominators.c (check_dominance_frontier): Fix a warning.
5640         * mini.h: Add some missing prototypes.
5642         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
5644         * driver.c (mono_jit_init_version): Correct the comments since the first
5645         argument should be the name of the root domain, not a filename.
5647         * aot-runtime.c (make_writable): Error out if this is called while running
5648         with --aot-only.
5649         (load_aot_module): Ditto.
5651         * aot-compiler.c: Really fix the computation of method indexes.
5653         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
5654         optimizations as this is no longer called frequently.
5656         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
5657         method and the invoke impl code and pass it to the delegate trampoline instead of
5658         just the delegate class.
5660 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
5662         * aot-compiler.c: Fixup the computation of method indexes.
5663         (add_wrappers): Create the base methods of the runtime invoke wrappers using
5664         the method builder infrastructure.
5666         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
5667         has no header.
5669         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
5670         mode, load the method right away instead of creating a trampoline.
5672         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
5674         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
5675         some checks a bit.
5677 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
5679         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
5680         (mono_aot_load_method): Use method_index instead of method->token.
5682         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
5683         can handle icalls etc. properly.
5685         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5687         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
5689         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
5690         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
5691         JIT_ICALL_ADDR patch type.
5693         * patch-info.h: Add JIT_ICALL_ADDR patch type.
5695         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
5696         request flag.
5697         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
5699         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
5701 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
5703         * mini.c: Use domain->jit_code_hash_lock for controlling access to
5704         domain->jit_code_hash.
5706 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
5708         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
5710 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
5712         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
5713         get_this_arg_from_call, let it compute it when needed.
5715         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
5716         gsctx from code only when needed.
5718         * mini-trampolines.c (get_generic_context): Rename this to 
5719         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
5720         it can be called by the arch backends.
5722         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
5724 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
5726         * driver.c (mono_main): Add experimental --aot-only command line option.
5728         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
5729         set.
5731 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
5733         * driver.c (DllMain): Remove mono_module_handle.
5735         Contributed under MIT/X11 license.
5737 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
5739         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
5740         for emitting methods which are not in the source assembly. Detect and report
5741         failure of assembling+linking.
5742         
5743         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
5745         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
5747 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
5749         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
5751 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
5753         * mini.h: Remove some obsolete prototypes.
5755         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
5757 2008-06-24  Mark Probst  <mark.probst@gmail.com>
5759         * mini.c (get_object_generic_inst): Variable-sized arrays are not
5760         supported by Visual Studio, so use alloca().
5762 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
5764         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
5765         Fixes #402585.
5767 2008-06-23  Mark Probst  <mark.probst@gmail.com>
5769         * mini.c: Fail sharing of a generic method if it contains an open
5770         catch clause (because we don't pass MRGCTXs yet).
5772 2008-06-23  Mark Probst  <mark.probst@gmail.com>
5774         * mini.c: When compiling a method with generic sharing, insert the
5775         method instantiated with an all-Object generic context into the
5776         jit info table, instead of the context of the first instantiation
5777         of the method we happen to compile.
5779 2008-06-18  Martin Baulig  <martin@ximian.com>
5781         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
5782         `major_version' and `minor_version'.
5784 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5786         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
5787         mono_method_is_generic_sharable_impl() takes an additional
5788         argument specifying whether to treat type variables as reference
5789         types.
5791 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5793         * mini.h: Removed obsolete prototypes.
5795 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5797         * mini.c: Don't fail generic sharing for initobj and sizeof - we
5798         already handle them.
5800 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5802         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
5803         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
5804         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
5805         tramp-x86.c: Added a MonoGenericContext* argument to
5806         mono_arch_get_unbox_trampoline() so that it can call other
5807         functions which require it.
5809 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5811         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
5812         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
5813         mono_arch_get_this_arg_from_call() takes a
5814         MonoGenericSharingContext* as well.
5816 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5818         * mini.c: Factor out code for emitting unbox into emit_unbox() and
5819         implement generic sharing of unbox.
5821 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5823         * mini.c: Don't compute the vtable to determine whether a field is
5824         special static, because it might not work for open types.
5826 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5828         * mini.c: Removed the unused token_type and token_source arguments
5829         from get_runtime_generic_context_ptr().
5831 2008-06-17  Marek Habersack  <mhabersack@novell.com>
5833         * mini.c (ADD_BINOP): fix the build
5835 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
5837         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
5838         a widening op.
5840 2008-06-16  Mark Probst  <mark.probst@gmail.com>
5842         * mini.h: Removed class relations enum that's not used anymore.
5844 2008-06-16  Mark Probst  <mark.probst@gmail.com>
5846         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
5848         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
5849         the lazy fetch trampoline access code.
5851 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
5853         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
5855 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
5857         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
5859         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
5861         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
5863 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5865         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
5866         intrinsics.
5868         * mini-ops.h: Add MIN/MAX_UN opcodes.
5870         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
5871         intrinsics.
5873         * basic-math.cs: Add more min/max tests.
5875         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5877 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5879         * mini.c: Small fix in the prologue of emit_castclass.
5881 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5883         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5885         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
5886         do not work even for unsigned types. Fixes #400014.
5888         * basic-math.cs: Add regression tests for unsigned Min/Max.
5890 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5892         * mini.c: Added additional context_used argument to several
5893         functions, which will be needed for sharing generic methods.  Use
5894         GET_RGCTX macro wherever appropriate.  Declare only one
5895         context_used in mono_method_to_ir().
5897 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5899         * mini.c, generic-sharing.c: Removed generic class relations.
5901         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
5902         functions due to MRGCTX changes.
5904 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5906         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
5907         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
5908         with calculated IMT.
5910         * mini.c: Generic sharing of calls via generic interfaces.
5912         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
5913         generic method with non-constant MonoGenericContext*.  Instead,
5914         the context is taken out of the method itself.
5916 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5918         * mini.c: Generic sharing of ldvirtftn.
5920 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5922         * mini.c: Generic sharing of ldftn.
5924 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5926         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
5928 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5930         * mini.c: Generic sharing of the special case of ldtoken followed
5931         by a call to GetTypeFromHandle.
5933 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5935         * mini.c: Generic sharing of box for nullable types.
5937 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5939         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
5940         are passed on the stack. Fixes #324807.
5942 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
5944         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
5945         for the ArgValuetypeAddrInIReg case.
5947         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
5948         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
5950         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
5951         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
5952         local variable and pass the local variable by reference to the called method.
5953           
5954         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
5955         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
5957         Contributed under MIT/X11 license.
5959 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
5961         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
5963         * debug-mini.c (mono_debug_print_vars): Release memory after printing
5964         everything.
5966 2008-06-10  Martin Baulig  <martin@ximian.com>
5968         * debug-mini.c
5969         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
5971 2008-06-09  Kornél Pál  <kornelpal@gmail.com>
5973         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
5974         possible error when no arguments are passed.
5976         Contributed under MIT/X11 license.
5978 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
5980         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
5981         where the file name is NULL.
5983 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
5985         * mini.c: Fix s390 build.
5987 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
5989         * trace.c (mono_trace_parse_options): Fix warnings.
5991         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
5993 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5995         * mini.c (remove_block_if_useless): Avoid printing the method name.
5996         
5997         * mini.c: Remove needless setting of ins->cil_code which is now done by 
5998         MONO_INST_NEW.
6000         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
6001         LMF. Not yet used.
6003         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
6004         translated code after it has been patched.
6006 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
6008         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
6009         avoid problems during code patching on SMP systems.
6010         (emit_call): Avoid adding a patch info which is already added by 
6011         emit_call_body.
6012         (mono_arch_emit_exceptions): Ditto.
6014 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
6016         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
6017         MONO_TYPE_ISSTRUCT already checks for it.
6019 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
6021         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
6022           structs with floats on Winx64 the float registers are not used.  
6023           The integer registers are always used..
6024         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
6025           only one register will be used and only if the size of the struct 
6026           is 1,2,4, or 8 bytes.
6028         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
6029           to work for Winx64.
6031         Contributed under MIT/X11 license.
6033 2008-06-05  Martin Baulig  <martin@ximian.com>
6035         * debug-debugger.c (debugger_lookup_class): Also call
6036         mono_class_setup_methods() here; we're only called from RTI.
6038 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
6040         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
6041         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
6042         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
6043         Post-process object files and add dtrace-generated object, if necessary.
6045         Contributed under MIT/X11 license.
6047 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6049         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
6050         element class.
6052         * mini.c: Generic sharing for unbox.any and castclass.
6054 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6056         * mini.c: Ignore tailcall prefix in shared generic code and when
6057         doing calls which require a vtable/rgctx argument.
6059 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6061         * mini.c: Don't free the JIT info.
6063         * driver.c: Changes in the JIT info table testing code.
6065 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
6067         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
6068         interruption. Fix some warnings.
6070         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
6071         interruption_checkpoint.
6073 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6075         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
6076         from embedding applications.
6078 2008-06-02  William Holmes  <billholmes54@gmail.com>
6080         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
6081           reserving 32 bytes on the stack when making calls. 
6083         Contributed under MIT/X11 license.
6085 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
6087         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
6088         the linear IL branch.
6090         * driver.c: Print out more information for --version on arm.
6092 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
6094         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
6095         bb_exit instead, since out of line bblocks might not actually be emitted
6096         out-of-line.
6097         
6098         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
6099         maximum epilog size for out of line bblocks if tracing is enabled.
6101         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
6103 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
6105         * arrays.cs: Regression tests for allocating arrays with negative sizes.
6107 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
6109         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
6110         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
6111         opcodes.
6113 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
6115         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
6116         the 'value' to store is a constant.
6118         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
6120         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
6121         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
6123 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
6125         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
6126         for accessing method->generic_container.
6128 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
6130         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
6131         
6132         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
6134         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
6136         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
6137         fails.
6139 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
6141         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
6143         * mini.c: Handle the case when mono_class_vtable () fails.
6145 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
6146         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
6147         the stat profiler.
6149 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6151         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
6152         together with domain sharing.
6154 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6156         * mini.c: Treat callvirts to final methods like non-virtual calls
6157         when doing generic sharing, i.e. look them up in the runtime
6158         generic context.
6160 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6162         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
6163         with computed types (for generic sharing).
6165         * mini.c: Generic sharing for mkrefany and refanyval.
6167 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
6169         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
6170         possible.
6172         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
6173         the generic sharing code.
6174         
6175         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
6176         when needed.
6178 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
6180         * mini.h: Remove the declaration of mono_aot_init_vtable ().
6182 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
6184         * driver.c: updated copyright date
6186 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
6188         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
6189         needed.
6191 2008-05-19  Martin Baulig  <martin@ximian.com>
6193         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
6194         pointing to the new `_mono_debug_using_mono_debugger' variable.
6196         * driver.c
6197         (mono_main): Check mono_debug_using_mono_debugger() rather than
6198         the `MONO_INSIDE_MDB' environment variable to check whether we're
6199         inside the debugger.
6201 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
6203         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
6204         argument.
6206 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
6208         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
6210         * mini.c: Added mini_assembly_can_skip_verification. This
6211         function checks if the assembly requested to skip verification. 
6212         Fixes part of #387274.
6214 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6216         * mini.c (mini_get_method): Disable the check for open generic classes when
6217         using generic sharing.
6219         * generics.cs: Add a test for #387034.
6221         * mini.c (mini_get_method): Check whenever the method class is an open generic
6222         type, and return NULL in that case, causing a verification error. Fixes
6223         #384123.
6225 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6227         * driver.c (mono_main): Revert r102623. The right
6228         thing to do is to enable the verifier under verifiable
6229         unless a --security flag was passed.
6231         We need this non-trivial behavior for --verify-all otherwise
6232         mcs-compileall won't be able to use it. As it needs everything to
6233         be verified under validil.
6235 2008-05-06  Martin Baulig  <martin@ximian.com>
6237         Fix #383749.
6239         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
6240         (mono_debugger_thread_cleanup): Likewise.
6241         (mono_debugger_extended_notification): Likewise.
6243 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6245         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
6246         against both inflated and non-inflated methods. We need to check against the
6247         generic definition for cases where the instantiated method is not visible.
6248         We need to check against the inflated types for cases where the instantiation
6249         changes any super type. This fixes #382986.
6251         Note that this doesn't need to be applied to other parts of mono_method_to_ir
6252         that check for visibiliy as generic params only appears as the type subject
6253         of tokens on call opcodes. Field manipulation and ldftn must always
6254         target an exact type.
6256 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6258         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
6259         if no related --security flag is passed.
6261 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6263         * mini-arch.h: Prepare support for ppc64.
6265         Contributed under MIT/X11 license.
6267 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6269         * aot-runtime.c: Prepare support for ppc64.
6271         Contributed under MIT/X11 license.
6273 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6275         * mini-ops.h: Prepare support for ppc64.
6277         Contributed under MIT/X11 license.
6279 2008-05-04  Andreas Färber  <andreas.faerber@web.de>
6281         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
6283         Contributed under MIT/X11 license.
6285 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
6287         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
6288         assemblies, since aot_name is not a full path, causing us to load MS.NET 
6289         assemblies on windows.
6291 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
6293         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
6294         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
6295         * main.c: Use UTF-8 encoded command line instead of Windows default code
6296         page on Windows to support Unicode.
6297         * driver.c (DllMain): New function for mixed-mode assembly support.
6298         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
6299         export __stdcall functions without decoration.
6301         Contributed under MIT/X11 license.
6303 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6305         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
6306         saving it very early.
6308 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6310         * mini.h, mini.c: Lots of code for accessing the old RGCTX
6311         deleted.  The only way to access the new RGCTX is via the
6312         trampline.
6314         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
6315         vtable instead of the RGCTX to static methods.
6317         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
6318         accessing the new RGCTX.
6320         * generic-sharing.c: There is no separation between self, type
6321         arguments and other types in the RGCTX anymore.
6323 2008-04-25  Jonathan Chambers <joncham@gmail.com>
6325         * mini-amd64.c (add_general): Remove previous stack adjustment.
6326         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
6327         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
6328         for 32 bytes of stack space reserved for all calls.
6329         
6330         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
6331         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
6332         adjustment.
6333         
6334         Code contributed under MIT/X11 license.
6336 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
6338         * mini.c (mini_method_verify): Only verify non-inflated methods, check
6339         against the root definition, peeling out method and type instantiations.
6340         Cache verify success results, code that fails verification is still
6341         checked multiple times.
6343 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6345         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
6347 2008-04-23  Jonathan Chambers <joncham@gmail.com>
6349         * mini-amd64.c (add_general): Always increment stack on Win64.
6350         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
6351         on Win64.
6352         
6353         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
6354         stack based argument handling on Win64.
6355         
6356         Code contributed under MIT/X11 license.
6358 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
6360         * Makefile.am (version.h): Add support for git-svn.
6362 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6364         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
6365         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
6366         avoiding allocations and libc functions which might deadlock.
6367         
6368         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
6369         'no-gdb-backtrace' option is set.
6371         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
6373         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
6375 2008-04-21  Martin Baulig  <martin@ximian.com>
6377         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
6378         and `get_lmf_addr'; `notification_address' is no longer a pointer.
6380 2008-04-21  Martin Baulig  <martin@ximian.com>
6382         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
6383         `thread_vtable', `event_handler_ptr' and `event_handler'.
6385 2008-04-21  Martin Baulig  <martin@ximian.com>
6387         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
6388         allows delayed initialization of the `executable_code_buffer' when
6389         attaching.
6391 2008-04-21  Martin Baulig  <martin@ximian.com>
6393         * mini.h (mono_debugger_create_notification_function): Removed.
6394         * tramp-*.c (mono_debugger_create_notification_function): Removed.
6396         * mdb-debug-info64.s
6397         (MONO_DEBUGGER__notification_function): Added this in the .text section.
6399         * mdb-debug-info32.s
6400         (MONO_DEBUGGER__notification_function): Added this in the .text section.
6402         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
6403         currently only works on x86 and x86_64, so don't create it on ppc.
6405 2008-04-21  Martin Baulig  <martin@ximian.com>
6407         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
6409         * mini.c
6410         (mini_method_compile): In the fp elimination check, check
6411         `debug_options.mdb_optimizations' in addition to
6412         mono_debug_using_mono_debugger().       
6414         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
6415         disable some JIT optimizations which are only disabled when
6416         running inside the debugger.
6417         Added `--help-debug' option to describe the debugging options.
6418         (parse_debug_options): New static function to parse the `--debug'
6419         options, so we can easily add more stuff in future.
6421 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
6423         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
6424         the method has no body.
6426 2008-04-19  Jonathan Chambers <joncham@gmail.com>
6428         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
6429         assembly is not allowed in MSVC 64-bit compiler. 
6430         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
6431         as we get floating point exceptions everywhere.
6432         
6433         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
6434         correctly align arguments for call to throw_exception.
6435         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
6436         
6437         Code contributed under MIT/X11 license.
6439 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
6441         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
6443 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
6445         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
6447         * mini-amd64.c (NEW_INS): Set cil_code.
6449         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
6450         from mini-amd64.c so all debugger related logic is in one place.
6452         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
6453         later won't have a random ip assigned to them.
6455 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
6457         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
6458         the arch specific function initializes code_size.
6459         (mono_create_delegate_trampoline): Ditto.
6461         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
6462         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
6463         platforms.
6465         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
6466         running under the debugger.
6468         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
6469         debugger.
6471         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
6472         debugger. Also move the disabling of optimizations here from driver.c.
6473         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
6474         debugger.
6476         * mini.h (MonoCompile): Add a few new flags.
6478 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
6480         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
6481         so the cil_code field of created MonoInst's is properly set.
6482         (mini_select_instructions): Ditto.
6484         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
6485         (MONO_INST_NEW_CALL): Ditto.
6487         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
6488         in many places so the ins->cil_code field is properly initialized.
6490         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
6491         place.
6493 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6495         * mini.c (mini_method_compile): Print a different message when compiling a 
6496         shared method.
6497         
6498         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
6499         > 1.
6501 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
6503         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
6504         SSE2 instructions.
6506         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
6507         
6508 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
6510         * mini.c (handle_stack_args): Make this return void since its return value was
6511         never used. Also set cfg->unverifiable for invalid IL instead of calling
6512         G_BREAKPOINT ().
6514 2008-04-10  Mark Probst  <mark.probst@gmail.com>
6516         * mini.c: Make sure "this" is live in catch clauses with type
6517         variables in shared generic code.
6519 2008-04-08  Mark Probst  <mark.probst@gmail.com>
6521         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
6522         generic_class_is_reference_type() to ensure the proper behaviour
6523         when sharing generic code and the type in question is a type
6524         argument.
6526 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6528         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
6529         race conditions when printing thread dumps. Fixes #377738.
6531 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
6532         
6533         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
6534         shows up when both MonoInst arguments can cause aliasig.
6535         There is likely no way in the current JIT to trigger this problem, but
6536         it showed up in the development of generics sharing, when in a new
6537         opcode both args of an OP_GROUP can be aliases (addresses of a local).
6538         When the generics sharing code will be committed, its tests will be
6539         valid also for this bug.
6541 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6543         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
6544         PATCH_INFO_METHOD.
6546         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
6547         NULL.
6549 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
6551         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
6552         use a more detailed exception message for InvalidCastException.
6554         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
6556         * driver.c (mono_main): Add --debug=casts option to turn on better 
6557         InvalidCastException message details.
6559         * mini.c (mini_get_debug_options): New helper function to return the address of
6560         the debug_options variable.
6562         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
6563         the jit_tls TLS variable.
6565         * mini.c (mono_jit_tls): New TLS variable.
6567         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
6568         option is used.
6570 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
6572         * mini.h: Removed verifer related stuff. This code was moved to verify.c
6574         * mini.c: Removed verifer related stuff, code moved to verify.c.
6576         * driver.c: Using code from verify.c instead of mini.c.
6578 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
6580         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
6581         longer valid.
6583 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
6585         * mini.c (check_for_method_verify): Enabling verification of
6586         corlib if mono_verify_all is set. Bugs in the verifier preventing that
6587         have been fixed.
6589 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
6591         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
6592         caller saved registers as well.
6593         
6594         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
6595         saved registers as well.
6597 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
6599         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
6601         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
6602         code.
6604 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
6606         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
6607         to get_call_info.
6608         (get_call_info): Take a gsctx argument instead of 'cfg'.
6610 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6612         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
6613         mono_verify_all is set.
6615         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
6617         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
6619 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6621         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
6622         an exception.
6624         * driver.c mini.c mini.h: Add a --verify-all development option to test the
6625         verifier and the code generated by the compiler.
6627 2008-03-25  Mark Probst  <mark.probst@gmail.com>
6629         * mini.c: Generic sharing of the non-nullable case of the box
6630         instruction.
6632 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
6634         * inssel.brg: Fix the build.
6636         * iltests.il.in: Add a test for lconv.ovf.u8.un.
6638 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
6640         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
6641         Array:Address. Fixes #372410.
6643         * iltests.il.in: New tests for readonly prefix.
6645 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
6647         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
6648         mini-trampolines.c.
6650         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
6651         mini-exceptions.c.
6653         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
6654         
6655         * mini.c (mono_decompose_op_imm): New helper function.
6657         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
6658         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6659         return value.
6661         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
6662         mono_arch_output_basic_block. Fix warnings.
6664         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
6665         for now.
6667 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
6669         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
6670         since the extra frame is now detected automatically inside the loop.
6672         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
6673         opts which are now in mono_peephole_ins ().
6674         
6675         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
6677         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
6678         frames and skip duplicate managed-to-native frames. Fixes #367665.
6680         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6681         opts which are now in mono_peephole_ins ().
6682         (mono_arch_peephole_pass_2): Ditto.
6684         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
6686         * mini-codegen.c (mono_peephole_ins): New helper function containing the
6687         arch independent peephole optimizations.
6689         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6690         opts which are now in mono_peephole_ins ().
6692         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
6693         
6694         * mini-s390.c (mono_arch_output_basic_block): Fix build.
6696         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
6697         pattern.
6699         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
6700         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
6701         opcode. 
6703 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
6705         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
6706         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6707         return value.
6709         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
6710         mono_arch_output_basic_block. Fix warnings.
6712 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6714         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6715         conv.ovf.u.un.
6717 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6719         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6720         conv.ovf.u.un.
6722         * iltests.il: Add new tests.
6724 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6726         * mini.c: Removed Windows version macros.
6728 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6730         * generic-sharing.c: Put reflection types in the extensible part
6731         of the runtime generic context.
6733         * mini.c: Generic sharing of the GetTypeHandle special case of the
6734         ldtoken instruction.
6736 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6738         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
6740         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
6741         
6742         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
6743         consistency with the other version on the linear IR branch.
6745         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
6747         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
6749         * iltests.il.in: Add new tests.
6751 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
6753         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
6755         * iltests.il.in: Add new tests.
6757 2008-03-19  Mark Probst  <mark.probst@gmail.com>
6759         * mini.c: Two variables with the same name were declared in
6760         nesting contexts and one wasn't initialized.  Fixed.
6762 2008-03-19  Mark Probst  <mark.probst@gmail.com>
6764         * mini.c: Generic sharing of the initobj instruction.
6766 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6768         * mini.c: make the test to optimize ldtoken from typeof() more
6769         precise.
6771 2008-03-18  Mark Probst  <mark.probst@gmail.com>
6773         * mini.c: Generic sharing of the initobj instruction for reference
6774         types.
6776 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6778         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
6779         the mono_breakpoint_clean_code() code to perform bound checks.
6781 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
6783         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
6784         mono_arch_patch_callsite() to include the start of the managed method
6785         to be able to perform bound checks.
6787 2008-03-17  Mark Probst  <mark.probst@gmail.com>
6789         * mini.c: Generic sharing for the isinst instruction.
6791 2008-03-17  Mark Probst  <mark.probst@gmail.com>
6793         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6794         inssel-long32-mips.brg: Added opcodes for doing indirect calls
6795         with the runtime generic context argument.
6797         * mini.c: Share calls to several types of unsharable methods by
6798         putting the address of the method code in the runtime generic
6799         context and doing an indirect call.
6801         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6802         to switches.
6804 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6806         * generic-sharing.c: Change due to a change in the runtime genric
6807         context API.
6809 2008-03-15  Martin Baulig  <martin@ximian.com>
6811         * tramp-x86.c
6812         (mono_arch_nullify_class_init_trampoline): Add call to
6813         mono_breakpoint_clean_code() to make things work when running
6814         inside the debugger.
6816         * tramp-amd64.c
6817         (mono_arch_nullify_class_init_trampoline): Add call to
6818         mono_breakpoint_clean_code() to make things work when running
6819         inside the debugger.
6821 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6823         * inssel-long.brg (reg): Fix 64 bit build.
6825 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6827         * mini.c, mini.h: Share static generic code by passing it an
6828         implicit argument pointing to the runtime generic context.
6830         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6831         inssel-long32-mips.brg: New opcodes for calling shared static,
6832         which need to be passed the runtime generic context.
6834         * mini-amd64.c, mini-x86.c: Save the runtime generic context
6835         argument on the stack in the prologue if needed.  New function for
6836         finding the runtime generic context argument from the registers
6837         saved by the trampoline.
6839         * mini-amd64.h, mini-x86.h: Specify which register to use for the
6840         runtime generic context argument.
6842         * tramp-amd64.c: Also restore the register used for the runtime
6843         generic context argument.
6845         * mini-trampoline.c: Resolve shared static calls by consulting the
6846         runtime generic context via the new argument.
6848         * generic-sharing.c: Add an argument to sharability-checking
6849         functions that specifies whether type variables should be treated
6850         as sharable type arguments.
6852         * inssel-x86.brg: Removed a superfluous, buggy rule.
6854         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6855         to switches.
6857 2008-03-14  Martin Baulig  <martin@ximian.com>
6859         * debug-debugger.c (main_thread_handler): Call
6860         mono_runtime_run_main() without sending any notifications.
6862         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
6864 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6866         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
6868 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6870         * tramp-x86.c: Fixed register restore offsets in the trampoline
6871         code for ECX and EDX.
6873 2008-03-12  Geoff Norton  <gnorton@novell.com>
6875         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
6876         different ucontext_t implementations.
6877         * exceptions-arm.c: Use the above defines to get exceptions working on 
6878         iPhone (based on a patch by Luke Howard lukeh@padl.com)
6879         * mini-arm.c: Implement iPhone icache support (based on a patch by
6880         Luke Howard lukeh@padl.com)
6882 2008-03-12  Mark Probst  <mark.probst@gmail.com>
6884         * mini.c: Enable generic sharing of calls to non-static
6885         non-interface non-generic non-value-type methods.
6887         * mini-trampolines.c: Resolve calls from shared generic code.
6889 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
6891         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
6893         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
6895 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
6897         * mini.c: some fixes for the AOT compiler.
6899 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6901         * cpu-amd64.md: Add clob:1 to some float opcodes.
6903 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
6905         * mini.h: Added MiniVerifierMode enumeration.
6907         * mini.c: Added mini_verifier_set_mode to control
6908         the usage of the new verifier.
6910         * mini.c (mono_method): Integrated the new verifier.
6912         * driver.c: Extended --security option with validil and
6913         verifiable options to activate the new verifier.
6915 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6917         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
6918         optimization to ctors taking 0 or 2 arguments too.
6920         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
6921         a bit.
6923         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
6925         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
6927 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6929         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
6930         non-aot case as well.
6932         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
6934         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
6935         changes.
6937         * aot-compiler.c (encode_patch): Ditto.
6939         * mini.h (G_MININT32): Fix the definition of this.
6941 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
6943         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
6945         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
6947 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6949         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
6950         methods returning vtypes in registers.
6951         (mono_arch_allocate_vars): Ditto.
6953         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
6955         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
6957         * generics.cs: Add a test from the linear IR branch.
6959         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
6961         * mini.c (inline_method): Cache failed inline attempts.
6963 2008-03-04  Mark Probst  <mark.probst@gmail.com>
6965         * mini.c: For shared methods of generic classes put the location
6966         of "this" into the MonoGenericJitInfo.
6968         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
6969         register out of a MonoContext by register number.  Add the generic
6970         sharing context as an argument to mono_arch_find_this_argument().
6972         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
6973         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
6974         for new arch function.
6976         * mini-exception.c: Handle open exception clauses in shared
6977         generic code.
6979         * mini-trampolines.c: Supply additional argument to
6980         mono_arch_find_this_argument().
6982 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6984         * Makefile.am (regtests): Run the bench.exe tests last.
6986 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
6988         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
6989         a bit.
6991 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
6993         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
6994         with MS.
6996         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
6997         
6998         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
7000         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
7001         whose class has no cctor.
7003         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
7005 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
7007         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
7008         unverified.
7010 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
7012         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
7013         to be in sync with the code on the linear IR branch.
7015         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
7017         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
7019 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
7021         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
7023         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
7025         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
7027         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
7029         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
7030         
7031         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
7032         body.
7034 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
7036         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
7037         OP_LOADR4_MEMBASE emission.
7039         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
7040         (mono_spillvar_offset_float): Ditto.
7042         * mini-mips.c (mono_arch_emit_prolog): Ditto.
7044         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
7045         emission.
7047         * basic-long.cs: Add regression tests for them.
7049         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
7050         use.
7051         (mono_arch_allocate_vars): Fix representation of single-precision float
7052         argument.
7053         (mono_arch_output_basic_block): Ditto.
7055         * inssel-mips.brg: Ditto, remove duplicate items.
7057         * mini-mips.c (emit_load_volatile_arguments): New function to handle
7058         arguments of tail calls as on other platforms.
7059         (mono_arch_output_basic_block): Handle tail calls.
7061         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
7062         register.
7064         * objects.cs (test_5_pass_static_struct): Add test for it.
7066         Contributed under MIT/X11 license.
7068 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
7070         * Makefile.am: Use gmcs for compiling the regression tests.
7072         * *.2.cs *.2.il: Rename to *.cs and *.il.
7074 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
7076         * regalloc.h: Make the vassign array smaller.
7078         * mini.c (mini_method_compile): Remove an unused field in cfg.
7080         * mini-codegen.c: Add a bunch of micro optimizations.
7082 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
7084         * regalloc.h: Remove some unused fields.
7086 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
7088         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
7090         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
7092 2008-02-22  Mark Probst  <mark.probst@gmail.com>
7094         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
7096         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
7097         trampoline: Fetch an entry from the runtime generic context.  If
7098         it's NULL, jump to the actual trampoline to fill the runtime
7099         generic context.  Otherwise, return it.
7101         * mini.c: Call the lazy fetch trampoline to get entries out of the
7102         runtime generic context.
7104         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
7105         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
7106         tramp-sparc.c: Stubs for the lazy fetch trampoline.
7108 2008-02-21  Mark Probst  <mark.probst@gmail.com>
7110         * mini.c: Fetch data out of the extensible part of the runtime
7111         generic context instead of calling a helper function.
7113         * generic-sharing.c: Some functions moved into
7114         metadata/generic-sharing.c.  Helper function for fetching other
7115         types now checks and asserts against extensible rgctx (just for
7116         debugging purposes - the helper function isn't called anymore
7117         unless for debugging).
7119 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
7121         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
7122         for tail calls up to the point that the tests in iltests.exe run. Also add a
7123         dummy CKFINITE implementation.
7124         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
7125         needed for trampoline LMF frames.
7127         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
7128         trampoline LMF frames.
7130 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
7132         * mini.c (inline_method): clean any pending loader error when inlining fail.
7133         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
7135 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
7137         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
7139         * aot-runtime.c (decode_patch_info): Ditto.
7141         * mini.c (mono_resolve_patch_target): Ditto.
7142         
7143         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
7144         icall wrappers.
7146         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
7147         
7148         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
7149         if it references an icall address.
7151 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
7153         * cpu-s390x.md: Remove some more unused opcodes.
7154         
7155         * cpu-s390x.md: Remove some unused opcodes.
7157         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
7158         mono_op_imm_to_op ().
7160         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
7161         instead of a switch statement.
7162         
7163         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
7164         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
7166         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
7167         
7168         * mini-codegen.c: Remove unused mono_regstate2_... functions.
7170         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
7171         -1.
7173 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
7175         * driver.c (mono_main): Improve error reporting when an assembly cannot be
7176         opened. Fixes #362607.
7178         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
7180         * iltests.il.in: Add a test for static methods in interfaces.
7182 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
7184         * genmdesc.c (build_table): Fix a crash on older glib versions.
7186         * cpu-sparc.md: Remove some unused opcodes.
7187         
7188         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
7189         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
7191         * cpu-amd64.md: Remove some unused opcodes.
7193         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
7194         like the other opcodes.
7196 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
7198         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
7200         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
7202         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
7203         variables 'cfg' instead of 'm' for consistency.
7205         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
7207         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
7208         argument holding the vtype return address, to avoid the ambigious use of
7209         cfg->ret for this purpose.
7211         * mini.c (NEW_RETLOADA): Use vret_addr if set.
7213         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
7214         
7215         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
7216         new mono_print_ins () function which only takes one argument.
7218 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
7220         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
7221         macro arguments.
7223 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
7225         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
7227         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
7229         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
7230         opcodes and other small changes.
7232         * mini-ops.h: Add some new opcodes from the linear IR branch.
7234         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
7236         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
7237         opcodes, use the REG_MEMBASE opcodes instead.
7238         
7239         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
7240         opcodes, use the REG_MEMBASE opcodes instead.
7241         
7242         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
7243         linear IR branch.
7245         * mini.c (mono_op_imm_to_op): New helper function.
7247         * mini-ops.h: Add some opcodes from linear IR branch.
7249 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
7251         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
7252         <tsv@solvo.ru>.
7254 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
7256         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
7257         OP_ICONV_TO_R4/R8.
7259         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
7261 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
7263         * aot-compiler.c (emit_method_code): Add an assert.
7265         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
7266         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
7267         methods.
7269 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
7271         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
7272         some load/store opcodes so they are consistent. 
7273         (mono_arch_emit_prolog): Simplify some code.
7275         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
7277         * objects.cs: Add tests for large argument offsets on ARM.
7279         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
7280         stack offsets. Fixes #359651.
7282         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
7284         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
7286         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
7288         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
7290         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
7292         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
7293         rid of CEE_CONV_R_UN.
7295         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
7297 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
7299         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
7301         * mini.c (mono_normalize_opcodes): Add some more opcodes.
7303         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
7305         * cpu-amd64.md: Remove some unused opcodes.
7307         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
7309         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
7311         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
7312         arch specific functions for its parts. Call the peephole pass after local
7313         regalloc so the prolog can compute a more accurate max_offset.
7314         
7315         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
7316         the corresponding OP_I/OP_L opcodes.
7318         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
7320         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
7322 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7324         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
7325         as they are handled in mini.c.
7327         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
7328         
7329         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
7330         case since it is handled in mini.c.
7332         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
7334         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
7336         * *.c: Use the new opcodes in the IR and back end code.
7338         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
7340         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
7342 2008-02-06  Mark Probst  <mark.probst@gmail.com>
7344         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
7345         an assert because it has a race condition.
7347 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7349         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
7351         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
7353         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
7355         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
7356         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
7358 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
7360         * cpu-amd64.md (move): Correct the maximum size of move.
7362 2008-02-05  Mark Probst  <mark.probst@gmail.com>
7364         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
7365         the generic class init trampoline to return quickly if the class
7366         is already inited.
7368 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
7370         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
7371         issues where an 32 bit callsite cannot be patched by a 64 bit address.
7373 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
7375         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
7376         branch.
7378 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
7380         * objects.cs: Add some soft-float tests.
7382         * mini.c: Fix a couple more soft-float issues.
7384         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
7386         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
7387         avoid a REX prefix.
7389 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
7391         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
7392         exception happens while compiling a virtual method.
7394 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
7396         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
7397         
7398         * mini-sparc.c: Fix build.
7400         * mini-sparc.c (get_call_info): Add support for generic sharing.
7402         * mini-exceptions.c: Add a FIXME.
7404 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
7406         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
7407         altstack handling code.
7409         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
7410         
7411         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
7413         * mini-s390.c: Add support for generic sharing.
7415         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
7416         Fix CAS on s390.
7417         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7419         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
7421         * mini-s390x.c: Add support for generic sharing.
7422         
7423         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
7424         Fix CAS on ia64.
7425         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7427         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
7428         can be used since it takes a 16 bit signed immediate.
7430         * inssel-s390x.brg: Fix OP_SETRET.
7432         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
7434         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
7436         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
7438         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
7440         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
7441         in one place.
7443         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
7444         stuff.
7446         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
7447         of the unused mono_arch_patch_delegate_trampoline stuff.
7449 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
7451         * basic-long.cs: Move the fp related tests to basic-float.cs.
7453         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
7455         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
7457         * basic-calls.cs: Add a test for proper float argument passing.
7459         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
7460         if the context corresponds to an exception received through a signal.
7462         * exceptions.cs: Add a test for nullref handling at the start of a try
7463         clause.
7465         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
7467         * jit-icalls.c (mono_break): New JIT icall.
7469         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
7471         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
7473 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
7475         * cpu-*.md: Get rid of unused opcodes.
7477         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
7479         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
7480         by all platforms.
7482         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
7483         define.
7485         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
7486         the arch independent trampoline code in mini-trampolines.c.
7488         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
7490         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
7492         * mini-s390.h: Remove an unused define.
7493         
7494         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
7495         the arch independent trampoline code in mini-trampolines.c.
7497         * mini-arm.c (mono_arch_emit_prolog): Fix build.
7499 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
7501         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
7503         * mini-s390.c (mono_arch_emit_prolog): Fix build.
7505         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
7507         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
7509         * cpu-amd64.md: Use smaller sizes for int opcodes.
7511         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
7513         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
7514         objects.cs.
7516         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
7517         debugging.
7519         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
7520         instead of though a pointer to save an indirection when accessing elements of
7521         the array.
7523         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
7524         some typos.
7525         (NOT_IMPLEMENTED): New helper macro.
7526         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
7527         of a bb.
7529         * *.c: Use the new helper macro.
7531 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
7533         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
7535 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7537         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
7538         stack slots.
7540 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
7542         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
7543         profiling is enabled.
7544         
7545         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
7546         the end.
7547         (mono_arch_emit_prolog): Add more first bblock optimizations.
7549         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
7550         in order if possible.
7551         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
7552         bblock, since the arguments are still in their original registers.
7554         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
7556 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7558         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
7559         as well.
7561         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
7562         offset 0.
7564         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
7566         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
7567         process async exceptions received while in unmanaged code.
7569         * mini.c (mini_init): Install a callback with the runtime which will be called
7570         when a thread receives an async exception while in unmanaged code.
7572         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
7574         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
7576 2008-01-16  Wade Berrier  <wberrier@novell.com>
7578         * cpu-g4.md:
7579         * cpu-arm.md:
7580         * cpu-s390x.md:
7581         fix build
7583 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7585         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
7586         compilation with sun cc.
7588         * cpu-*.md: Fix the build.
7590         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
7592         * mini-amd64.h: Add some comments to the MonoLMF structure.
7594         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
7595         
7596         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
7597         in the LMF structure if possible. This saves two instructions in the
7598         managed->native wrappers.
7600         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
7602 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7604         * generic-sharing.c: New type argument lookup code which uses the
7605         runtime generic context template.
7607 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7609         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
7611         * mini-arm.c (add_general): Fix arm eabi parameter passing.
7612         (mono_arch_output_basic_block): Fix localloc implementation.
7614         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
7616         * mini-ia64.c (peephole_pass): Fix ia64 build.
7618         * mini-amd64.c (peephole_pass): Fix a warning.
7619         
7620         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
7621         at a constant offset from sp/fp.
7623         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
7624         instead of obtaining it from *lmf in the managed method case.
7626 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7628         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
7630 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
7632         * mini.h (MonoInstList): New type.
7633         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
7634         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
7635         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
7636         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
7637         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
7638         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
7639         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
7640         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
7641         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
7642         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
7643         MONO_INST_LIST_FOR_EACH_ENTRY,
7644         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
7645         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
7646         mono_inst_list_first, mono_inst_list_last,
7647         mono_inst_list_next, mono_inst_list_prev): New instruction
7648         list handling interfaces.
7649         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
7650         list head 'ins_list'.
7651         (MonoInst): Replace next pointer with list head 'node'.
7652         (MonoCallInst): Make 'out_args' a MonoInstList.
7653         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
7654         (MonoCompile): Delete reverse_inst_list and
7655         reverse_inst_list_len.
7656         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
7657         mono_arch_lowering_pass, mono_arch_local_regalloc,
7658         mono_arch_output_basic_block, mono_arch_emit_prolog):
7659         Convert to new instruction lists.
7660         (insert_after_ins): Delete.
7661         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
7662         instruction lists.
7663         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
7664         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
7665         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
7666         mono_emulate_opcode, mono_emit_load_got_addr,
7667         inline_method, mono_method_to_ir, mono_print_bb_code,
7668         print_dfn, decompose_pass, nullify_basic_block,
7669         replace_out_block_in_code, remove_block_if_useless,
7670         merge_basic_blocks, move_basic_block_to_end,
7671         try_unsigned_compare, optimize_branches, mono_print_code,
7672         mini_select_instructions, remove_critical_edges): Likewise.
7673         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
7674         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
7675         mono_arch_output_basic_block, mono_arch_emit_prolog):
7676         Likewise.
7677         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
7678         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7679         mono_arch_output_basic_block): Likewise.
7680         (inst_list_prepend, insert_after_ins): Delete.
7681         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
7682         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
7683         instruction lists.
7684         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
7685         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
7686         mono_arch_emit_prolog): Likewise.
7687         * cfold.c (mono_constant_fold): Likewise.
7688         * liveness.c (visit_bb, mono_analyze_liveness,
7689         optimize_initlocals): Likewise.
7690         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
7691         * graph.c (mono_draw_code_cfg): Likewise.
7692         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
7693         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
7694         mono_ssa_cprop): Likewise.
7695         * abcremoval (get_relations_from_previous_bb, process_block):
7696         Likewise.
7697         * local-propagation (mono_cprop_invalidate_values,
7698         mono_local_cprop_bb): Likewise.
7699         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
7700         peephole_pass, mono_arch_output_basic_block,
7701         mono_arch_emit_prolog): Likewise.
7702         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
7703         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7704         mono_arch_emit_prolog): Likewise.
7705         (insert_after_ins): Delete.
7706         * aliasing.c (print_code_with_aliasing_information,
7707         mono_build_aliasing_information, mono_aliasing_deadce):
7708         Convert to new instruction lists.
7709         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
7710         peephole_pass, NEW_INS, mono_arch_lowering_pass,
7711         mono_arch_local_regalloc, mono_arch_output_basic_block):
7712         Likewise.
7713         (insert_after_ins): Delete.
7714         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
7715         peephole_pass, mono_arch_output_basic_block): Convert to
7716         new instruction lists.
7717         * mini-codegen (InstList, inst_list_prepend,
7718         insert_after_ins): Delete.
7719         (insert_before_ins, get_register_force_spilling,
7720         get_register_spilling, free_up_ireg, free_up_reg,
7721         create_copy_ins, create_spilled_store, alloc_int_reg,
7722         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
7723         to new instruction lists.
7724         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
7725         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7726         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
7727         (insert_after_ins): Delete.
7728         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
7729         mono_arch_local_regalloc, mono_arch_output_basic_block,
7730         mono_arch_call_opcode): Convert to new instruction lists.
7731         (insert_after_ins): Delete.
7732         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
7733         peephole_pass, mono_arch_output_basic_block,
7734         mono_arch_emit_prolog): Convert to new instruction lists.
7736 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7738         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
7740         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
7741         Fixes #353182.
7743         * Makefile.am (version.h): Make this work with non-bash shells.
7745 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7747         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
7749 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7751         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
7752         the InitializeArray optimization.
7754 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7756         * mini.c driver.c: Don't include os/gc_wrapper.h.
7758 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7760         * mini.c (print_jit_stats): Print GC statistics if available.
7762 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
7764         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
7766 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
7768         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
7770 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7772         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
7773         
7774         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7776         * driver.c (mono_main): Ditto.
7778 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7780         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
7782         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
7783         in the vtable can't be encoded.
7784         (compile_method): Ditto.
7786 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7788         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
7789         defined.
7791         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
7792         lmf->rbp.
7794         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
7795         the top LMF entry belongs to the current method.
7797         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
7799 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7801         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
7802         
7803         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
7805         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
7807         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
7809         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
7811         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
7812         implementation.
7814         * basic-float.cs: Add an ulong->double cast test.
7816 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
7818         * mini.c (mono_method_to_ir): Fix a warning.
7820 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
7822         * mini-ops.h: Add OP_SWITCH.
7824         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
7825         CEE_SWITCH in back-end code, use OP_SWITCH instead.
7827 2007-12-11  Geoff Norton  <gnorton@novell.com>
7829         * mini-s390x.c: Minor change to the MAX() define to allow
7830         it to compile with other gcc versions.
7832 2007-12-11  Geoff Norton  <gnorton@novell.com>
7834         * cpu-s390x.md:
7835         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
7837 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7839         exceptions-arm.c (mono_arch_get_restore_context): Restore
7840         the frame pointer.
7842         exceptions-arm.c (throw_exception): Save the frame pointer.
7843         This is a partial fix for #323747. Only the client side is
7844         fixed.
7846 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7848         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
7849         was using an unrelated variable to log the class which
7850         needed the cctor to be called. This was crashing on arm.
7852 2007-12-09  Robert Jordan  <robertj@gmx.net>
7854         * mini-x86.c (mono_arch_emit_epilog):
7855         Consider all kinds of 64-bit types. Fixes #323114.
7857 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
7859         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
7861 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
7863         * mini-amd64.c (peephole_pass): Add a missing instruction check.
7865 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7867         * mini.c: run type ctor before allocating an object, not only
7868         when running it's constructor method (fixes at least part of bug #342507).
7870 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
7871         
7872         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
7873         
7874         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
7875         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
7876         function.
7878         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
7879         mono_generic_class_init_trampoline () the same as it is done with the other
7880         trampolines.
7882         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
7883         aot-runtime.c aot-compiler.c: Implement AOT support.    
7885 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7887         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
7888         build for archs which don't have the vtable trampoline defined
7889         yet.
7891 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
7893         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
7895         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
7897         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
7899         * tramp-<ARCH>.c: Use the new helper function.
7901 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7903         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
7904         trampoline call, which takes a vtable argument.
7906         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
7907         OP_TRAMPCALL_VTABLEs like other calls.
7909         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
7910         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
7911         call.  Implemented a support function which fetches the vtable
7912         from a register set.
7914         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
7915         Implemented a generic class init trampoline, using the
7916         OP_TRAMPCALL_VTABLE opcode.
7918         * mini.c: Implemented static field access when sharing generic
7919         code.  This implies initing the class using the new
7920         OP_TRAMPCALL_VTABLE call.
7922 2007-12-07  Mark Probst  <mark.probst@gmail.com>
7924         * mini.c: Don't compile methods with sharing enabled if their
7925         classes are disabled for sharing.
7927 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
7929         * inssel.brg: Add a missing sign extension to the GETCHR and array access
7930         opcodes. Fixes #346563.
7932         * objects.cs: Add a new test.
7934         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
7936         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
7937         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
7939 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
7941         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
7943 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
7945         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
7946         code stream.
7948 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
7950         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
7952         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
7953         optimization in the AOT case.
7954         
7955 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
7957         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
7958         
7959         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
7961         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
7963         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
7965         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
7966         is created by the inlined delegate ctor.
7968         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
7970         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
7972 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
7974         * cpu-x86.md: Fix the length of ckfinite.
7976 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
7978         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
7979         
7980         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
7981         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
7983         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
7985         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
7986         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
7988 2007-11-28  Martin Baulig  <martin@ximian.com>
7990         * mini-x86.c
7991         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
7992         after creating the trampoline.
7994 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
7996         * aot-runtime.c (load_aot_module): Check runtime version if needed.
7998         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
7999         the same version.
8001         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
8002         instead of the calling method to help AOT.
8004         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
8006 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
8008         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
8009         is defined.
8011 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
8013         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
8014         
8015         * aot-compiler.c (compile_method): Correct check for generic method definitions.
8016         (encode_method_ref): No need to handle generic method definitions specially.
8018         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
8020         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
8021         decode_klass_info.
8023         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
8024         encode_klass_info.
8025         (compile_method): Enable generic sharing.
8027 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
8029         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
8030         (mini_method_compile): Add preliminary support for AOTing shared generic code.
8032         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
8033         generic code.
8035         * mini-trampolines.c: Fix a warning.
8037         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
8038         NEW_PCONST.
8039         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
8040         (generic_class_is_reference_type): Remove unused function.
8042         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
8043         in the generic vtable trampoline case.
8045         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
8046         
8047         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
8048         return an AOT method based on a vtable slot.
8050         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
8052         * mini.c (mini_get_vtable_trampoline): Export this.
8054 2007-11-22  Martin Baulig  <martin@ximian.com>
8056         * debug-debugger.h
8057         (MonoDebuggerInfo): Move `debugger_version' up.
8059 2007-11-22  Martin Baulig  <martin@ximian.com>
8061         * mini-amd64.c
8062         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
8064         * mini-trampolines.c
8065         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
8066         after compiling the method.
8068 2007-11-20  Martin Baulig  <martin@ximian.com>
8070         * debug-mini.c
8071         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
8072         (mono_debugger_remove_breakpoint): Likewise.
8073         (mono_debugger_check_breakpoints): Likewise.
8075         * debug-debugger.c: Implement the new breakpoint interface here.
8077 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
8079         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
8080         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
8082         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
8084 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
8086         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
8088         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
8089         mini.c.
8091         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
8092         mini.c.
8094         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
8095         returning a vtype in a register.
8097         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
8098         here from the arch specific code.
8100         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
8101         mini.c.
8103         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
8104         (mono_arch_emit_prolog): Increment maximum prolog size.
8106         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
8107         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
8109         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
8110         MonoGenericSharingContext.
8112         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
8113         MonoGenericSharingContext. Allocate memory from the cfg mempool.
8115 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8117         * mini.c, mini.h, generic-sharing.c: Functions for producing code
8118         which extract fields out of the runtime generic context.  Full
8119         sharing of the NEWARR opcode.
8121 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8123         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
8124         --enable-minimal=ssa.
8126 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8128         * mini-trampolines.c (mono_delegate_trampoline): Update after 
8129         mono_marshal_get_delegate_invoke () signature change.
8131 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8133         * mini.c: Removed the shared context in favor of the generic
8134         sharing context.  Allocate the MonoJitInfo structure with room for
8135         the generic sharing context if it's needed.
8137         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
8138         domain-internals.h now.
8140         * mini-x86.c: Pass the generic sharing context to get_call_info ().
8142         * generic-sharing.c: Several changes for working without a shared
8143         context and instead operating on open types instead.
8145 2007-11-12  David S. Miller  <davem@davemloft.net>
8147        * inssel-sparc.brg: Fix double instruction emit.
8149 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8151         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
8152         Get/Set/Address methods.
8153         
8154         * mini.c debug-debugger.c mini-trampolines.c: Update after 
8155         mono_marshal_get_delegate_invoke signature change.
8157 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8159         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
8160         This can happens with dynamic methods. Fixes the other bug in #322722.
8162 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8164         * tramp-arm.c (mono_arch_patch_callsite): Support patching
8165         BX call sequence.
8167         * mini-arm.c (arm_patch): Implement patching of BX call
8168         sequence. Fixes one of the bugs in #322722.
8170 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
8172        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
8173        under Linux.  We only need to flush every 32-byte cache line.    
8175 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8177         * mini.c:
8178         move_basic_block_to_end: Add branches when needed, eventually creating
8179         a new BB.
8180         optimize_branches: added a parameter that tells if it's ok to create
8181         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
8182         and avoid calling move_basic_block_to_end when it's not ok.
8183         Fixes bug 318677.
8185 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8187         * mini.c: Abort inlining call to InitializeArray if something
8188         looks wrong.  Let the icall handle it, which now has proper safety
8189         checks.
8191 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8193         * mini.c (mono_spill_call): add support for soft-float.
8195         * mini.c (mono_method_to_ir): add support for soft-float
8196         to inlined functions that return float.
8198         * mini.c (mono_method_to_ir): add support for soft-float
8199         to cee_stsfld opcode on float fields.
8201 2007-11-05  Geoff Norton  <gnorton@novell.com>
8203         * mini-x86.h: Fix the structure access for X86 Leopard.
8206 2007-11-05  Martin Baulig  <martin@ximian.com>
8208         * mini-trampolines.c
8209         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
8210         after compiling the method to notify the debugger.
8212 2007-11-05  Martin Baulig  <martin@ximian.com>
8214         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
8216 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
8218         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
8219         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
8221 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
8223         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
8224         native-to-managed wrappers.
8225         
8226 2007-11-01  Geoff Norton  <gnorton@novell.com>
8228         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
8229         members.
8231 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
8233         * mini.c, mini-x86.c: when getting back from unmanaged code
8234         to managed via a marshaled delegate we also need to set the
8235         right domain.
8237 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
8239         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
8240         for amd64.
8242 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8244         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
8245         let the debugger or other external agents to tell the JIT when
8246         a sw breakpoint has been inserted in the code that the JIT needs
8247         to be able to inspect.
8249 2007-10-31  Martin Baulig  <martin@ximian.com>
8251         * debug-debugger.h
8252         (MonoDebuggerInfo): Remove `runtime_class_init'.
8254 2007-10-30  Martin Baulig  <martin@ximian.com>
8256         * debug-mini.h
8257         (mono_debugger_thread_created): Added `MonoThread *' argument.
8258         (mono_debugger_extended_notification): New public method.
8259         (mono_debugger_trampoline_compiled): New public method.
8261         * debug-mini.c
8262         (MonoDebuggerThreadInfo): Added `thread' and
8263         `extended_notifications' fields.
8265         * debug-debugger.c
8266         (debugger_executable_code_buffer): New static variable.
8268         * debug-debugger.h
8269         (MonoDebuggerInfo): Added `executable_code_buffer',
8270         `executable_code_buffer_size', `breakpoint_info_area',
8271         `breakpoint_table' and `breakpoint_table_size'.
8273 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
8275         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
8276         that IP  either is an unused value or the vtable pointer. IMT 
8277         calls use vtable + offset now. Reduced by almost half the size
8278         of IMT entries.
8280 2007-10-26  Jonathan Chambers <joncham@gmail.com>
8282         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
8283         defines to access param registers. Replace long usage with
8284         gsize as sizeof(long) != sizeof(void*) on Win64.
8286         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
8287         on Win64. Fix intrinsic, use _AddressOfReturnAddress
8288         instead of non-existant _GetAddressOfReturnAddress.
8290         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
8291         param registers. Save/restore %rdi and %rsi in MonoLMF.
8293         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
8294         param registers. Modify (throw_exception) signature to take 
8295         %rdi and %rsi on Win64. 
8297         Code is contributed under MIT/X11 license.
8299 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8301         * helpers.c: unlink debugging output files.
8303 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8305         * mini.c: Move mono_create_ftnptr () to object.c.
8307 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8309         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
8310         optional. This function can now be used to disassemble code generated
8311         outside the JIT such as trampolines and IMT thunks.
8313         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
8315         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
8316         vtable pointer from a ldr instruction.
8318         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
8319         new IMT call sequence.
8321         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
8322         call sequence for interface invocations.
8324         * mini-arm.c (mono_arch_emit_imt_argument): added, required
8325         for imt support. This function is empty since IMT on ARM requires no
8326         special handling on the IR side.
8328         * mini-arm.c (mono_arch_find_imt_method): added, required for
8329         imt support.
8331         * mini-arm.c (mono_arch_find_this_argument): added, required
8332         for imt support.
8334         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
8335         a ldr instruction to load a value stored in the code stream.
8337         * mini-arm.c (mono_arch_build_imt_thunk):added, required
8338         for imt support.
8341 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8343         * mini.c (mini_init): Install the jump trampoline callback.
8345 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8347         * mini-trampolines.c: handle synchronized methods with the common
8348         vtable trampoline (bug #335601).
8350 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
8352         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
8354         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
8355         64 bit platforms.
8357         * mini-ia64.h mini-ia64.c: Add support for IMT.
8359         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
8360         prolog. Fixes #331958.
8362 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
8364         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
8366 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8368         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
8369         trampoline.
8371 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8373         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
8374         trampoline.
8376 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
8378         * mini-x86.c, mini-x86.h: x86 support for the common vtable
8379         trampoline.
8381 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
8383         * mini-trampolines.c: changed the magic rampoline to understand
8384         the common vtable trampoline method: the method to invoke is
8385         determined by the vtable displacement of the call.
8387 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8389         * mini.c, mini.h: register the common vtable trampoline if the
8390         architecture supports it.
8392 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8394         * cpu-amd64.md: use the correct max length for tls_get.
8396 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
8398         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
8399         CEE_STELEM_ANY. Fixes #333696.
8401 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
8403         * exceptions-x86.c: provide more graceful handling of the case where
8404         we followed a bogus function pointer from managed code (bug #332866).
8406 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8408         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
8409         replaces the generic_shared flag and will carry more information
8410         in the future.
8412         * generic-sharing.c: Added mini_type_stack_size() which allows
8413         allows open types if given a generic sharing context.
8414         mini_get_basic_type_from_generic() takes a
8415         MonoGenericSharingContext* instead of a MonoCompile* now.
8417         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
8418         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
8419         mini-sparc.c, mini-x86.c: Trivial changes required by the two
8420         changes above.  Just passing arguments through to the right
8421         places.
8423 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8425         * mini-arm.c: unify the call emission to emit_code_seq().
8427 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
8429         * tramp-arm.c: reduced the trampoline size.
8431 2007-10-10  Mark Probst  <mark.probst@gmail.com>
8433         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
8434         variable handling out of arch-specific code.
8436 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
8438         * mini-arm.c: implemented fast delegate dispatch.
8440 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
8442         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
8443         that fp elimination is turned off if the space required by locals is too
8444         big. Fixes #331958.
8446 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8448         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
8449         ARM to the new style trampoline.
8451 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
8453         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
8455         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
8457 2007-10-09  Martin Baulig  <martin@ximian.com>
8459         * debug-debugger.h
8460         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
8461         `field_info_offset_offset'.     
8463 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
8465         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
8466         removed more internal usage of the r11 register and made it available
8467         to the register allocator.
8469 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8471         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
8472         when sharing generics and treat type variables as references.
8474 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8476         * mini-ppc.c: started removing the internal uses of register r11
8477         to eventually allow the register allocator to manage it as an
8478         additional available register.
8480 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
8482         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
8484 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
8486         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
8487         specific trampolines as they are not performance critical as a jump
8488         target (maybe align as before only for AOT code?). This saves about
8489         200 KB of native code on x86 for monodevelop startup.
8491 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8493         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
8494         monodevelop startup.
8496 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
8498         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
8500         * mini-sparc.h mini-sparc.c: Implement IMT support.
8502         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
8503         its smaller and doesn't clobber sparc_g1.
8505         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
8507 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8509         * mini-ppc.c: optimized the size of the IMT thunks a bit.
8511 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
8513         * mini-ppc.c: implemented fast delegate invocation.
8515 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8517         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
8519 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8521         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
8522         code to the new style trampoline in preparation for IMT support.
8524 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8526         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
8527         systems already. This also reduces the specific trampiline sizes and
8528         prepares for the use of r12 as the IMT identifier register.
8530 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8532         * mini-mips.h: endianess fix (simplified from a patch by
8533         Thomas Kunze <thommy@tabao.de>, bug #323737).
8535 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8537         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
8538         to access ucontext fields and enable netbsd support
8539         (partially from Magnus Henoch <mange@freemail.hu>).
8541 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8543         * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
8544         use the preprocessor from the CPP env var if it is set.
8546 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8548         * mini-trampolines.c: fixed an assertion and moved it earlier in the
8549         code, before interface_offset gets used.
8551 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
8553         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
8554         mono_class_setup_vtable () before accessing klass->vtable.
8556 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
8558         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
8559         hackish.
8561 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8563         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
8564         IMT slots (this saves hundreds of KB of memory in programs like
8565         IronPython and Monodevelop).
8567 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8569         * mini.c: print the delegate counter.
8571 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
8573         * mini-x86.c: make it easier to enable the debugging code for IMT
8574         slots.
8576 2007-09-28  Martin Baulig  <martin@ximian.com>
8578         * debug-debugger.h
8579         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
8580         `mono_method_klass_offset' and `mono_method_token_offset'.
8582 2007-09-20  Mark Probst  <mark.probst@gmail.com>
8584         * mini.c: First generics sharing implementation.  Can only share
8585         in very simple cases.  If sharing doesn't work it falls back to
8586         dedicated compilation.
8588         * mini.h: Flag in MonoCompile to specify whether generic
8589         compilation is shared.  Flags enum for marking which generic inst
8590         of a context is used.  Prototypes for helper functions.
8592         * generic-sharing.c: Helper functions for generic method sharing.
8594         * optflags-def.h: Optimization flag (gshared) for enabling generic
8595         method sharing added.
8597         * Makefile.am: generic-sharing.c added.
8599 2007-09-19 Daniel Nauck <dna@mono-project.de>
8601         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
8603 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
8604         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
8605         fixes bug 325507.
8607 2007-09-19  Martin Baulig  <martin@ximian.com>
8609         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
8610         mono_debug_cleanup() is now part of mono_cleanup().
8612 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8614         * driver.c (mono_main): Fix a warning.
8616 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
8618         * aot-compiler.c: Optimize various parts when processing large assemblies.
8619         Fixes ##325568.
8621         * mini.c (mono_patch_info_hash): Improve hash function.
8623 2007-09-14  Jonathan Chambers <joncham@gmail.com>
8625         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
8626         
8627         Code is contributed under MIT/X11 license.
8629 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8631         * mini.c (mini_init): Fix a leak.
8633         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
8635 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8637         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
8639 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8641         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
8643 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8645         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
8646         variance tests.
8648         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
8650         * mini.c (handle_alloc): Enable managed allocators in AOT code.
8652         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
8654         * aot-runtime.c (decode_patch_info): Ditto.
8656 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8658         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
8659         static case. Cache delegates in architecture specific code, 
8660         based on number of parameters.
8661         
8662         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
8663         in architecture specific code, based on number of parameters.
8664         
8665         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
8666         caching happen in architecture specific code now.
8667         
8668         Code is contributed under MIT/X11 license.
8670 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8672         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
8673         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
8674         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
8676         Code is contributed under MIT/X11 license.
8678 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8679         * mini.c: (mono_thread_abort) Fixed bug #82416.
8681 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8683         * mini.: hook the new managed GC allocation feature into the JIT.
8685 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
8687         * mini.c: implementation for the new runtime tls opcode.
8689 2007-09-11  Martin Baulig  <martin@ximian.com>
8691         * debug-debugger.h
8692         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
8693         `mono_method_inflated_offset'.
8695 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
8697         * driver.c mini.h mini.c: Add a new devel command line option for injecting
8698         async exceptions into a method.
8700         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
8701         purpose of testing whenever the unwinder works at every instruction.
8703 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8705         * mini.c: check accessibility of method used in ldftn (fixes
8706         bug #82635).
8708 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
8710         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
8712         * inssel.brg: Fix a warning.
8714 2007-09-03  Martin Baulig  <martin@ximian.com>
8716         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
8717         now takes the `main_method' as argument.
8719 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
8721         * cpu-sparc.md (endfilter): Add missing src1:i argument.
8723 2007-08-30  Jonathan Chambers <joncham@gmail.com>
8725         * driver.c: include the cil-coff.h header on Windows.
8726         
8727         Code is contributed under MIT/X11 license.
8729 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
8731         * mini.c, driver.c: don't include the cil-coff.h header.
8733 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8735         * mini.c: flag places that needs fixes fo soft-float support.
8737 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
8739         * mini.h, inssel-float.brg: fix soft-float constant loads on big
8740         endian systems (partially from Dean Jenkins, bug #81924).
8742 2007-08-28  Mark Probst  <mark.probst@gmail.com>
8744         * mini.c (check_linkdemand): Remove embedded reference object in
8745         call to LinkDemandSecurityException.
8746         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
8747         with an IntPtr instead of a reference object.
8749 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
8751         * mini.c (handle_initobj): Handle alignment properly.
8753         * inssel.brg (mini_emit_memset): Ditto. 
8755         * inssel.brg (mini_emit_memcpy): Ditto. 
8757         * inssel-sparc.brg: Ditto.              
8759         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
8761 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
8763         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
8764         exceptions raised in unmanaged code. Fixes part of #82594.
8766 2007-08-24  Mark Probst  <mark.probst@gmail.com>
8768         * mini.c (mono_method_to_ir), declsec.c
8769         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
8771 2007-08-22  Martin Baulig  <martin@ximian.com>
8773         * debug-mini.h
8774         (MonoDebuggerThreadInfo): New typedef.
8775         (mono_debugger_thread_table): New global variable.
8776         (mono_debugger_thread_created): New public function.
8777         (mono_debugger_thread_cleanup): New public function.
8779         * debug-debugger.h
8780         (MonoDebuggerInfo):
8781         - removed `get_current_thread' and `lookup_assembly'.
8782         - removed `data_table'.
8783         - added `thread_table'.
8785         * mini.c
8786         (mono_thread_start_cb): Call mono_debugger_thread_created().
8787         (mono_thread_attach_cb): Likewise.
8788         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
8789         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
8790         initial domain.
8792         * driver.c (mono_main): Move mono_debug_init() up, before calling
8793         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
8795 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8797         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
8798         together when passing several arguments of type double (gives a small
8799         speedup and saves a few bytes of generated code).
8801 2007-08-20  Jb Evain  <jbevain@novell.com>
8803         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
8805 2007-08-20  Jb Evain  <jbevain@novell.com>
8807         * mini.c (mono_method_to_ir): throw MethodAccessException
8808         and FieldAccessException instead of InvalidProgramException.
8810 2007-08-20  Mark Probst  <mark.probst@gmail.com>
8812         * mini.c: CoreCLR security checks.
8814         * mini.h: Removed MonoSecurityMode (moved to
8815         metadata/security-manager.h) and mono_security_mode global var
8816         (replaced by set/get functions in security-manager.h).
8818         * driver.c: Added "core-clr-test" security mode for testing.  Used
8819         set-function for setting security mode.
8821 2007-08-17  Mark Probst  <mark.probst@gmail.com>
8823         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
8824         the new jit_info_table.
8826         * driver.c: Test code for the new jit_info_table (enabled by the
8827         define MONO_JIT_INFO_TABLE_TEST).
8829 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
8831         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
8832         detection of call <REG> instruction sequence. Fixes build on freebsd.
8834 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
8836         * mini-exceptions.c: Fix a warning.
8838 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
8840         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
8841         stack overflow handling code on amd64 too.
8843         * mini-exceptions.c (mono_setup_altstack): Make this use 
8844         mono_thread_get_stack_bounds ().
8846         * mini-x86.h: Disable sigaltstack on solaris x86.
8848 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
8850         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
8852 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
8854         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
8856 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
8858         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
8860         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
8862 2007-08-03  Neale Ferguson <neale@sinenomine.net>
8864         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
8865         due to alignment.
8867 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
8869         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
8870         to be emitted (bug #82281).
8872 2007-08-01  Martin Baulig  <martin@ximian.com>
8874         Merged the `debugger-dublin' branch.
8876         * debug-debugger.h (MonoDebuggerInfo):
8877         Removed the `old_*' compatibility entries.
8878         Added `debugger_version' and `data_table'.
8879         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
8880         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
8882         * debug-mini.c
8883         (MiniDebugMethodBreakpointInfo): Add `address_list'.
8884         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
8885         instead of a `gconstpointer'.
8886         (mono_debugger_insert_method_breakpoint): Return a
8887         `MonoDebugMethodAddressList *'.
8889 2007-06-28  Martin Baulig  <martin@ximian.com>
8891         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
8893 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
8895         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
8896         __builtin_frame_address () since it is broken on older gcc versions.
8898 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8900         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
8901         on the stack overflow handling and made the managed stack overflows
8902         catchable in most cases using soft guard pages.
8903         * exceptions-x86.c: added code to restore the protection in the soft
8904         guard pages at the end of exception handling.
8906 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
8908         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
8910 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8912         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
8913         exception handling.
8915 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8917         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
8918         signal handling support until it has been ported to the new mechanism.
8919         * mini.c: fixed stack overflow detection and use the new
8920         architecture code  to handle signals on the altstack.
8922 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
8924         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
8925         stack overflows on the alt stack.
8927 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
8929         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
8930         stack overflows on the alt stack.
8932 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
8934         * exceptions-ppc.c: cleanup preparing for altstack support.
8936 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
8938         * exceptions-arm.c: cleanup preparing for altstack support.
8940 2007-07-27  Mark Probst  <mark.probst@gmail.com>
8942         * mini.c (print_jit_stats): Output hazard pointer stats.
8944 2007-07-26  Mark Probst  <mark.probst@gmail.com>
8946         * driver.c, mini.c: Replaced security mode flags with a single
8947         enum variable.
8949 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8951         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
8953 2007-07-25  Mark Probst  <mark.probst@gmail.com>
8955         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
8956         (which doesn't do anything yet) for activating Core CLR
8957         (Silverlight) security.
8959 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
8961         * mini-codegen.c: work around a possible gcc bug on arm.
8963 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8965         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
8966         message for platforms that don't support AOT compilation.
8968 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
8970         * mini.h, mini.c, driver.c: temporary smcs hack.
8972 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
8974         * mini-arm.h, mini-arm.c: arm EABI fixes.
8976 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
8978         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
8979         case.
8981         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
8982         trampolines taking a method argument.
8984         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
8986         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
8987         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
8989         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
8990         JIT compilation throws an exception. Fixes #82050.
8992 2007-07-19  Mark Probst  <mark.probst@gmail.com>
8994         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
8995         with the MONO_EXCEPTION_ defines.
8997 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
8999         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
9000         #82117.
9001         
9002         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
9003         the cause of an assertion.
9005 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
9007         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
9008         removed.
9010 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
9012         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
9013         assert. Should fix #82103.
9015 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
9017         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
9018         here too. Fixes #82095.
9020         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
9021         addresses.
9023         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
9025         * mini-amd64.h: Enable IMT for amd64.
9026         
9027         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
9029 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
9031         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
9033 2007-07-12  Mark Probst  <mark.probst@gmail.com>
9035         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
9036         as soon as check_linkdemand sets an exception_type.
9038 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9040         * mini-x86.c: fixed offsets for IMT call sequence.
9041         * mini-x86.h: enable IMT again.
9043 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9045         * trace.c (mono_trace_enter_method): Decode MonoType too.
9047         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
9049         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
9051         * mini-amd64.c: Add preliminary IMT implementation.
9052         
9053 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
9055         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
9056         understand the new IMT-base interface invocation (thanks to
9057         Daniel Nauck for the report and the remote debugging session).
9059 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9061         * mini-x86.c: size and speed optimizations for the IMT bsearch.
9063 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9065         * Makefile.am (aotcheck): Make this actually use the AOTed code.
9067 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
9069         * mini-trampolines.c: implement AOT IMT support.
9070         * mini-x86.h: enable IMT support for wider testing.
9072 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9074         * inssel.brg (emit_imt_argument): Add aot support here.
9076         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
9078 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9080         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
9081         of the IMT implementation, partially from massi, with my
9082         implementation of the bsearch sequence. Disabled by default until
9083         the AOT code is implemented.
9085 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9087         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
9089         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
9091 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9093         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
9094         arch-independent IMT JIT code from Massimiliano
9095         Mantione (massi@ximian.com) with small cleanups from me.
9097 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9099         * Makefile.am: fix svn invocation to get the svn revision to be
9100         independent of the local language (build fix).
9102 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9104         * mini.c (inline_method): Reset cfg->exception_type if the
9105         inlining is aborted.  Fixes: 82049.
9107 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
9109         * mini.c: remove assert from exception handling code when exception_ptr
9110         is not set.
9112 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9114         * mini.c (mono_codegen): Add an assert.
9116         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
9117         enter and leave code.
9118         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
9120 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9122         * mini-ppc.c: fixed memory corruption for localloc(0)
9123         (bug #81852).
9125 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9126         
9127         * mini.c: Fix warnings.
9129 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9131         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
9132         to emit better double->int conversions.
9134 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9136         * mini.c: the provided Min/Max optimizations are valid for unisgned
9137         ints.
9139 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
9141         * 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
9143 2007-06-28  Miguel de Icaza  <miguel@novell.com>
9145         * mini.c (mono_running_on_valgrind): Add support for reporting the
9146         method and  its boundaries to valgrind.
9148 2007-06-28  Martin Baulig  <martin@ximian.com>
9150         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
9152 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
9154         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
9156         * generic.2.cs: Add new test case.
9158 2007-06-25  Martin Baulig  <martin@ximian.com>
9160         Merged the `debugger-dublin' branch.
9162         * debug-mini.c
9163         (mono_debugger_insert_method_breakpoint): New public method.
9164         (mono_debugger_remove_method_breakpoint): Likewise.
9165         (mono_debugger_check_breakpoints): New static method.
9166         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
9168         * debug-debugger.h (MonoDebuggerInfo):
9169         Renamed (to keep backward compatibility in the vtable):
9170         `insert_breakpoint' -> `old_insert_breakpoint'.
9171         `remove_breakpoint' -> `old_remove_breakpoint'.
9172         `create_string' -> `old_create_string'.
9173         `lookup_class' -> `old_lookup_class'.
9174         `lookup_type' -> removed; changed into a dummy field.
9175         `lookup_assembly' -> `old_lookup_assembly'.
9176         Added (same functionality, but different signature):
9177         `create_string', `lookup_class', `lookup_assembly'
9178         Added new:
9179         `get_method_addr_or_bpt', `remove_method_breakpoint',
9180         `runtime_class_init'.
9182         * debug-debugger.c: Merged the `debugger-dublin' branch.
9184 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
9186         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
9187         well.
9188         (peephole_pass): Likewise.
9190 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9192         * driver.c: hopefully make setaffinity work also for ancient
9193         versions of linux.
9195 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
9197         * driver.c : win32 build fix.
9199 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
9201         * driver.c: check for the MONO_NO_SMP env var and bind to a single
9202         processor if it is set.
9204 2007-06-21  Martin Baulig  <martin@ximian.com>
9206         * debug-mini.h: New file.
9208         * debug-mini.c
9209         (mono_debugger_insert_breakpoint_full): Moved here from
9210         ../metadata/mono-debug-debugger.c.
9211         (mono_debugger_remove_breakpoint): Likewise.
9212         (mono_debugger_breakpoint_callback): Likewise.
9214 2007-06-15  Raja R Harinath  <rharinath@novell.com>
9216         * jit-icalls.c (mono_helper_compile_generic_method): Update to
9217         changes in MonoGenericClass.
9219 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
9221         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
9223 2007-06-14  Raja R Harinath  <rharinath@novell.com>
9225         * jit-icalls.c (mono_helper_compile_generic_method): Update to
9226         removal of MonoGenericMethod.
9228 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9230         * mini-exceptions.c: hooks for the exception events profiling API.
9232 2007-06-14  Randolph Chung  <tausq@debian.org>
9234         * Makefile.ma: Add hppa target.
9235         * mini-arch.h: Include mini-hppa.h
9236         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
9237         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
9238         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9240 2007-06-14  Randolph Chung  <tausq@debian.org>
9242         * inssel.brg: Add rules for "chained" compare-branch operations so that
9243         a single compare op can affect multiple branches.  Adjust cost for
9244         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
9245         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
9246         cost for some rules so that they can more easily be overridden by
9247         per-arch rules (with fixes from lupus).
9248         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9250 2007-06-13  Randolph Chung  <tausq@debian.org>
9252         * mini-ops.h: Reorder branch ops so that they match the order of the
9253         corresponding CEE_* ops.  The code expects them this way.
9254         Add new ops for HPPA target.
9255         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9257 2007-06-13  Randolph Chung  <tausq@debian.org>
9259         * mini-exceptions.c: Handle cases where the stack grows towards
9260         larger addresses.
9261         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9263 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9265         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
9266         counter.
9267         * driver.c: explain where a non-matching corlib is found.
9269 2007-06-13  Mark Probst  <mark.probst@gmail.com>
9271         * mini.c (print_jit_stats): Output dynamic code allocation stats.
9273 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
9275         * mini-exceptions.c: Generate a method profile leave event during
9276         an exception to ensure that the profiler gets notified.
9278 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
9280         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
9281         branch.
9283         * cpu-amd64.md: Add long_and/or/xor opcodes.
9285 2007-06-06  Wade Berrier  <wberrier@novell.com>
9287         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
9288         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
9289         length of instruction shr_imm (expected 8, got 10)
9291 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
9293         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
9295 2007-06-06  Mark Probst  <mark.probst@gmail.com>
9297         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9298         MonoInternalHashTable again (fixed bug in the internal hash table
9299         code).
9301 2007-06-06  Mark Probst  <mark.probst@gmail.com>
9303         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
9304         Have to figure out what makes it crash the SWF regression.
9306 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
9308         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
9310 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9312         * mini.c: optimize out the type check when storing null in a
9313         reference array.
9315 2007-06-04  Mark Probst  <mark.probst@gmail.com>
9317         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9318         MonoInternalHashTable.
9320 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9322         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
9323         signed integer methods.
9325 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
9327         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
9328         permanently since the current approach doesn't work.
9330 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
9332         * inssel.brg (stmt): Only call delegate->invoke_impl if 
9333         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
9335 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
9337         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
9338         the sreg2==rdx case.
9339         
9340         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
9341         account if it contains a rex prefix.
9342         (peephole_pass): Handle OP_FMOVE as well.
9344 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
9346         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
9347         as it causes regressions.
9349 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
9351         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
9352         static case as well.
9354         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
9356         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9357         (mono_arch_get_this_arg_from_call): Ditto.
9359         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
9361         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
9362         invoke_impl field.
9364         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9365         (mono_arch_get_this_arg_from_call): Ditto.
9367         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
9368         
9369         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
9370         try to create optimized invoke code and use that for further invocations. 
9371         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
9373         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
9375 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
9377         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
9378         sealed classes or methods.
9379         *devirtualization.cs: tests for the new optimization
9381 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
9383         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
9384         by the update_volatile () function.
9386 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
9388         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
9389         require it.
9391         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
9393 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
9395         * mini.c: Add configure checks for header files.
9396         * mini-x86.c: Add configure checks for header files.
9397         * trace.c: Add configure checks for header files.
9398         * aot-runtime.c: Add configure checks for header files.
9399         * aot-compiler.c: Add configure checks for header files.
9400         * driver.c: Add configure checks for header files.
9401         * mini-codegen.c: Add configure checks for header files.
9402         
9403         Code is contributed under MIT/X11 license.
9405 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
9407         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
9408         icompare_imm -128 + op_iclt. Fixes #81703.
9410 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
9412         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
9414 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
9416         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
9417         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
9418         so that all isinst checks now use "interface_bitmap".
9420 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
9422         * cpu-amd64.md (jmp): Fix a warning.
9424         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
9426         * basic.cs: Add new regression test.
9428         * basic.cs: Remove test which is now in basic-long.cs.
9430         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
9432         * basic-long.cs: Add new test.
9433         
9434 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
9436         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
9438 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
9440         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
9442         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
9443         places.
9444         
9445         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
9446         throwing code a bit.
9448         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
9449         the exception throwing code a bit.
9451         * mini-x86.c (get_call_info): Allocate result from a mempool.
9453 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
9455         * aot-compiler.c (find_typespec_for_class): Fix the assert.
9457         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
9459         * mini.h (MonoCompile): Add 'token_info_hash' field.
9461         * mini.c: Save token->method associations during compilation so the AOT 
9462         compiler can use it.
9463         
9464         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
9465         which reference generic classes and methods.
9467 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
9469         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
9471         * aot-compiler.c (compile_method): Fix a typo in a comment.
9473         * aot-runtime.c (decode_cached_class_info): Skip generic types.
9475         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
9476         everything generic.
9478         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
9480 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
9482         * mini.h (MonoCompile): Add 'args' field.
9484         * mini.c (mono_compile_create_vars): Store variables representing the arguments
9485         into cfg->args.
9487         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
9489 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
9491         * mini.c (mono_compile_get_interface_var): Remove this unused function.
9493         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
9495         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
9496         opcodes for some opcodes.
9498         * mini.h *.brg *.c: Use the new opcodes.
9500 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
9502         * mini.h: Bumped aot revision.
9504         * inssel.brg: modified code generation of type checks for interfaces
9505         to use the new "MonoClass.interface_bitmap" instead of the old
9506         "MonoClass.interface_offsets".
9508 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
9510         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
9512 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
9514         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
9515         64 bit platforms.
9517 2007-04-27  Neale Ferguson <neale@sinenomine.net>
9519         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
9521 2007-04-27  Wade Berrier  <wberrier@novell.com>
9523         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
9524         mini.h) to fix build.
9526 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
9528         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
9529         
9530         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
9531         causes the corlib unit tests to fail.
9533 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
9535         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
9537         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
9539         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
9540         opcodes to the comparison relations.
9542         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
9543         opcodes to their types.
9544         
9545         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
9547         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
9548         it in cfg->arch.cinfo.
9550         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
9552         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
9553         cfg->cil_offset_to_bb.
9555 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
9557         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
9558         created becase of initlocals.
9560 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
9562         * mini-alpha.c cpu-alpha.md: More alpha port work from 
9563         Sergey Tikhonov <tsv@solvo.ru>.
9565 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
9567         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
9569 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
9571         * cpu-s390.md (break): Correct the length of break instruction.
9573 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9575         * mini.c: fix a couple of soft-float issues and comments.
9577 2007-04-15  Miguel de Icaza  <miguel@novell.com>
9579         * trace.c (is_filenamechar): - is also a filename char.
9581 2007-04-15  Neale Ferguson <neale@sinenomine.net>
9583         * mini-s390.c: Correct checking for enum type in return value processing.
9585 2007-04-14  Raja R Harinath  <rharinath@novell.com>
9587         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
9588         (version.h): Makefile is in the build directory.
9590 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
9592         * mini-amd64.h: fix for assertion failure on Solaris/amd64
9594 2007-04-11  Martin Baulig  <martin@ximian.com>
9596         * mini.c (can_access_member): Fix handling of generic classes;
9597         fixes #81259.
9599 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
9601         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
9603 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
9605         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
9607 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
9609         * mini-codegen.c: make sure the right spill amount is
9610         used for fp or integer registers (fixes the float_sub_spill() on ppc).
9612 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
9614         * mini-ppc.c: fixes for the fp_branch_nan test.
9616 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
9618         * basic.cs: Comment out new test which still fails on ia64.
9620 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9622         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
9624 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9626         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
9628 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
9630         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
9631         on 64 bit machines. Fixes part of #80738.
9633         * basic.cs: Add regression test.
9635 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
9637         * inssel.brg basic.cs: Revert previous change to fix build.
9639         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
9640         platforms.
9641         
9642         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
9644         * basic.cs: Add new regression test.
9646 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
9648         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
9649         many arguments.
9651 2007-03-16  Neale Ferguson <neale@sinenomine.net>
9653         * cpu-s390x.md: Correct length of break instruction.
9655 2007-03-16  Neale Ferguson <neale@sinenomine.net>
9657         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
9658         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
9660 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
9662         * *.c: Begin WIN64 port.
9663         * mini.c:  Use correct register in profiler.
9664         * mini-amd64.c: No inline assembly on Win64.
9665         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
9666         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
9667         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
9668         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
9669         mono_arch_ip_from_context for Win64.
9670         
9671         Contributed under MIT/X11 license.
9673 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
9675         * exceptions-amd64.c (seh_handler): Ditto.
9677         * exceptions-x86.c (seh_handler): Fix a memory leak.
9679 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
9681         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
9682         mini-s390x.c: fixed peephole optimizations to deal
9683         correctly with 1 and 2 byte reload avoidance.
9685 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9687         * cpu-s390.md, cpu-s390x.md: update localloc length.
9689 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9691         * cpu-g4.md: added missing descriptions.
9693 2007-03-14  Miguel de Icaza  <miguel@novell.com>
9695         *  Makefile.am: Add support so the tail tests are not executed on
9696         PowerPC as that is a known limitation of the PowerPC port.
9698 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
9700         * runmdesc.bat:  Move to msvc directory.
9701         
9702 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
9704         * runmdesc.bat:  Run executable that was produced by the current
9705         target and sent via an argument.
9706         
9707 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
9709         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
9710         #81102.
9712         * generics.2.cs: Add regression test.
9714 2007-03-09  Wade berrier  <wberrier@novell.com>
9716         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
9718 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
9720         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
9721         AOT code depends on this.
9723 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
9725         * mini.c: more precise tracking of types in the eval stack
9726         (part of fix for bug #81044).
9728 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
9730         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
9732         * aot-compiler.c (encode_patch): Remove an obsolete comment.
9734 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
9736         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
9738         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
9740 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
9742         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
9743         a pointer on 64 bit systems. Fixes #80190.
9745         * iltests.il: Add new regression test.
9747 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9749         * mini.c: inline a constant for Environment.IsRunningOnWindows.
9751 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
9753         * trace.c: Remove an erroneous alignemnt check when tracing.
9754           Fixes --trace on OSX86.
9756 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
9758         * mini-$(arch).h: initialize SP in context for all the archs.
9760 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
9762         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
9763         regressions in the thread tests.
9765 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
9767         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
9768         - fixed implementation of LOCALLOC opcode
9769         - implemented non-un compare for floats
9770         - code cleanup
9771         - implementation of FDIV and CKFINITE opcodes
9772         - fixes for latest mono updates
9773         - additional arch opcodes
9775 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
9777         * Makefile.am: simplify and merge rules for cross-compilation.
9779 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
9781         * local-propagation.c: Actually *apply* the fix for bug 80591...
9783 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9785         * mini-exceptions.c: backuot part of the last change
9786         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
9788 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
9789         * inssel.brg: Fix bug 59286.
9792 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
9794         * mini-exceptions.c: patch from Zoltan to correctly check for
9795         stack boundaries (using the stack register, not the frame register),
9796         fixes bugs #80724, #79717.
9798 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
9800         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
9801         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
9803         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
9804         presence of frame pointer elimination.
9806 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
9807         
9808         * mini-x86.h: NetBSD UCONTEX_REG defines.
9810 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
9812         * inssel-amd64.brg: Fix amd64 build.
9814 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
9816         * mini.h: remove extern to workaround what looks likes gcc bug 26905
9817         on amd64.
9819 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
9821         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
9822         ends.
9824         * mini-<ARCH>.c: Use mono_is_regsize_var ().
9826 2007-01-30 Mark Mason <mason@broadcom.com>
9828            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
9829            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
9830            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
9831            beginning support for CEE_JMP [not quite working yet]
9832            * tramp-mips.c: LMF handling now works
9833         
9834 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
9836         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
9838         * mini.h (NULLIFY_INS): New macro.
9840 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
9842         * mini.c: statistical profiler fix for windows, patch
9843         from Tor Lillqvist (tml@novell.com).
9845 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
9846         * local-propagation.c: Fix bug 80591.
9848 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
9850         * Makefile.am: put back the --export-dynamic option as with
9851         the previous gmodule flags (thanks to Robert Jordan).
9853 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
9855         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
9857         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
9858         simplify and speed up the local register allocator. Also rename some fields
9859         like iassign->vassign.
9860         
9861         * regalloc.c: Remove some functions which are no longer used since their
9862         inlined version is in mini-codegen.c.
9863         
9864         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
9866         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
9868 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
9870         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
9871         narrowing. Fixes #80622.
9873         * iltests.il: Add new regresssion test. 
9875 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
9877         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
9878         debug-debugger.c, debug-debugger.h: warning fixes.
9879         * driver.c: updated copyright year and made it fit in one line.
9881 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
9883         * aot-runtime.c: updated to use mono-dl instead of gmodule.
9885 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
9887         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
9889         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
9891         * iltests.il: Add new test for bug #80507.
9893 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9895         * mini-arm.h: use soft-float also on vfp for now.
9897 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
9899         * mini.c: fix some more soft-float issues.
9901 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
9903         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
9905 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
9906         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
9907         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
9908         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
9910 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
9912         * mini-arm.c: typo fix.
9914 2007-01-23  Neale Ferguson <neale@sinenomine.net>
9916         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
9918 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
9920         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
9921         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
9923         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
9925         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
9927         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
9928         
9929         * inssel.brg: Fix a warning.
9931         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
9933         * abcremoval.c ssa.c ssapre.c: Update after this change.
9934         
9935         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
9937         * dominators.c (df_set): Use mono_bitset_union_fast.    
9939 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
9941         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
9942         mini-codegen.c: reduce relocations and memory usage for the cpu
9943         description.
9945 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
9947         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
9949         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
9950         to reduce their size.
9952 2007-01-19 Mark Mason <mason@broadcom.com>
9954         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
9955         * mini-mips.c: more configuration macros, support long conditional branches, additional
9956         asserts, fix epilog instrumentation.
9957         * mini-mips.h: use standard stack walk
9958         * cpu-mips.md: increase size of div, rem and conditional branches
9959         
9960 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
9962         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
9963         to cpu spec data.
9965 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
9967         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
9968         (compile_method): Ditto.
9970         * aot-runtime.c (decode_klass_info): Ditto.
9972         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
9973         needed by the code generated by inssel.brg. Also fix a warning.
9975 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
9977         * mini.c: deal with enums that become genericinsts by
9978         being nested in a generic class (bug #79956).
9980 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
9982         * mini.c: match the generic definition to check for
9983         private access with generic types (bug #78431).
9985 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
9987         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
9988         to make life easier for people cross-compiling that insist on not
9989         using scratchbox.
9991 2007-01-17 Mark Mason <mason@broadcom.com>
9993         * inssel-long.brg: patch to deal with mips missing flags
9994         * inssel-long32-mips.brg: implement overflow checks
9995         * insset-mips.brg: implement overflow checks
9996         * mini-mips.h: implement conditional exception handling
9997         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
9998           Remove unused code, minor cleanups.
9999         * exceptions-mips.c: minor cleanups
10000         * mini-ops.h: add mips conditional exception ops
10001         * cpu-mips.md: add mips conditional exception ops
10003         
10004 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
10006         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
10007         to deal with mips missing of flags.
10009 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10011         * exceptions-ppc.c: execute fault handlers.
10013 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
10015         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
10017 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
10019         * mini.c: handle also floating point values in initialize_array.
10021 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10023         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
10024         array initialization and make it conditional on the intrins option.
10026 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10028         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
10029         relocations and put the patch info names close to the enum definition.
10031 2007-01-15 Mark Mason <mason@broadcom.com>
10033         * basic.cs, exceptions.cs: break up large tests to increase debugability.
10035 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
10037         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
10039 2007-01-12  Raja R Harinath  <rharinath@novell.com>
10041         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
10043 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10045         * Makefile.am: distribute the mips sources.
10047 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
10049         * mini-codegen.h: handle bug #80489 here, by excluding ecx
10050         directly.
10052 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
10054         * cpu-x86.md: back out for now as this triggers other regressions.
10056 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
10058         * cpu-x86.md: force src1 and dest regpair for long shift instructions
10059         to eax:edx, so ecx can't get allocated to them (bug #80489).
10061 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
10063         * mini.c, mini-exceptions.c: enabled running fault handlers
10064         (bug #80469).
10066 2007-01-03  Miguel de Icaza  <miguel@novell.com>
10068         * driver.c: If nothing fail, do not use the string "failed",
10069         because it makes it very annoying to view test result logs on the
10070         web. 
10072 2006-12-30  Miguel de Icaza  <miguel@novell.com>
10074         * debug-debugger.c (mono_debugger_main): Rename "main" to
10075         "main_method" to prevent a warning.
10077         Remove a warning for unused field.
10079 2006-12-28  Martin Baulig  <martin@ximian.com>
10081         * debug-debugger.c
10082         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
10084 2006-12-22  Martin Baulig  <martin@ximian.com>
10086         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
10087         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
10088         seperate `.mdb_debug_info' section, so we can access it from the
10089         debugger even if the binary is stripped.
10091         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
10092         from the `.mdb_debug_info' here to prevent the linker from
10093         removing that section.
10095         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
10096         mdb-debug-info64.s.
10098 2006-12-19  Robert Jordan  <robertj@gmx.net>
10100         * mini-x86: enable the code to return small structures in
10101         registers for FreeBSD as well. Fixes bug #80278.
10102         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
10104 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10106         * mini-x86.c: align the stack when calling the profiler
10107         function instrumenting the prolog (on OSX).
10109 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10111         * mini.c: emit a break opcode where Debugger.Break () is called.
10113 2006-12-13  Miguel de Icaza  <miguel@novell.com>
10115         * mini.c (mono_method_to_ir): Provide useful information on this
10116         assert, to prevent others from debugging like I did.
10118 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10120         * mini.c: enable code which was incorrectly commented
10121         (bug #80235).
10123 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10125         * mini-x86.c: enable on OSX, too, the code to return small
10126         structures in registers.
10128 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
10130         * mini-x86.c: remove the use of the dynamic code manager here, too.
10132 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
10134         * mini.h, debug-debugger.c, tramp-*.c: fixed 
10135         mono_debugger_create_notification_function() to use
10136         mono_global_codeman_reserve () instead of a dynamic code manager.
10138 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
10140         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
10141         ves_array_element_address() jit icall and use a generated
10142         managed method instead (which is about 4 times faster for a rank 3
10143         array access).
10145 2006-11-29  Mark Mason  <mason@broadcom.com>
10147         * basic-calls.cs: additional tests for passing
10148         structures as function arguments.
10150 2006-11-29  Mark Mason  <mason@broadcom.com>
10152         * mini-mips.h: disable custom exception handling
10153         * mini-mips.c: throw/rethrow should use jalr to call
10154         exception stubs.  Fixed bug with passing structures
10155         by value. More support for tracing floating point
10156         functions.
10158 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10160         * mini.c: fixed typo in the soft-float ldind.r4 handling
10161         (bug #80086).
10163 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10165         * mini.c, mini.h, driver.c: added --runtime command line
10166         option to select a different runtime than the autodetected one.
10167         * jit.h: added API for embedders to initialize with a specific
10168         runtime version.
10170 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
10172         * mini.c: handle also boxing of r4 values (bug #80024).
10174 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10176         * mini-ppc.c: force indirect calls until we reserve
10177         enough address space for all the generated code.
10179 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
10181         * exceptions-arm.c: workaround bugs in the libc definition
10182         of struct ucontext.
10184 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10186         * inssel.brg: fixes from me and Mark Mason.
10188 2006-11-23  Dick Porter  <dick@ximian.com>
10190         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
10191         semaphore display now we've fixed the initial value
10193 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10195         * inssel.brg: partially revert the last change to fix the build.
10197 2006-11-21  Mark Mason  <mason@broadcom.com>
10199         * inssel.brg: Add and use compare-and-branch macros to support
10200         architectures that do not have condition code registers (ie. MIPS).
10201         * *-mips.{c,brg,md}: Fix copyright statements
10203 2006-11-20  Mark Mason  <mason@broadcom.com>
10205         * Makefile.am: remove mini-codegen.c from list of MIPS sources
10206         * mini.c: Allow GET_CONTEXT to be specified by the arch port
10207         * mini.h: Added declaration for mono_print_ins()
10208         * mini-codegen.c: added ins_spec initializer for MIPS
10209         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
10210         vreg to be virtual and hreg to be non-virtual.
10211         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
10212         is not yet working/implemented correctly.
10213         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
10214         non-static, fixup calls to print_ins() from other parts in the file.
10216 2006-11-20  Mark Mason  <mason@broadcom.com>
10218         * basic-calls.cs: added tests for passing structures as arguments
10219         to calls.
10221 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10223         * inssel-long32.brg: optimize signed division by power of two.
10225 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
10227         * mini-arm.c: added support for interworking with thumb code
10228         (mono must be still be built using the ARM instruction encoding).
10230 2006-11-19  Miguel de Icaza  <miguel@novell.com>
10232         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
10233         verifier has different rules for it.   Fixes a few verifier issues
10234         in the test suite.
10236         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
10237         at the end, so people know what happened.
10239 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10241         * brach-opts.c: in optimize_exception_target() make sure we
10242         are in a catch clause (fixes bug #79871).
10244 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10246         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
10247         more soft-float support fixes.
10249 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
10251         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
10252         that are passed half on the stack and half in registers.
10254 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10256         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
10257         more mips integration work from Mark E Mason 
10258         <mark.e.mason@broadcom.com>.
10260 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10262         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
10263         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
10264         tramp-mips.c: added sources for the mips port, not
10265         integrated in the build yet. Contributed by
10266         Mark E Mason <mark.e.mason@broadcom.com>.
10268 2006-11-14  Neale Ferguson <neale@sinenomine.net>
10270         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
10272 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10274         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
10275         put the soft-float rules in its own file since it seems to
10276         break s390 compilation.
10278 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10280         * mini-arm.c: fixed wrnings.
10282 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
10284         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
10285         inssel-arm.brg: ARM support for soft-float.
10287 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10289         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
10290         loads and stores of 32 bit fp values.
10292 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
10294         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
10296         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
10297         works. Fixes #79852 and #79463.
10299 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10301         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
10302         more soft-float support WIP and fixes.
10304 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
10306         * mini-arm.c: some VFP updates.
10308 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
10310         * mini-exceptions.c: 0 is a valid local var offset in some
10311         architectures, don't assert (bug #78508).
10313 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
10315         * exceptions-arm.c: fixed off by one error in stack walk code.
10317 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10319         * mini.h, mini.c: more precise tracking of type load exceptions.
10321 2006-11-03  Robert Jordan  <robertj@gmx.net>
10323         * Makefile.am: [WIN32] Add monow.exe target.
10324         * driver.c: [WIN32] Don't detach the console when debugging.
10325         Fixes bug #79797.
10326         
10327 2006-10-30  Miguel de Icaza  <miguel@novell.com>
10329         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
10331 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
10333         * aot-compiler.c (emit_method_info): Add a case missed earlier.
10335         * driver.c (mini_regression): Fix --regression with AOT.
10337         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
10339 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
10341         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
10343         * mini-sparc.h: Don't use sigaction on sparc/linux.
10345         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
10347         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
10349         * mini-exceptions.c: Add proper include files for getpid ().
10351 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
10353         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
10354         address instead of a MonoJitInfo* to avoid decoding the exception info for the
10355         method.
10357         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
10358         name cache to reduce its size.
10360         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10362 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
10364         * mini-x86.c: Save/restore the current LMF structure more efficiently using
10365         the mono_lmf TLS variable.
10367         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
10368         trampoline lmf frames.  
10370         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
10372 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
10374         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
10375         the mono_lmf TLS variable.
10377         * mini-exceptions.c: Access the LMF structure through accessors.
10379         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
10380         variable instead of in jit_tls->lmf.
10382         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
10383         
10384         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
10385         trampoline lmf frames.
10387         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
10389 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
10391        * mini.c trace.c mini-x86.c: Revert these too.
10392         
10393        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
10394        signature change.
10396 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
10398         * genmdesc.c: removed now dead code.
10400 2006-10-09  Robert Jordan <robertj@gmx.net>
10402         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
10404 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
10406         * mini.h: do not leave gaps in the opcode values.
10408 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
10410         * jit-icalls.h: flag functions as internal here, too.
10412 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
10414         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
10415         functions with the internal attribute.
10417 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
10419         * aot-compiler.c: fclose the file descriptor in the profile read loop.
10421 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10423         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
10424         for soft-float.
10426 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
10428         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
10429         tail calls as on other platforms.
10431         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
10433         * iltests.il: Add a few tailcall tests.
10435 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10437         * driver.c: fix loop for old compilers (bug #79521).
10439 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
10441         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
10443         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
10445         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
10446         metadata without any code.
10448         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
10449         more precise debugging information using gdb.
10451 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
10453         * inssel-ia64.brg: Make the helper methods static.
10455 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10457         * inssel-x86.brg: make the helper methods static.
10459 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
10461         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
10463 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10465         * mini.c: updates for monoburg changes.
10466         * inssel.brg: make a few helper functions static as they should.
10468 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
10470         * Makefile.am: Move mini-codegen.c to common_sources.
10472 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10474         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
10475         instructions.
10476         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
10477         mini-ppc.h: port to use the common local register allocator.
10479 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10481         * mini.h: Remove the comment too then.
10483 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
10485         * mini.h: put back backend.data which is to be used shortly and
10486         doesn't increase the size of MonoInst. If any 64 bit arch aligned
10487         pointers on 4 byte boundaries it'd have much bigger issues running
10488         and you can ifdef it out anyway.
10490 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10492         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
10493         MonoInst size by 4 bytes on 64 bit machines.
10495 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10497         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
10498         replacement with more meaningful field names. Arch maintainers, please
10499         check the assigned names are good enough for your arch.
10501 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10503         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
10504         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
10506 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10508         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
10509         relocations and memory requirements, put the optimization flags
10510         definitions in their own file.
10512 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
10514         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
10516         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
10518 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
10520         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
10522 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
10524         * inssel.brg: use the correct function to get the size of an item
10525         in an array, given an element class.
10526         * aot-compiler.c: do not access class->class_size directly.
10528 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10530         * mini.h, debug-mini.c: added a debugging function to print
10531         info about local variables and arguments in a jitted method.
10533 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
10535         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10537         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
10539 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
10541         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
10542         inner and outer loops when passing vtypes.
10544 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
10546         * mini-ppc.c: take into account the cpu errata for cache flushing
10547         which caused some random errors (bug #79381).
10549 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
10551         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
10552         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
10554 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
10556         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
10557         loaded.
10559         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
10560         freebsd ports tree.
10562         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
10563         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
10565         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
10566         displacement.
10568 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
10570         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
10572 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
10574         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
10575         macro does not have to be changed during debugging.
10577         * 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>.
10579         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
10581         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
10582         
10583         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
10584         MONO_ARCH_NO_EMULATE_MUL is defined.
10586         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
10588         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
10590         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
10592         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
10593         
10594 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
10596         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
10597         stuff to mini-exceptions.c where it is used.
10599         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
10600         setup code, the real one is in mini-exceptions.c.
10602         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
10603         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
10604         some changes from the freebsd ports tree.
10606         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
10607         constants.
10608         
10609         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
10611 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
10613         * mini.c: on Linux, check for /proc to be mounted
10614         (bug# 79351, novell bug#201204).
10616 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
10618         * mini.c: handle cases where pthread_attr_getstack() behaves
10619         incorrectly (bug #78096).
10621 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
10623         * mini-arm.c: support larger stack frames (bug #79272).
10625 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
10627         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
10629         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
10630         tokens.
10632         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
10633         mono_class_from_name () to find a class from its name.
10635         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
10637 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
10639         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
10641 2006-09-05  Kornél Pál  <kornelpal@gmail.com>
10643         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
10645 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
10647         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
10648         callinfo->trampoline.
10650         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
10651         fixes #79271.
10652         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
10653         future.
10655 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
10657         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
10659 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
10661         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
10662         stats.method_trampolines, it is already done by the generic trampoline code.
10664         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
10665         
10666 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
10668         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
10670         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
10672         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
10674         * mini.c (print_jit_stats): Print mscorlib mempool size too.
10675         
10676         * mini.c (print_jit_stats): Print new stats.
10678         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10680 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
10682         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
10683         Address on two dimensional arrays. Fixes #78729.
10685         * mini.h (MonoCompile): Add a 'skip_visibility' field.
10687         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
10688         a method.
10690         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
10692         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
10693         #79130.
10694         
10695         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
10696         a race condition.
10697         (mini_get_ldelema_ins): Ditto.
10699 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
10701         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
10702         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
10703         Fixes #79213.
10705 2006-08-29 Neale Ferguson <neale@sinenomine.net>
10707         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
10708         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
10710         * exceptions-s390x.c: Cosmetic change.
10712         * tramp-s390.c: Fix warning.
10714         * cpu-s390.md: Correct length of mul_imm.
10716 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10718         * aot-compiler.c: added binary writer with ELF backend
10719         implementation (only on Linux/x86 for now).
10721 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
10723         * Makefile.am: Don't run net 2.0 AOT tests.
10725         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
10726         (mono_compile_assembly): Skip net 2.0 assemblies as well.
10728         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
10730 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10732         * aot-compiler.c: simplified and refactored the asm-writing code
10733         to allow different backends.
10735 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
10737         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
10739         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
10740         little. Share patches of type TYPE_FROM_HANDLE as well.
10742         * mini.c (mono_patch_info_equal): New helper function.
10743         (mono_patch_info_hash): Ditto.
10745         * aot-compiler.c (emit_method_code): Fix s390 build.
10747         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
10748         is not handled because it is stored as a flag and not as a type ctor. Fixes
10749         #79016.
10751 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10753         * aot-compiler.c: Fix computation of GOT slot statistics.
10754         
10755         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
10756         Also remove support for not PIC AOT.
10758         * mini.h: Bump AOT file format version.
10760         * objects.cs: Add a test for #78990.
10762         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
10763         (peter.dettman@iinet.net.au). Fixes #79087.
10765         * basic-long.cs: Add a test for the above.
10767 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
10769         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
10770         
10771         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
10772         code somewhat.
10774 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
10776         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
10777         exceptions.
10779 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
10781         * mini.c: Don't verify COM proxy invoke calls
10782         
10784 2006-08-10  Dick Porter  <dick@ximian.com>
10786         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
10787         which process is holding semaphores locked.
10789 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
10791         * mini-ia64.c mini-amd64.c: Fix #79027.
10793         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
10795         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
10797         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
10798         implicit arguments in a vararg call. Fixes #79027.
10800 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
10802         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
10803         (mono_get_array_new_va_signature): Ditto.
10805 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
10807         * aot-runtime.c: Call init_plt lazily.
10809         * inssel-long.brg: Fix unsigned long->int conversion.
10811         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
10813         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
10814         that most data is now in the .rss/.data section.
10816 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
10818         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
10820         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
10822         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
10824         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
10826         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
10827         virtual call. Fixes #79010.
10829         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
10830         and use the result as the this argument in the real call.
10832         * generics.2.cs: Add a new test for #79010.
10833         
10834 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
10836         * mini-x86.c: Fix a warning.
10838         * aot-compiler.c: Add a bunch of statistics.
10840         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
10842 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
10844         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
10846 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
10848         * 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>.
10850 2006-07-13  Miguel de Icaza  <miguel@novell.com>
10852         * mini.c (mono_method_to_ir): Obtain the original method in the
10853         CIL stream and use this to perform validation.
10855         Fixed: #78816
10857 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
10859         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
10860         (mono_arch_call_opcode): Ditto.
10862         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
10863         #78826.
10865         * mini.c (mono_patch_info_dup_mp): New helper function.
10866         
10867         * aot-compiler.c (compile_method): Fix some of the memory allocated during
10868         compilation. Fixes #78827.
10870 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
10872         * declsec.c: Use original security informations for
10873           MONO_WRAPPER_MANAGED_TO_MANAGED.
10875 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
10877         * mini.c: Allow Com Interop methods/classes and
10878         don't verify COM wrapper calls
10879         
10881 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
10883         * inssel-long32.brg: Fix long->i4 checked conversion.
10885         * exceptions.cs: Add a test for the above.
10887 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
10889         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
10891         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
10892         leaks.
10894         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
10895         #78775.
10897 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
10899         * mini.c: Fix solaris/x86 exception handling.
10901         * Makefile.am: Get rid of $(ICU_LIBS).
10903 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
10905         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
10906         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
10907         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
10909         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
10911         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
10912         this function causes a SIGSEGV.
10914 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
10916         * mini.c: Remove unused solaris/x86 includes.
10918 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
10920         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
10922 2006-06-20  Jb Evain  <jbevain@gmail.com>
10924         * cpu-g4.md: fix max length of start_handler instruction.
10926 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
10927         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
10929 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
10930         * ssa.c: Fixed bug 78653 for SSA based deadce.
10931         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
10932         MonoInst.flags, used in SSA based deadce.
10933         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
10934         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
10936 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
10938         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
10939         it can end up using non executable memory on ppc64 systems
10940         running ppc32 userspace (fix from Johannes Berg).
10942 2006-06-14  Dick Porter  <dick@ximian.com>
10944         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
10945         4.1.1
10947 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
10948         * mini.c: Made so that inline is locally disabled if it would
10949         trigger a .cctor, because too many apps depend on this behavior
10950         (which seems to be also the one of the MS CLR).
10952 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
10954         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
10955         No idea why this worked before.
10957         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
10958         which branch to outer exception clauses since they could skip the
10959         inner finally clauses. Fixes #78633.
10961         * exceptions.cs: Add a test for the above.
10963         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
10964         Fixes #78629.
10966         * iltests.il: Add a test for the above.
10968 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
10970         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
10971         after the end of a try bblock, to prevent asserts in mini_method_compile ().
10973         * iltests.il: Add a test for the above.
10975 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
10977         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
10978         
10979         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
10980         methods as instrinsics.
10982 2006-06-09  Wade Berrier <wberrier@novell.com>
10984         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
10985         (simple-cee-ops.h ssapre-mini-ops.h)
10987 2006-06-09  Neale Ferguson <neale@sinenomine.net>
10989         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
10990         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
10991         instruction).
10992         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
10993         * cpu-s390x.md: Fix max. length values for a couple of instructions.
10995 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10997         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
10999 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
11001         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
11002         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
11003         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
11004         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
11005         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
11006         of opcodes, so that bug 78549 should not happen again.
11007         * ssapre.c: Updated to use the renamed files.
11009 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
11011         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
11012         in OP_ATOMIC_EXCHANGE_I4.
11014 2006-06-07  Wade Berrier <wberrier@novell.com>
11016         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
11017         in mono_debugger_create_notification_function)
11019 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
11021         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
11022         
11023         * mini.c (type_from_stack_type): Disable some changes which do not
11024         seem to work.
11026         * driver.c: Reenable opts.
11028         * mini.h (MonoStackSlot): New structure to keep track of the verification state
11029         of the evaluation stack.
11030         
11031         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
11032         evaluation stack trace at entry to the bblock.
11034         * mini.c (merge_stacks): New function to perform verification of stack merges.
11035         Turned off by default.
11037         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
11038         STACK_MP.
11039         
11040 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
11042         * local-propagation.c: Fixed bug 78549.
11044 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
11046         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
11048 2006-06-02  Miguel de Icaza  <miguel@novell.com>
11050         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
11051         tramp-arm.c, tramp-ia64.c
11052         (mono_debugger_create_notification_function): Update signature to
11053         new signature and use new protocol for creating the notification
11054         function.  
11056         Should fix the build.
11058 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
11060         * exceptions-ppc.c (mono_jit_walk_stack)
11061         (ves_icall_get_frame_info): Fix the build
11063 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
11065         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
11067 2006-05-31  Raja R Harinath  <rharinath@novell.com>
11069         * il2tests.2.il: New file for generics CIL tests.  Add test for
11070         #78019.
11071         * Makefile.am: Update.
11073         Fix #78019
11074         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
11075         to nullable types.
11077 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
11079         * aliasing.c: Fixed bug 78311.
11081 2006-05-29  Martin Baulig  <martin@ximian.com>
11083         * mini-exceptions.c (mono_find_jit_info): When computing the
11084         native offset, check whether we're actually inside the method's
11085         code; call mono_debug_print_stack_frame() to format the frame.
11086         (ves_icall_System_Exception_get_trace): Call
11087         mono_debug_print_stack_frame() to format the stack frame.
11088         (ves_icall_get_trace): Update to the new debugging API.
11089         (mono_jit_walk_stack_from_ctx): Likewise.
11090         (ves_icall_get_frame_info): Likewise.
11092         * mini.c (get_method_from_ip): Use the new debugging API.
11093         (mono_print_method_from_ip): Likewise.
11095         * exceptions-ppc.c
11096         (mono_jit_walk_stack): Use the new debugging API.
11097         (ves_icall_get_frame_info): Likewise.   
11099 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
11101         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
11103 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
11105         * mini.c: Added "limitator" to inline for debugging.
11107 2006-05-24  Martin Baulig  <martin@ximian.com>
11109         * debug-debugger.c (mono_debugger_init): Create a private,
11110         malloc()-based code manager for the notification function and
11111         intentionally leak it on exit.  This fixes the crash-on-exit race
11112         condition.
11114         * tramp-amd64.c
11115         (mono_debugger_create_notification_function): Added
11116         `MonoCodeManager *' argument.
11118         * tramp-x86.c
11119         (mono_debugger_create_notification_function): Added
11120         `MonoCodeManager *' argument.
11122 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
11124         * aliasing.c: Fixed 64 bit issue.
11125         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11126         default since all known bugs are fixed (one more time!).
11128 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11130         * mini.c: write barrier support.
11132 2006-05-23  Martin Baulig  <martin@ximian.com>
11134         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
11135         check at the top of the file.
11137 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
11139         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
11140         reverting changes without reason and without changelog entries.
11142 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
11144         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
11145         to a few opcodes. Fixes #78439.
11147         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
11148         consistency with other archs.
11150         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
11152 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11154         * debug-debugger.c: fix the build.
11156 2006-05-17  Martin Baulig  <martin@ximian.com>
11158         * debug-debugger.c
11159         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
11160         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
11161         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
11162         (debugger_attach): Call GC_mono_debugger_add_all_threads().
11164 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
11166         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
11168 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
11170         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
11171         MONO_TYPE_GENERICINST.
11172         
11173         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
11174         MONO_TYPE_GENERICINST.
11176 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
11178         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
11179         #78325.
11181 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
11183         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
11184         mempool.
11185         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
11187 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
11189         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
11190         mono_trace_cleanup ().
11192         * iltests.il: Fix problem with the newly added test.
11194         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
11195         due to register constraints, free up the previous hreg. Fixes #78314.
11197         * iltests.il: Add new test for #78314.  
11199         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
11200         Interlocked.Add. Fixes #78312.
11202         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
11203         
11204 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
11206         * inssel.brg (mini_emit_virtual_call): Fix a warning.
11208 2006-05-05  Martin Baulig  <martin@ximian.com>
11210         * debug-mini.c (mono_debug_open_block): New method.
11212         * mini-amd64.c
11213         (mono_arch_output_basic_block): Call mono_debug_open_block() at
11214         the beginning of each basic block.
11216         * mini-x86.c
11217         (mono_arch_output_basic_block): Call mono_debug_open_block() at
11218         the beginning of each basic block.
11220 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
11222         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11223         default until I understand why they break the build on amd64.
11225 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
11227         * mini.c (mini_cleanup): Call mono_cleanup ().
11229         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
11230         errors.
11232 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
11234         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
11235         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11236         default since all known bugs are fixed, and I cannot reproduce bug
11237         77944... I'm asking Matt Hargett to test again after this commit.
11239 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
11241         * mini-codegen.c: Fixed typo that thrashed inline.
11243 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
11245         * dominators.c (compute_dominators): Avoid using a worklist since
11246         it is not correct in some cases. Instead, iterate over all bblocks as
11247         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
11249 2006-04-28  Miguel de Icaza  <miguel@novell.com>
11251         * mini.c (mono_jit_compile_method_inner): Use
11252         mono_prepare_exception_from_error that resets the value
11253         internally.
11255 2006-04-27  Miguel de Icaza  <miguel@novell.com>
11257         * mini.c: Move the mini_loader_error_to_exception to metadata. 
11258         
11259 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
11261         * aliasing.c: Fixed bug 78210.
11263 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
11265         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11266         default until all their problems (or the ones they trigger) are fixed.
11268 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
11270         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
11271         
11272         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
11273         as loaded only after resolving patches since that could invoke the same method.
11275         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
11277         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
11278         functions.
11280         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
11281         AOT loader.
11283         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
11284         stack.
11286         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
11287         made from AOT code through the PLT table.
11289         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
11290         holding the plt offset when a call is made to the aot plt trampoline.
11291         
11292 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
11294         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
11295         amd64 AOT support.
11297         * Makefile.am (common_sources): Fix build breakage.
11299         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
11300         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
11301         intra-assembly calls if possible.
11302         
11303         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
11305         * mini-trampolines.c: Handle PLT entries.
11307         * mini.c: Avoid creating a GOT var for calls.
11309         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
11310         from mscorlib code.
11312         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
11313         from mscorlib code.
11315         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
11316         AOT code.       
11318         * mini.h: Bump AOT file format version.
11319         
11320         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
11321         covers more cases.
11323 2006-04-25  Martin Baulig  <martin@ximian.com>
11325         * driver.c: Disable copyprop, consprop and inline when running
11326         inside the debugger.
11328 2006-04-25  Martin Baulig  <martin@ximian.com>
11330         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
11331         with `get_current_thread' and added `detach'.
11332         (MonoDebuggerMetadataInfo): Added `thread_size',
11333         `thread_tid_offset', `thread_stack_ptr_offset' and
11334         `thread_end_stack_offset'.
11336 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
11338         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
11339         aot-runtime.c.
11341         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
11342         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
11344         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
11346         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
11348         * aot.c: Add support for ADJUSTED_IID.  
11350 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
11352         * aot.c (emit_method_order): Don't align method_order_end.
11354         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
11355         the interface ID changes.
11357 2006-04-21  Dick Porter  <dick@ximian.com>
11359         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
11360         cleaning up a thread.  Fixes the new part of bug 77470.
11362 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
11364         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
11365         to managed wrapper.
11366                      
11367 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
11369         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
11370         
11371         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
11372         SIGSEGV. Fixes #78072.
11374         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
11375         unregister our SIGABRT handler.
11377 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
11379         * mini.c: Disabled inline where it can alter the call stack in a
11380         way visible from managed code.
11381         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
11382         default.
11384 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
11386         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
11387         on other platforms. Fixes #78089.
11389 2006-04-13  Martin Baulig  <martin@ximian.com>
11391         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
11392         determine whether we're inside the debugger.
11394         * debug-debugger.h
11395         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
11397 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11399         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
11400         handler clauses. Fixes #78024.
11402         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
11403         in the CALL_MEMBASE opcodes. Fixes #78088.
11404         (mono_arch_get_vcall_slot_addr): Ditto.
11406 2006-04-10  Martin Baulig  <martin@ximian.com>
11408         * debug-debugger.c: The thread handling code has now been moved
11409         into ../metadata/threads.c.
11411 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11413         * driver.c (mono_main): Fix --with-gc=none build.
11415         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
11416         (mono_spillvar_offset_float): Ditto.
11417         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
11418         hreg, not when its !global, since on ia64, there is a third category: stacked
11419         registers.      
11421 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
11423         * mini.c: set MonoInst->klass for load field address and a few other
11424         places.
11426 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11428         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
11430 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11432         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
11433         the branch opt changes.
11435 2006-04-06  Dick Porter  <dick@ximian.com>
11437         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
11438         
11439         * wapihandles.c (mini_wapi_seminfo): 
11440         * driver.c (mono_main): Add semaphore info option
11442 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11444         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
11445         branch optimization changes. Fixes #78009.
11447 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11449         * mini.c: ignore accessibility of methods in managed->native wrappers.
11451 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11453         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
11454         
11455         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
11457 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11459         * mini.c: Modify the branch optimizations to preserve the invariant that
11460         the entries inside the in_bb and out_bb arrays are unique.
11461         (mono_unlink_bblock): Avoid creation of new arrays.
11463 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
11465         * mini.c (mono_unlink_bblock): Fix regression caused by previous
11466         change (#77992).
11468 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
11470         * mini.c (optimize_branches): Remove the "optimizations" in
11471         the cbranch1/cbranch2 -> branch cases which were causing several
11472         problems in the past. Fixes #77986.
11474 2006-03-31  Chris Toshok  <toshok@ximian.com>
11476         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
11477         default optimizations :(
11479 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11481         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
11482         branch.
11484 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
11486         * local-propagation.c: Added comments to structs and removed
11487         "Mono" prefixes from local tree mover types.
11489 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
11491         * Makefile.am (arch_sources): Define this for each architecture so 
11492         libmono_la_SOURCES is defined in one place.
11494 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
11496         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
11497         from handles/.
11499 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
11501         * driver.c: print the GC name supplied by configure.
11503 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
11505         * local-propagation.c: Added tree mover, and moved here all the
11506         local propagation code from mini.c
11507         * mini.c: Added support for treeprop, and moved all the local
11508         propagation code to local-propagation.c
11509         * mini.h: Added support for treeprop
11510         * driver.c: Added support for treeprop, enabled consprop, copyprop,
11511         treeprop, inline and deadce by default
11512         * Makefile.am: Added local-propagation.c
11514 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
11516         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
11518 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
11520         * debug-debugger.c: make it compile without the Boehm GC.
11522 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11524         * mini.c: fixed issue with mismatch when an icall is registered
11525         with multiple names but same address.
11527 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11529         * declsec.c, mini-exceptions.c: use write barrier to set reference
11530         fields of managed objects.
11532 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
11534         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
11535         (can_access_internals): Fix a warning.
11537         * mini.c (print_method_from_ip): Rename this to 
11538         mono_print_method_from_ip so it gets exported.
11540         * trace.c: Deal with strings inside StringBuilder's containing garbage
11541         and fix memory leaks. Fixes #77848.
11543 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
11545         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
11546         fixes #77787.
11548 2006-03-16 Neale Ferguson <neale@sinenomine.net>
11549         
11550         * mini-s390.c: Remove OP_X86_TEST_NULL.
11552 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11554         * mini.c: use the correct GetHashCode() for the moving collector.
11556 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
11558         * liveness.c: Regalloc spill cost tuning.
11560 2006-03-15 Neale Ferguson <neale@sinenomine.net>
11561         
11562         * mini-s390x.h: Correct S390_LONG macro.
11564         * mini-s390x.c: Cleanup unused code.
11566 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11568         * jit-icalls.h: New file.
11570         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
11571         icalls and include that instead of including jit-icalls.c.
11573         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
11574         OP_X86 opcodes.
11576 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
11578         * mini.c: when checking for member accessibility, also check for
11579         friend assemblies and for explicit interface implementations.
11581 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11583         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
11585         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
11587         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11588         common cases are done first.    
11590         * mini-ops.h: Only define platform specific opcodes on the given platform.
11592         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
11593         branch.
11594         
11595 2006-03-14  Martin Baulig  <martin@ximian.com>
11597         Revert Paolo's change from r57348:
11599         * mini.h: don't use gboolean for bitfields.
11600         * mini.c: verifier changes for fields and methods accessibility.
11602 2006-03-13  Neale Ferguson <neale@sinenomine.net>
11604         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
11606         * mini-s390x.c: Fix conv_r_un.
11608         * cpu-s390, cpu-s390x.md: Fix lengths.
11610 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11612         * mini.c: nested types have access to all the nesting
11613         levels, not just the enclosing types.
11615 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11617         * mini.c: added a few more verification checks.
11619 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
11621         * liveness.c: Merge optimizations from the linear-il branch.
11623 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11625         * mini-ia64.c (emit_call): Add a comment.
11627         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
11629         * tramp-ia64.c: Fix some warnings.
11631 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11633         * mini.h: don't use gboolean for bitfields.
11634         * mini.c: verifier changes for fields and methods accessibility.
11636 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11638         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
11639         lazy icall wrapper changes.
11641         * dominators.c: Replace all the dominator algorithms with faster
11642         ones from the linear-il branch.
11644         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
11645         the mempool.
11647         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11648         common cases are done first.
11650         * mini-amd64.c: Fix some warnings.
11652         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
11653         from the mempool.
11655         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
11656         added code.
11658         * mini.h: Add a missing prototype.
11660 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11662         * mini.c: Compile icall wrappers lazily.
11664         * mini-codegen.c: Use printf instead of g_print since its much faster.
11666         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
11667         function.
11669         * mini.c (optimize_branches): Cache the negative result from 
11670         remove_block_if_useless ().
11672         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
11673         Also fix some bblock linking issues.
11675         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
11676         assembly files.
11678         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
11680         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
11681         accessed fields first, for better cache behavior.
11682         
11683 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11685         * mini.c: speedup IList<T> array accesses.
11687 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11689         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
11690         inline_costs counter. Fixes #77190.
11692 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
11694         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
11695         trace messages. Fixes #77706.
11697 2006-03-04  Martin Baulig  <martin@ximian.com>
11699         * tramp-amd64.c, tramp-x86.c
11700         (mono_debugger_create_notification_function): Use
11701         mono_global_codeman_reserve() to allocate a buffer at runtime and
11702         return it.
11704         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
11706         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
11707         notification function at runtime and then call `initialize' in the
11708         `MONO_DEBUGGER__debugger_info' vtable.
11710 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11712         * iltests.il: Fix a visibility problem.
11714 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11716         * driver.c, mini.c: add hooks for the counters API.
11718 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11720         * driver.c: show disabled options.
11722 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11724         * linear-scan.c: always use cost-driven selection.
11726 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11728         * jit-icalls.c (helper_compile_generic_method): Revert change from
11729         2006-02-24.
11731 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
11733         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
11735 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11737         * inssel.brg: style fixes, mostly to force the updated monoburg
11738         to run for people using svn.
11740 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11742         * mini.c: match monoburg changes.
11744 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11746         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
11747         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
11748         declaration in the header file.
11750 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11752         * helpers.c: reduce relocations and mem usage.
11754 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11756         * mini.h, mini-codegen.c: disable logging features if
11757         requested by configure.
11759 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
11761         * mini.c: tiny verifier changes.
11763 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11765         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
11766         cpu-pentium.md: stack alignment changes for osx/x86,
11767         partially from Geoff Norton <gnorton@customerdna.com>.
11769 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11771         * jit-icalls.c (helper_compile_generic_method): Update to changes
11772         in metadata/class.c.
11774 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11775         
11776         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
11777         
11778         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
11779         interface calls with large offsets.
11781 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11783         * jit-icalls.c (helper_compile_generic_method): Document the
11784         special-case we depend on so that we can inflate the method twice
11785         with the same context with no bad side-effects.
11787 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11789         * mini-x86.c, mini-amd64.c: fix for case when xen support
11790         is disabled.
11792 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11794         * mini-x86.c, mini-amd64.c: generate code to access tls items
11795         in a faster way for Xen systems.
11797 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11799         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
11800         updates and compilation fixes for the OSX/x86 port, mostly from
11801         Geoff Norton <gnorton@customerdna.com>.
11803 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
11805         * inssel.brg: faster interface call implementation
11806         to sync with the interface_offsets MonoVTable changes.
11808 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11810         * mini.c: more verification checks.
11812 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
11814         * mini.c: added a few more verification checks.
11816 2006-02-17      Neale Ferguson <neale@sinenomine.net>
11818         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
11819         facility on the processor and use it if available.
11821 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11823         * driver.c, aot.c, mini.c: throw exception if the IL code is
11824         invalid or unverifiable.
11826 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11828         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
11829         m.StructField.
11831 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
11833         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
11835 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11837         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
11838         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
11839         handling of instantiated generic valuetypes.
11841 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
11843         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
11844         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
11845         instead.
11847         * generics.2.cs: Revert the nullable reftypes tests.
11849 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
11851         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
11852         using __builtin_frame_address (1) as it doesn't work in the presence
11853         of optimizations. Hopefully fixes #77273.
11855         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
11856         -> generics.cs change as it doesn't work with some automake versions.
11858 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11860         * mini.c: handle systems that sue a different way to
11861         retrieve the stack address of the current thread.
11863 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
11865         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
11866         it specially in the makefile.
11868         * generics.2.cs: Add tests for nullable reference types.
11870 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11872         * mini.c: always handle the case when mono_jit_init()
11873         is called in a thread different from the main thread,
11874         confusing libgc (bug #77309).
11876 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
11878         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
11880 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11882         * mini.c: change optimize_branches () to use a single loop
11883         and introduce a new optimization to simplify some range checks.
11885 2006-02-03  Martin Baulig  <martin@ximian.com>
11887         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
11888         and merged with debugger_thread_manager_add_thread().
11889         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
11890         inform the debugger about the main thread.
11892 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
11894         * basic.cs: Add test for div.un/rem.un constant folding.
11896 2006-02-03  Neale Ferguson <neale@sinenomine.net>
11898         * cpu-s390x.md: correct int_xor_imm length
11900 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
11902         * generics.2.cs: New test for #77442.
11904         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
11905         #77442.
11907 2006-02-02  Martin Baulig  <martin@ximian.com>
11909         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
11910         <mono/metadata/mono-debug-debugger.h>   
11912         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
11914 2006-02-02  Martin Baulig  <martin@ximian.com>
11916         * debug-debugger.h: New header file for debug-debugger.c.
11918         * debug-debugger.c: Big API cleanup; don't run the managed Main()
11919         function is a separate thread anymore; add support for attaching.
11921 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
11923         * tramp-x86.c: Fix a warning.
11925 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
11927         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
11928         on very large methods.
11930         * aot.c (load_patch_info): Fix a warning.
11932 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11934         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
11935         mini-ops.h: alu membase optimizations.
11937 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
11939         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
11940         to speedup StringBuilder.
11942 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
11944         * dominators.c (mono_compute_natural_loops): Fix detection of
11945         loop body start blocks.
11947         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
11949 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
11951         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
11952         #75145.
11954 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
11956         * aliasing.c: Fixed aliasing issue on 64 bit archs.
11958 2006-01-25  Martin Baulig  <martin@ximian.com>
11960         * debug-debugger.c: Moved the `MonoDebuggerManager' and
11961         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
11962         started to cleanup this file a little bit.
11964 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
11966         * mini.c: optimize a codepath frequently happening in generics code.
11968 2006-01-23  Martin Baulig  <martin@ximian.com>
11970         * Makefile.am: Only compile debug-debugger.c on supported platforms.
11972         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
11973         functions directly.
11975         * driver.c: debug-debugger.c is only available if
11976         `MONO_DEBUGGER_SUPPORTED' is defined.   
11978 2006-01-23  Martin Baulig  <martin@ximian.com>
11980         * debug-debugger.c: Only enable this on platforms where the Mono
11981         Debugger is working (x86 and x86_64).
11983 2006-01-21  Martin Baulig  <martin@ximian.com>
11985         The Mono Debugger is now using the normal `mono' instead of the
11986         `mono-debugger-mini-wrapper' when executing managed code.
11988         * debug-debugger.c: New file; previously known as
11989         debugger/wrapper/wrapper.c.
11991         * debug-mini.c (mono_init_debugger): Removed.
11993         * driver.c (mono_main): Added new `--inside-mdb' command line
11994         argument which is used when running inside the debugger.
11996 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
11998         * liveness.c (mono_analyze_liveness): Remove some unused data
11999         structures.
12001 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
12003         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
12005 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
12007         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
12008         depends on implementation details of monobitset.
12010         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
12011         Fixes #77271.
12013 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
12015         * liveness.c: Update after monobitset changes.
12017 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
12019         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
12021 2006-01-11 Neale Ferguson <neale@sinenomine.net>
12023         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
12025         * mini-s390x.c: Remove warning messages.
12027 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
12029         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
12031 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
12033         * generics.2.cs: Add ldelem/stelem_any test.
12035 2006-01-10 Neale Ferguson <neale@sinenomine.net>
12037         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
12039 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
12041         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
12042         
12043 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
12045         * generics.2.cs: Reenable vtype tests.
12047         * inssel-x86.brg: Remove an icorrect valuetype rule.
12049 2006-01-06 Neale Ferguson <neale@sinenomine.net>
12051         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
12052         initial support for OP_ABS.
12054 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12056         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
12058 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12060         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
12061         conversion and implement LADD/LSUB.
12063         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
12064         architectures.
12066 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12068         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
12070         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
12071         architectures.
12073 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12075         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
12076         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
12077         (stack walk problem).
12079 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
12081         * aot.c (mono_aot_load_method): Fix a warning.
12083 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12085         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
12087 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12089         * iltests.il: Add test for #77148.
12091         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
12092         #77148.
12094 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12096         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
12098 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12100         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
12101         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
12103         * basic-long.cs: Add lconv-to-r4/r8 tests.
12105 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12107         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
12109         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
12110         here as on other archs.
12112 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12114         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
12116 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12118         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
12119         
12120         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
12122         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
12123         instrument_prolog; Add memory_barrier instruction.
12125 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
12127         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
12129 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
12131         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
12133         * aliasing.c inssel.brg: Fix warnings.
12135         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
12136         could skip initialization of some parts of memory.
12138         * mini.c mini-ia64.c: Fix warnings.
12140         * inssel-sparc.brg: Add an implementation of lneg which actually works.
12142 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12144         * aliasing.c (mono_build_aliasing_information): Add a workaround for
12145         a crash seen on sparc.
12147         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
12148         
12149         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
12151 2005-12-21 Neale Ferguson <neale@sinenomine.net>
12153         * mini-ops.h: Add s390_backchain instruction
12155         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
12157         * cpu-s390.md: Add s390_backchain instruction
12159         * mini-s390.c: Significant ABI changes
12161         * mini-s390.h: Cater for zero length structures
12163 2005-12-20 Neale Ferguson <neale@sinenomine.net>
12165         * mini-s390.c: ABI fixes
12167         * inssel-s390.brg: Remove debug statements
12169         * cpu-s390.md: Fix length of ATOMIC_xx operations
12171 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
12173         * basic-float.cs: Add float<->long conversion tests.
12175 2005-12-16 Neale Ferguson <neale@sinenomine.net>
12177         * mini-s390.c: Fix LOCALLOC processing.
12179         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
12181 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12183         * iltests.il: Add tests for some opcodes not covered by the other
12184         tests.
12186 2005-12-15 Neale Ferguson <neale@sinenomine.net>
12188         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
12189         register loading for Tail processing; Correct trace output.
12191         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
12193         * cpu-s390.md: Correct size of jmp instruction. 
12195 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12197         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
12199 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12201         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
12202           Bring s390 up to current level.
12204 2005-12-12  Zltan Varga  <vargaz@gmail.com>
12206         * generics.2.cs: Disable the newly added tests as they do not work yet.
12207         
12208         * generics.2.cs: Add valuetype tests.
12210 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
12212         * basic-long.cs: Add i4->u8 test.
12214         * objects.cs: Add tests for JIT intrinsic.
12216         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
12217         optimizations lost by a mistake.
12219 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12221         * basic-long.cs: Remove a test moved to objects.cs.
12223         * arrays.cs: Add more array tests.
12225 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12227         * arrays.cs: Add new tests for multi-dimensional arrays.
12229 2005-12-06  Raja R Harinath  <rharinath@novell.com>
12231         * Makefile.am (test_sources2): Add generics.2.cs.
12232         (EXTRA_DIST): Add test_sources2.
12234 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12236         Support for boxing and unboxing nullable types as well as the
12237         isinst operation on nullables, per the CLI ammendment.
12239         * inssel.brg (CEE_ISINST): Special case for nullable
12241         * mini.c (handle_unbox_nullable): new method
12242         (handle_box): Special case for nullable types
12243         (mono_method_to_ir): Call handle_unbox_nullable in correct
12244         places.
12246         * generics.2.cs: New test suite
12248         * Makefile.am: Support for regression tests with generics.
12250 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
12252         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
12253         allocated to registers. Fixes #76800.
12255 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
12257         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
12259 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
12261         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
12262         of platforms.
12264 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
12266         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
12267         objects.cs.
12269         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
12270         
12271         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
12272 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
12274         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
12275         single precision before storing to a single precision location.
12277 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12279         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
12281 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
12283         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
12284         correct files.
12286         * basic.cs: Remove test_0_byte_compares test which was moved to
12287         objects.cs a long time ago.
12289 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
12291         * aliasing.c: Fixed aliasing issue on 64 bit archs.
12293 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
12295         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
12296         handlers are called.
12298         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
12299         throwing code.
12301          * mini-ia64.c: Add support for the throw->branch exception 
12302         optimization.   
12304         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
12306 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
12308         * mini.c: Enabled "fastpath" deadce :-)
12309         
12310 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
12312         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
12313         alias analysis pass to support it.
12314         * mini.h: Likewise.
12315         * ssa.c: Likewise.
12316         * liveness.c: Likewise (liveness computation can use aliasing
12317         information to be more accurate).
12318         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
12319         moreover made so that "--compile-all" uses the given optimization
12320         flags and not the default ones.
12321         * aliasing.c: Alias analysis (new file).
12322         * aliasing.h: Likewise.
12323         * Makefile.am: added "aliasing.c" and "aliasing.h".
12324         
12325 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12327         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
12328         OP_L opcodes.
12330 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
12332         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
12333         fp >= end_of_stack exit condition, as it is not needed, and it might
12334         become true for fp eliminated frames.
12336 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12338         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
12339         coded offsets.
12341 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
12343         * mini-arm.c: fixed alignment of doubles/longs to match
12344         the C ABI (bug #76635).
12346 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
12348         * aot.c: fix compilation with --enable-minimal=aot.
12350 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
12352         * mini-arm.c: fixed compatibility with the new
12353         floating point emulator package for compares.
12355 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
12357         * mini.c : reverted sig->pinvoke changes (r51396-51397).
12359 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
12361         * mini-exceptions.c (print_stack_frame): Output to stderr.
12362         (mono_handle_native_sigsegv): Ditto.
12364 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12366         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
12367         OP_LCONV_TO_OVF_I implementation.
12369         * mini-amd64.c: Add support for the throw->branch exception 
12370         optimization.
12372         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
12373         when the catch clause catches a more general exception, i.e. Object.
12375 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
12377         * cpu-ia64.md: Remove unused opcodes.
12379         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
12380         specific defines for architectures defining USE_SIGACTION.
12382         * mini-ia64.c: Fix some warnings.
12384         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
12385         version seemed to skip a frame.
12387 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12389         * mini.c: Clean up the usage of sig->pinvoke flag. Now
12390         only calls which are made to native code use this flag.
12392 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12394         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
12395         varargs methods as well.
12396         
12397         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
12398         which have save_lmf set. Reorganize methods prologs a bit.
12400         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
12401         debugger to the proper place.
12403 2005-10-29  Martin Baulig  <martin@ximian.com>
12405         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
12406         when running inside the debugger until the debugger has support
12407         for it.
12409 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12411         * mini.h: Fix a warning.
12413 2005-10-24  Miguel de Icaza  <miguel@novell.com>
12415         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
12416         we expose publicly, this returns the string.
12418 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
12420         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
12421         with fp elimination.
12423 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12425         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
12426         native stacktrace using the glibc 'backtrace' function if available.
12428 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
12430         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
12432         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
12433         handle SIGSEGVs received while in native code.
12435         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
12436         code, call mono_handle_native_sigsegv which will abort the runtime
12437         after printing some diagnostics, instead of converting it into a
12438         confusing NullReferenceException.
12440 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12442         * cpu-pentium.md: Remove unused opcodes.
12444 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
12446         * mini-amd64.h (MonoLMF): Add rsp field.
12448         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
12449         the lmf too.
12451 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
12453         * mini-codegen.c (get_register_spilling): Fix some warnings.
12455 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
12457         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
12458         elimination during exception handling. Enable fp elimination by
12459         default.
12461         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
12462         elimination.
12464 2005-10-16  Martin Baulig  <martin@ximian.com>
12466         * mini-exceptions.c
12467         (mono_debugger_run_finally): New public method for the debugger.
12469 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12471         * debug-mini.c (mono_debug_init_method): Fix warning.
12473         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
12474         the 'exname' parameter const to fix some warnings.
12476 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
12478         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
12479         introduced by the previous patch.
12481 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
12483         * basic-float.cs: Add test for precision of float arithmetic.
12485         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
12486         when loading/storing single values from/to memory.
12488         * mini.c (mono_jit_compile_method_with_opt): Create the function
12489         pointers in the correct domain.
12491 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12493         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
12494         introduced by previous patch.
12495         
12496         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
12497         when out_filter_idx is NULL.
12499         * mini-exceptions.c: Don't run filter clauses twice during exception
12500         handling. Fixes #75755.
12502 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12504         * aot.c: Add support for ldflda wrappers.
12506         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
12507         #75902.
12509 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
12511         * mini.c, mini.h: do not consider exception handlers blocks when
12512         setting up interface variables.
12514 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
12516         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
12518 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
12520         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
12521         causes a regression.
12523         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
12525 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
12527         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
12528         of the OP_P definitions.
12530         * TODO: Add a proposal for dealing with the CEE/OP mess.
12532         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
12533         optimizations from the x86 port.
12535         * cpu-amd64.md: Ditto.
12537         * basic.cs basic-long.cs: Add tests.
12539 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
12541         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
12542         Patrik Torstensson's implementation of my exception-handling
12543         optimization idea, when the exception object is not used
12544         (bug #62150).
12546 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
12548         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
12549         of the mul_imm optimizations from the old jit.
12551 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
12553         * mini.c, liveness.c: patch by Patrik Torstensson and
12554         Zoltan Varga to improve performance in methods with
12555         exception clauses.
12557 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12559         * driver.c: Remove 'Globalization' entry from --version.
12561 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
12563         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
12564         there is a profiler interested in JIT events.
12566         * aot.c: Load profile files produced by the AOT profiling module, and
12567         reorder methods based on the profiling info. Add a 'method_order' table
12568         to the AOT file to make mono_aot_find_jit_info work with the reordered
12569         methods.
12571         * mini.h: Bump AOT file version info.
12573 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
12575         * mini-arm.h: work around what looks like a gcc bug when optimizations
12576         are enabled.
12578 2005-09-28  Raja R Harinath  <rharinath@novell.com>
12580         * Makefile.am (AM_CFLAGS): Don't use += to append inside
12581         conditionals.  Use ...
12582         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
12584 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
12586         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
12587         to determine the amount of memory to copy when passing valuetypes.
12589         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
12590         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
12592 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
12594         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
12595         information about aot.
12597 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12599         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12600         macros. This will allow a deadlock debugger to easily be plugged
12601         in.
12603 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
12605         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
12607 2005-09-27  Raja R Harinath  <rharinath@novell.com>
12609         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
12610         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
12611         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
12612         ($(arch_built)) [CROSS_COMPILING]: Error out.
12614 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12616         * aot.c: Add support for the no_special_static flag for classes.
12618 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12620         * Reapply reverted patches.
12622         * *: Revert r50174 as well.
12624         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
12626 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12628         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
12630 2005-09-23  Miguel de Icaza  <miguel@novell.com>
12632         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
12633         part of the SIG_HANDLER_SIGNATURE.  
12635 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12637         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
12638         statistics.
12640         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
12641         introduced by previous patch.
12643 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
12645         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
12646         saved registers too.
12648         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
12649         upon the information returned by get_call_info ().
12650         
12651         * mini-x86.c (add_float): Fix stack size calculation.
12652         (mono_arch_call_opcode): Rewrite this so it works based up the
12653         information returned by get_call_info ().
12654         (mono_arch_get_this_vret_args): Ditto.
12656 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
12658         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
12659         in cinfo to determine the registers which need to be used.
12661 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12663         * driver.c (mono_main): Add --server and --desktop flags. 
12665 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
12667         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
12668         registers as global registers.
12670         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
12671         longer needed with the new register allocator.
12673         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
12675         * cpu-ia64.md: Remove unused opcodes.
12676         
12677         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
12678         
12679 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
12681         * cpu-amd64.md: Remove unused opcodes.
12683         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
12684         needed with the new register allocator.
12686         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
12687         reg-reg moves.
12689 2005-09-16  Raja R Harinath  <rharinath@novell.com>
12691         * Makefile.am (check-local): Don't invoke semdel-wrapper.
12693 2005-09-16  Martin Baulig  <martin@ximian.com>
12695         * exceptions-amd64.c
12696         (throw_exception): Don't call mono_debugger_throw_exception() if
12697         we're a rethrow - see the FIXME in the code.
12699 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
12701         * mini.c (mono_init_exceptions): This only works on some architectures.
12702         
12703 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
12705         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
12706         on ia64.
12708         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
12710         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
12711         now in mini-exceptions.c.
12713 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
12715         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
12716         now in mini-exceptions.c.
12718 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
12720         * exceptions-x86.c: Applied patch from Patrik Torstensson 
12721         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
12723         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
12724         code into mini-exceptions.c. Add some assertions to it.
12726 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12728         * aot.c (emit_section_change): Applied patch from "The Software Team" 
12729         (<software@solmersa.com>). Fix as errors on windows.
12731 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
12733         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
12734         method info into the LMF.
12736 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12737         
12738         * mini-ia64.c: Add proper unwind info for method epilogs.
12740         * exceptions-ia64.c: Add some code to help debugging.
12741         
12742         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
12744         * mini-exceptions.c: Fix warning.
12746 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
12748         * mini.c: Really fix build.
12750         * mini-x86.c mini-amd64.c: Fix build.
12752 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12754         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
12756         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
12757         some Interlocked methods as intrinsics.
12759         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
12760         for Thread methods as well.
12762         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
12764         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
12766         * mini-ia64.c mini-x86.c mini-amd64.c 
12767         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
12768         OP_MEMORY_BARRIER.
12769         
12770         * mini.c (mono_init_exceptions): Fix build breakage.
12772 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
12774         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
12775         of instructions. Use the new ia64_unw_op macros for emitting unwind
12776         info.
12778         * mini.c (mono_init_exceptions): Initialize exception handling
12779         related trampolines at startup.
12781 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
12783         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
12785 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12787         * mini.c: Handle type loading errors gracefully during compilation and
12788         throw the appropriate exception.
12790 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
12792         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
12793         for the mono binary.
12795 2005-09-09  Martin Baulig  <martin@ximian.com>
12797         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
12798         the release.
12800 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12802         * mini-arm.h: use emulation for conv.r.un for the release.
12804 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12806         * mini-arm.c, objects.cs: more fixes and tests for them.
12808 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12810         * mini-arm.c: align structures to at least 4 bytes to be able
12811         to keep our current optimized memcpy.
12813 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
12815         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
12817 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12819         * mini.c: ignore SIGPIPE.
12821 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
12823         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
12825         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
12827 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
12829         * mini.h: Add prototype for mono_allocate_stack_slots_full.
12831 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12833         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
12834         exception handling support.
12835         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
12836         patch by Brian Koropoff <briank@marakicorp.com>).
12838 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
12840         * mini.c: revert another 'optimization' which breaks when
12841         items on the eval stack need to be saved at a basic block end
12842         (bug #75940).
12844 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
12846         * jit-icalls.c: for arrays, ensure we always provide
12847         lower bounds.
12849 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
12851         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
12852         
12853         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
12855 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
12857         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
12858         arguments in their original register.
12860 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
12862         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
12863         memset/memcpy.
12865         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
12866         when ssapre is enabled.
12868         * inssel-long.brg: Fix bug in previous patch.
12870         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
12871         multiplication by a constant.
12873 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
12875         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
12876         icc.
12878         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
12879         saving registers.
12881 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
12883         * inssel-arm.brg: apply changes tested by Brian Koropoff
12884         <briank@marakicorp.com>.
12886 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
12888         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
12889         
12890 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
12892         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
12893         to the same register if dreg is just a base register.
12894         (print_ins): Improve printing of membase opcodes.
12896         * inssel-x86.brg: Add optimized ldind(reg) rules.
12898         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
12900 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
12902         * mini.c: when running under valgrind, set the stack bottom for
12903         the GC at the actual approximate stack for the app (fixes running
12904         mono with valgrind).
12906 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
12908         * mini.c: do no break at the first valuetype to init found
12909         (fixes bug #75791).
12911 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
12913         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
12915 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
12917         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
12919 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
12921         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
12923 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12925         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
12927         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
12928         code.
12930         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
12931         code.
12933         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
12934         methods.
12936 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
12938         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
12940 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12942         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
12943         in the tail recursion optimization.
12945         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
12946         debug info into the assembly file.
12948         * iltests.il: Add test for filter regions.
12950         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
12951         initial stack of filter regions. Fixes #75755.
12953 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
12955         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
12956         stack requirements.
12958 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
12960         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
12961         the check for an already compiled method on non-ia64 platforms.
12962         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
12963         proper domain.
12965         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
12967         * inssel-x86.brg: Add some optimized call rules.
12969 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
12971         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
12972         method here.
12974         * mini.h mini-trampolines.c: Pass the trampoline argument to 
12975         mono_arch_patch_delegate_trampoline.
12977         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
12979         * mini-trampolines.c: Fix build.
12981         * mini-amd64.h: Add delegate trampolines.
12983         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
12985         * inssel-amd64.brg: Add optimized call rules.
12986         
12987         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
12989         * inssel-ia64.brg: Add optimized ldind(reg) rules.
12991 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
12993         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
12994         change.
12996         * mini-ia64.c: Remove LMF fixmes.
12998         * mini-ia64.h: Remove most fields from LMF.
13000         * inssel-ia64.brg (stmt): Fix unaligned access errors.
13002         * mini-trampolines.c: Add support for IA64 function descriptors.
13004         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
13005         for IA64 function descriptors.
13007 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
13009         * tramp-arm.c: patch the vtable for virtual calls. Added
13010         support code to register/unregister the LMF.
13011         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
13012         more LMF work.
13014 2005-08-19  Dick Porter  <dick@ximian.com>
13016         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
13017         bit value if needed.
13019 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13021         * mini.c (mini_get_method): Move handling of wrapper data here.
13023         * mini.c (mono_method_to_ir): Add support for dynamic methods.
13025         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
13026         virtual.
13028         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
13029         bblock->code does not remain empty.
13031 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
13033         * arrays.cs: Add regression test for #75832.
13035         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
13036         rules. Fixes #75832.
13038         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
13039         instruction scheduling.
13041 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
13043         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
13045 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13047         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
13049         * mini-codegen.c: Fix VC build.
13051         * cpu-pentium.md: Increase length of atomic_exhange_i4.
13053 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13055         * mini.h: fix signature for mono_register_opcode_emulation.
13057 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
13059         * mini.c: Get rid of most of the helper_sig_... constants using
13060         mono_create_icall_signature ().
13062 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13064         * jit-icalls.c (helper_ldstr): New helper function.
13066         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
13068         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
13069         throw, load the string using a helper call instead of creating a string object.
13071         * aot.c: Update after LDSTR changes.
13073         * mini.h: Bump AOT file version.
13074         
13075         * aot.c: Save class size info into the AOT file. Print more statistics during
13076         compilation.
13078         * mini.h: Bump AOT file version.
13080         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
13081         ordering of disasm cases. Fixes #74957.
13083 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
13085         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
13086         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
13087         the generic code needed for the ARM port.
13089 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
13091         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
13092         inssel-arm.brg: more ARM features and fixes.
13094 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
13096         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
13097         ARM port work in progress.
13099 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13101         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
13103         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
13105         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
13107         * inssel.brg (mini_emit_memset): Add support for unaligned access.
13109         * *-ia64.*: Ongoing IA64 work.
13110         
13111         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
13113 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13115         * TODO: Remove out-of-data todo stuff.
13117         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
13118         dead code.
13120         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
13122         * mini.h: Bump corlib version.
13124 2005-07-27  Martin Baulig  <martin@ximian.com>
13126         * mini-codegen.c
13127         (create_copy_ins): Added `const unsigned char *ip' argument; set
13128         `copy->cil_code' from it.
13130 2005-07-27  Martin Baulig  <martin@ximian.com>
13132         * mini-exceptions.c (mono_handle_exception): Don't call
13133         mono_debugger_handle_exception() for filters.
13135 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
13137         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
13138         as well.
13140 2005-07-26  Martin Baulig  <martin@ximian.com>
13142         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
13144         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
13145         helper_compile_generic_method() if the method is actually virtual
13146         and non-final.
13148 2005-07-26  Martin Baulig  <martin@ximian.com>
13150         * mini.c
13151         (trampoline_code): Renamed to `mono_trampoline_code' and made it
13152         public; this is now accessed directly by the debugger.
13153         (mono_generic_trampoline_code): Removed.
13155         * debug-mini.c
13156         (mono_debug_init_method): Also add interncalls and wrappers.
13158 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
13160         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
13162 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13164         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
13166 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13168         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
13170 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13172         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
13173         getting TLS offsets on AMD64 too.
13175 2005-07-20  Kornél Pál <kornelpal@hotmail.com>
13177         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
13179 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
13181         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
13182         inssel-arm.brg, mini-arm.h: ARM port work in progress.
13184 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13186         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
13188         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
13189         to mini.c.
13191         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
13192         mono_sparc_is_virtual_call ().
13193         
13194         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
13196         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
13197         trampoline parameters.
13199         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
13200         
13201         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
13202         to mono_arch_get_vcall_slot_addr.
13204         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
13205         trampoline code.
13207         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
13209 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
13211         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
13213 2005-07-19  Martin Baulig  <martin@ximian.com>
13215         * exceptions-amd64.c (throw_exception): Call
13216         mono_debugger_throw_exception() here like we're doing it on i386.
13218 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
13220         * mini-ia64.c: Add optimized TLS access support.
13222 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
13224         * mini-exceptions.c: Ongoing IA64 work.
13226         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
13228         * mini.c: Use the default optimization set when embedding. Fixes
13229         #75194.
13231 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
13233         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
13234         of trampolines to a separate file.
13236         * mini-trampolines.c: New file.
13238         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
13239         separate file.
13240         
13241         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
13242         amd64/ia64 code.
13244         * mini-codegen.c: Fix cygwin build.
13246 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
13248         * mini.c: Add some minor changes needed by the IA64 port.
13250         * *-ia64.*: Ongoing IA64 work.
13252 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
13254         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
13255         trampolines into arch-independent and arch-dependent parts.
13257         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
13259 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
13261         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
13263         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
13264         the xp-regalloc-branch for amd64.
13266         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
13267         xp-regalloc-branch for x86.
13269 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13271         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
13273 2005-07-06  Martin Baulig  <martin@ximian.com>
13275         * mini.c
13276         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
13277         (mono_jit_runtime_invoke): Likewise.
13279 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13281         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
13282         on x86 too.
13283         
13284         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
13285         without loading their metadata. Reorganize the file format so exception handling+
13286         debug info is kept separate from normal method info. Create MonoJitInfo 
13287         structures for methods lazily.
13289         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
13290         loading metadata.
13291         (x86_class_init_trampoline): Patch AOT class init trampolines too.
13293         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
13295         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
13296         in AOT code.
13298         * mini.h: Bump AOT file version.
13300 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
13302         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13304 2005-07-01  Raja R Harinath  <rharinath@novell.com>
13306         * Makefile.am (check-local): Call semdel-wrapper.
13308 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
13310         * mini-x86.c: Revert the last change as it seems to break the build..
13312 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13314         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13315         
13316         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
13318 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
13320         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
13321         outside of the macro, so strange stuff doesn't happen with gcc4
13322         (NEW_AOTCONST_TOKEN): Likewise.
13324 2005-06-28  Martin Baulig  <martin@ximian.com>
13326         * mini.c (mini_class_is_system_array): New static method; use this
13327         instead of `klass->parent == mono_defaults.array_class' everywhere
13328         since this also works for the new generic array class.
13330 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13332         * inssel.brg: Remove warnings.
13334 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
13336         * mini-ia64.c: Ongoing IA64 work.
13338         * basic-float.cs: Add float->i1 conversion test.
13340         * iltests.il: Add conv.u4 test.
13342 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
13344         * inssel-long.brg: Fix bug caused by last change.
13346 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
13348         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
13349         BSDs.  Allows the x86 JIT to work on OSX86
13351 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
13353         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
13354         u4->i8 conversion.
13356         * mini-ia64.c: Ongoing IA64 work.
13358 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13360         * mini-ia64.c: Ongoing IA64 work.
13362         * driver.c: Clean up jit_code_hash as well when using --regression.
13364         * inssel-long.brg: Fix long->i4/u4 conversion rules.
13366         * basic-long.cs: Add tests for long->u4 conversion.
13368 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
13370         * mini.c: Take mono_get_domainvar out of macros. This makes sure
13371         that we do not depend on undefined C behavior: the order stuff
13372         gets evaluated within an expression. Fixes mono when compiled on
13373         GCC 4.
13375 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
13377         * *-ia64.*: Ongoing IA64 work.
13379         * aot.c: Lower memory usage while loading AOT methods.
13381         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
13383         * mini.h: Bump AOT file format version.
13385 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13387         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
13389 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
13391         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
13392         not on callee assembly). Fixed some comments.
13394 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
13396         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
13397         it gets proper disassembly.
13398         (emit_method_info): Remove some dead code.
13400         * mini.c (mini_method_compile): Allways allocate the GOT var in
13401         mono_method_to_ir for emulating opcodes.
13403 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
13405         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
13406         before freeing the code memory. Fixes #74990.
13408         * objects.cs: Add regression test for #74992.
13410         * liveness.c: Extend live ranges of arguments to the beginning of the
13411         method. Fixes #74992.
13413         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
13414         so it points into the faulting instruction.
13416 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
13418         * jit-icalls.c (mono_imul_ovf): Add exception handling.
13420         * *-ia64.*: Ongoing IA64 work.
13422         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
13424 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
13426         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
13428         * *-ia64.*: Ongoing IA64 work.
13430 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
13432         * basic-long.cs: Add tests for add/sub.ovf.
13434         * basic.cs: Add tests for sub.ovf.
13436         * *-ia64.*: Ongoing IA64 work.
13438 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
13440         * *-ia64.*: Ongoing IA64 work.
13442         * basic.cs: Add conv.ovf.i4.un test.
13444 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
13446         * mini.c: (remove_block_if_useless) Fixed bug 75061.
13447         
13448 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13450         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
13452 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13454         * *-ia64.*: Ongoing IA64 work.
13456 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13458         * trace.[ch]:
13459         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
13461 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
13463         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
13465 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
13467         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
13469         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
13470         of a call is callable by a near call.
13472 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
13474         * mini-ia64.c: Ongoing IA64 work.
13476 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
13478         * genmdesc.c: Make the generated array non-static.
13480         * inssel-long.brg: Fix LSHR_IMM rule.
13482         * *-ia64.*: Ongoing IA64 work.
13484         * *-ia64.*: Ongoing IA64 work.
13486 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
13488         * *-ia64.*: Ongoing IA64 work.
13490         * *-ia64.*: Ongoing IA64 work.
13491         
13492         * mini-ia64.c: Ongoing IA64 work.
13494         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
13496 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
13498         * objects.cs basic-calls.cs: Move some tests to objects.cs.
13499         
13500         * objects.cs basic-long.cs: Move some tests to objects.cs.
13502 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
13504         * *-ia64.*: Ongoing IA64 work.
13506         * iltests.il: Add a new test.
13508         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
13509         newobj. Fixes #75042.
13511 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
13513         * *-ia64.*: Ongoing IA64 work.
13514         
13515         * *-ia64.*: Ongoing IA64 work.
13516         
13517         * *-ia64.*: Ongoing IA64 work.
13519         * basic.cs objects.cs: Move tests accessing static variables as well.
13521         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
13523 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
13525         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
13527         * driver.c: Always print failed tests.
13529         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
13530         frame pointer.
13532         * *ia64*: Ongoing IA64 work.
13534 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13536         * basic.cs: Add tests for add.ovf. Fix warnings.
13538 2005-05-18  Miguel de Icaza  <miguel@novell.com>
13540         * driver.c (mono_main): Avoid crash if no argument is passed to
13541         --break;  Do not use g_error, but f_printf.   And fix all other
13542         ocurrences of the same crash.
13544 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
13546         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
13547         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
13548         Fixes #74742.
13550 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
13552         * *-ia64.*: Add beginnings of IA64 backend.
13554         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
13556 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
13558         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
13559         Fixes #74925.
13561         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
13563         * mini-amd64.c: Fix a warning.
13565 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
13567         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
13568         in float_neg. Fixes #74897.
13570         * mini-amd64.c (emit_call): Fix another near call bug.
13572 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
13574         * declsec.c: Keep the appdomain information in the structure. Added a 
13575         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
13576         value gets overwritten).
13577         * declsec.h: Set the default MonoArray for the the stack to 6. Added
13578         an MonoAppDomain member to MonoSecurityFrame.
13579         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
13580         used in the stack walk. Now use a MonoArray which grow (double) when
13581         it gets full.
13583 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13585         * mini.c: Re-enabled runtime cleanup, since running threads should
13586         now properly stop when exiting.
13588 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13590         * mini-codegen.c: New file contaning the arch-independent local
13591         register allocator. Not used by any architectures yet.
13593         * mini.h linear-scan.c: Merge some changes from the 
13594         mini-xp-local-regalloc branch.
13596 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13598         * mini-amd64.c (emit_call): Fix calls to native functions when the
13599         runtime is compiled as a shared library. Fixes #74756.
13601         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
13602         on a literal field. Fixes #74751.
13604 2005-04-25  Raja R Harinath  <rharinath@novell.com>
13606         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
13608 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13610         * objects.cs: Add missing null casting test.
13612 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13614         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
13615         in wrapper methods. Also rename 'address' variable to 'offset'.
13617 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13619         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
13620         warnings.
13621         
13622         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
13624         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
13625         work on windows.
13627 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
13629         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
13631 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
13633         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
13634         just the last bytes.
13636 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
13638         * aot.c (mono_compile_assembly): Fix warning.
13640         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
13641         by the _MSC_VER stuff.
13643 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
13645         * inssel-long.brg: Fix #74588.
13647         * cpu-amd64.md: Fix #74591.
13649         * iltests.il: Add new regression tests.
13651 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
13653         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
13654         valuetype.
13656 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
13658         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
13660         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
13661         from Bill Middleton <flashdict@gmail.com>.
13663 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
13665         * arrays.cs: Add new regression test. Fix warnings.
13667 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
13669         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
13670         and leakage in CKFINITE.
13672         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
13673         this to a null op since it is called on amd64 too.
13675         * exceptions-amd64.c (get_throw_trampoline): Align stack.
13677         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
13678         body since this is not used on amd64.
13679         
13680         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
13682         * mini-amd64.c: Remove obsolete fixmes.
13684         * mini.c (print_method_from_ip): Fix debugging support.
13686 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
13688         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
13689         so that expressions that don't give much gain are not reduced.
13690         * ssapre.h: Likewise.
13692 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
13694         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
13696         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
13698         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
13700 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
13702         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
13704         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
13706 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
13708         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
13709         stack touching.
13711         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
13713         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
13715         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
13717         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
13718         MONO_ARCH_USE_SIGACTION. Fixes #74252.
13720         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
13722         * mini-x86.c: Fix up stack overflow handling.   
13724         * exceptions.cs: Add new regression test.
13726 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
13728         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
13729         mono_jit_thread_attach.
13731         * mini.c (mono_method_to_ir): Verify called method is not abstract.
13733 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13735         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
13736         avoid calling constructors using callvirt.
13738         * inssel.brg: Fix #74073.
13740 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
13742         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
13743         compilation with non-GCC compilers.
13744         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
13745         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
13747 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
13749         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
13750         klass->interface_offsets (will likely fix bug#74073).
13752 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13754         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
13756 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
13758         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
13759         to amd64_div_reg_size ().
13760         
13761         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
13763 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
13765         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
13767 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13769         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
13771 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13773         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
13774         
13775         * mini.c (mono_precompile_assembly): Load and precompile referenced
13776         assemblies as well. Fixes #74015.
13778 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13780         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
13782 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
13784         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
13785         a lot of checks and (anyway) permissions cannot work until corlib is 
13786         loaded.
13788 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
13790         * mini-ppc.c: fixed ABI issue on sysv/ppc.
13792 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13794         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
13795         calls (fixes bug#72824).
13797 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
13799         * mini.c: fix tail recursion elimination (see test in bug#73936).
13801 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
13803         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
13804         some fp functions in sse2 mode.
13806 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
13808         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
13810 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
13812         * mini.h mini.c: Add mono_get_jit_tls_key ().
13814         * mini-x86.c: Enable fast TLS support on windows.
13816 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
13818         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
13819         * mini.c: Check for p/invoke method when generating code. If a
13820         p/invoke method, or it's class, isn't decorated with [Suppress
13821         UnmanagedCodeSecurity] then generate code to call System.Security.
13822         UnmanagedDemand (only if the security manager is active).
13824 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13826         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
13827         last change as it seems to cause strange crashes.
13828         
13829 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
13831         * *.c: handle unsafe function pointers where needed.
13833 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13835         * mini.c (mono_jit_free_method): Remove the fixme too.
13837 2005-03-15  Miguel de Icaza  <miguel@novell.com>
13839         * mini.c: As discussed, make the code actually free the delegate
13840         thunk now, to enable the debugging of delegate problems, use
13841         MONO_DEBUG=1 when running Mono. 
13843         This takes also care of parts of the leaks as seen by Joe.
13845 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
13847         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
13848         thread_tls_offset calculation.
13850 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
13852         * declsec.c: Reworked linkdemand checks for icall. The previous code
13853         was using the declaration code (untrusted) and didn't work as expected
13854         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
13855         specific case.
13857 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
13859         * iltests.il: Add new localloc test.
13861         * mini-amd64.c: Handle large stack allocations the same way as on
13862         windows if stack overflow handling is working.
13863         
13864         * mini-amd64.c: Allocate the signal stack using mmap.
13866         * mini.c (sigsegv_signal_handler): Fix reading of context.
13868         * mini-exceptions.c: Fix up stack overflow handling.
13870         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
13872         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
13874         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
13876         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
13878         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
13879         tramp_init functions as they are no longer needed.
13881 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
13883         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
13884         
13885         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
13887         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
13888         
13889         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
13890         support that now.
13892         * mini-ops.h: Add OP_LMUL_IMM.
13894         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
13895         long mul/div opcodes as intrinsic.
13897         * mini-amd64.c (emit_call): Handle the case when the callee might be
13898         an AOT method.
13900 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
13902         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
13903         extra safe.
13904         
13905         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
13907         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
13909 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
13911         * mini.c (mono_codegen): Don't leak here, to help people running
13912         monogrind.
13914 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
13916         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
13917         conversions in sse2 mode.
13919         * basic-float.cs: Add regression test.
13920         
13921         * mini-amd64.c: Reenable sse2.
13923 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
13925         * mini-amd64.c: Disable sse2 until some regressions are fixed.
13927 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
13929         * driver.c: Copyright text should include 2005.
13930         
13931 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
13933         * cpu-amd64.md (load_membase): Fix more max lengths.
13935 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
13937         * cpu-amd64.md (load_membase): Fix max length.
13939         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
13941         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
13943         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
13944         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
13946         * basic-float.cs: Add rounding regression test.
13948         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
13950 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
13952         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
13953         structures in registers for pinvoke wrappers.
13955 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
13957         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
13959 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
13961         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
13962         wrapper to mono_jit_thread_attach.
13964         * mini.c (mini_jit_thread_attach): New jit icall.
13966         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
13967         native->managed wrappers.
13969         * exceptions.cs: Add new regression test.
13971         * mini.c (optimize_branches): Check regions in the cbranch to throw
13972         block case as well. Fixes #73242.
13974 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
13976         * mini.c: thread safety fixes.
13978 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
13980         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
13981         patching stuff, since delegates use jump trampolines so there is
13982         no caller.
13984         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
13985         jump trampolines.
13986         
13987         * tramp-amd64.c: Fix build.
13989         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
13990         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
13992         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
13993         Rename this to mono_arch....
13994         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
13996         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
13998         * mini-amd64.c (emit_call): If both the caller and the callee is
13999         guaranteed to have 32 bit addresses, emit a normal call.
14001         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
14003         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
14004         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
14005         method_ptr inside delegates.
14007 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
14009         * mini.c (mono_jit_free_method): Free the method info even if the native code is
14010         invalidated. Fixes #73001.
14012         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
14014         * mini-x86.c: Only use stdcall for pinvokes on windows.
14016 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14018         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
14019         * mini-x86.c: remove unreliable __thread var offset detection,
14020         use the correct accessors and enable by default.
14022 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14024         * mini.c (mono_jit_free_method): Fix memory leak.
14026 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
14028         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
14030 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
14032         * cpu-amd64.md: Fix lengths of atomic opcodes.
14034 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14036         * driver.c: try to not imply using ICU is any good.
14038 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14040         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
14041         functions as inline ops.
14043         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
14044         some Interlocked functions as inline ops.
14046         * mini.c (move_basic_block_to_end): Fix bug in last patch.
14048         * mini.h (MonoBasicBlock): Reorganize fields a bit.
14050         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
14052         * mini.c: Add support for OP_NOT_TAKEN.
14054         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
14055         structures in registers for pinvoke wrappers.
14057         * mini-amd64.c: Fix warnings.
14059 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
14061         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
14063         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
14065         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
14066         address instead of loading the address from it.
14068         * mini-x86.c: Add support for returning small structs in registers
14069         on Win32. Fixes part of #70864.
14070         
14071 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
14073         * trace.c (get_token): Improve error checking.
14075 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14077         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
14079 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
14081         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
14082         it can be reused for MonoClass.
14083         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
14084         _LINKDEMAND.
14086 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
14088         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
14089         instead of a MonoReflectionMethod. The method information wasn't used
14090         when displaying SecurityException details (but will be now).
14092 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
14094         * Makefile.am : windows build fix.
14096 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14098         * iltests.il: Add new regression test.
14100         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
14101         #72522.
14103 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
14105         * mini.c: Moved linkdemand check into helper function check_linkdemand
14106         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
14107         LDFTN, LDVIRTFTN).
14109 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
14111         * declsec.c: Added statistics counter for different kinds of 
14112         LinkDemands.
14113         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
14114         (and commented) declaration.
14115         * mini.c: Added statistics counter for security Demand code 
14116         generation. Added display of security statistics.
14118 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14120         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
14121         Fix compilation errors under gcc-2.95.
14123 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14125         * mini.c, driver.c: Use the new jit trampoline hashtable
14127 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14129         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
14131 2005-02-11  Martin Baulig  <martin@ximian.com>
14133         * debug-mini.c (mono_debug_close_method): Free the line number array.
14135 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
14137         * aot.c: Break up large methods into smaller ones. Share GOT slots for
14138         icalls.
14140         * mini.h: Bump AOT file format version. 
14142 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14144         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
14145         APTC and P/Invoke.
14146         * declsec.h: Added macros to get/set lazyly initialized security 
14147         informations about assemblies. Added new enum for different type of
14148         possible LinkDemand violation. Added function to check LinkDemands.
14149         * mini.h: Added a field to MonoCompile to hold any security violation
14150         detected when JITting a method (so it can be thrown later).
14151         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
14152         and CEE_CALLVIRT. Added code to throw exception at the end of
14153         mini_method_compile (note: the exception is unhandled right now).
14155 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14157         * mini.c, jit-icalls.c: use the managed implementation of
14158         memset for initobj and memset, to avoid managed <-> unmanaged
14159         transitions.
14161 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
14163         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
14164         optimization if it would need a GOT var.
14166         * basic.cs: Add tests for constant propagation and switch statements.
14168         * ssa.c: Fix out-of-range constant propagation and switch statements.
14170 2005-02-09    <vargaz@freemail.hu>
14172         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
14174 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
14176         * cpu-amd64.md (load_membase): Fix max length of load_membase.
14178 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14180         * mini.c: update to new signature of mono_class_get_allocation_ftn().
14182 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
14184         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
14185         arithmetic operations.
14187 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
14189         * mini-ppc.c: add a workaround for broken user code that
14190         DllImports vararg functions with non-vararg signatures.
14192 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14194         * mini.c (mono_jit_compile_method_inner): Add detection and a 
14195         meaningfull error message for assemblies written in Managed C++.
14197         * tramp-amd64.c mini-amd64.h: Add support for 
14198         create_trampoline_from_token ().
14200         * aot.c mini-x86.c abcremoval.c: Applied patch from
14201         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14203 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14205         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
14206         which takes a MonoImage/token as parameter instead of a MonoMethod.
14208         * aot.c: Use the new trampoline for initializing vtables.
14210         * aot.c: Add support for ldfld/stfld_remote wrappers.
14212         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
14213         rules for compare <MEM>, IMM.
14215         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
14217         * aot.c: Handle inherited finalizers correctly.
14219 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14221         * inssel.brg (stmt): Add a missing _setup_... ().
14223         * aot.c: Save some parts of the class state to the AOT file and use it
14224         to recompute that state when a class is initialized.
14226         * mini.c: Install AOT hooks into the runtime.
14228         * mini.h: Bump AOT file format version.
14229         
14230         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
14231         Fixes #72148.
14233         * iltests.il: Add new test.
14235 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14237         * mini.c: fix typo.
14239 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
14241         * mini.c: setup the statistical profiler in the thread attach
14242         callback to cope with the new single thread code.
14244 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14246         * mini-ppc.c: ensure we have enough room for the profiler
14247         calls (fixed bug#72084).
14249 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
14251         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
14252         it.
14254 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14256         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
14258 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14260         * ssapre.c: Fixed an issue with down safety (this allows IronPython
14261         to succesfully execute parrotbench).
14262         * ssapre.h: Likewise.
14264 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14266         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
14267         variable for stores to method arguments (fixes a SSAPRE issue).
14269 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14271         * mini.c: handle value types in dup, fixes gen-112.cs.
14273 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
14275         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
14276         sequence for calls in dynamic methods to avoid thunks.
14278 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14280         * mini.c: correctly remove dynamic methods from the hashtable.
14282 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14284         * driver.c: Disabled SSAPRE until fix the bug that appears
14285         in IronPython's parrotbench.
14287 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
14289         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
14291         * mini.c (mono_method_to_ir): Revert the previous change.
14292         
14293         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
14294         when AOT compiling.
14296         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
14297         mono_jit_info_table_find () etc. when running under valgrind.
14299         * inssel.brg: Fix warnings.
14301         * mini-exceptions.c: Fix warnings.
14303 2005-01-31  Martin Baulig  <martin@ximian.com>
14305         * driver.c (compile_all_methods_thread_main): Don't try to compile
14306         generic methods or anything which has type parameters.
14308 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
14310         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
14312         * TestDriver.cs: Add --verbose flags.
14314         * graph.c ssa.c: Fix 64 bit warnings.
14315         
14316         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
14317         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
14318         Fix 64 bit warnings.
14320         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
14321         variable not spotted by gcc.
14322         
14323         * mini-amd64.c inssel-amd64.brg: Applied patch from  
14324         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
14325         X86_COMPARE_MEMBASE opcodes.
14327         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
14329 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
14331         * *: MonoMethod->signature might be NULL now. You *MUST* use
14332         mono_method_signature.
14334 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14336         * driver.c (compile_all_methods_thread_main): Compile the methods
14337         without invoking cctors.
14339 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14341         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
14342         * basic-calls.cs: test for the above.
14344 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14346         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
14347         MonoJitInfo changes.
14349 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
14351         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
14352         eagerly if it contains dynamic methods.
14353         
14354         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
14356         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
14357         trace, it is now computed by an icall from trace_ips.
14358         
14359         * mini-exceptions.c: Fix a warning.
14361 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14363         * mini-exceptions.c: don't bother getting stack trace info if
14364         it's not going to be used.
14366 2005-01-27  Raja R Harinath  <rharinath@novell.com>
14368         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
14369         ssapre-mini-ops.h.
14371 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
14373         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
14375         * aot.c: Avoid calling mono_method_get_header () if not needed.
14377         * mini.h: Bump AOT file format version.
14378         
14379         * mini.c (mono_emit_native_call): Allocate a GOT var here.
14381         * mini.c (mono_print_tree): Print more info for calls.
14383 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
14385         * declsec.h: Remove warning by adding missing include for marshal.h
14387 2005-01-26  Martin Baulig  <martin@ximian.com>
14389         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
14390         `ip' twice.
14392 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
14394         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
14395         flags.
14397         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
14399         * aot.c (mono_compile_assembly): Fix a warning.
14401 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
14403         * declsec.c: Look for security attributes on the original MonoMethod 
14404         (and not the wrapped one). This fix permissions on icalls.
14406 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
14408         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14410         * mini.c (mono_allocate_stack_slots): Add a fixme.
14412         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14414 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14416         * inssel.brg: optimize casts of sealed types (more
14417         optimizations waiting for fixes in remoting).
14419 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
14421         * inssel.brg (stmt): Add another dummy rule.
14423         * driver.c: Fix warnings.
14425         * driver.c (mono_main): If running under valgrind, instruct glib to use
14426         the system allocation functions so valgrind can track the memory
14427         allocated by the g_... functions.
14429         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
14431         * mini-ops.h: Add OP_DUMMY_STORE opcode.
14433         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
14435         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
14436         variables in try regions.
14438         * mini.c (mini_method_compile): Don't disable optimizations on large
14439         methods when AOT compiling.
14441         * mini.c (mono_allocate_stack_slots): New arch independent method to 
14442         allocate stack slots. Not yet used.
14444 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
14446         * debug-mini.c (mono_debug_close_method): Plug some leaks.
14448 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
14450         * mini-ppc.c: make the branch info relative as the code
14451         buffer can be reallocated.
14453 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
14455         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
14456         * driver.c: Removed the AOT/security restriction. Now initialize the
14457         security manager (in metadata) if --security is used.
14458         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
14459         rather than the pointer to declarative security, when AOT is used.
14461 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
14463         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
14464         basic blocks, reduced intrinsic exception throwing code size.
14466 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14468         * driver.c (mini_usage): Reorder the usage screen.
14470 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
14472         * mini.c (mono_resolve_patch_target): Fix warning.
14474 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
14476         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
14477         previous patch.
14479         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
14481         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
14482         breaks the amd64 build.
14484         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
14485         register allocation. Fixes #71454.
14487         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
14489         * arrays.cs: Add new regression test.   
14491 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14493         * ssapre.c: Turned usage of snprintf to GString.
14494         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
14495         (I left it on by mistake in my previous commit).
14497 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
14499         * mini.c, cfold.c, basic-calls.cs: preserve side effects
14500         on cond branch optimization (fixes bug# 71515).
14502 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14504         * abcremoval.c: Fixed bug 71062.
14505         * abcremoval.h: Likewise.
14507 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14509         * mini.c: Added a new functionality to optimize_branches, the removal
14510         of useless basic blocks, and fixed some problem in the removal of
14511         critical edges; some utility functions added for both purposes.
14512         * ssapre.c: Added complex expression support, and fixed bug 70637.
14513         * ssapre.h: Likewise.
14514         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
14515         enabled in SSAPRE.
14516         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
14517         * driver.c: Re-enabled SSAPRE.
14519 2005-01-19  Martin Baulig  <martin@ximian.com>
14521         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
14522         the result of mono_get_method_constrained().
14524 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
14526         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
14527         manager.
14529 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
14531         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
14532         be detected.  Fixes #59296.
14534 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14536         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
14537         which can happen. Fixes #71361.
14539 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14541         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
14542         manager.
14544 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14546         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
14547         appdomain-unload.exe to fail.
14548         
14549         * mini.c: Fix some memory leaks.
14551 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
14553         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
14554         Fixed bug and sped up some codepaths.
14556 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14558         * mini.c: Fix some memory leaks.
14560         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
14561         conversion.
14563         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
14565         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
14566         #71320.
14568         * iltests.il: Add regression test for #71320.
14570 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
14572         * mini.c (mono_codegen): Fix installation of profiler hooks.
14574         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
14576 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14578         * mini.h, mini.c, cfold.c: optimize access to enum
14579         readonly fields, too. Eval conditional branches if possible
14580         to perform unreachable code removal in more cases.
14582 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
14584         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
14586         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
14587         code manager.
14589         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
14590         WinXP DEP. Fixes #71244.
14592 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
14594         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
14596 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
14598         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
14600 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
14602         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
14603         changes.
14605         * mini.h: Bump AOT version.
14607         * mini.h (MonoCompile): Change exvar to a hash table.
14609         * mini.c: Allocate a separate exvar for each handler block.
14611         * mini.c: Get rid of the computation of filter_lengths, its not needed.
14613         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
14614         ex var with the pending exception and only throw if the two are equal.
14615         Fixes #68552.
14616         
14617         * exceptions.cs: Add tests for rethrow and nested catch clauses.
14619         * mini-x86.c: Fix warnings.
14621         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
14622         used by all the ports now.
14624         * aot.c: Add write-symbols and save-temps options.
14626 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
14628         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
14630 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
14632         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
14633         operations.
14635         * tramp-s390.c: Check vtable slot belongs to the domain.
14637         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
14638         as per other platforms.
14640         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
14642 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14644         * driver.c: we don't run the Main() code in a subthread anymore.
14646 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
14648         * mini.c: added experimental rtc support in the statistical
14649         profiler: if the user has the permission, more accurate statistics
14650         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
14651         The MONO_RTC value must be restricted to what the linux rtc allows:
14652         power of two from 64 to 8192 Hz.
14654 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
14656         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
14658 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
14660         * mini-ppc.c: better icache flush for smp.
14662 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
14664         * mini-amd64.c (emit_move_return_value): Fix memory leak.
14666         * mini-x86.c (get_call_info): Add the get_call_info () code from the
14667         amd64 port, not yet used.
14669 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14671         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
14672         a struct type.
14674 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
14676         * driver.c: Added --security option to activate the security manager.
14677         Right now this will allow code generation for declarative demands and
14678         is disabled when AOT is specified.
14679         * mini.c: Add code generation for declarative security demands.
14680         * mini.h: Add mono_use_security_manager as an extern gboolean.
14682 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14684         * aot.c (mono_compile_assembly): Speed up compilation a bit by
14685         emitting more dense assembly code.
14687         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
14688         exception throwing stuff.
14690 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
14692         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
14693         dead code.
14695         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
14696         left in by mistake.
14698         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
14699         fixed.
14701         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
14703         * tramp-*.c: Only patch vtable slots if the object is in the current
14704         domain. Fixes appdomain-unload.exe.
14706         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
14707         
14708         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
14709         x86 branch.
14711 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14713         * mini.c (reverse_branch_op): New helper function.
14715         * mini.c (optimize_branches): Run the new optimization only on 
14716         platforms which support it. Also reverse all kinds of branches.
14718         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
14720         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
14721         a throw statement.
14723         * mini.c (optimize_branches): Reverse not-equals branches if the false
14724         bblock is a throw. This happens a lot of time with argument checking in
14725         corlib.
14727         * mini.c (mono_codegen): Add support for placing basic blocks after
14728         the function epilogue.
14730         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
14731         function epilogue.
14732         
14733 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
14735         * mini.c (setup_stat_profiler): Only set this up if the platform
14736         supports ITIMER_PROF.
14738 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14740         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
14741         previous patch.
14743         * inssel.brg: Fix a warning.
14745 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
14747         * mini.c: added support for statistical profiler 
14748         (run with: --profile=default:stat).
14750 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
14752         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
14754         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
14756         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
14757         related to global registers from the amd64 port.
14759 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
14761         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
14763         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
14764         with global registers.
14765         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
14767         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
14769 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
14771         * debug-mini.c (encode_value): Fix off-by-one.
14773         * aot.c (encode_value): Likewise.
14775         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
14777 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
14779         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
14780         AOT.
14782         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
14783         
14784         * aot.c (emit_method_info): Increase size of temp buffer.
14786         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
14787         the AOT case.
14789 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
14791         * aot.c (emit_method_info): Fix build.
14792         
14793         * aot.c: Further rework of the AOT file format to reduce the size of
14794         the method info data.
14796         * mini.h: Bump AOT file format version.
14798 2004-12-27  Martin Baulig  <martin@ximian.com>
14800         * mini.c (mini_get_method): New static method; call
14801         mono_get_method_full() and mono_get_inflated_method().
14802         (mono_method_to_ir): Use mini_get_method() instead of
14803         mono_get_method_full(). 
14805 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
14807         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
14809 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
14811         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
14813         * inssel-amd64.brg: Add some optimization rules.
14815 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
14817         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
14818         standard not GC'd stuff is fine.
14820 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
14822         * aot.c: Rework the AOT file format to get rid of most of the global
14823         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
14825         * mini.h: Bump AOT file format version.
14826         
14827 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
14829         * mini.h: Bump AOT file format version.
14831         * aot.c (mono_aot_is_got_entry): New function to determine if an 
14832         address is inside a GOT.
14834         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
14836         * cpu-pentium.md: Increase the maximum size of some instructions which
14837         might involve a got access.
14838         
14839         * mini.c (get_method_from_ip): Another debug helper function.
14841         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
14842         when got var accesses are created during the decompose phase.
14844         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
14846         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
14847         argument mini_compile_method and to MonoCompile, and use this to
14848         determine whenever a given method is compiled for AOT. This allows the
14849         other methods compiled during AOT compilation to be free of AOT stuff,
14850         so the backends does not need to add special support for them by
14851         creating a fake GOT etc.
14853         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
14854         longer needed.
14856 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
14858         * mini.c (mono_method_to_ir): It turns out that some of the
14859         x-appdomain wrappers are lax with types, so just ignore this for
14860         all wrappers.
14862         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
14863         at the vtable->klass. If it is non-shared code we can just use the
14864         vtable.
14866 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
14868         * mini-ppc.c: access MonoDomain from tls, too.
14870 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
14872         * declsec.c: Removed unused variable (and related warning ;-)
14874 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
14876         * iltests.il: New test for LDELEMA on an array of ref types.
14878         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
14879         all ldelema's on reftypes.
14880         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
14881         it was the wrong place to put it.
14883         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
14884         register to pop to make this cleaner, at the request of Paolo.
14886 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
14888         * mini-ops.h (OP_GETHASHCODE): New op.
14890         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
14892         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
14893         operation.
14895         For a microbenchmark, this reduces the cost of Hashtable.get_Item
14896         by 25%.
14897         
14898         * mini-x86.c (mono_arch_output_basic_block): Rather than
14900         add ebp, 4
14902         Emit
14904         pop edx
14906         The first is 3 bytes while the second is 1. This saves 36 kb on
14907         mscorlib, quite a big saving. When bootstraping mcs, I was able to
14908         see a small boost because of icache locality.
14910         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
14912 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
14914         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
14915         started code sharing with the generic code.
14917 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
14919         * mini-ppc.c, cpu-g4.md: added code for direct access to
14920         tls data slots.
14922 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
14924         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
14925          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
14926         to OP_TLS_GET.
14928 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
14930         * declsec.c|h: Added functions to cache the declarative stack modifiers
14931         in MonoJitInfo and to create a security frame from a MonoJitInfo 
14932         structure.
14933         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
14934         created. Register internal calls for System.Security.SecurityFrame::
14935         _GetSecurityFrame and _GetSecurityStack.
14936         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
14937         the definitions for the new stack walk/callback mechanism.
14938         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
14939         first security frame for LinkDemands and InheritanceDemands) and
14940         GetSecurityStack for Demands. Both use the new mono_walk_stack code
14941         from lupus.
14942         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
14943         walk initialization (lupus).
14945 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
14947         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
14948         idiom.
14949         (handle_loaded_temps): Do not create a temporary variable for
14950         things that we know are temps. They will never be modified.
14951         (mono_spill_call): Set MONO_INST_IS_TEMP
14952         (mono_emulate_opcode): ditto
14953         (emit_tree): ditto
14954         (mono_method_to_ir.CEE_DUP): ditto
14956 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
14958         * mini.c (type_to_eval_stack_type): Make this handle the void type
14959         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
14960         (emit_tree): use ip_in_bb to special case some common idioms
14961         Update all callers to pass in the IP.
14962         (mono_method_to_ir): Make CEE_CALL* do the above as well.
14964         This gives us a nice 2% speedup in mcs bootstrap.
14966         * mini-x86.c (peephole_pass): Peephole pass to make
14967         mov  [foo], eax
14968         push [foo]
14970         into
14972         mov [foo], eax
14973         push eax
14975         * mini.c (ip_in_bb): new method.
14976         (mono_method_to_ir): use this method rather than doing the hash
14977         lookup ourselves.
14979         * linear-scan.c (mono_linear_scan): When expiring actives, you
14980         don't need to keep around variables that expire on this
14981         instruction. This makes it so that:
14982              a = b + 1
14983         will turn into:
14984              store (ebx add (ebx, 1))
14985         which will become
14986              add ebx, 1
14988 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
14990         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
14991         combination to avoid doing two copies. Fix up problems with previous
14992         patch.
14994         * mini.c: Fix 64 bit warnings.
14996         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
14998 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
15000         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
15001         changes from the x86 code.
15003         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
15005 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15007         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
15008         throwing code to reduce its size, unify the AOT and non-aot code and 
15009         get rid of relocations in the AOT case.
15011         * mini-x86.h mini.c exceptions-x86.c 
15012         (mono_arch_get_throw_corlib_exception): New arch specific function to 
15013         raise corlib exceptions which doesn't require relocations in the 
15014         caller.
15016         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
15018 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15020         * mini.c (mono_emit_method_call): Only allocate the got var when it is
15021         needed.
15023         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
15024         in the AOT case.
15026 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15028         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
15029         with add function when used from Inc/dec atomic 
15030         functions. Re-enabled optimization on x86.
15031         * mini-ops.h: renamed atomic_add functions to
15032         allow _add to match the Interlocked::Add and
15033         _add_next to match Interlocked::Inc/Dec.
15035 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
15037         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
15038         linking of BBs to the end BB, and enabled SSAPRE also with
15039         consprop and copyprop (which was prevented by that bug).
15041 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15043         * mini-x86.c: disabling the Interlocked optimizing code. 
15045 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15047         * aot.c (load_aot_module): Move reading of got_addr after the AOT
15048         file version check.
15049         
15050 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15052         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
15053         interlocked optimization due lack of support on x86, rewrote 
15054         exchange to take into account that base may be in eax.
15055         
15056         xsp works again; activated Interlocked optimizing code.
15057         
15058 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15060         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15062 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
15064         * mini-ops.h: Add new opcodes.
15066         * mini.h: Add new patch types. Add got_var to MonoCompile.
15068         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
15069         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
15070         make it work with all kinds of patchable code.
15072         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
15073         address of the GOT, and referencing entries in the GOT.
15075         * mini.c: Add code to load the GOT address if needed by an opcode.
15077         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
15078         independent AOT code on the x86 using an elf-style Global Offset Table.
15080 2004-12-14  Raja R Harinath  <rharinath@novell.com>
15082         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
15084 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15086         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
15087         when running xsp.
15089 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
15091         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
15092         of Interlocked:Increment/Decrement/Add as inline ops.
15093         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
15095 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
15097         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
15098         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
15100 2004-12-12  Duncan Mak  <duncan@ximian.com>
15102         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
15103         again. `patch_info->table_size' is no longer valid after Zoltan's
15104         commit #37636.
15106 2004-12-12  Martin Baulig  <martin@ximian.com>
15108         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
15109         if we are the "real" method, ie. not an inlined method inside it.
15111 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
15113         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
15114         before we look in the special fields table. This fixes
15115         ../tests/thread-static-init.cs.
15117 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15119         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
15120         for Array get_Rank and get_Length. Fixes bug #70465.
15122 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
15124         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
15125         separate structure to reduce the size of MonoJumpInfo.
15127 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15129         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
15131 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
15133         * mini.c (mini_get_inst_for_method): Changed to allow ports
15134         to return a MonoInst instead of opcode 
15135         (renamed mini_get_opcode_for_method to better reflect the new functionality)
15136         
15137         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
15138         Allow ports to return a created MonoInst instead of op-code, will enable
15139         new optimizations.
15140         (renamed mini_get_opcode_for_method to better reflected the functionality)
15142 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
15144         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
15146 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15148         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
15149         Fixes #69985.
15151 2004-12-08  Martin Baulig  <martin@ximian.com>
15153         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
15154         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
15156 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15158         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
15159         correctly.
15161         * exceptions.cs: Disable some tests which depend on properties of x86 fp
15162         arithmetic.
15164 2004-12-08  Raja R Harinath  <rharinath@novell.com>
15166         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
15168 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15170         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
15171         bug introduced by the previous patch.
15173 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15175         * mini-ppc.c, objectc.cs: handle large structs passed by value
15176         (fixes bug #69972).
15178 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15180         * mini-ppc.c: OP_ARGLIST implementation from
15181         Geoff Norton  <gnorton@customerdna.com>.
15183 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
15185         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
15186         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
15188 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15190         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
15192 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15194         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
15195         support.
15197 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15199         * mini-sparc.c: Zero out localled-ed memory.
15201         * iltests.il: Add tests for zeroing out localloc-ed memory.
15203 2004-12-04  Martin Baulig  <martin@ximian.com>
15205         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
15206         mono_method_get_signature_full().       
15208 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
15210         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
15211         and some utility functions (always for SSAPRE), integrated SSAPRE.
15212         * mini.h: Likewise.
15213         * driver.c: Added ssapre option.
15214         * ssa.c: Small fix on OP_ARG handling.
15215         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
15216         * Makefile.am: Likewise.
15218 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15220         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
15221         now in the xp code.
15223         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
15224         icall.
15226 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15228         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
15229         
15230         * cpu-s390.md : Increase instruction length of oparglist.
15232         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
15234 2004-11-30  Martin Baulig  <martin@ximian.com>
15236         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
15237         virtual generic methods.  We call a special helper_compile_generic_method()
15238         icall to retrieve the method from the vtable, inflate and compile
15239         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
15241         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
15243 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
15245         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
15247 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
15249         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
15250         Fixes #69929.
15252 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
15254         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
15255         platforms with PIC aot.
15257 2004-11-28  Martin Baulig  <martin@ximian.com>
15259         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
15260         Fixes gen-112.cs.
15262 2004-11-28  Martin Baulig  <martin@ximian.com>
15264         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
15265         the result of mono_type_get_underlying_type() to check whether
15266         we're byref.
15268 2004-11-26  Martin Baulig  <martin@ximian.com>
15270         * mini.c
15271         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
15272         in the g_assert().
15274 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
15276         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
15277         the same way as the other arguments so they won't get clobbered.
15279         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
15280         calls through R11 since it is clobbered by the trampoline code.
15282 2004-11-26  Raja R Harinath  <rharinath@novell.com>
15284         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
15285         pick up in-tree mscorlib.dll.
15287 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
15289         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
15291         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
15292         runtime data/code are now stored in a table similar to the GOT in ELF. 
15293         This allows the code itself to be position independent.
15295         * aot.c: Fix loading of referenced assemblies after the lazy assembly
15296         loading changes.
15298         * aot.c: Attach ELF type (object/function) directives to all global
15299         symbols.
15301         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
15303         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
15305         * mini-amd64.h: Turn on PIC AOT code.
15307         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
15308         returning the offset within an OP_AOTCONST instruction where the GOT
15309         offset needs to be added.
15311         * mini.h: Bump AOT file format version.
15313 2004-11-25  Martin Baulig  <martin@ximian.com>
15315         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
15316         uninflated generic methods.
15318 2004-11-25  Martin Baulig  <martin@ximian.com>
15320         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
15322 2004-11-24  Martin Baulig  <martin@ximian.com>
15324         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
15325         original klass (this only applies for generic instances).
15327 2004-11-24  Martin Baulig  <martin@ximian.com>
15329         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
15330         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
15331         that array).
15333 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
15335         * mini.c (mono_method_to_ir): Disable inlining for methods containing
15336         localloc. Fixes #69678.
15338         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
15339         
15340 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
15342         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
15343         used SSE registers on pinvoke calls. Fixes #69774.
15345 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
15347         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
15348         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
15350 2004-11-23  Raja R Harinath  <rharinath@novell.com>
15352         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
15353         Refer directly to the mcs/ tree.
15355 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15357         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
15358         Check if a trampoline for a synchronized method is required. 
15360 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
15362         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
15363         with localloc if needed. Throe arithmetric exception in
15364         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
15365         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
15367 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
15369         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
15370         types before switching on type.  Fixes #69622.
15372 2004-11-19  Raja R Harinath  <rharinath@novell.com>
15374         * Makefile.am (check-local): New.  Integrate into 'make check'.
15375         (MCS,RUNTIME): Define using in-tree mono and mcs.
15376         (ILASM): New.
15377         (%.exe): Use $(ILASM).
15379 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
15381         * mini-ppc.c: adjust initial prolog size (bug #69691).
15383 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
15385         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
15386         #69664.
15388 2004-11-17  Raja R Harinath  <rharinath@novell.com>
15390         * Makefile.am (clean-local): Rename from 'clean'.
15392 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15394         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
15395         to mono_arch_is_int_overflow. 
15396         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
15397         SIGFPE events.
15399 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
15401         * declsec.c|h: New files to support declarative security attributes.
15402         Added function to check if a method has (applicable) security.
15403         * mini.c|h: Add check for declarative security attributes in
15404         mono_method_check_inlining.
15405         * Makefile.am: Added declsec.c and declsec.h to the build.
15407 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15409         * mini.c, mini.h: update to keep dynamic code info per-domain.
15411 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
15413         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
15414         (mini_init): Get rid of it from here too.
15416 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
15418         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
15419         implemented OP_RETHROW (patch by Geoff Norton
15420         <gnorton@customerdna.com>).
15422 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
15424         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
15425         between appdomains.  Fixes appdomain-unload on PPC.
15427 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
15429         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15430         mini-exceptions.c: handle the new wrapper types.
15431         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
15432         token value as a MonoClass* when compiling a wrapper.
15433         mono_jit_create_remoting_trampoline now takes an additional
15434         MonoRemotingTarget parameter.
15435         
15436 2004-11-10  Martin Baulig  <martin@localhost>
15438         * mini.c (mono_method_to_ir): Use `generic_container->context'
15439         rather than creating a new one.
15441 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15443         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
15445         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
15447 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
15449         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
15450         the experimental aot cache stuff.
15452 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
15454         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15455         mini-exceptions.c: update to exception clause structure changes.
15457 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15459         * exceptions-x86.c (throw_exception): Fix warnings.
15461         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
15462         for OP_RETHROW.
15464 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15466         * exceptions-sparc.c (get_throw_exception): Really fix this.
15468 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
15470         * tramp-*.c: we no longer support icalls without wrappers, so
15471         a bit of code can be removed here
15473 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
15475         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
15476         patch.
15478         * cpu-sparc.md: Add op_rethrow.
15480         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
15482         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
15484         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
15485         * mini-ops.h: Add OP_RETHROW.
15487         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
15489         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
15491 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
15492         
15493         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
15494         Makes the output much easier to read
15496 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
15498         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
15499         prevents another huge leak when compiling with ssa. Secondly, the
15500         performance of doing this rather than freeing the lists is much
15501         better. GList does a lock every time you allocate a list link,
15502         so that it can use a memory pool. So, it is better to just use
15503         a memory pool of our own.
15504         
15505         * ssa.c, linear-scan.c: replace g_list_remove_link with
15506         g_list_delete.  The remove one does not free the GList, so we were
15507         leaking memory. On -O=all --compile-all with corlib, this cut down
15508         3 MB of allocations.
15510 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
15512         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
15514         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
15516         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
15517         into a new function mono_create_jit_trampoline ().
15519 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
15521         * trace.c (get_spec): Allow tracing of classes without a namespace.
15523 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
15525         * mini.c: Fix pointer overwrite in mini_method_compile.
15527 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
15529         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
15530         The darwin ABI needs some special handling for 1 and 2 byte structs
15531         Lets use lbz/lhz instead of lwz everywhere.
15532         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
15533         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
15534         Use stb/sth for the former, and put the latter always on stack instead of in
15535         argument registers.
15537 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
15539         * trace.c (is_filenamechar): Add '_'.
15541 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
15543         * mini-s390.c: Fix prolog length to allow for large trace requirements.
15545         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
15547 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
15549         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
15550         depends on libmonogc. Fixes #68805.
15552 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
15554         * mini.c (mono_jit_free_method): Provide extra information for
15555         this error.  Currently this leaks, but will be turned into a
15556         developer option in the future.
15558 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
15560         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
15562 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
15564         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
15565         boundary. Fixes reading of PATCH_INFO_R4 and R8.
15566         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
15568 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
15570         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
15571         trampolines for AOT code.
15573 2004-10-22    <vargaz@freemail.hu>
15575         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
15576         constructed types. Fixes #68136.
15578 2004-10-21  Martin Baulig  <martin@ximian.com>
15580         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
15581         if it returns true, unwind the stack to the call instruction.
15583 2004-10-21    <vargaz@freemail.hu>
15585         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
15587         * mini.h: Bump AOT version number.
15589         * objects.cs: Add another test for unbox trampolines.
15591         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
15592         valuetype methods.
15594 2004-10-20    <vargaz@freemail.hu>
15596         * driver.c: Add SHARED to the set of optimizations tested.
15598         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
15600         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
15601         used by CEE_NEWARR.
15603         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
15605 2004-10-20  Martin Baulig  <martin@ximian.com>
15607         * mini-exceptions.c (mono_handle_exception): Call
15608         mono_debugger_handle_exception() to tell the debugger about
15609         catch/finally clauses.
15611 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
15613         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
15615         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
15616         #68447.
15618 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
15620         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
15621         methods as their native size, fixed bug #57543, #57545.
15622         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
15623         This saves a temporary register and mullw call down into 1 (minor perf
15624         increase for cases like sum = sum * 5;  This use to translate into:
15625             li r11,5
15626             mullw r28,r28,r11
15627         It now translates to
15628             mulli r28,r28,5
15630 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
15632         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
15633         #68388.
15635 2004-10-11  Martin Baulig  <martin@ximian.com>
15637         * mini.c (mono_method_to_ir): If we're a generic method, get the
15638         MonoGenericContainer from our MonoMethodNormal and create a
15639         MonoGenericContext from it.
15641 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
15643         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
15645         * basic-long.cs: Add test for checked i8->i2 cast.
15647 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
15649         * inssel-ppc.brg: added a couple of speedup rules.
15651 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
15653         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
15654         to speed up rebuilds.
15656 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15658         * mini-s390.c: Minor fix to OP_OR_IMM.
15660 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
15662         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
15663         better. Fixes appdomain-unload.exe on sparc.
15665 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
15667         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
15668         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
15669         see bug 67324.
15671 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
15673         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
15675 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
15677         * mini.c: Always generate a field read/write wrapper for members
15678         of the class MarshalByRefObject since the actual instance could
15679         be a CBO.
15681 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
15683         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
15685 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
15687         * driver.c mini.h trace.c: Move the setting of the main assembly into
15688         a separate function called mono_trace_set_assembly () and call it after
15689         actually loading the main assembly. Fixes #66872.
15691 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
15693         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
15694         using the code manager.
15696 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
15698         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
15700 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
15702         * cpu-amd64.md: Fix bug in previous patch.
15703         
15704         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
15705         #66650.
15707 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
15709         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15710         mini-exceptions.c: updates for changed stack walk interface.
15712 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15714         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
15716 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
15718         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
15720 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
15722         * driver.c (mini_regression_list): Do not call mono_assembly_close 
15723         since assemblies can't be unloaded.
15724         
15725 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15727         * cpu-amd64.md: Fix more instruction lengths.
15729         * cpu-amd64.md: Fix lengths of some instructions.
15731 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
15733         * inssel.brg: Make the array ldelema check aot friendly.
15735 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15737         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
15739         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
15741 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
15743         * mini-x86.c: Fix build.
15745         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
15746         mono_type_get_underlying_type () helper function to simplify code.
15747         
15748 2004-09-09  Martin Baulig  <martin@ximian.com>
15750         * mini-amd64.c: Don't access `type->data.klass' directly, call
15751         mono_class_from_mono_type() instead since the type may be a
15752         generic instance.
15754 2004-09-09  Martin Baulig  <martin@ximian.com>
15756         * mini-amd64.c (get_call_info): Fix support for generic instances.
15757         (add_valuetype): Use mono_class_from_mono_type() to get the class
15758         since we can be a generic instance.
15760 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
15762         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
15764 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
15766         * liveness.c: reset spill costs on each scan: bug 62107
15768 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
15770         * exceptions-sparc.c (mono_arch_find_jit_info): remove
15771         unnecessary line that doesn't compile
15773 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
15775         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
15776         trampolines, make them call an error function so people can fix their
15777         code.
15779 2004-09-06  Martin Baulig  <martin@ximian.com>
15781         * mini.c (mono_method_to_ir): When initializing locals, handle a
15782         generic instances like a valuetype if it's a valuetype and like a
15783         class if it's a class.
15785 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15787         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
15788         stack. Fixes #64674.
15790         * exceptions.cs: Add test for unwinding of call arguments.
15792 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
15794         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
15795         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
15796         set the carry/borrow flag). The sparc and s390 implementations
15797         can now use optimized versions (and simplify the code). ppc bugfixes.
15799 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15801         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
15803 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
15805         * inssel-amd64.brg: Remove leftover 32 bit rule.
15807         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
15809 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
15811         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
15812         mono_arch_find_jit_info functions into a new function. Fix a memory
15813         leak.
15815         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
15816         refactored code.
15817         
15818 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15820         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
15821         as well.
15822         
15823         * exceptions.cs: Add array size tests.
15825         * mini.c: Allocate a separate icall wrapper for each arity of 
15826         mono_array_new_va. Fixes #59509.
15828         * exceptions.cs: Add testcase for 64578.
15830         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
15832         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
15833         
15834 2004-09-02  Martin Baulig  <martin@ximian.com>
15836         * mini.c (mono_method_to_ir): When initializing the locals, call
15837         handle_initobj() on the generic instance itself, not its
15838         underlying type.
15840 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15842         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
15843         MonoJitInfo for dynamic methods.
15845         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
15847         * mini.c: Add support for freeing JIT data for dynamic methods.
15848         
15849 2004-09-01  Martin Baulig  <martin@ximian.com>
15851         * mini-x86.c (is_regsize_var): Added support for generic
15852         instances.
15853         (mono_arch_emit_prolog): Make this compile again, use
15854         `x86_push_imm_template (code)'.
15856 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
15858         * mini-x86.c: make all push_imm instructions that get
15859         patched always emit the long form
15861 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
15863         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
15864         in a per-domain hash.
15866         * mini-amd64.c (merge_argument_class_from_type): Handle generic
15867         types.
15869 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
15871         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
15872         work.
15873         
15874         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
15875         work.
15877         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
15878         Beginnings of SSE2 support.
15880         * exceptions.cs: Add more tests for checked int<->uint casts.
15882 2004-08-28  Martin Baulig  <martin@ximian.com>
15884         * mini-x86.c (mono_arch_instrument_epilog): Added support for
15885         generic instances.
15887         * mini.c
15888         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
15889         Handle generic instances recursively.
15891 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
15893         * iltests.il: test for conv.u8 on a constant
15895 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
15897         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
15898         LCONV_x4 (shrun_32 (membase)).
15900 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
15902         * inssel-x86.brg: c&p rules for push/setret of long
15904 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
15906         * inssel-x86.brg: c&p rules for compare (base, regvar) and
15907         compare (regvar, base)
15909         * inssel-x86.brg: more burg love
15911         * inssel.brg: more cleanup
15913         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
15915 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
15917         * basic-long.cs, basic-calls.cs: new tests for optimization.
15919 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
15921         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
15922         patch.
15924 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
15926         * mini-amd64.c (read_tls_offset_from_method): Add another case.
15927         
15928 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
15930         * inssel.brg (mini_emit_memcpy): use 
15931         NO_UNALIGNED_ACCESS to disable memcpy optimization
15933 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
15935         * mini-amd64.c: Handle generic types in various places.
15937         * mini.c (mono_method_to_ir): Handle generic types in init locals.
15939 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
15941         * mini.c (handle_box): Fix warning.
15943         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
15945         * mini-amd64.h: Enable the emit_state optimization.
15947         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
15949         * mini-amd64.c: Add some new 64 bit peephole opts.
15951         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
15953         * cpu-amd64.md: sreg1 of div instructions must be %rax.
15955         * mini-amd64.c: Register allocator fixes.
15957         * mini.c: Add an optimization to emit_state to avoid allocation of new
15958         registers on some platforms.
15960 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
15962         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
15964         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
15965         allocation. Fixes #63085.
15967         * basic-long.cs: Add new regression test.
15969         * mini-amd64.c: Register allocator improvements.
15971 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
15973         * mini-amd64.c (read_tls_offset_from_method): Add another code
15974         sequence.
15976         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
15977         instruction sequence for nullifying class init trampolines.
15979         * objects.cs: Add new regalloc test.
15981         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
15983 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
15985         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
15986         
15987         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
15988         arguments.
15990         * driver.c: Fix profiling after TLS changes.
15991         
15992         * driver.c (mono_main): Set mono_stats.enabled if needed.
15994         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
15995         CEE_BOX.
15997 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
15999         * mini-x86.c: use a 1 op rather than a 2 op tls access
16000         instruction -> faster.
16002 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
16004         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16005         x86 backend.
16007 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
16009         * exceptions-sparc.c (throw_exception): fix typo
16011 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
16013         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
16014         set tree->dreg correctly with tls. Allow any
16015         register to be used.
16017         * mini-x86.c (read_tls_offset_from_method): add new code
16018         generation pattern seen with GCC.
16021 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
16023         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
16024         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
16025         exceptions-sparc.c: fix some performance issues in exception
16026         handling and setting of the stack trace for exceptions that were
16027         already thrown.
16029 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16031         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
16032         x86 backend.
16033         
16034         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
16035         registers.
16037 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
16039         This patch inlines tls access, when possible.
16040         
16041         * mini.h: new arch functions for TLS intrinsics.
16042         All platforms updated with a stub.
16044         * mini.c: use the new intrinsics
16046         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
16047         arch specific intrinsic for tls variables
16049 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16051         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
16052         under windows.
16054 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16056         * mini.c: thread local allocation
16058 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
16060         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
16062         * Makefile.am: Link against the static version of libmonogc.
16063         
16064         * Makefile.am: Link the static versions of the convenience libraries
16065         into the mono executable.
16067         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
16069 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
16071         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
16072         on integer overflow.
16074         * mini-amd64.c: Reorganize function call code.
16076         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
16078 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16080         * inssel-x86.brg: use xor eax,eax.
16081         
16082         * basic.cs: new tests
16084 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16086         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
16087         in exception throwing code.
16088         
16089 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16091         * inssel-x86.brg: use xor esi,esi.
16093 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16095         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
16096         can trace methods compiled during mini_init () too.
16098         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
16099         CEE_CONV_U4.
16101 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16103         * Makefile.am: static link on x86 (r=zoltan)
16105 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16107         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
16108         code since it causes some programs to fail.
16110 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
16112         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
16114 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
16116         * mini.c: ovfops_op_map - add STACK_OBJ case for
16117         CONV_I 
16118         * basic.cs: add test_0_pin_string as test
16119         case for above.
16121 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
16123         * Makefile.am: build C# if srcdir != builddir
16125 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
16127         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
16128         fall-through blocks.
16130 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16132         * driver.c: enable loop by default again and include abcrem in -O=all.
16134 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
16136         * iltests.il: Add some localloc tests.
16138         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
16140         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
16141         Fixes #62574.
16143         * inssel-amd64.brg: Add some optimizations.
16145         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
16146         for gcc-3.4.
16148         * Makefile.am: Statically link mono against libmono on AMD64.
16149         
16150         * mini-amd64.c inssel-amd64.brg: Optimizations.
16152 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
16154         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
16156         * tramp-amd64.c: Patch calling code in trampolines.
16158 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
16160         * mini-amd64.c: pinvoke struct passing fixes.
16162 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
16164         * mini-sparc.c: redo change, make mono_arch_cpu_init call
16165         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
16167 2004-08-05  Duncan Mak  <duncan@ximian.com>
16169         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16170         CEE_LDELEM_ANY.
16172 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16174         * mini-amd64.c (emit_move_return_value): Move return value for normal
16175         calls too.
16177 2004-08-05  Martin Baulig  <martin@ximian.com>
16179         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
16180         `type->type'; just modify `type' itself when dealing with enums
16181         and generic instances.
16182         (check_call_signature): Make `simple_type' a `MonoType *'.
16184 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16186         * mini.c: Use OP_PADD to add offsets to addresses.
16188         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
16190 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
16192         * mini-sparc.c (mono_arch_emit_epilog): fix check
16193         for folding last op into restore instruction
16195 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16197         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
16198         helper methods using the code manager.
16199         
16200         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
16202         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
16204 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16205         
16206         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
16207           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
16209         * mini-s390.c: fix tail processing
16211 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
16213         * mini-ppc.c: mul.ovf.un exception name fix.
16215 2004-08-03  Martin Baulig  <martin@ximian.com>
16217         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
16218         instances; before jumping to `handle_enum', also modify `ptype'.
16220 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
16222         * cpu-sparc.md: fcall maximal length too small.
16224 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
16226         * mini-amd64.c mini.h: Add initial support for passing/returning 
16227         structures to/from pinvoked methods.
16229 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
16231         * mini-ppc.c: reg allocator fix.
16233 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
16235         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
16237         * inssel.brg: Optimize memset on 64 bit machines.
16239         * mini-amd64.c: Fix some vararg cases.
16241 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16243         * mini-s390.c: Corrected macro in emit_float_to_int
16245         * s390-abi.cs: Tests to exercise the s390 ABI
16247 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16249         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
16250         caller saved regs.
16252         * basic.cs: Add a test for add.ovf.un.
16254 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
16256         * mini-sparc.c: add case for OP_IDIV_UN
16258 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16260         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
16261         
16262         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
16264 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
16266         * basic.cs: regression tests.
16268         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
16269         regressions.
16271 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16273         * basic.cs: Add a new test.
16275         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
16276         and AOT. Various fixes and optimizations.
16278         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
16280 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16282         * mini-ppc.c: make sure temp regs are not used for global reg
16283         allocation.
16285 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
16287         * cpu-sparc.md: conv_i8 fix for 64bits
16289         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
16291 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
16292         
16293         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
16294         add opcode for cmp BYTE PTR [eax], imm.
16296         * inssel.brg: Make memcpy and memset takes bases.
16298 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
16300         * *-amd64.*: More AMD64 work.
16301         
16302 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
16304         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
16305         add a compare-not-equal opcode.
16306         
16307 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
16309         * mini.c: Use mono_init_from_assembly instead of mono_init.
16310         
16311 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
16313         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
16315         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
16317         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
16319         * inssel.brg: 64 bit fixes.
16321         * mini.h (MonoCallInst): Add some AMD64 specific data.
16323         * mini.h: Add some OP_P opcodes.
16325 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
16327         * basic.cs: tests for 61797 and 61740
16329 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16331         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
16332         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
16334 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
16336         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
16338         * *-amd64*.*: Ongoing AMD64 work.
16340 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
16342         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
16344         * *-amd64*: Ongoing AMD64 work.
16346         * mini-arch.h: Add AMD64 support.
16348         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
16350         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
16352         * mini-ops.h: Add new opcodes.
16354         * Makefile.am: Add AMD64 support.
16356         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
16357         rules into the inssel-long*.brg files.
16359         * *-amd64.*: Add beginnings of AMD64 backend.
16361 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
16363         * mini.c (print_dfn): commenting out the code that prints
16364         the cil. With -O=deadce, this makes -v -v crash.
16365         
16366         * cpu-pentium.md: make checkthis have a length of 2
16368 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
16370         * mini-sparc.h: fix implementations of __builtin
16371         functions for Sun compiler for V9.
16373 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
16375         * mini.c: use the new stelem.ref wrapper
16376         * exceptions.cs, arrays.cs: new stelem.ref tests
16378 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16380         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
16381         new XSP should work with these changes).
16383 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
16384         
16385         * inssel-{long32,x86,}.brg: trivial optimizations.
16386         
16387 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
16389         * mini.c: load value when emitting box operation in
16390         constrained calls.
16392 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
16394         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
16395         is one byte shorter than cmp DWORD PTR [eax], 0.
16397 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
16399         * inssel-ppc.brg: arguments on the stack are always
16400         relative to the stack pointer (spotted by Neale Ferguson).
16402 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16404         * exceptions-x86.c: delay appending the method name to the trace until
16405         after mono_jit_info_table_find is called, as this gets the real
16406         MonoMethod.
16408 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
16410         * aot.c: register roots
16412 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16414         * aot.c : I could just use PLATFORM_WIN32 flag.
16416 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16418         * aot.c : Reverting the previous fix. This time it broke linux build.
16420 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16422         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
16424 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
16426         * mini.c (handle_stack_args): Remove some more debugging code.
16427         
16428         * mini.c (handle_stack_args): Remove debug output left in by mistake.
16430         * driver.c mini.h aot.c: Allow additional options to be specified with
16431         --aot and pass them to mono_compile_assembly.
16433         * aot.c: Add experimental code to AOT compile all loaded assemblies
16434         on demand and save the code into a cache in the filesystem.
16436         * aot.c: Add support for more wrapper methods.
16437         
16438         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
16439         58863.
16441         * cpu-*.md: Remove removed opcodes.
16443         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
16444         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
16445         related icalls to marshal.c.
16447 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
16449         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
16451         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
16453         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
16455 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
16456         * liveness.c: If liveness is recomputated we need to reset the information
16457         for each variable. This way, if the liveness range has been narrowed
16458         by optimizations that happened after the last computation, we can return
16459         a smaller range.
16460         
16461         For example, if you have
16462         
16463         {
16464                 int i = 0;
16465                 
16466                 // Tons of code that does not affect i
16467                 
16468                 i = foo ();
16469                 ...
16470         }
16471         
16472         i = 0 is dead code and will be removed by SSA. However, when
16473         linear scan gets to the code, i will still appear to be live
16474         throughout the entire block. This prevents good register allocation.
16476 2004-07-06  Martin Baulig  <martin@ximian.com>
16478         * debug-mini.c (mono_debug_init_method): Allow
16479         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
16480         (mono_debug_add_icall_wrapper): New method.
16482         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
16484 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
16486         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
16487         optimization.
16489 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
16491         * aot.c (mono_aot_load_method): Fix loading of debug info.
16493 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16495         * aot.c: Add logging support.
16497 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
16499         * mini.h: Add prototype for mono_print_method_from_ip.
16501         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
16503         * inssel.brg: 64 bit fixes.
16505         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
16506         inssel-long32.brg.
16508         * Makefile.am: Add SPARC64 support.
16510 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16512         * aot.c: Fix alignment problems on 32 bit platforms.
16514 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
16516         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
16517         SPARC64.
16519         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
16520         problems.
16522         * mini.h: Bump AOT file version. Some 64 bit fixes.
16524 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16526         * inssel-sparc.brg: Add new rule to avoid register moves.
16528         * inssel.brg: Add ldind_to_load_membase helper function.
16530 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
16532         * mini.c: OffsetToStringData intrinsic.
16533         
16534 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16536         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
16538         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
16539         regression tests.
16541         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
16542 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
16544         * mini.c: reinstated mono_compile_get_interface_var()
16545         on x86, too, since the change breaks the Gtk# build there as well.
16547 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16549         * driver.c: remove loop from the default optimizations: it seems to
16550         interact badly with some of the other options (see bug #60613).
16552 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
16554         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
16555         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
16557 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
16559         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
16560         vararg-using methods.
16562 2004-06-21  Martin Baulig  <martin@ximian.com>
16564         * mini/mini-exceptions.c
16565         (mono_handle_exception): Added `gpointer original_ip' argument.
16566         After calling mono_unhandled_exception(), call
16567         mono_debugger_unhandled_exception() and if that returns true,
16568         restore the context and return.
16570 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16572         * mini-ppc.c: prefer the use of relative branches so
16573         they won't need to be patched in aot code (patch from Patrick Beard).
16575 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16577         * aot.c: patch from Patrick Beard to make the output assembly
16578         more correct for the MacOSX assembler. Small tweak to
16579         generate sane images on Linux/PPC, too.
16581 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16583         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
16584         case until bug #59509 is fixed (shows up in #60332).
16586 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16588         * mini.c: make sure the needed wrappers are compiled, too, with
16589         precomp.
16591 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
16593         * driver.c: remove NPTL reference in --version output.
16595 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16597         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
16598         generate valid assembly for the Mach-O assembler.
16600 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
16602         * driver.c: don't include abcrem in the all optimization specifier
16603         since it slows down jit compilation too much for now.
16605 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
16607         * mini.c: use BIGMUL only if both operands have the same signage.
16608         * iltests.il: Test for bug 60056. (errors related to signage in
16609         BIGMUL).
16611         r=lupus.
16613 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
16615         * mini.c, aot.c: memory leak fixes.
16617 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16619         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
16621 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
16623         * Makefile.am: remove the -static hack completely, it links in
16624         statically glib as well.
16626 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
16628         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
16629         * exceptions.cs: make it compile with new mcs/csc.
16631 2004-06-03 Massimiliano Mantione <massi@ximian.com>
16632         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
16633         and added relevant test case.
16635 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16637         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
16638         regressions in gtk-sharp.
16640 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
16642         * exceptions.cs: New regression tests.
16644         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
16646 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
16648         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
16650 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
16652         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
16654         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
16656 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
16658         * mini.c (mono_jit_runtime_invoke): Init class in this
16659         method instead of trusting mono_jit_compile_method to
16660         do the work (because wrappers can be in object class)
16662 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
16664         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
16666         * basic-long.cs: New regression test.
16668 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
16670         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
16671         and div/rem checks.
16673 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16675         * Makefile.am: fix miguel's change to build mono statically against
16676         libmono (track build dependencies).
16678 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
16680         * cfold.c: Some glib versions do not have G_MININT32.
16682 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
16684         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
16685         with precision of tan, atan, sin and cos, and implemented related
16686         regressions tests (fixes bug 54467, but one new problem appeared and
16687         is not fixed yet).
16689 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
16691         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
16693         * exceptions.cs: Add test for constant folding && division by zero.
16695         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
16696         since driver.c is in libmono too, so the optimization was useless.
16698         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
16699         variable to driver.c so the compiler can emit more efficient code to
16700         access them.
16702 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16704         * Makefile.am: don't distribute generated inssel.[ch] files.
16706 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
16708         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
16709         into the default appdomain. Fixes #58707.
16711         * jit-icalls.c: Remove the broken approximation for truncl, doing
16712         no conversion is better.
16714         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
16715         Fixes #58863.
16717 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
16719         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
16720         of the mcrxr instruction which is not available on some processors
16721         even if it's documented to be. Implement add and sub overflow correctly
16722         (still not complete for long unsigned). Speed up icalls a bit.
16724 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
16726         * mini.c (mono_jit_compile_method_with_opt): Make sure that
16727         we run .cctor in the current domain instead of target_domain.
16728         
16729         Fixes bug #58558, .cctor not being called in -O=shared.
16731 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16733         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
16735 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
16737         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
16738         which can be done with an imm8, do it that way.
16739         (mono_arch_output_basic_block): ditto for a jmp
16740         (mono_arch_emit_prolog): Computate maximum offset of a label.
16742 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
16744         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
16745         now tries to allocate prefered physical reg's for virtual
16746         regs. This reduces the number of emited spills/loads with
16747         20-30% on our core assemblies.
16749 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16751         * jit-icalls.c: truncl() is not needed and trunc() is
16752         the correct thing to do anyway (bug #58287).
16754 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
16756         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
16757         if available.
16759 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16761         * driver.c: enable loop optimizations by default.
16763 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16765         * mini-x86.c: fix calc of max loop size when aligning loops start.
16767 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
16769         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
16770         the stack.
16772 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
16774         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
16775         should set carry.
16777         * basic-long.cs: Add tests for add/subtract of immediates with carry.
16779         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
16780         
16781         * mini.c (inline_method): Allways inline some wrappers even if the cost
16782         is too large. Fixes #58785.
16784         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
16785         
16786 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
16788         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
16789         (crichton@gimp.org). Beginning of support for sparc/linux.
16791         * mini-sparc.c: Optimize retrieval of LMF address.
16793 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
16795         * exceptions-ppc.c:  handle alloca in methods with clauses.
16797 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
16799         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
16801 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
16803         * mini.c: Delegate most of the abort signal work to 
16804           mono_thread_request_interruption, which also handles Stop and Suspend
16805           states.
16807 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
16809         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
16810         supports the save/restore lmf opcodes.
16812 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
16814         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
16815         by gcc-3.4 as well.
16817         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
16819 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
16821         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
16822         methods which contain array accesses.
16824         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
16825         boundaries. Fixes #58537.
16827         * iltests.il: Add regression test for #58537.
16829 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
16831         * mini-x86.c (mono_arch_local_regalloc): Last part of
16832         fix for bug #58633 (releasing register to early).
16834 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
16836         * basic-long.cs: Add new regression test.
16838 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
16840         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
16841         register too early on the chain.
16843 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
16845         * mini.c (create_helper_signature): Use a helper function to reduce
16846         the code which needs to be written. Also set the calling convention of
16847         icalls on windows. Fixes #57840.
16849 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16851         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
16852         exceptions-ppc.c: added helper function to get the instruction address
16853         from a signal handler context.
16855 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16857         * helpers.c: use g_get_tmp_dir. Invokes happyness 
16858         from gonzalo.
16860 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16862         * helpers.c: Add new env variable to pass args to objdump.
16863         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
16865 2004-05-17  Radek Doulik  <rodo@ximian.com>
16867         * Makefile.am (common_sources): added abcremoval.h so it get
16868         disted and daily mono packages on go-mono.com will build again
16870 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
16872         * abcremoval.c: Fixed coding style, added copyright header.
16874         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
16876         * mini.h: Added prototype for abc removal main function.
16878         * build_relations_propagation_table.pl: Added copyright header.
16880 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
16882         * basic-long.cs: reg test for complex ceq_long bug.
16884 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
16886         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
16887         reg in long and clob case (bug #58343). Fixed/added comments.
16889 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
16891         * mini.c (mono_jit_runtime_invoke): Follow new convention
16892         of calling the invoke method with an function pointer.
16894 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
16896         * ChangeLog: Fix author of memory leak patch.
16898 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
16900         * Makefile.am: fix make dist as well...
16903 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
16905         * cfold.c: Made so that conversions from pointer to int4 are no-ops
16906         on archs where pointers are 4 bytes long.
16908         * Makefile.am: Added abcremoval.c source file.
16910         * abcremoval.c: Added abcremoval.c.
16912         * abcremoval.h: Added abcremoval.h.
16914         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
16916         * inssel.brg: Enabled bounds check removal.
16918         * mini.c: Added support for abcrem optimization.
16920         * mini.h: Added abcrem optimization label.
16922         * driver.c: Added support for abcrem optimization.
16924         * propagated_relations_table.def: Added propagated_relations_table.def.
16926 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
16928         * mini.c, cfold.c: fix style.
16930 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16932         * mini.c: handle issue with the low-level implementation of
16933         some long opcodes (bug #54209).
16935 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
16937         * basic.cs: test for my new cmov stuff.
16939 2004-05-13      Patrik Torstensson
16941         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
16942         opt and added peephole documentation.
16944 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
16946         * tramp-ppc.c: rewrote the generic trampoline code.
16948 2004-05-11      Patrik Torstensson
16950         * mini-x86.c: optimize long shl/shr asm code (one less branch)
16952 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
16954         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
16956         * mini.h mini.c dominators.c: Applied patch from Derek Woo
16957         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
16959         * mini.c: Add new icalls for AsAny marshalling.
16961 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
16963         * tramp-ppc.c, mini-ppc.c: more cleanups.
16965 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16967         * mini.c: no warnings.
16969 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16971         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
16973 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
16975         * mini.c: In the thread abort signal handler, if the thread is in the
16976         process of being stoped, don't throw the Abort exception, just stop the
16977         thread.
16979 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
16981         * tramp-ppc.c: removed old code.
16983 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16985         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
16986         do some simple speed optimizations on ppc.
16988 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
16990         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
16991         and large offsets in load/store.
16993 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
16995         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
16996         it causes regressions.
16998 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
17000         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
17001         support.
17003 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17005         * jit-icalls.c: remove warnings.
17006         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
17007         speedups for unsafe code.
17009 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
17011         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
17013 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
17015         * basic-calls.cs: Add new regression test.
17017         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
17018         more portable.
17020         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
17022         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
17023         is no longer used.
17025 2004-05-06      Patrik Torstensson
17027         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
17028         long reg allocation in any reg (not only eax:edx) and implemented 
17029         long shl/shr ops in asm instead of helpers.
17031 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
17033         * mini-sparc.h: Fix warnings.
17035         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
17036         stack.
17038         * mini-exceptions.c (mono_handle_exception): Call the filter in a
17039         separate statement for clarity.
17041         * mini-sparc.c: Update status.
17043 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
17045         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
17046         here.
17048 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17050         * inssel-ppc.brg: another small pre-release workaround:
17051         we don't do overflow detection for long_sub_un.
17053 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17055         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
17056         (also works around a weird ppc bug: 57957).
17058 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
17060         * tramp-ppc.c: trampoline fixes.
17062 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
17064         * mini-ppc.c: fixed typos.
17066 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17068         * mini-ppc.c, exceptions-ppc.c: more code saves registers
17069         at the top of the stack. Fixed typos. Use a frame registers
17070         for all the methods with exception clauses.
17072 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17074         * exceptions-ppc.c: restore fp registers.
17076 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
17078         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
17079         order from the stack top (moved the stack room to save the
17080         return value for trace after the param area). Fixed corruption
17081         in restoring registers on unwind.
17083 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17085         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
17087 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17089         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
17090         and prolog/epilog for methods that use it. Allow
17091         enough param area room for varargs methods. Fix miguel's
17092         breakage in exception handling.
17094 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17096         * Makefile.am: run genmdesc only on current arch.
17098 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17100         * exceptions-x86.c:
17101         * mini-x86.h: fix the build on windows.
17103 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
17105         * 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.
17107         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
17109         * mini-exceptions.c: New file.
17110         
17111         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
17112         Move some parts of the x86 exception handling code to an 
17113         arch-independent file so it can be shared with other ports.
17115 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17117         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
17119 2004-04-26  David Waite  <mass@akuma.org>
17121         * driver.c: remove comma from end of enumeration declaration
17123 2004-04-26  Jackson Harper  <jackson@ximian.com>
17125         * driver.c: parse config file before loading first assembly. This
17126         allows the user gac to be enabled/disabled. 
17127         
17128 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
17130         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
17131         simpler mechanism: we do not care what is encoded initially
17132         (branch absolute or relative), we care about the code and its
17133         target.  I kept the old code for reference for now.
17135         The new code tries first to determine if the jump is anywhere in
17136         the -/+32 absolute meg range, if it succeeds, it encodes using the
17137         absolute branch;  If not, it tried to find something in the
17138         relative range, if not, it uses the handle_thunk code. 
17140 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
17142         * exceptions-ppc.c: use the correct ip register on macosx.
17144 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
17146         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
17148 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
17150         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
17151         Raise exception on integer divide by zero by hand since the hw
17152         doesn't support it. Handle NaNs in FP compares.
17154 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17156         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
17157         code reducing duplication between the platforms and enabled
17158         signal exception handling (on linux for now).
17160 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
17162         * exceptions-ppc.c: more macosx support.
17164 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17166         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
17168 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17170         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
17172 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
17174         * iltests.il: more tests.
17176 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17178         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
17179         vars as well.
17181 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17183         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
17185 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17187         * liveness.c: Mark variables as volatile in all basic blocks reachable
17188         from exception clauses.
17190 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
17192         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
17193         inlining.
17195 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17197         * iltests.il, basic.cs: more tests for regalloc.
17199 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17201         * iltests.il: Some tests for register allocation modifications
17202         I have locally.
17204 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
17206         * exceptions.cs: Add regression test for bug #56782.
17208         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
17209         original stack trace if an exception is rethrown. Fixes #56782. Oh,
17210         the beauty of fixing the same thing in 5 different files...
17212 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
17214         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
17215         methods.
17217 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
17219         * mini.c: Add support for STRWLPARRAY marshalling convention.
17221 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17223         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
17224         to init the context to setup the regs pointer).
17226 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17228         * exceptions-ppc.c: more exceptions work.
17230 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17232         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
17233         not allowed.
17235 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17237         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
17238         can use the memory directly.
17240         * cpu-pentium.md: Update documentation from a post from Zoltan. 
17242         add x86_add_membase, x86_sub_membase, x86_mul_membase
17244 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17246         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
17247         GENERAL_REGS they were also hardcoded for all PPC ports.
17249         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
17251         Remove hard-coded limit for floating point registers, use
17252         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
17254         Notice that in MacOS X calling conventions you can fit a lot more
17255         floating point values in registers, so I should update the PInvoke
17256         test to excercise the passing of floating point values on the
17257         stack (currently broken).
17258         
17259 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
17261         * tramp-ppc.c (create_trampoline_code): Added
17262         JUMP_TRAMPOLINE_SIZE. 
17263         (ppc_magic_trampoline): Follow the pattern from
17264         x86_magic_trampoline: if code is set to zero, return. 
17265         (create_trampoline_code): Always pass MonoMethod to the jump
17266         trampoline, before it was passing a null.
17267         (mono_arch_create_jump_trampoline): Implement the jump stub, could
17268         share the code with mono_arch_create_jit_trampoline. 
17270         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
17271         implemented.
17272         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
17273         implemented.  
17275         * cpu-g4.md: Added length for jmp instruction, the worst case
17276         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
17277         for save_lmf).
17279 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
17281         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
17283 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
17285         * mini.c: Only set bblock->real_offset when adding a new bblock, and
17286         before each IL instruction.
17288         * mini.c (CEE_BOX): Fix warnings.
17290 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17292         * mini.c: removed a few unused vars and extra whitespace.
17294 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
17296         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
17297         checks.
17298         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
17299         index.
17300         (OP_GETCHR): use the above
17301         (CEE_LDELEMA): use the above.
17303         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
17304         version of the generic impl.
17305         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
17306         (CEE_LDELEMA): use the above.
17308 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17310         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
17311         Fixes #56317.
17313         * iltests.il: Added new regression test for #56317.
17315 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17317         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
17318         under NetBSD. Fixes #56450.
17320         * liveness.c (update_gen_kill_set): Fix previous patch.
17322 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17324         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
17326 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
17328         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
17329         ldsfld and ldsflda.
17331         * inssel-sparc.brg: Add more optimizations.
17333         * mini-sparc.c: Replace multiply/divide with shifts if possible.
17335 2004-04-01  Martin Baulig  <martin@ximian.com>
17337         * mini.c (handle_box): New static function; moved the
17338         implementation of CEE_BOX here.
17339         (mono_method_to_ir): Added `constrained_call' variable.
17340         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
17341         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
17342         mono_method_get_constrained() to get the method.
17344 2004-04-01  Martin Baulig  <martin@ximian.com>
17346         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
17347         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
17348         (mono_method_to_ir): We don't need these macros anymore since
17349         mono_class_get_full() already takes care of it. 
17351 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17353         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
17354         use @function (as doesn't accept #function here) and check the return
17355         value of system and stop if fails.
17357 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17359         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
17361 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
17363         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
17365         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
17367         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
17368         #56223.
17370         * basic-long.cs: Add test for negation of Int64.MinValue.
17372 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
17374         * mini-sparc.c: Update status.
17376         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
17378         * exceptions-sparc.c: Fix return value in filters.
17380         * inssel-sparc.brg: Fix register allocation in some rules.
17382 2004-03-28  Martin Baulig  <martin@ximian.com>
17384         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
17385         if neccessary.  
17387 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
17389         * mini-x86.c (mono_arch_patch_code): Fix warnings.
17390         
17391         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
17392         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
17393         remove unused conv_u4 opcode.
17395         * mini-x86.c: Remove valgrind workaround since it slows down things
17396         even when mono is not run under valgrind.
17398 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
17400         * mini-sparc.c: Update status.
17402         * inssel-sparc.brg: Add some optimizations.
17404         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
17405         future delay slot filling. Add support for varargs, tail calls and JMP.
17407         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
17408         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
17410         * inssel.brg: Fix register allocation in OP_ARGLIST.
17412         * inssel.brg: Fix warnings.
17414 2004-03-25  Martin Baulig  <martin@ximian.com>
17416         * mini.c (inflate_generic_field): Removed.
17417         (mini_get_method): Removed, use mono_get_method_full(),
17418         (mini_get_class): Removed, use mono_class_get_full().
17419         (mono_method_to_ir): Pass our generic context to
17420         mono_field_from_token().        
17422 2004-03-25  Martin Baulig  <martin@ximian.com>
17424         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
17425         of a `MonoMethod *'.
17426         (mini_get_method): Take a `MonoGenericContext *' instead
17427         of a `MonoMethod *'.
17428         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
17429         a new local variable called `generic_context' which holds the
17430         current `MonoGenericContext *'; use it to lookup things.
17432 2004-03-24  Martin Baulig  <martin@ximian.com>
17434         * mini.c (mini_get_class): New static method; if we're inside a
17435         generic instance, inflate the class if neccessary.
17436         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
17438 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
17440         * iltests.il: New regression test for #55976.
17442         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
17443         #55976.
17445 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
17447         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
17448         output.
17450 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
17452         * liveness.c: Consider SSA stores as well as loads when making vars
17453         volatile.
17455         * exceptions.cs: New regression tests for register allocation.
17456         
17457 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
17459         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
17460         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
17461           domain lock only to protect puntual access to data structures.
17462           Added access lock for sighash, jit_icall_hash_name, 
17463           jit_icall_hash_addr and domain->code_mp.
17465 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
17467         * driver.c: Print SIGSEGV handling method.
17469         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
17471         * mini.c (setup_jit_tls_data): Handle case when this is called
17472         multiple times for a thread.
17474         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
17475         is different from fbxx_un. Fixes #54303. Also use constants instead of
17476         magic numbers in a lot of places.
17478 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
17480         * exceptions.cs: Fix cctor test when --regression is used.
17482 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
17484         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
17485         for Linux/ppc.
17487 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17489         * inssel-ppc.brg: fixed register assignments for some rules.
17491 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
17493         * exceptions.cs: Add test for exceptions in static constructors.
17495         * mini.c (mono_jit_compile_method_with_out): Move the calling of
17496         static constructors outside the domain lock. Fixes #55720.
17498 2004-03-17  Martin Baulig  <martin@ximian.com>
17500         * mini.c (get_generic_field_inst): Removed, this'll never happen.
17501         (inflate_generic_field): Take the `MonoMethod *' instead of the
17502         `MonoClass *' and added support for generic method.
17503         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
17504         have a `field->parent->gen_params', only inflate the field if it's
17505         an open constructed type.
17507 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
17509         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
17510         exception object instead of the preconstructed ones.
17512 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17514         * mini.c: reverted changed to sigsegv_signal_handler commited
17515         accidentally in the previous patch.
17517 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17519         * mini.c:
17520         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
17521         running --aot with an old assembly.
17523 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
17525         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
17526         point values.
17528         * mini-sparc.c: Add support for v9 branches with prediction.
17530 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
17532         * mini.c (mini_init): #warning is GNUC only
17534         * mini-sparc.h: implement __builtin_frame_address
17535         and __builtin_return_address for Sun C compiler
17537 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
17539         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
17541 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
17543         * basic-calls.cs: Add test for unaligned byref long argument passing.
17545         * mini-ops.h: Add sparcv9 compare and branch instructions.
17547         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
17548         v9 instructions if we have a v9 cpu.
17550         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
17551         registers for global allocation.
17553         * exceptions-sparc.c: Fixes.
17554         
17555 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
17557         * liveness.c (mono_analyze_liveness): Optimized version.
17559         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
17561         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
17562         sparc work.
17564         * basic-float.cs basic-calls.cs: New regression tests.
17566 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
17568         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
17569         sigaltstack implementation.
17571         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
17572         
17573         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
17574         stuff if SIGSEGV_ON_ALTSTACK is not defined.
17576 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
17578         * mini.c: Fix warnings.
17579         
17580         * mini.c (mono_resolve_patch_target): New function which contains the
17581         arch independent part of the patching process.
17583         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
17584         patching code to a separate function.
17586 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
17588         * mini.c (add_signal_handler): ifdef out on Windows
17590 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
17592         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
17593         cpu-sparc.md: Add exception handling support + other fixes.
17595         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
17596         typed GC detection in --version.
17598         * basic.cs exceptions.cs: New regression tests.
17600         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
17601         the arch specific code can store data during a compilation.
17603         * mini-ops.h: Add OP_SETFRET.
17605         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
17606         function, register a separate icall for each arity, so the icalls can
17607         get a wrapper.
17608         
17609         * mini.c (mono_print_tree): Print negative offsets in a more readable
17610         form.
17611         
17612         * mini.c: Make signal handling work on sparc.
17613         
17614         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
17616         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
17618         * jit-icalls.c: Emulate truncl by aintl on solaris.
17620         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
17622 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
17624         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
17626 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
17628         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
17629         a MarshalByRef type, inline a method that performs the check, taking into
17630         account that the object can be a proxy. Also implemented tow new opcodes:
17631         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17632         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
17633         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17635 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17637         * mini-ppc.c: if a relative branch displacement is too big
17638         but it points to and area reachable with an absolute branch, 
17639         avoid the thunks.
17641 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17643         * mini.c: optimize small copies in cpblk.
17645 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
17647         * basic-calls.cs basic-float.cs: New regression tests.
17649         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
17650         negative offsets from %fp. Implement localloc. Fix local register 
17651         allocation. Fix the case when the this argument needs to be saved to
17652         the stack. Implement some missing opcodes.
17654 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
17656         * mini.c (mini_method_compile): Reenable global regalloc in methods
17657         with exception handlers.
17659         * linear-scan.c (mono_varlist_sort): Fix warning.
17661         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
17663         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
17664         regalloc costs.
17666         * liveness.c: Make all variables uses in exception clauses volatile, to
17667         prevent them from being allocated to registers. Fixes #42136.
17669 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
17671         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
17672         causes regressions.
17674         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
17675         argument to mono_arch_regalloc_cost.
17677         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
17678         precisely.
17680 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
17682         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
17683         Make the cost of allocating a variable to a register arch dependent.
17685         * basic-calls.cs: Fix compilation of tests.
17686         
17687         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
17688         helper function to cut back on the number of #ifdefs needed.
17690         * mini-ppc.c: Fix compilation.
17692         * basic-calls.cs: New regression tests.
17694         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
17696         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
17697         of l0 since that is callee saved.
17699         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
17700         to virtual calls.
17702         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
17703         of delay instruction.
17705         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
17707         * mini.h (MonoCallInst): Add 'virtual' flag.
17709         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
17711 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
17713         * *.cs: New regression tests.
17715         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
17716         work.
17718         * mini.c (mono_runtime_install_handlers): Fix build.
17720         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
17721         'signal_stack_size' members.
17723         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
17724         alternate signal stack.
17726         * exceptions-x86.c: Add stack overflow handling.
17728         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
17729         functions to arch independent code.
17731         * mini.c (mono_print_tree): Print more detailed info for load_membase
17732         opcodes.
17733         
17734 2004-02-23  Martin Baulig  <martin@ximian.com>
17736         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
17738 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17740         * mini-x86.c: fixed reg allocation for div/rem.
17742 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
17744         * driver.c (mono_main): Report some configuratio options on --version.
17746 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
17748         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
17749         low in the address space. Correctly flush memory in thunks where we
17750         output native code.
17752 2004-02-20  Martin Baulig  <martin@ximian.com>
17754         * mini.c (mini_get_method): New static method; inflate all generic
17755         methods and methods in open generic instances.
17756         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
17757         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
17759 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
17761         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
17763         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
17765 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
17767         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
17769         * mini-sparc.c (flushi mono_arch_output_basic_block): make
17770         it compile using Sun's compiler.
17772 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
17774         * 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.
17776         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
17778 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
17780         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
17781         code.
17782         * mini-ppc.c: handle calls outside of the allowed range with thunks
17783         allocated using the code manager.
17784         * tramp-ppc.c: use the code manager to hold generated native code.
17785         Fixed the magic trampoline to just patch vtable entries.
17787 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
17789         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
17790         independent file.
17792 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
17794         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
17795         PPC.
17797         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
17798         if we have a working __thread implementation.
17800         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
17801         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
17803 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
17805         * mini-x86.c: Fix compilation under gcc 2.
17806         
17807 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
17809         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
17810         contains a call to the wrapped function.
17812         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
17813         OP_<CALL>_IMM opcodes, and use them under X86.
17814         
17815         * mini.c (mono_jit_find_compiled_method): Fix warning.
17817         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
17819         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
17821         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
17822         functionality to mini.c.
17824         * mini.c (mono_create_jump_trampoline): New function to create a jump
17825         trampoline. Return a compiled method instead of a trampoline if it
17826         exists. Add a cache for jump trampolines.
17828         * mini.c (mono_jit_find_compiled_method): New function to return a
17829         compiled method if it exists.
17831         * mini-x86.c: Call mono_create_jump_trampoline instead of 
17832         mono_arch_create_jit_trampoline.
17834         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
17835         a jump trampoline. Fixes #52092.
17836         
17837 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
17839         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
17840         which is not up-to-date. Add check_corlib_version () instead.
17842         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
17843         have to call it.
17844         
17845         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
17846         since newer valgrind versions do not need it.
17848         * mini.c (mono_jit_compile_method_with_opt): New helper function to
17849         compile a method with a given set of optimizations.
17851         * mini.c: Compile icall wrappers on-demand instead of at startup.
17853         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
17854         wrapper for an icall.
17856 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
17858         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
17859         #54063.
17861         * iltests.il: Add test for non-empty stack before switch instruction.
17863 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
17865         * mini.c: Add support for new stringbuilder marshalling conventions.
17867         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
17869 2004-02-01  Martin Baulig  <martin@ximian.com>
17871         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
17872         in `ginst->mtype_argv'.
17874 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
17876         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
17877         facilitate grepping.
17879 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
17881         * mini.c: fixed buglet in initobj generic implementation for references.
17883 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
17885         * Makefile.am: make the version script conditional.
17886         * jit-icalls.c: handle missing truncl().
17888 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
17890         * exceptions.cs: Add more tests for double->int conversion.
17892         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
17893         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
17895 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
17897         * driver.c: make --verbose --version emit an error
17898         if the loaded corlib doesn't match the runtime version.
17900 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
17902         * mini-ppc.h: export ppc_patch().
17903         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
17904         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
17905         on par or better than on MacOSX.
17907 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
17909         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
17910         mono_lookup_pinvoke_call.
17912         * mini-x86.c: Under windows, the default pinvoke calling convention is
17913         stdcall. Fixes #52834.
17915         * mini.c (optimize_branches): Add an upper bound to the number of
17916         iterations to prevent infinite loops on strange loops. Fixes #53003.
17918 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
17920         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
17921         and ISINST. Fixes #52093.
17923         * objects.cs (test_0_vector_array_cast): New tests.
17924         
17925 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
17927         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
17928         checking in Array.Set ().
17930         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
17931         #52590.
17933         * object.cs (test_0_multi_array_cast): New regression test.
17935 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
17937         * exceptions-ppc.c: fix build on Linux/PPC.
17939 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
17941         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
17942         running under valgrind.
17943         (x86_magic_trampoline): Fix build bustage.
17945         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
17946         negative values as well. This is needed for the encoding of the line number
17947         info, since sometimes the line numbers are not in increasing order.
17949 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
17951         * cpu-pentium.md (localloc): Increase the size of the localloc 
17952         instruction since it is a loop under Win32.
17954         * debug-mini.c (record_line_number): Get rid of unneccesary memory
17955         allocation.
17957 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
17959         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
17960         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
17961         Max Horn (max@quendi.de). Fix file names in comments.
17963 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
17965         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
17966         avoid stack overflow.
17967         (replace_usage): Avoid uninitialized variable warnings.
17969         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
17970         and taking the address of valuetype variables.
17972 2004-01-03  Patrik Torstensson
17974         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
17975         for other purposes than FP later on.
17977 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
17979         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
17980         of tail calls.
17982 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
17984         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
17986 2003-12-30  Patrik Torstensson <p@rxc.se>
17988         * mini-x86.h: Decreased number of availiable fp regs.
17989         Solves corner cases with FP spilling.
17991 2003-12-23  Patrik Torstensson <p@rxc.se>
17993         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
17994         for floating point stack tracking / spilling on x86. 
17995         Fixes bug #49012.
17996         
17997         * basic-float.cs: added float mul overflow test.
17999 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
18001         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
18003 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18005         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
18006         supports for cond branches that overflow the immediate
18007         overflow offset. mcs can compile simple programs.
18009 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18011         * exceptions-ppc.c: exception handling support wip:
18012         finally handlers get run on exception.
18014 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
18016         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
18017         profiling.
18019 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18021         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
18022         initial support for stack walking and unwinding.
18024 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
18026         * driver.c (mono_main): Make corlib-out-of-sync message more 
18027         descriptive. Also remove verify_corlib call.
18029 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18031         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
18032         not overlap with other call's arguments, too.
18034 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
18036         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
18037         move to arch-specific code the choice of arch-specific
18038         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
18039         * mini.c: ensure emulation calls will not interleave
18040         with other calls.
18042 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
18044         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
18045         the magic trampoline stack frame is dropped before executing
18046         the new method.
18048 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18050         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
18051         and integer to fp conversions. Added support for overflowing
18052         arguments on the stack. Reserve a couple more registers as temps.
18053         Added support for aot compilation (as output still needs to be
18054         tweaked, though).
18056 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18058         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
18059         Don't overwrite return register in some corner cases.
18061 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
18063         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
18064         static constructors when AOT compiling.
18066         * driver.c (mono_main): Call mono_check_corlib_version.
18068 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18070         * cpu-g4.md, basic.cs: fixed div target register.
18072 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18074         * mini-ppc.c, basic.cs: shl_imm fix with test.
18076 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18078         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
18079         structures by value. Misc fixes.
18080         * objects.cs: more tests.
18082 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
18084         * mini-ppc.c: lconv.ovf.i implemented.
18086 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18088         * mini.c:
18089         (mini_init): don't error out if someone already called g_thread_init.
18091 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18093         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
18094         to be any type per the spec. Fix abnormal memory usage when
18095         the same object is repeatedly thrown.
18097 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
18099         * mini.c: check for overruns in IL code.
18101 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
18103         * TODO: Add/remove some todo entries.
18105 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
18107         * driver.c (mono_main): Call mono_verify_corlib.
18109 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
18111         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
18112         This has been moved to mini.c
18113         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
18114         type being casted is marshalbyref it could be a proxy, so instead of
18115         emitting the type check code, emit a call to a runtime method that will
18116         perform the check by calling CanCastTo if needed.
18118 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
18120         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
18121         methods with large stack frames under Win32.
18123 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
18125         * Makefile.am: Distribute regression tests.
18127         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
18128         at the end instead of inserting each variable into the sorted list.
18130         * linear-scan.c (mono_varlist_sort): New helper function.
18131         
18132 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18134         * mini.c: ensure arguments and locals are within bounds.
18136 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18138         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
18139         related fixes.
18141 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
18143         * mini.c (mono_cprop_copy_values): Fix crash.
18145         * aot.c: Set verbosity back to 0.
18146         
18147 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18149         * regalloc.c: complete memory leak fix by Laurent Morichetti
18150         (l_m@pacbell.net).
18152 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
18154         * driver.c (main_thread_handler): Revert the previous patch.
18156         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
18157         under valgrind.
18159         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
18160         memory from the memory pool.
18162         * driver.c (main_thread_handler): Turn on all optimizations when
18163         --aot is used.
18165         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
18166         an array for better performance.
18168         * regalloc.c (mono_regstate_assign): Fix memory leak.
18170         * debug-mini.c (mono_debug_serialize_debug_info): New function to
18171         serialize the debug info.
18173         * debug-mini.c (mono_debug_add_aot_method): New function to load the
18174         debug info from the serialized representation.
18176         * aot.c: Save debug info into the generated file and load it when 
18177         loading a method.
18179         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18181 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18183         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
18184         More FP-related fixes.
18186 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18188         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
18189         and register allocation buglet. Hello world now runs.
18191 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18193         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
18194         * tramp-ppc.c: fixed class init trampoline.
18195         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
18197 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18199         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
18200         mini.c: more ppc changes/fixes.
18202 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
18204         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
18205         Also optimize the case when the arguments are the same in the caller 
18206         and in the callee.
18208         * iltests.il: Add tests for tail calls with valuetype arguments.
18210 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18212         * mini-ppc.c: fixes for struct return type.
18214 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
18216         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
18217         mono_spillvar_offset() to arch-specific code.
18219 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18221         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
18223 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
18225         * exceptions-x86.c: Fix stack space leaks.
18226         
18227         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
18228         registers from the lmf if the method has save_lmf set.
18230 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
18232         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
18233         of icall wrappers into InvokeInDomain, since these are now per-domain.
18235 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
18237         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
18238         make some opcode emulation and intrinsic ops enabled/disabled 
18239         according to the architecture. More fixes.
18241 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18243         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
18245 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18247         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18248         arch-specific handling for 'this' and struct return type to
18249         arch-specific code.
18251 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18253         * aot.c: prevent divide by zero error when reporting (it happened with
18254         Accessibility.dll).
18256 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
18258         * mini.h (inst_switch): Remove unused macro.
18260 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18262         * aot.c:
18263         (load_aot_module): free 'info->methods' and 'info' properly. No more
18264         "free(): invalid pointer blah" messages when you have an old aot
18265         compiled assembly.
18267 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
18269         * jit-icalls.c, mini.c: Added support for context static fields.
18271 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18273         * mini.c (mono_method_blittable): Methods which set LastError are not 
18274         blittable either. Fixes #51108.
18275         
18276 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18278         * mini.c: flush icache.
18279         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
18281 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18283         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
18285 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
18287         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
18288         safe on IA32.
18290         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
18291         vararg calls.
18293         * inssel.brg (CEE_MKREFANY): Fix AOT case.
18295 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
18297         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
18298         instruction when the result is discarded.
18300         * iltests.il (test_0_div_regalloc): New regression test.
18302         * arrays.cs: Fix compilation error.
18304 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18306         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
18307         float rules to inssel-x86.brg: sane architectures with FP registers
18308         don't need to implement these rules.
18310 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18312         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
18314 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18316         * mini.h, inssel-long32.brg: fixed endianess issues in int64
18317         implementation of 32 bit systems.
18319 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18321         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
18322         (Jeroen Zwartepoorte).
18324 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
18326         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
18327         the caller and the callee matches.
18328         
18329         * mini.c (mono_method_to_ir): Add comment.
18331         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
18332         signbit is missing on some platforms.
18334 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
18336         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
18338         * mini.c (setup_jit_tls_data): Call the new function.
18339         
18340         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
18342         * mini-x86.c: Add experimental support for fast access to the lmf
18343         structure under NPTL/Linux 2.6.x.
18345 2003-11-06  Martin Baulig  <martin@ximian.com>
18347         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
18348         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
18349         the debugger.
18351 2003-11-02  Martin Baulig  <martin@ximian.com>
18353         * mini.c (inflate_generic_field): New static method.
18354         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
18355         generic instance and the field is declared in a generic type, call
18356         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
18358 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
18360         * mini.h mini.c (mono_method_same_domain): New function to return
18361         whenever the caller and the callee are in the same domain.
18363         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
18365 2003-10-30  Martin Baulig  <martin@ximian.com>
18367         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
18368         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
18369         method parameters.
18370         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
18371         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
18373 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
18375         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
18376         propagation.
18378         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
18379         object here, so it is in the correct appdomain etc.
18381 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
18383         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
18384         already done.
18385         (mono_method_to_ir): Avoid freeing the type created returned from
18386         mono_type_create_from_typespec, since it is put into an internal cache
18387         by the function. Fixes pointer.exe.
18389         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
18390         trampolines for icalls and pinvokes as well. Fixes #33569.
18392 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
18394         * mini.c: Update after appdomain changes.
18396         * mini.c (mono_jit_compile_method_inner): Allways compile native
18397         method wrappers in the root domain, since there can only be one
18398         instance of them, whose address is stored in method->info.
18400 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18402         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
18403         environment variable. Instead detect automatically whenever running
18404         under valgrind using the magic macro RUNNING_ON_VALGRIND from
18405         valgrind.h.
18407 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
18409         * trace.c, trace.h: New files that implement the new trace option
18410         parsing. 
18412         * driver.c: Document new --trace options.
18414         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
18415         mini-x86.c: Apply:
18417         -       if (mono_jit_trace_calls)
18418         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
18420         * mini.h: prototypes.
18421         
18422 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18424         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
18426         * mini.c inssel.brg: Implement typedefbyref opcodes.
18428         * mini.c (mono_jit_compile_method): Remove unused local variable.
18430         * mini.c (mono_jit_compile_method_inner): Ditto.
18431         
18432 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
18434         * tramp-x86.c (x86_class_init_trampoline): Fix build.
18435         
18436         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
18438 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18440         * mini.c (mono_no_aot): Remove unused global variable.
18442         * mini.c: Thread safety fixes.
18444 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18446         * mini.c (mono_create_class_init_trampoline): Add a lock around
18447         class_init_hash_addr.
18449         * arrays.cs (test_0_newarr_emulation): Add new regression test for
18450         #30073.
18452         * mini.c: Decompose the NEWARR instruction before decomposing its
18453         arguments. Fixes #30073.
18455 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
18457         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
18458         convention.
18460 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
18462         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
18464         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
18466         * driver.c: Add support for compiling icall wrappers to --compile.
18468 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
18470         * inssel.brg: The empty value in class->interface_offsets is -1, not
18471         0. Fixes #49287.
18473 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
18475         * objects.cs: New test for 'is' operator on an array of interfaces.
18477 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
18479         * tramp-ppc.c: update trampoline code to support jumps
18480         and class initialization.
18482 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
18484         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
18486         * inssel.brg (OP_UNBOXCAST): Fix #46027.
18488         * inssel.brg (OP_UNBOX): Remove unused rule.
18490         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
18491         region instead of one for each method. Fixes #47813.
18493 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
18495         * exceptions.cs (test_0_nested_finally): New regression test for
18496         nested exception handlers.
18498         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
18500         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
18502         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
18503         inlining.
18505         * mini.c (mono_method_check_inlining): Make the inlining limit 
18506         configurable by an environment variable.
18507         
18508         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
18510         * mini.h: Bump AOT file version.
18512         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
18513         token, store the image along with the token, since the token might not 
18514         refer to the same image as the method containing the relocation, 
18515         because of inlining.
18517 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
18519         * mini.c (mono_precompile_assemblies): New function to compile
18520         all methods in all loaded assemblies.
18522         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
18524         * regalloc.h regalloc.c (MonoRegState): Change the type of 
18525         iassign and fassign to int*, since they can contain large negative
18526         values if the register is spilled. Also added some comments. Fixes
18527         #45817.
18529         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
18530         under Win32. Fixes #42964.
18532 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
18534         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
18536         * aot.c: Added support for AOT compiling methods which contain calls
18537         to wrappers. Currently, only remoting-invoke-with-check wrappers are
18538         handled.
18539         
18540         * driver.c (compile_all_methods): Run the compilation in a thread
18541         managed by mono. Fixes #44023.
18543         * mini.c (mono_codegen): Print full method name in verbose output.
18545         * mini-x86.c (mono_arch_patch_code): Fix warning.
18546         
18547         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
18548         jumps, since the method we are jumping to might be domain-specific.
18550         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
18552 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
18554         * inssel.brg: string chars are unsigned.
18556 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
18558         * TODO: New todo item.
18560         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
18561         which calls mono_runtime_class_init and patches the call site to
18562         avoid further calls.
18563         (mono_arch_create_class_init_trampoline): New arch specific function 
18564         to create a class init trampoline.
18565         (create_trampoline_code): Generalized so it can create
18566         class init trampolines as well.
18568         * mini.c (helper_sig_class_init_trampoline): New helper variable.
18569         (mono_create_class_init_trampoline): New function to create and cache
18570         class init trampolines.
18571         (mono_find_class_init_trampoline_by_addr): New function to lookup the
18572         vtable given the address of a class init trampoline. Used by the
18573         patching process.
18574         (mono_codegen): Generate a call to a trampoline instead of
18575         mono_runtime_class_init in LDSFLD[A].
18576         (mono_codegen): Add relocations for the new trampoline.
18577         
18578         * mini.h mini-x86.c aot.c: Added a new relocation type: 
18579         MONO_PATCH_INFO_CLASS_INIT.
18581         * mini.h: Bump AOT version number.
18583         * aot.c: Create a copy of the loaded code instead of using the original
18584         so methods which call each other will be close in memory, improving
18585         cache behaviour.
18586         
18587         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
18588         patch since it breaks the regression tests.
18589         
18590         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
18591         for the register saving instruction sequence since the 
18592         frame_state_for function in glibc 2.3.2 don't seem to detect it.
18594 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
18596         * TODO: Fix todo item && remove another.
18598 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
18600         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
18601         previous checkin.
18603         * aot.c: Moved the check for MONO_LASTAOT into the initialization
18604         function of the module.
18606         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
18607         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
18608         --no-aot command line option.
18610 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
18612         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
18613         by Bernie Solomon (bernard@ugsolutions.com).
18615         * inssel.brg: Refactor the interface offset table related code into
18616         its separate functions and add support for the AOT case.
18618 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
18620         * aot.c (mono_aot_get_method_inner): Fix memory leak.
18621         
18622         * aot.c: Added mono_aot_verbose variable and made all debugging
18623         output depend on the value of this variable.
18625         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
18626         method_label and info_label.
18628         * mini.h mini-x86.c aot.c: Added a new relocation type 
18629         MONO_PATCH_INFO_IID for klass->interface_id.
18631         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
18632         the MonoJitInfo structure.
18634         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
18635         a non-root appdomain in shared mode.
18637 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
18639         * aot.c: make aot loader less verbose. Remove free of unused variable.
18641 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
18643         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
18645         * .cvsignore: Added *.dll.
18647         * mini.c (mono_print_tree_nl): New function callable while debugging.
18649         * mini.c (mono_print_code): Export this.
18651         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
18652         patched code.
18654 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
18656         * mini.h (MonoCompile): Added 'jit_info' field.
18658         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
18659         the cfg structure, since it is needed by the AOT compiler.
18661         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18663         * aot.c: A major rewrite. Changes include:
18664         - save exception tables for methods which have them.
18665         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
18666         to g_module_symbol.
18667         - reworked the file format so it is now much smaller and needs
18668         fewer relocation entries.
18669         
18670 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18672         * aot.c (load_aot_module): Fix build bustage on platforms without
18673         Boehm GC.
18675 2003-09-04  Martin Baulig  <martin@ximian.com>
18677         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
18679 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18681         * TODO: Some new optimization ideas.
18683         * aot.c: Move AOT module loading logic here from mono_assembly_open.
18685         * aot.c: Save the optimization flags used to compile the code into
18686         the AOT module.
18688         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
18689         support emitting domain specific code.
18690         
18691         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
18692         no longer domain neutral. It can be made domain neutral by compiling 
18693         with --optimize=shared.
18695         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
18696         between appdomains.
18698         * driver.c mini.h mini.c: New --no-aot debugging option which disables
18699         loading of AOT code.
18701         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
18702         
18703         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
18704         if there is no domain neutrality information.
18706 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
18708         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
18709         format version into the generated library.
18711         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
18712         callee method into the caller since one of them could be shared.
18714         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
18715         system exceptions from AOT code now works.
18717         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
18718         method if it is domain neutral and the callee is not.
18720         * graph.c (cfg_emit_one_loop_level): Fix warning.
18722 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
18724         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
18725         last checkin.
18727 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
18729         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
18730         is needed  by code which is executed before mono_runtime_init ().
18731         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
18732         
18733         * mini.c (mono_thread_abort): Fix warning.
18734         (mono_jit_compile_method): Call static constructor in the AOT case too.
18736         * aot.c (mono_compile_assembly): Fix warning.
18738 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18740         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
18742 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
18744         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
18746         * cpu-pentium.md: Fix the length of call opcodes so they include the
18747         ESP restoring instruction. Fixes #47968.
18749 2003-08-28  Martin Baulig  <martin@ximian.com>
18751         * mini-x86.c (mono_arch_call_opcode): Added support for
18752         MONO_TYPE_GENERICINST.
18754         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
18756 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
18758         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
18759         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
18761         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
18762         metadata_section.
18764 2003-08-26  Martin Baulig  <martin@ximian.com>
18766         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
18767         when reporting an error, set this to the actual error location.
18768         (mono_method_to_ir): Report the correct error location if
18769         get_basic_blocks() returned an error.
18771 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
18773         * mini.c (mono_type_blittable): OBJECT is not blittable.
18774         (mono_method_blittable): Methods which have marshalling descriptors
18775         are not blittable either. Fixes #47842.
18777 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
18779         * driver.c mini.c: Use an environment variable instead of a global 
18780         variable. Also fix the build.
18782         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
18783         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
18784         reporting this. 
18786         * driver.c mini.c: Added --with-valgrind option to turn off some
18787         code which prevents mono from running under valgrind.
18789         * mini.c (mono_emit_call_args): Fixed warning.
18791         * mini.c (mono_emulate_opcode): Fixed warning.
18793 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18795         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
18796         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
18797         regalloc.c, regalloc.h: specify available registers in arch-specific
18798         code and support floats in the regallocator (patch by Laurent Morichetti 
18799         <l_m@pacbell.net>)
18801 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
18803         * mini.c: mono_thread_current() can be called only after
18804         mono_runtime_init(): rearrange code to not call it early on.
18806 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18808         * mini.c: allocate jump tables in the code mempools.
18810 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
18812         * mini.c, mini.h: make sure per-thread data allocated by the jit is
18813         freed.
18815 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
18817         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
18818         12 to 16.  This fixes bug #47453.
18821 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18823         * mini-ppc.c: fixed indexed load and unsigned compares.
18825 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
18827         * mini.c: reenabled installation of handler for
18828           thread abort signal.
18830 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18832         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
18833         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
18834         until it's fixed and actually useful.
18836 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
18838         * inssel-long32.brg: couple more opcodes implemented.
18840 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18841         
18842         * mini-sparc.c: Even more opcodes implemeted.
18844 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
18846         * mini-sparc.c: More opcodes implemented.
18848 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
18850         * mini-sparc.c: More opcodes implemented.
18852 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18854         * inssel-sparc.brg: Add some needed rules.  Direct
18855         copy from PPC.
18856         * Makefile.am: Use inssel-sparc.brg
18857         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
18858         an assert happy for now.
18860 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
18862         * mini-sparc.c: Fixed compile errors.
18863         * exceptions-sparc.c: Same.  We now produce a mono binary 
18864         on sparc-linux.  Yea.
18866 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
18868         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
18869         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
18870         They compile, but do not work.
18872 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18874         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
18875         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
18876         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
18877         (ct@gentoo.org).
18879 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18881         * mini.c: more opcodes implemented and better support for generics.
18883 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
18885         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
18886         * mini.c, mini.h: first cut at generics support: some new instructions 
18887         added and changed the behaviour of some of the existing ones.
18889 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
18891         * mini.c: Removed definition of metadata_shared mutex here.
18893 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
18895         * mini-x86.c: make vararg calls work for instance methods.
18897 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
18899         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
18900         returns the arguments in a separte list, now.
18902 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
18904         * aot.c, mini.c: updates for array type representation changes.
18906 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
18908         * mini.c: register function to perform jit shutdown.
18910 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18912         * mini.c: use a faster allocator if possible.
18914 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
18916         * aot.c: some cleanups and portability changes.
18918 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
18920         * mini.c: use faster allocation for CEE_BOX if possible.
18922 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
18924         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
18925         Moved inlined mempcy code to its own function so that is can be
18926         reused. Added an inline memset function as well (optimized initobj).
18927         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
18929 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
18931         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
18933 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
18935         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
18936         arch code can setup the cpu for CLR execution, if needed.
18937         We use it on x86 to set the precision of FP operations.
18939 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
18941         * mini.c: disable some optimizations if we can guess they'll cost too
18942         much for a given method.
18944 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
18946         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
18947         
18948 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
18949         * mini.h mini.c mini-x86.c: Added instruction level coverage 
18950         info collection support.
18952 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
18954         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
18955         is now implemented in the profiling API. Get rid of a couple of
18956         unnecessary global variables.
18958 2003-06-15  Nick Drochak <ndrochak@gol.com>
18960         * basic-long.cs: tests for negative values for bigmul, and unsigned.
18961         * cpu-g4.md: add op_bigmul and op_bigmul_un
18962         * cpu_pentium.md: add op_bigmul_un
18963         * inssel-long32.brg: add rule for unsigned bigmul
18964         * mini-ops.h: define OP_BIGMUL_UN
18965         * mini-x86.c: THE BUG: handle (un)signed properly
18966         * mini.c: choose unsigned opcode if needed.
18967         This set of patches fixes bug #44291
18969 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
18971         * mini.c (optimize_branches): improved to handle all kinds of
18972         conditional branches.
18974 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
18976         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
18977         don't raise exceptions.
18979 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18981         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
18982         to arch-specific files.
18984 2003-06-09  Martin Baulig  <martin@ximian.com>
18986         * Makefile.am (libs): Added $(LIBGC_LIBS).
18988 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
18990         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
18991         and OP_ATAN (fixes bug#44293).
18993 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
18995         * Makefile.am, mini-x86.c: rename cpu description array to
18996         pentium_desc, since some compilers define the 'pentium' preprocessor
18997         symbol.
18999 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
19001         * mini.c (mini_select_instructions): add explicit branch if the
19002         following block is not the false target of a conditional branch -
19003         we need this with any optimization that reorder or remove bblocks
19005         * mini.c (optimize_branches): bug fixes
19007 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
19009         * mini.c (mono_method_to_ir): inline static readonly fields
19011         * ssa.c (fold_tree): start cfold support for long (very simple
19012         cases only)
19014         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
19016 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19018         * inssel.brg: fixed memcpy (bug #44219).
19020 2003-06-05  Dick Porter  <dick@ximian.com>
19022         * driver.c: Set the glib log levels to not abort if g_message
19023         recurses.
19025         g_set_prgname() has to happen before mini_init() so that the
19026         process handle gets the info.
19027         
19028 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19030         * driver.c: add intrins to the default optimizations to get wider
19031         exposure.
19033 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19035         * mini.h: some large basic blocks will overflow a 16-bit
19036         integers for symbolic registers.
19038 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19040         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
19041         (mono_arch_output_basic_block): fix bug 43499 
19043 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19045         * mini.c: kill duplicated definition of mono_debug_format.
19047 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19049         * mini-x86.c, arrays.cs: fixed register allocation bug.
19051 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19053         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
19055         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
19057 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19059         * mini.c:
19060         (print_method_from_ip): also print source location information if
19061         available.
19063 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
19065         * mini.c (mono_find_block_region): bug fix in region code
19066         (mini_method_compile): enable removing unreachable code again, but
19067         only in methods without exception clauses.
19069 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
19071         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
19072         Implemented arglist opcode and handling of TypedReference type.
19073         Fixed x86 call convention when a structure is returned.
19074         Minimal support for calling static vararg methods.
19076 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
19078         * mini.c (mini_method_compile):  always remove unreachable code,
19079         because the code in them may be inconsistent  (access to dead
19080         variables for example).
19082 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19084         * driver.c, debug-mini.c: warning fixes.
19086 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19088         * Makefile.am, jit.h, mini.h: install header for embedding mono.
19090 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
19092         * mini.c: thread-static fields are registered in mono_class_vtable(),
19093         so ensure the function is called before checking for them.
19095 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
19097         * mini.c (optimize_branches): fix for bug 43586
19099         * jit-icalls.c (mono_llmult_ovf): added an additional check for
19100         overflow (fixes Bug #43639)
19102 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19104         * mini.c, objects.cs: allow the use of stobj for primitive types.
19106 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19108         * mini.c: be less strict about argument checking until we support
19109         running the verifier.
19111 2003-05-27  Nick Drochak <ndrochak@gol.com>
19113         * basic-long.cs: tests for (ulong)int * (ulong)int also
19114         * mini.c: use the same trick for (ulong)int * (ulong)int
19116 2003-05-27  Nick Drochak <ndrochak@gol.com>
19118         * basic-long.cs: add regression test for (long)int * (long)int
19119         * cpu-pentium.md: add op_bigmul specification
19120         * inssel-long32.brg: add OP_BIGMUL rule
19121         * mini-ops.h: add OP_BIGMUL
19122         * mini-x86.c: register allocator: handle case where src1 needs to be
19123         in EAX.
19124         * mini.c: substitute special BIGMUL opcode in the tree for 
19125         (long)int * (long)int
19127 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19129         * jit-icalls.c: call the type ctor on field access if needed.
19131 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19133         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
19134         to a method (including results of ldelema, bug#43207).
19136 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
19138         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
19139         colors to show exception handler blocks.
19141         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
19142         (fix for pinvoke7.cs).
19144 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19146         * mini.h, mini.c: ensure correct initialization order for types that
19147         require it. Prepare for lazy compilation of jit icall wrappers.
19148         Provide a name for opcode emulation to reduce unneeded mallocing.
19150 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19152         * mini-x86.c: better register restoring code and profiling
19153         support for tail calls.
19155 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19157         * mini.h, driver.c: prepare for leaf methods optimization.
19159 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19161         * mini.c: get targets of branches before converting a method.
19163 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
19165         * mini.c (optimize_branches): added some experimental code (disbaled) 
19167 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
19169         * mini.c (optimize_branches): fix branch to branch optimization 
19171         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
19173         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
19175         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
19177         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
19178         if needed.
19180 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
19182         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
19183         enable use of interface variables again.
19185         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
19186         I1 to registers because there is no simply way to sign extend 8bit
19187         quantities in caller saved registers on x86.
19189         * inssel-float.brg: set costs of some rules to 2 so
19190         that monobure always select the arch. specific ones if supplied,
19191         regardless of the order we pass the files to monoburg.
19193 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19195         * mini.c, mini-x86.c: since the magic trampoline for jumps
19196         can't patch the code directly, we do it as soon as the
19197         method gets compiled.
19199 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19201         * mini-x86.c, mini.h: introduce a new patching method
19202         to support CEE_JMP and tail calls.
19203         * mini.c: obey tail.call. Don't precompile methods target
19204         of CEE_JMP.
19205         * tramp-x86.c: new trampoline code to handle methods
19206         reached through a jump.
19208 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
19210         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
19211         bit values to registers
19213 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
19215         * mini.c (mono_compile_get_interface_var): share interface
19216         variables if possible.
19218 2003-05-16  Martin Baulig  <martin@ximian.com>
19220         * debug-mini.c (mono_init_debugger): New function to initialize
19221         the debugger.  This is not in the debugger since it needs to
19222         access some of mini's internals.
19224 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
19226         * mini.c (mono_method_to_ir): inlining fixes/cleanups
19228 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
19230         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
19231         for value type handling.
19233 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
19235         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
19236         (mono_method_check_inlining): enable inlining of all kinds of wrappers
19238 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
19240         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
19241           the constructor through a proxy.
19243 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19245         * jit-icalls.c, inssel.brg: fixes to array element address
19246         calculations.
19248 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
19250         * mini-x86.c (is_regsize_var): allocate pointer to registers
19252 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19254         * driver.c: fixed typo, added intrins to the set of optimizations
19255         tested with regressions.
19257 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19259         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
19260         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
19261         test case.
19263 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
19265         * inssel.brg: remove some common pop instructions without side effects
19267 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19269         * inssel-x86.brg: fixed thinko in int to double conversions.
19271 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19273         * mini.c, jit-icalls.c: added runtime thread-static variable support.
19275 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19277         * inssel-long32.brg: two more missing instructions.
19279 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
19281         * mini.c (mono_emit_call_args): set the cil_code for all arguments
19282         if not already set.
19284 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
19286         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
19287         correctly.
19289         * basic-float.cs: Added tests for negative zero.
19291 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19293         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
19294         a couple of missing operations for long casts, with test cases.
19296 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19298         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
19300 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
19302         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
19303         code size estimation.
19305 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
19307         * mini.c (mono_jit_create_remoting_trampoline): make it work with
19308         abstract methods (fix bug 42542)
19310         * aot.c: add ability to handle array types
19311         
19312 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
19314         * mini.c: Call the _specific versions of the object allocation
19315         functions if possible.
19317 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19319         * driver.c: call setlocale ().
19321 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19323         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
19324         windows build.
19326 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
19328         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
19330         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
19331         wrappers (fix bug 42122)
19333 2003-05-04  Martin Baulig  <martin@ximian.com>
19335         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
19337         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
19338         s/mini_set_defaults/mono_set_defaults/g.
19340 2003-05-04  Martin Baulig  <martin@ximian.com>
19342         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
19344 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19346         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
19347         (reported by Don Roberts).
19349 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
19351         * mini.c: temporarily work around two bugs for this release.
19353 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19355         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
19356         that contains -export-dynamic and it makes using the ld script
19357         useless.
19358         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
19360 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19362         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
19363         specific cpu.
19365 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19367         * mini.c: make sure leave calls all the needed finally blocks,
19368         even when the target jumps out of multiple exception clauses.
19370 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19372         * ldscript, Makefile.am: add linker script to reduce the number of
19373         exported symbols (should also fix the issues with libwine defining
19374         some of the same symbols in io-layer).
19376 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
19378         * driver.c (mini_main): Avoid assertion when no file name is given on 
19379         the command line.
19381 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
19383         * driver.c: added --version/-V command line option.
19384         Added the inline optimization in the regression tests.
19386 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19388         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
19389         to the type in the method signature (fixes bug#42134).
19391 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
19393         * mini.c: when inlining, check this is not null only when needed (bug #42135).
19395 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
19397         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
19399 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19401         * driver.c: fixed bug #42100.
19403 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
19405         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
19407 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19409         * mini.c: moved most of the code required to do inlining to its own
19410         function so it can be reused. Inline also ctors if appropriate.
19412 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
19414         * Makefile.am: Link with -export-dynamic so shared libs loaded by
19415         the runtime can call mono API functions.
19417 2003-04-27  Martin Baulig  <martin@ximian.com>
19419         * debug-mini.c (mono_debug_init_method): Added
19420         `guint32 breakpoint_id' argument; if the method has a breakpoint,
19421         send a notification to the debugger.
19423         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
19424         running in the Mono Debugger, just pass the breakpoint number to
19425         mono_debug_init_method().
19427         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
19429 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
19431         * mini.c: allow some more unsafe compares.
19433 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19435         * mini-x86.c, Makefile.am: make distcheck works (partially from
19436         a patch by Richard Lee <r.h.lee@attbi.com>).
19437         * regset.c, regset.h: removed, they are unused.
19439 2003-04-25  Dick Porter  <dick@ximian.com>
19441         * driver.c: Usage reports the name as 'mono' not 'mini'
19442         * exceptions-x86.c: Build and run on freebsd
19444 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19446         * Makefile.am: install the program with the 'mono' name and
19447         the library as libmono instead of mini and libmini.
19449 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19451         * driver.c: provide the APIs for the embedding interface of the old jit.
19453 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
19455         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
19457 2003-04-23  Martin Baulig  <martin@ximian.com>
19459         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
19461         * driver.c: Added `--debug' command line argument to enable
19462         debugging support.
19464 2003-04-23  Martin Baulig  <martin@ximian.com>
19466         * debug.[ch]: Removed.  The code is now in
19467         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
19469         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
19470         last six months.
19472 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
19474         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
19476 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19478         * mini.c:
19479         (mini_cleanup): moved mono_runtime_cleanup call after the call to
19480         mono_domain_finalize.
19481         (mini_method_compile): use mono_method_profile* if the the option is
19482         enabled.
19484 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
19486         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19487         methods with their wrapper.
19489         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19490         methods with their wrapper.
19492         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
19493         their wrapper.
19495         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
19496         wrapper.
19498         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
19499         methods.
19501 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
19503         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
19505 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
19507         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
19508         of the mempool. This is slightly faster and uses less memory
19510 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19512         * mini.c: avoid O(n) allocation for variables.
19514 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19516         * mini.c: handle items on the stack after inlining methods.
19518 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19520         * mini.c: make the method->opcode optimization dependent
19521         on MONO_OPT_INSTRINS and do it lazily.
19523 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19525         * driver.c: print overall results at the end of regression run.
19527 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19529         * inssel.brg: don't overwrite symbolic registers.
19531 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19533         * inssel-x86.brg: fix conversion from long to float.
19535 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
19537         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
19539 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
19541         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
19543         * driver.c: Added --print-vtable option as in the old JIT.
19545 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19547         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
19549 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19551         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
19553 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
19555         * mini.c regalloc.c regalloc.h: Fix memory leak.
19557 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
19559         * aot.c (mono_aot_get_method): register all used strings
19561 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19563         * mini.c: always intern strings references with ldstr at compile time.
19565 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19567         * Makefile.am: add BUILT_SOURCES.
19569 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19571         * driver.c: give a better error message when the assembly to execute
19572         doesn't have an entry point.
19574 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
19576         * Makefile.am: added hack for automake
19578         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
19579         correct sematics.
19581         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
19583 22003-04-07  Martin Baulig  <martin@ximian.com>
19585         * Makefile.am: Added Makefile.am.
19587         * debugger-main.c: Removed, this is now in the debugger where it
19588         belongs.
19590         * mini.pc.in: Call this package `mini' for the moment.