2009-03-19 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git] / mono / mini / ChangeLog
blob6e689ae8079c086975793182a263c264a7b99b79
1 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
3         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
4         Simplify logic for ensure_method_is_allowed_to_call_method. 
5         Handle wrappers on callers.
7 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
9         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
10         them don't run yet.
12         * basic-simd.cs: Fix the names of some test methods.
14 2009-03-18  Geoff Norton  <gnorton@novell.com>
16         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
18 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
20         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
22 2009-03-17  Jb Evain  <jbevain@novell.com>
24         * driver.c: remove now uneeded call to mono_gc_base_init before
25         mono_profiler_load.
27 2009-03-17  Jb Evain  <jbevain@novell.com>
29         * dwarfwriter.c (token_handler): handle more cases.
31 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
33         * method-to-ir.c: Remove more dead code (that was required only
34         because of method_is_safe). Fix compiler warnings.
36 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
38         * method-to-ir.c: Remove unneeded/useless method_is_safe
39         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
41 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
43         * mini.c (mini_method_compile): Print the method been compiled with
44         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
45         for people not familiar with the runtime.
47 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
49         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
50         a managed object which is later put into a GList. Return its class instead.
52         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
53         stack slots when using sgen.
55 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
57         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
59 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
61         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
62         > so it works on the first vreg as well.
64 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
66         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
67         trigger randomly.
69         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
70         
71         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
72         implement GArray.
74 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
76         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
77         native->IL offset mapping.
79 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
81         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
83         * basic.cs: Add a test.
85 2009-03-11  Mark Probst  <mark.probst@gmail.com>
87         * mini-x86.c (mono_arch_output_basic_block): Use different
88         registers in case the ones we want to overwrite are used by the
89         other operand.  Fixes regression in #480807.
91 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
93         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
95         * dwarfwriter.c (emit_line_number_info): The line number info for
96         IL code was off by one. Fix that.
98         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
99         stack.
101 2009-03-09  Mark Probst  <mark.probst@gmail.com>
103         Contributed under the terms of the MIT/X11 license by Steven
104         Munroe <munroesj@us.ibm.com>.
106         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
107         Fixes #483462.
109 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
111         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
112         as well.
114 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
116         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
117         the delegate ctor handling code. Fixes #482638.
118         
119         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
120         #481458.
122         * iltests.il.in: Add a test.
123         
124         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
125         mini-posix.c.
127 2009-03-05  Mark Probst  <mark.probst@gmail.com>
129         * mini-trampolines.c (mono_create_jump_trampoline): If the method
130         is shared generic code, return the trampoline, even if the method
131         has already been compiled.  Fixes #479763.
133         * mini.c, mini.h: New function
134         mono_jit_find_compiled_method_with_jit_info() which is the same as
135         mono_jit_find_compiled_method() but also returns the jit info.
137 2009-03-05  Mark Probst  <mark.probst@gmail.com>
139         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
140         for methods which actually have one.  For all other methods, make
141         sure the this argument var is live the whole method.
143         * mini.c (mini_method_compile): Every shared method has a
144         this/vtable/mrgctx info.  Fixes #480807.
146 2009-03-05  Mark Probst  <mark.probst@gmail.com>
148         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
149         generic/imt thunks where some entries branch through the vtable,
150         while other entries branch directly.
152 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
154         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
156         * mini-windows.c: Ditto.
157         
158         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
159         ctors.
161 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
163         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
164         down an assert.
166 2009-03-04  Mark Probst  <mark.probst@gmail.com>
168         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
169         #481403.
171 2009-03-04  Mark Probst  <mark.probst@gmail.com>
173         * exceptions-x86.c: Include debug-mini.h - fixes build.
175 2009-03-04  Martin Baulig  <martin@ximian.com>
177         * debug-mini.c: Clean up the exception API and add documentation.
178         (mono_debugger_handle_exception): New public method; this is
179         called when throwing an exception or encountering an unhandled one.
180         (mono_debugger_call_exception_handler): Formerly known as
181         mono_debugger_handle_exception(); this is used to tell the
182         debugger that we're about to invoke an exception handler.
184 2009-03-04  Martin Baulig  <martin@ximian.com>
186         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
187         ../metadata/mono-debug-debugger.c; save and reset exception state.
189 2009-03-02  Martin Baulig  <martin@ximian.com>
191         * debug-mini.c: Moved the debugger exception handling here from
192         ../metadata/mono-debug-debugger.c.
194         * debug-mini.h
195         (MonoDebuggerExceptionAction): New exception typedef.
197         * debug-mini.c
198         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
200         * exceptions-amd64.c
201         (mono_amd64_throw_exception): Use the new debugger exception
202         handling code.
204         * mini-exceptions.c
205         (mono_handle_exception_internal): Don't call
206         mono_debugger_unhandled_exception() here.
208 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
210         * mini.c aot-compiler.c: Update after the changes to 
211         mono_marshal_get_runtime_invoke ().
213         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
214         Virtual generic methods might not have method->slot set, work around
215         that.
217         * generics.cs: Add a test.
219 2009-03-02  Geoff Norton  <gnorton@novell.com>
221         * mini.c:
222         * driver.c: Allow signal chaining of SIGFPE as well.
224 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
226         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
227         this since it now receives the method not its generic context in the
228         IMT reg.
230         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
231         generic/imt thunks where some entries branch through the vtable, while
232         other entries branch directly.
234         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
236         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
237         support for interface methods as well.
239         * mini-trampolines.c: Add support for virtual generic methods in interfaces
240         using the normal IMT thunks.
242         generics.cs: Add new tests.
243         
244         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
245         the generic inst to the generic imt thunks. This fixes AOT support, 
246         improves consistency with the normal IMT thunks, and makes it easier to
247         add support for interface generic virtual methods later.
249         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
250         
251 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
253         * driver.c (mono_set_signal_chaining): New public API function to enable
254         signal chaining on POSIX platforms.
256         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
257         (si@lindenlab.com) to implement signal chaining. The original patch was
258         contributed under the MIT X/11 license:
259         https://bugzilla.novell.com/show_bug.cgi?id=318894
261 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
263         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
264         too until it can be made to run on amd64.
266 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
268         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
269         to  get_generic_context_from_code () + get_call_info () if possible.
271 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
273         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
274         suspend-on-sigsegv functionality.
276         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
277         to suspend when a native SIGSEGV is received. This is useful for debugging
278         crashes which don't happen under gdb, since a live process contains more
279         information than a core file.
281         * mini-exceptions.c (mono_print_thread_dump): Use 
282         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
284         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
286         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
287         
288         * basic-float.cs: Disable the tests which currently fail on amd64.
290         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
291         value to mono_arch_patch_callsite () to fix crashes.
292         
293         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
295 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
297         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
298         nop code by patching the call address to point to the nullified class init
299         trampoline, as the former does not seem to be safe on SMP machines.
301 2009-02-23  Mark Probst  <mark.probst@gmail.com>
303         * mini-ops.h: Fix the argument types for a few x86 opcodes where
304         they were wrong.
306 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
308         * basic-float.cs basic-calls.cs: Fix warnings.
310 2009-02-22  Mark Probst  <mark.probst@gmail.com>
312         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
313         correct frame pointer in the LMF.  Should fix #478394.
315 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
317         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
319         * image-writer.c: Make the binary writer less verbose.
321 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
323         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
324         are called from runtime invoke wrappers.
326 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
328         * cpu-ppc.md (store_memindex): Increase the size of this.
330 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
332         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
334         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
336         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
337         OP_LCONV_TO_R_UN.
339         Last fix for of #467201.
342 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
344         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
346         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
347         and long_conv_to_r8_2:
349         Fixed part of #467201.
351 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
353         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
355         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
356         conversion to 32 bits.
358         * cpu-x86.md: Increase the size of int_conv_to_r4.
360         * basic-float.cs: Add a test for this.
362         Fixed part of #467201.
364 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
366         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
368         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
369         conversion to 64 bits.
371         * basic-float.cs: Add a test for this.
373         Fixed part of #467201.
375 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
377         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
379         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
380         This behavior is compatible with MS.
382         * iltest.il.in: Add a test for this.
384         Fixed part of #467201.
386 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
388         Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
390         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
391         change the precision of the value.
393         * cpu-x86.md: Define len for float_conv_to_r4.
395         * basic-float.cs: Add a test for this.
397         Fixed part of #467201.
399 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
401         * mini.c: Adjust locking order to the new semantics where the loader lock
402         comes first.
404 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
406         * aot-runtime.c:
407         * mini-amd64.c:
408         * mini-arm.c:
409         * mini-ia64.c:
410         * mini-mips.c:
411         * mini-ppc.c:
412         * mini-sparc.c:
413         * mini-trampolines.c:
414         * mini-x86.c:
415         * mini.c:
416         * tramp-alpha.c:
417         * tramp-amd64.c:
418         * tramp-arm.c:
419         * tramp-hppa.c:
420         * tramp-ia64.c:
421         * tramp-mips.c:
422         * tramp-ppc.c:
423         * tramp-s390.c:
424         * tramp-s390x.c:
425         * tramp-sparc.c:
426         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
428 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
430         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
431         as it is incorrect.
433 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
435         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
436         for cctors if needed.
438 2009-02-17  Mark Probst  <mark.probst@gmail.com>
440         * mini-ppc.c: Fix build on Darwin.
442 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
444         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
445         version instead of 3 as valgrind doesn't like version 3.
447         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
449         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
450         usable for hashing methods.
451         (emit_extra_methods): Use the new hash to avoid putting every method in the
452         same hash bucket.
454         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
456         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
457         whenever a method ref could match a method.
458         
459         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
460         test to fail.
461         
462         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
463         methods refs.
465         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
467         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
468         the encoding buffer.
470         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
471         mono_method_get_header () on inflated methods as an optimization.
473 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
475         * ssa.c (fold_ins): Fix another crash if the instruction following the
476         switch was optimized away.
478 2009-02-16  Mark Probst  <mark.probst@gmail.com>
480         Contributed under the terms of the MIT/X11 license by Steven
481         Munroe <munroesj@us.ibm.com>.
483         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
485 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
487         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
488         around the mono_domain_alloc calls, it is now done by the functions
489         themselves.
491         * aot-compiler.c (compile_method): Only add wrappers referenced by
492         the method if compiling with full AOT.
493         (mono_compile_assembly): Error out if --aot=full is specified on
494         a platform where it is not supported.
496         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
497         on ARM too.
499         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
500         AOT support.
502         * aot-runtime.c (load_named_code): Handle 
503         mono_arm_throw_exception_by_token.
505         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
507         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
508         unaligned.
510         * Makefile.am (fullaotcheck): Exit if a test fails.
512         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
513         on ARM.
514         (mono_compile_assembly): Handle the assembler failing.
516         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
517         accepting subsections of .bss.
519         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
520         was optimized away.
522         * aot-compiler.c: Remove some unused includes.
523         
524         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
525         now in MonoImageWriter.
527         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
528         code sequence which matches a non-virtual call. Fixes #472654.
530 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
532         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
533         xdebug code.
534         
535         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
536         use the image/dwarf writers directly.
538         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
539         field.
541         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
542         MonoDwarfWriter.
544         * image-writer.h: Fix some typos.
546         * dwarfwriter.h dwarfwriter.c: New files.
547         
548         * aot-compiler.c: Extract the DWARF info writing functionality into a 
549         separate module.
551         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
552         argument to return unwind info.
554         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
556         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
557         
558         * aot-runtime.c (decode_method_ref): Add a case for 
559         MONO_AOT_METHODREF_WRAPPER_NAME.
561         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
562         for AOT.
564         * aot-compiler.c (encode_method_ref): Use the new constants.
566         * aot-runtime.c (decode_method_ref): Ditto.
568         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
569         be compiled, not the icall itself.
571 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
573         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
574         using decode_method_ref ().
576         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
577         convert it to an in32. Fixes #475859.
579         * arrays.cs: Add a test.
581 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
583         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
584         OP_LCONV_TO_U2.
586         * basic-long.cs: Add a test.
588 2009-02-12  Mark Probst  <mark.probst@gmail.com>
590         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
591         remove the frame pointer in leaf methods which don't receive any
592         arguments, don't throw exceptions and don't do dynamic stack
593         allocations.
595 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
597         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
598         the fail_tramp changes. Hopefully fixes #475132.
600 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
602         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
603         instead of mono_metadata_signature_dup_full.
605 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
607         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
608         for processing jump tables. Fixes #473787.
610 2009-02-11  Mark Probst  <mark.probst@gmail.com>
612         * mini-generic-sharing.c: mini_method_get_context() just calls
613         mono_method_get_context_general() now.
615         * mini.c, mini.h: Moved get_object_generic_inst(),
616         construct_object_context_for_method() and
617         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
619 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
621         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
622         basic block fell through to its successor bblock without a branch. Fixes
623         #474718.
625         * iltests.il.in: Add a test.
626         
627         * aot-compiler.c (encode_method_ref): Encode methods of array types.
628         (can_encode_patch): We can now handle arrays of generic parameters and
629         array methods.
631         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
633         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
634         the AOT file to avoid some #ifdefs in aot-runtime.c
636         * mini.h: Bump AOT file format version.
638 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
640         * Makefile.am (fullaotcheck): Make this run the tests.
642         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
644 2009-02-10  Mark Probst  <mark.probst@gmail.com>
646         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
647         individually.  Fixes #473482.
649 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
651         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
653 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
655         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
656         (mono_compile_assembly): Hush compile warnings about
657         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
658         code path.
660 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
662         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
664         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
666         * aot-compiler.c: Fix arm support.
668         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
669         img_writer_emit_unset_mode () function.
671         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
672         (mono_unwind_get_dwarf_pc_reg): Ditto.
674         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
675         Move almost all platform specific code to a set of arch_ functions, 
676         and document them to ease porting.
677         
678         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
680         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
682         * aot-compiler.c: Extract the image writing functionality into a separate
683         module to reduce the size of this file.
685 2009-02-09  Geoff Norton  <gnorton@novell.com>
687         * mini-s390.c: Fix the signature of emit_sig_cookie.
689 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
691         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
693         * aot-runtime.c (is_shared_got_patch): Ditto.
695         * aot-runtime.c (load_named_code): Cope with the fact that 
696         decode_got_entry () won't decode the patch fully if its corresponding got
697         entry is already filled.
698         
699         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
700         Initialize *ji.
701         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
703         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
704         as the moving pointer instead of 'buf' for consistency with the rest of the
705         codebase.
706         (mono_arch_create_monitor_exit_trampoline): Ditto.
708         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
709         generic_class_init trampolines.
710         (add_generic_class): Extract some code from add_generic_instances () into a
711         separate function so it can be called from other places too.
712         (compile_method): Call add_generic_class () for the classes of inflated methods
713         referenced by the method.
714         (can_encode_patch): Allow references to generic parameters.
716         * aot-runtime.c: Add support the patches required by the new trampolines.
717         
718         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
719         support.
721         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
722         full-aot support.
724         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
725         this from get_throw_pending_exception, make the signature full aot compatible.
727         * Makefile.am (fullaotcheck): New target to run full-aot tests.
729         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
731         * exceptions.cs: Add a test.
733 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
735         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
736         use the DWARF_DATA_ALIGN constant instead.
738         * exception-<ARCH>.c: Update after the above change.
740         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
741         dwarf unwinder.
743         * mini-arm.c: Enable the dwarf unwinder.
745         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
746         instead of mono_class_setup_vtable ().
748 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
750         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
751         dwarf unwinder.
753         * mini-x86.h: Enable the dwarf unwinder.
755 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
757         Fix mcs/tests/test-7.cs
758         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
759         2009-02-03.
761 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
763         * mini.c (print_jit_stats): Remove some unused statistics.
765 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
767         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
769 2009-02-05  Mark Probst  <mark.probst@gmail.com>
771         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
772         the method we get from mono_object_get_virtual_method() because
773         that function does it properly, now.
775 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
777         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
778         opcodes. Fixes #472775.
780 2009-02-05  Mark Probst  <mark.probst@gmail.com>
782         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
783         fact that mono_find_jit_info() sometimes returns the context
784         corresponding to the jit info in new_ctx.  Fixes #472600.
786 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
788         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
789         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
790         klass->enum_basetype directly.
792         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
793         enum subtypes.
795         * unwind.c: Avoid 0 sized arrays.
797 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
799         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
800         size on systems with 64k pages. Fixes #471389.
802 2009-02-04  Mark Probst  <mark.probst@gmail.com>
804         Contributed under the terms of the MIT/X11 license by Steven
805         Munroe <munroesj@us.ibm.com>.
807         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
808         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
809         necessary.
811 2009-02-04  Mark Probst  <mark.probst@gmail.com>
813         Contributed under the terms of the MIT/X11 license by Steven
814         Munroe <munroesj@us.ibm.com>.
816         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
817         comparison fix.
819         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
820         The trampoline can be longer on PPC64.
822 2009-02-04  Mark Probst  <mark.probst@gmail.com>
824         Contributed under the terms of the MIT/X11 license by Steven
825         Munroe <munroesj@us.ibm.com>.
827         * mini-ppc.c: Compiler warning fixes and trivial code
828         simplifications.
830 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
832         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
833         ins->dreg which could be a hardware register, not a vreg.
835         * aot-compiler.c (emit_method_dwarf_info): Ditto.
836         
837         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
838         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
840         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
841         
842         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
843         ->dreg, that is not the vreg we are looking for.
845         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
847         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
848         LIVERANGE_END.
850         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
851         strange crashes.
853 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
855         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
857         * aot-compiler.c (emit_line_number_info): Fix line number emission when
858         the line diff is 0.
860         * aot-compiler.c: Add xdebug support on x86.
862         * unwind.c: Add x86 support.
863         
864         * aot-compiler.c (emit_exception_debug_info): Control the emission of
865         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
867         * mini.c (mini_method_compile): Ditto.
868         
869         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
870         the variable index.
872         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
873         which mimic .push_section/.pop_section in GAS.
874         
875         * aot-compiler.c: Emit precise live range information for variables.
877         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
879         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
880         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
881         them.
883         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
884         the live ranges of variables.
886         * mini.h (struct MonoMethodVar): Add two fields containing the live range
887         of the variable in terms of native offsets.
889 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
891         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
892         
893 2009-02-02  Mark Probst  <mark.probst@gmail.com>
895         Contributed under the terms of the MIT/X11 license by Steven
896         Munroe <munroesj@us.ibm.com>.
898         * exceptions-ppc.c (restore_regs_from_context): Correct operand
899         order (offset then base reg) for ppc_load_multiple_regs.
900         (emit_save_saved_regs) Correct operand order for
901         ppc_store_multiple_regs.
902         (mono_arch_get_call_filter): Correct operand order for
903         ppc_load_multiple_regs.
905         * mini-ppc.c (emit_memcpy): Fix operand order for
906         ppc_load_reg_update and ppc_store_reg_update.
907         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
908         (mono_arch_emit_epilog): Correct operand order for
909         ppc_load_multiple_regs.
911         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
912         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
914 2009-02-02  Mark Probst  <mark.probst@gmail.com>
916         * cpu-ppc64.md: Fixed storer4_memindex length.
918 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
920         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
921         line number info.
922         
923         * aot-compiler.c (emit_line_number_info): Optimize this.
925 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
927         * aot-compiler.c: Disassemble tokens in the IL disassembly.
928         
929         * aot-compiler.c: Add debug info for methods without debug info by
930         emitting an IL file and having the line number info referencing that file.
932         * aot-compiler.c: Optimize the size of the generated line number info.
934         * aot-compiler.c: Emit line number info in xdebug mode.
936         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
937         million arguments.
939 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
941         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
943         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
944         is used.
946 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
948         * basic-calls.cs: Test for the weird crash found on arm.
949         
950 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
952         * cpu-arm.md: Increase the size of storer8_membase_reg and
953         loadr8_membase_reg to 24 bytes to accomodate the extra add.
955         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
956         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
957         reg to LR otherwise we'll be loading/storing from just the offset.
959 2009-01-30  Miguel de Icaza  <miguel@novell.com>
961         Question: if we are storing gint32's inside the "*native_offset",
962         should we change the signature to "gint32 *native_offset" to
963         ensure that we do not have type definition problems?
964         
965         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
966         an int * as this is what the other function expects, causes
967         problems with Freescale's compiler that defined int32_t to be a
968         long and makes int incompatible 
970 2009-01-30  Miguel de Icaza  <miguel@novell.com>
972         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
973         filename conflict with bjam.
975 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
977         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
978         as it might use decomposed ops.
980 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
982         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
984         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
985         is defined.
987         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
989         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
990         offsets.
992         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
993         way registers are stored in MonoContext on arm.
995         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
996         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
998         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
1000         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
1002         * mini.c (mini_init): Register mono_isfinite.
1004         * jit-icalls.c (mono_isfinite): New jit icall.
1006         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
1007         
1008         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
1009         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
1010         the parent frame.
1012 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
1014         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
1015         separate frame and stack pointers, so we must use FP to find the register
1016         spill area.
1017         The FP reg is retrieved from the MonoContext::regs array.
1019 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
1021         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
1022         as FPA requires it.
1024 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
1026         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
1027         return R4 and R8 when not running under softfloat.
1029         Fixes basic-calls.exe
1031 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
1033         * mini-arm.c: Implement some overflow opcodes.
1035 2009-01-29  Miguel de Icaza  <miguel@novell.com>
1037         * ssa.c: handle another alloca.h
1039         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
1040         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
1041         MONO_ARCH_USE_SIGACTION. 
1043         * aot-runtime.c, mini-exceptions.c: Replace platform define with
1044         capability defines.
1046         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
1048         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
1049         PPC targets as sigaction does not exist on all platforms, define
1050         this on a per-platform basis.
1052         Instead of erroring out if the platform is not defined, include
1053         mini-ppc-os.h, and expect that the OS specific setting provides
1054         the required information.   
1056 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
1058         * aot-compiler.c: Fix --enable-minimal=aot.
1060 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
1062         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
1063         previous change.
1065 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
1067         * exceptions-arm.c: Fix warnings.
1069         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
1070         ARM.
1072         * mini-x86.c: Fix --enable-minimal=jit build.
1074         * mini.c: Really fix --enable-minimal=jit build.
1075         
1076         * mini.c (construct_object_context_for_method): Move this outside
1077         the DISABLE_JIT block to fix the --enable-minimal=jit build.
1079         "Backported" of r124984 from 2.0 branch.
1080         
1081         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
1083         "Backport" of r124977 + r124978 from 2.0 branch.
1084         
1085         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
1086         to avoid calling mono_exception_from_token () from the throw trampoline.
1087         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
1088         for throwing corlib exceptions, this fixes full-aot support for corlib
1089         exceptions.
1091         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
1093 2009-01-29  Miguel de Icaza  <miguel@novell.com>
1095         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
1096         part of the changes to split the code in mini into operating
1097         system specific files.
1099         This patch was done by copying mini.c to the respective files to
1100         preserve SVN history.
1102 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
1104         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
1106 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
1108         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
1109         remoting-invoke-with-check wrappers of shared methods.
1111         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
1113 2009-01-27  Mark Probst  <mark.probst@gmail.com>
1115         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
1116         optimization if the top of stack is the last instruction in the
1117         bblock.  Otherwise it might have been used after its definition.
1118         Fixes #469742.
1120 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
1122         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
1123         method as well when get_vcall_slot () fails to match a code sequence.
1125         * mini-arm.c: Fix the android build, which doesn't have
1126         __aeabi_read_tp.
1128 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
1130         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
1131         the s390x build.
1133 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
1135         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
1137 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
1139         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
1140         and put its id into jinfo->used_regs. This is only used on amd64,
1141         which is currently the only platform generating unwind info.
1143         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
1144         the dwarf unwinder. This is required to correctly handle async exceptions
1145         like thread abort and stack overflows, which can happen while a method
1146         is in the middle of its prolog or epilog.
1147         
1148         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
1149         the unwind info belonging to an AOTed method.
1151         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
1152         into cfg->unwind_ops.
1153         
1154         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
1156         * mini.c (mini_init): Call mono_unwind_init ().
1157         (mini_cleanup): Call mono_unwind_cleanup ().
1159         * unwind.c: Add functions for managing a set of unwind info entries, allowing
1160         unwind info to be shared between methods.
1162         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
1163         saved in the LMF.
1165         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
1166         get_throw_pending_exception () to avoid initialization races.
1168         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
1169         mono_arch_exceptions_init () function.
1171         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
1173 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
1175         * mini.c (mono_get_domain_intrinsic): New helper function.
1176         (mono_get_thread_intrinsic): Ditto.
1178         * mini-arm.c mini-ia64.c: Use the new helper functions.
1179         
1180         * method-to-ir.c (mono_method_to_ir): Fix the comment for
1181         the last constrained_call change, since it is needed in the non-AOT
1182         case as well.
1184         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
1185         
1186         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
1187         mono_get_lmf_addr () on arm eabi linux.
1189 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
1191         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
1192         code sequence which matches a non-virtual call.
1194 2009-01-23  Mark Probst  <mark.probst@gmail.com>
1196         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
1197         stack pointer (r1).
1199 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
1201         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
1202         runtime-invoke wrappers, since they are also shared based on signature.
1204 2009-01-22  Mark Probst  <mark.probst@gmail.com>
1206         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
1207         info from the (correct) context.
1209 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
1211         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
1212         
1213         * unwind.c (mono_unwind_frame): New function to unwind through a frame
1214         using dwarf unwinding info. Not yet used.
1216         * mini.c (mini_init): When using xdebug, disable freeing of domains.
1218 2009-01-21  Mark Probst  <mark.probst@gmail.com>
1220         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
1221         descriptors.
1223         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
1224         special case and handle mono_arch_delegate_invoke_impl() returning
1225         function descriptors.
1227         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
1228         trampolines return function descriptors, too.
1230 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
1232         * method-to-ir.c (handle_alloc): Avoid generic instances in the
1233         out_of_line optimization.
1235 2009-01-21  Martin Baulig  <martin@ximian.com>
1237         * mini.h
1238         (MonoCompile): Added `disable_deadce_vars' to disable removing
1239         unused variables.
1241         * mini.c
1242         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
1243         inside the debugger.
1245         * liveness.c (mono_analyze_liveness): Don't remove any unused
1246         variables if `cfg->disable_deadce_vars' is set.
1248 2009-01-21  Mark Probst  <mark.probst@gmail.com>
1250         * method-to-ir.c: Only apply exception constructor optimization if
1251         the the method actually belongs to an exception class.  Fixes
1252         #467456.
1254 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
1256         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
1257         change inside a #ifdef __mono_ppc64__.
1259         * aot-compiler.c (compile_method): Remove the previous limitation.
1261         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
1262         on type variables in AOTed code.
1263         
1264         * aot-compiler.c (compile_method): Skip generic methods having type 
1265         constraints on their generic parameters.
1267         * aot-compiler.c (compile_method): Check for methods which cannot be
1268         encoded inside RGCTX_FETCH patches as well.
1270         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
1271         build.
1273 2009-01-20  Mark Probst  <mark.probst@gmail.com>
1275         * method-to-ir.c: Force the vtable variable in shared generic code
1276         for the case that they might show up on a stack trace where they
1277         are needed.
1279         * mini-exceptions.c: Save and use generic sharing info as well as
1280         IP in stack traces to resolve shared generic instantiations.
1282 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
1284         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
1285         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
1287 2009-01-20  Mark Probst  <mark.probst@gmail.com>
1289         * method-to-ir.c: Do generic sharing for array constructors.
1291 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
1293         * mini-exceptions.c (mono_print_thread_dump): Add information
1294         about the thread state using wapi_current_thread_desc.
1296 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1298         * basic-simd.cs: Tests for the new constructors. 
1300 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1302         * mini-ops.h: Added OP_EXPAND_*
1304         * cpu-x86.md: Same.
1306         * mini-x86.c (mono_arch_output_basic_block): Same.
1307         
1308         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
1310 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
1312         * iltests.il.in: Add a test for #467385.
1314 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1316         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
1317         thread been cleaned up is not the same currently in execution.
1319         Fixes appdomain-unload crashes on windows, osx and linux variants
1320         without the __thread keyword.
1322 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
1324         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
1325         (koush@koushikdutta.com). Implement this for android.
1327         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
1328         begins with a digit.
1330         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
1331         mono_marshal_get_write_barrier ().
1333 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
1335         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
1336         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
1337         that pass them on a register pair.
1339         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
1340         test was crashing due to that.
1342 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
1344         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
1345         trampoline code. Include ucontext.h only if available.
1347 2009-01-15  Mark Probst  <mark.probst@gmail.com>
1349         * mini.c: mono_domain_lookup_shared_generic() takes an open method
1350         and doesn't check whether it's sharable, like it was before
1351         removing the shared generics hash.  This brings IronPython
1352         performance back to what it was before that change.
1354 2009-01-14  Mark Probst  <mark.probst@gmail.com>
1356         * method-to-ir.c: Handle delegate invocation optimization earlier,
1357         otherwise it would be handled (much more slowly) by the
1358         final/sealed optimization.
1360 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
1362         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
1363         domain is not set. Fixes #465864.
1365 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1367         * method-to-ir.c: Don't stop sharing of generic methods with catch
1368         clauses - we already handle those.
1370 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1372         * mini.c, mini.h: lookup_generic_method() is now
1373         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
1374         making the shared_generics_hash obsolete.
1376 2009-01-12  Mark Probst  <mark.probst@gmail.com>
1378         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
1379         use the red zone.  Make room on the stack first and then use it,
1380         not the other way around.
1382 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
1384         * mini.c (mini_init): Call mono_xdebug_init ().
1386         * aot-compiler.c (mono_xdebug_init): Make this non-static.
1388 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
1390         * TestDriver.cs: Add an --iter argument to run tests multiple times.
1392         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
1393         trampolines.
1395         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
1396         debug+unwind info for trampolines.
1398         * mini.c (mono_create_unwind_op): New helper function.
1400         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
1402 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
1404         * aot-compiler.c: Fix the build.
1406 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
1408         * Makefile.am: Update dtrace-prelink.sh location.
1410 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
1412         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
1413         optimization. Fixes #464520.
1415 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
1417         * mini-amd64.c : Adding code to save/restore non-volatile registers
1418            on Winx64.
1420         * exceptions-amd64.c : Adding code to save/restore non-volatile 
1421           registers on Winx64.
1423         Contributed under MIT/X11 license.
1425 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
1427         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
1428         __GNUC_MINOR__ which can break when the major version changes.
1430 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1432         * basic-simd.cs: Add tests for usage of the sizeof opcode.
1434 2009-01-07  Geoff Norton  <gnorton@novell.com>
1436         * helpers.c:  Allow mono -v -v -v to work on darwin.
1438 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
1440         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
1441           pattern. 
1443         Contributed under MIT/X11 license.
1445 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
1447         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
1448         instead of directly accessing type->data.klass. Fixes #462016.
1449         (mono_allocate_stack_slots_full): Ditto.
1451         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
1452         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
1454         * aot-compiler.c (emit_plt): Fix ARM build.
1456 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
1458         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
1459         
1460         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
1461         change.
1463         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
1464         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
1465         #463357.
1467         * iltests.il.in: Add a regression test.
1469 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1471         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
1473 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1475         * basic-simd.cs: Add a regression test for #462457.
1477 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1479         * mini-ops.h: Add a definition of XPHI.
1481         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
1483         * ssa.c (op_phi_to_move): Handle XPHI.
1485         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
1487         Fixes #462457
1489 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1491         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
1493 2008-12-31  Geoff Norton  <gnorton@novell.com>
1495         * mini-ppc.c: The prolog size allocated can be too small for darwin
1496         ppc32 under certain circumstances.  Also fix a small logic bug.
1498 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
1500         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
1501         while loading AOT methods.
1503         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
1504         since only the former is nulled out after a successful cast. This prevents
1505         crashes with rethrown exceptions when using --debug=casts.
1507 2008-12-24  Mark Probst  <mark.probst@gmail.com>
1509         * mini.h: New macro for checking whether a method is final,
1510         i.e. whether the method or its class is marked final.
1512         * method-to-ir.c: Use the new macro for all final-checks
1513         consistently.  Fixes the crash in the System.ServiceModel tests.
1515 2008-12-23  Mark Probst  <mark.probst@gmail.com>
1517         * mini-exceptions.c (get_exception_catch_class): Corrected another
1518         overly strict assertion.
1520 2008-12-23  Mark Probst  <mark.probst@gmail.com>
1522         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
1523         Clobbering it is not allowed because the caller might use it as
1524         the vtable register in the interface call.
1526 2008-12-19  Mark Probst  <mark.probst@gmail.com>
1528         * mini-exceptions.c (get_exception_catch_class): Corrected an
1529         overly strict assertion.
1531 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
1532         
1533         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
1535         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
1537         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
1539         * cpu-mips.md: correct lengths for certain long_ opcodes.
1541         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
1543         * 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().
1544         
1545 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
1547         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
1548         
1549 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
1550         
1551         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
1552         
1553 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1555         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
1556         next basic block.
1557         
1558 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
1560         * 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
1562         * 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)
1563         
1564 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
1565         
1566         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
1567         
1568 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
1570         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
1571         gshared code. Fixes #458947.
1573         * generics.cs: Add a test.
1575 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
1576         
1577         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1578         
1579         * mini-mips.c: first pass n32 code generation.
1581         * mini-mips.h: datatypes and defines for n32 support.
1583         * exceptions-mips.c: first pass n32 code generation.
1584         
1585         * tramp-mips.c: first pass n32 code generation.
1586         
1587         * cpu-mips.md: add long_ opcodes.
1588         
1589 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
1591         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1593         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1594         
1595         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1596         
1597         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1599         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1601         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1603         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1605         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1607         * helpers.c: for mips/n32, don't pass -mips32 to objdump
1609 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
1611         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
1613 2008-12-12  Andrés G. Aragoneses  <aaragoneses@novell.com>
1615         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
1617 2008-12-12  Mark Probst  <mark.probst@gmail.com>
1619         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
1620         descriptors for helper functions directly in front of the code.
1622 2008-12-11  Mark Probst  <mark.probst@gmail.com>
1624         * method-to-ir.c: Removed an unnecessary assertion.
1626 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
1628         * method-to-ir.c: Merge SGEN changes from the old JIT.
1630 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
1632         * driver.c (compile_all_methods_thread_main): Handle failure of
1633         mono_get_method ().
1635 2008-12-10  Mark Probst  <mark.probst@gmail.com>
1637         * mini-ppc.c: Merged with mini-ppc64.c.
1639         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
1641         * Makefile.am: Use the same sources for PPC and PPC64.
1643         * mini-ppc64.c: Removed.
1645 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1647         * branch-opts.c (remove_block_if_useless): Extract fall through detection
1648         code to mono_bb_is_fall_through.
1649         
1650         * branch-opts.c (mono_remove_critical_edges): Same.
1652 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1654         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
1655         expect that an OP_BR_REG will be there.
1657 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1659         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
1660         for the many branch ops. The original check miss OP_BR_REG.
1662         Fixes #457574.
1663         
1664 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1666         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
1668 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
1670         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
1671         while holding the aot lock.
1673 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1675         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
1676         
1677 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
1679         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
1680           to release all runtime callable wrappers held by the runtime.
1682         Contributed under MIT/X11 license.
1684 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
1686         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
1687           for Winx64.
1689         Contributed under MIT/X11 license.
1691 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
1693         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
1694         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
1696 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
1698         * cpu-mips.md: fix ckfinite length
1700         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
1701         (mono_arch_lowering_pass): cleanup, rearrange for clarity
1702         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
1703         
1704 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
1706         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
1707         
1708 2008-12-08  Geoff Norton  <gnorton@novell.com>
1710         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
1711         size by 8 bytes as well.
1713 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1715         * basic-simd.cs: Fix method names for Vector16b.
1716         
1717 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1719         * basic-simd.cs: Fix method names for Vector16sb.
1721 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1723         * basic-simd.cs: Fix method names for Vector8us.
1724         
1725 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1727         * basic-simd.cs: Fix method names for Vector8s.
1728         
1729 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1731         * basic-simd.cs: Fix method names for Vector4ui.
1733 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1735         * basic-simd.cs: Fix method names for Vector2l.
1737 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1739         * basic-simd.cs: Fix method names for Vector2d.
1741 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1743         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
1744         that are extension methods.
1746 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1748         * basic-simd.cs: Fix method names for Vector4f.
1750 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
1752         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
1753         as such. Fixes #456669.
1755 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
1757         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
1758         
1759 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
1761         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
1762         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
1763         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
1764         (mips_adjust_stackframe): handle FP spills
1765                 
1766         * mini-ops.h: add mips_mtc1_s2
1767         
1768         * cpu-mips.md: add mips_mtc1_s2
1769         
1770 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
1772         * unwind.c: New file, move the unwind info encoding functions here from
1773         aot-compiler.c, so they could be used at runtime too.
1775 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
1777         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
1778         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
1779         
1780 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
1782         * mini-mips.c: cleanup warnings
1783         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
1784         (mips_adjust_stackframe): handle case of taking the address of stack locals
1785         
1786 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1788         * aot-compiler.c: Implement a few functions missing from the asm writer.
1789         (emit_method_code): Only write symbols for methods when using the bin
1790         writer, since the assembler can't deal with the characters in our method
1791         names.
1793         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
1795         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
1796         call.
1798         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
1799         a bit to also restore %rax.
1801 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1803         * mini-ppc.c: Some simple merges from mini-ppc64.c.
1805 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1807         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
1808         arguments.
1810 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1812         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
1814         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
1815         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
1817         * exceptions-ppc64.c: Removed.
1819         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
1821 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1823         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
1824         tramp-ppc64.c.
1826         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
1828         * tramp-ppc64.c: Removed.
1830 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
1832         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
1833         the TYPESPEC table.
1835 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1837         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
1839         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
1840         mini-ppc.h instead of mini-ppc64.h.
1842         * mini-ppc64.h: Removed.
1844 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1846         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
1847         
1848         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
1849         
1850 2008-12-05  Mark Probst  <mark.probst@gmail.com>
1852         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
1853         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
1854         code easier.
1856 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1858         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
1860 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1862         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
1864 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1866         * basic-simd.cs: Tests for operator == and != on Vector4f.
1868 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1870         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
1872         * simd-intrinsics.c: Kill useless enum.
1874 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1876         * cpu-mips.md: add long_conv_to_ovf_i4_2
1877         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
1879 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1881         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
1882         
1883         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
1885 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1887         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
1888         
1889 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1891         * basic-simd.cs: Add tests for new methods.
1893 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1895         * simd-intrinsics.c: Add support for operator == and !=
1896         on Vector4(u)i.
1898         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
1900 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1902         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
1904 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
1906         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
1908         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
1909         MONO_PATCH_INFO_ICALL_ADDR.
1911         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
1913         * aot-compiler.c: Resurrect full-aot support.
1915 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1917         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
1918         
1919 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
1921         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
1922         
1923 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
1925         * basic-simd.cs: Fix tests to work under ppc.
1926         Remove tests for methods that will be removed.
1928 2008-12-03  Mark Probst  <mark.probst@gmail.com>
1930         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
1931         generic type (via a typedef or typeref) correctly.
1933 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
1935         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
1936         diagnose an assertion failure.
1938 2008-12-02  Mark Probst  <mark.probst@gmail.com>
1940         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
1941         Fix trampoline size.
1943         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
1944         conversion opcodes are implemented natively instead via emulation.
1946 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1948         * cpu-mips.md: remove mips_xori
1950         * mini-ops.h:  remove mips_xori
1952         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
1954         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
1955         
1956         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
1957         
1958 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
1960         * cpu-mips.md: fix instruction lengths.
1962         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
1964         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
1966         * mini-ops.h: fix slti / sltiu op profiles.
1967         
1968 2008-12-02  Martin Baulig  <martin@ximian.com>
1970         * method-to-ir.c (mono_method_to_ir): Disable debugging
1971         information for the init locals block to make the debugger stop
1972         after all locals have been initalized.
1974 2008-12-02  Martin Baulig  <martin@ximian.com>
1976         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
1977         running inside the debugger.
1979 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
1981         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
1982         is enabled.
1984         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
1985         alu->alu imm optimization which only shows if deadce is disabled.
1987         * aot-compiler.c: Rename the function names for the binary and asm writers
1988         so they can coexist in the same process. Rework the xdebug code to use the
1989         asm writer. This avoids the need to call into the runtime to dump the
1990         debugging info. Add more debugging info for types.
1992         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
1994         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
1995         cpu description tables, they can't occur in cpu-<ARCH>.md.
1997         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
1998         the stack in CEE_LDFLDA. Fixes #450542.
2000         * generics.cs: Add a new test.
2002 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
2004         * mini-ops.h: updated MIPS opcodes
2005         * mini-mips.c: decompose long opts
2006         * mini-mips.h: decompose long opts
2007         
2008 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
2010         * cpu-mips.md: fix length on int_rem_un
2011         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
2012         
2013 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
2015         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
2017         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
2019 2008-11-29  Martin Baulig  <martin@ximian.com>
2021         * mini-exceptions.c (mono_handle_native_sigsegv): Check
2022         mono_debug_using_mono_debugger() in addition to the
2023         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
2025 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
2027         * mini-ops.h: updated more MIPS opcodes
2028         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
2029         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
2030         
2031 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2033         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
2035 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
2037         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
2038         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
2039         * mini-ops.h: correct selected mips opcode entries
2040         
2041 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2043         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
2044         make them work.
2046 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2048         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
2050 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
2052         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
2053         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
2054         * mini-mips.h: disable IMT
2055         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
2056         
2057 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2059         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
2061 2008-11-28  Mark Probst  <mark.probst@gmail.com>
2063         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
2065 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
2067         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
2068         consistency.
2070 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2072         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
2073         for Set/GetVector aligned versions.
2075 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2077         * basic-simd.cs: Add tests for Get/SetVector.
2079 2008-11-27  Mark Probst  <mark.probst@gmail.com>
2081         * mini.c: Removed g_slist_append_mempool().  Now in
2082         metadata/mempool.c.
2084 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2086         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
2087         size properly and make the bounds check optional.
2089         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
2090         for SetVector and IsAligned.
2092 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
2094         * mini.c: Remove unused mono_normalize_opcodes () function.
2096 2008-11-26  Mark Probst  <mark.probst@gmail.com>
2098         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
2099         using the new atomic add ops now.
2101         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
2102         add.
2104 2008-11-26  Mark Probst  <mark.probst@gmail.com>
2106         * mini-ppc64.c: Several fixes.
2108 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2110         * cpu-mips.md: added jump_table
2111         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
2113 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2115         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
2117 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2119         * mini-ops.h: corrected a handful of MIPS opcodes.
2121 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2123         * aot-compiler.c: MIPS to use ELF writer
2125 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
2127         * mini-codegen.c: remove MIPS specific assert.
2129 2008-11-25  Mark Probst  <mark.probst@gmail.com>
2131         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
2132         fixes.  PPC64 now passes most of the runtime regressions.
2134 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
2136         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
2137         volatile intervals a bit.
2139 2008-11-24  Mark Probst  <mark.probst@gmail.com>
2141         * basic-long.cs: New test case.
2143 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
2145         * mini.c (mini_method_compile): Disable globalra for large methods for 
2146         now.
2148         * regalloc2.c (order_moves): Add fp support.
2150         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
2151         source bblock ends with an OP_BR_REG.
2153         * ratests.cs: Add a new test.
2155 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2157         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
2158         sharing.  PPC64 now passes generics.exe.
2160 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2162         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
2164 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
2166         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
2167         memory when mono_jit_info_table_find () can't find the method in the
2168         LMF case.
2170         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
2171         AOTed code too.
2172         
2173         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
2174         writer too.
2176 2008-11-23  Mark Probst  <mark.probst@gmail.com>
2178         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
2179         Several fixes.  PPC64 now runs exceptions.exe and
2180         devirtualization.exe.
2182 2008-11-22  Mark Probst  <mark.probst@gmail.com>
2184         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
2185         arrays.exe and basic-math.exe.
2187 2008-11-22  Mark Probst  <mark.probst@gmail.com>
2189         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
2190         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
2192 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2194         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
2196 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2198         * method-to-ir.c: Move bounds checking macros to ir-emit.h
2200         * ir-emit.h: Move macros from method-to-ir.c to here.
2202 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
2204         * mini-ops.h: Correct the long simd ops to use LREG.
2206 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
2208         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
2209         
2210         * mini-ops.h: Correct the dreg type of a few long opcodes.
2212         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
2213         Add netbsd support.
2215 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
2217         * mini-ppc.c: remove negative stack references in epilog
2218         for platforms that don't support the red zone.
2220 2008-11-21  Mark Probst  <mark.probst@gmail.com>
2222         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
2223         point regs.  Now PPC64 passes basic-calls.exe.
2225 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2227         * basic-simd.cs: Add tests for accessors of Vector2l.
2229 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2231         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
2233         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
2234         
2235         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
2237 2008-11-21  Mark Probst  <mark.probst@gmail.com>
2239         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
2240         PPC64 passes basic-long.exe.
2242 2008-11-20  Mark Probst  <mark.probst@gmail.com>
2244         * decompose.c: Decompose carry and overflow add on PPC64 like on
2245         other 64 bit archs.  Don't decompose sub at all on PPC64.
2247         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
2248         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
2249         basic-long.exe.
2251 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2253         * basic-simd.cs: Add tests for accessors of Vector2d.
2255 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2257         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
2259         * cpu-x86.md: Same.
2261         * mini-x86.c (mono_arch_output_basic_block): Same.
2262         
2263         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
2265 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2267         * basic-simd.cs: Add tests for accessors of Vector4f.
2269 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2271         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
2273         * cpu-x86.md: Same.
2275         * mini-x86.c (mono_arch_output_basic_block): Same.
2276         
2277         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
2279 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2281         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
2283 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2285         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
2287         * cpu-x86.md: Same.
2289         * mini-x86.c (mono_arch_output_basic_block): Same.
2290         
2291         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
2293 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2295         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
2297 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2299         * simd-intrinsics.c: Enable setters for Vector16sb.
2301 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
2303         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
2305         * cpu-x86.md: Same.
2307         * mini-x86.c (mono_arch_output_basic_block): Same.
2308         
2309         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
2311 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
2313         * simd-intrinsics.c: Implement setter for Vector8us.
2315 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
2317         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
2318         for dead variables.
2320 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2322         * mini-ppc.c: remove references to the red zone in the prolog
2323         (for systems that don't support it).
2325 2008-11-19  Mark Probst  <mark.probst@gmail.com>
2327         * cpu-ppc64.md: Fixed a few instruction lengths.
2329         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
2330         now.
2332 2008-11-19  Mark Probst  <mark.probst@gmail.com>
2334         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
2335         basic.exe now.
2337 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
2339         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
2341 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
2343         * mini-ops.h: Added OP_INSERT_I2.
2345         * cpu-x86.md: Same.
2347         * mini-x86.c (mono_arch_output_basic_block): Same.
2348         
2349         * simd-intrinsics.c: Implement setter for Vector8s.
2351         * simd-methods.h: Add the names of get setters of Vector8s.
2353 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2355         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
2356         
2357         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
2358         parameters.
2360         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2362 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2364         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
2365         for PPC64.  An empty program runs now.
2367 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
2369         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2371         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
2372         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
2373         info for JITted code is emitted into a shared library, loadable into gdb.
2375 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2377         * Makefile.am: Changes to build PPC64.
2379         * mini-arch.h: Include mini-ppc64.h on PPC64.
2381 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2383         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
2384         in PPC code up to r119147.
2386 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2388         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2389         cpu-ppc64.md: Changes for PPC64.
2391         Based on code submitted by andreas.faerber@web.de at
2392         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
2393         X11/MIT license.
2395 2008-11-18  Mark Probst  <mark.probst@gmail.com>
2397         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2398         cpu-ppc64.md: Copied from the corresponding PPC files from
2399         r118846.
2401 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
2403         * mini-ops.h: Added OP_ROUND.
2405         * cpu-x86.md: Added round.
2407         * mini-x86.c: Added support for intrinsicing Math.Round (double).
2409         * basic-math.cs: Added test_0_round to test rounding.
2411         Contributed under MIT/X11 license.
2413 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
2415         * aot-compiler.c : Fix the Winx64 build.
2417         Contributed under MIT/X11 license.
2419 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2421         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
2422         in OP_EXTRACT_R8 to avoid possible stack corruption.
2424 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2426         * mini-ops.h: Added OP_EXTRACT_R8/I8.
2428         * cpu-x86.md: Added extract_r8.
2430         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
2431         
2432         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
2433         a couple of OP_EXTRACT_I4.
2435         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
2437         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
2439 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
2441         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
2442         and not 4.1. 
2444 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
2446         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
2447         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
2449         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
2450         are not needed any more.
2452         * mini.h: Remove the unused INS_LIST macros.
2454         * mini.c (mini_method_compile): Remove a disable globalra case which is no
2455         longer needed.
2457         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
2458         ir-emit.h.
2460         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
2461         mono_alloc_ireg () instead.
2463         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
2464         macros.
2466         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
2467         on amd64.
2469         * aot-runtime.c (load_aot_module): Disable AOT when running under
2470         CAS.
2472         * mini-amd64.h: Change the monitor fastpath defines to check for
2473         !PLATFORM_WIN32 so they work on *bsd too.
2475         * mini.h mini.c mini-hhpa.c: Remove more unused code.
2477         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
2479         * mini.h (MonoCompile): Remove new_ir flag.
2481         * regalloc.h regalloc.c: Remove unused code.
2483         * cpu-*.md: Remove more unused opcodes.
2485         * simple-cee-ops.h simple-mini-ops.h: Removed.
2487         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
2488         
2489 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
2491         * aliasing.h: Removed.
2493         * *.c: Remove references to aliasing.h and inssel.h.
2495         * mini.c: Remove additional unused functions.
2497         * mini-ops.h cpu-*.md: Remove unused opcodes.
2499 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
2501         Remove the old JIT code.
2503         * inssel*.brg: Removed.
2505         * ssa.c abcremoval.c aliasing.c: Removed.
2507         * ssa2.c: Renamed to ssa.c.
2509         * abcremoval2.c: Renamed to abcremoval.c.
2511         * *.c: Removed all !cfg->new_ir code.
2513         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
2514         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
2516         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
2517         
2518 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
2520         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
2521         to simplify the code and cut back on the number of global symbols in the AOT
2522         file.
2523         
2524         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
2526 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
2528         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
2529         with the got/got_info tables.
2531         * mini.h: Bump AOT file format version.
2532         
2533         * unwind.h: New file, contains definitions for stack unwinding.
2535         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
2536         to cfg->unwind_ops.
2537         
2538         * aot-compiler.c: Generalize the emitting of unwind information to use the
2539         information in cfg->unwind_ops.
2541         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
2543         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
2544         AOT method frames. Enable writing symbols for methods by default.
2546 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
2548         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
2549         and make it work with vectors of element sizes 1, 2 and 4.
2551         * simd-intrinsics.c: Enable getter for all vectors with element size
2552         1, 2 or 4.
2554         * simd-methods.h: Add the names of other getters.
2556         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
2558         * cpu-x86.md: Same.
2560         * mini-x86.c: Same.
2562 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
2564         * mini-ppc.h: portability fix.
2566 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2568         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
2569         buggy and will overwrite it.
2571 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2573         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
2574         Use it to emit local symbols for all methods so AOTed methods show up with
2575         their full name in gdb/valgrind output.
2577 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
2579         * mini-ppc.c: portability fixes.
2581 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
2583         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
2584         entries out of the if (!generic_shared...) code so it is always done.
2585         (mono_class_init_trampoline): Do the patching when running under valgrind
2586         too, newer versions of valgrind have no problems with it.
2588 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
2590         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
2591         further sections.
2593 2008-11-13  Mark Probst  <mark.probst@gmail.com>
2595         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
2596         filters.
2598 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2600         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
2602 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2604         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
2606         * cpu-x86.md: Same.
2608         * mini-x86.c: Same.
2610         * simd-intrinsics.c: Same.
2612 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2614         * simd-intrinsics.c: Enable constructor intrinsics for all types.
2616 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2618         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
2619         to work with more Vector types.
2621 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
2623         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
2624         store the elemens directly instead of using and intermediate.
2626 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
2628         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
2630         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
2631         to preserve %eax for aot plt trampolines.
2633         * aot-compiler.c (compile_method): Don't skip synchronized methods.
2634         (encode_method_ref): Flag synchronized methods so they won't go through
2635         the AOT trampoline.
2637         * aot-compiler.c: Additional work to support AOTing synchronized methods/
2638         wrappers.
2640         * cpu-ia64.md (jmp): Increase max length.
2642 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
2644         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
2645         open generic classes.
2647         * aot-compiler.c: Enable the ELF writer on ELF platforms.
2649         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
2650         box+brtrue optimization since it causes test failures on x86.
2652 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
2654         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
2656         * cpu-x86.md: Same.
2658         * mini-x86.c: Same.
2660         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
2661         for simd ctor values. 
2663         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
2664         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
2666 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
2668         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
2669         LogicalRightShift.
2671         * simd-instrincs.c: Same.
2673         * basic-simd.cs: Same.
2675 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
2677         * ratests.cs: Add more tests.
2679         * regalloc2.c (add_spill_code): Handle more corner cases.
2681 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
2683         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
2684         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
2685         both the source an destination of an instruction.
2687 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2689         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
2690         wapihandles.c: more portability changes.
2692 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
2694         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
2695         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
2696         safe to execute in a signal handler and the kernel provides better
2697         the info in /proc/self/smaps. Avoid the assert on sigaction during
2698         cleanup.
2700 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
2702         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
2703         do the bblock linking hack if it is actually needed.
2705         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
2706         up linking.
2708         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
2709         crash problem is fixed.
2711         * branch-opts.c (mono_remove_critical_edges): Link up newly added
2712         bblocks.
2714         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
2715         for catch clauses.
2716         (mini_method_compile): Set the starting value of next_vreg to 
2717         MAX_IREGS + MAX_FREGS when using globalra.
2719         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
2720         filter clauses with BB_EXCEPTION_HANDLER.
2722         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
2724 2008-11-10  Mark Probst  <mark.probst@gmail.com>
2726         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
2727         space for stdcall.  Fixes regressions on Win32.
2729 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
2731         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
2732         bblocks.
2733         (linear_scan): Remove an assert which doesn't seem to be needed.
2735         * local-propagation.c (mono_local_deadce): Avoid a call to
2736         MONO_DELETE_INS which would screw up the instruction linking.
2738         * mini.c (mono_decompose_op_imm): Make this work with globalra.
2740         * regalloc2.c: Upgrade to work the current JIT code.
2742 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
2744         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
2745         case.
2747         * aot-runtime.c: Remove some dead code.
2749         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
2750         consistency.
2751         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
2753         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
2754         trampolines using sscanf since atoi doesn't work on large unsigned values.
2756         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
2757         Initialize code_size.
2759 2008-11-08  Mark Probst  <mark.probst@gmail.com>
2761         * method-to-ir.c (mini_emit_inst_for_method): Make
2762         Interlocked.CompareExchange work for Int arguments on 32 bit
2763         archs, as well.
2765 2008-11-07  Mark Probst  <mark.probst@gmail.com>
2767         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
2769 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
2771         * main.c Fix MSVC build.
2773         Contributed under MIT/X11 license.
2775 2008-11-06  Mark Probst  <mark.probst@gmail.com>
2777         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
2778         alignment larger than 8 bytes are aligned correctly, too.
2780         * mini.c: Honor the min_align field of MonoClass when laying out
2781         the stack.
2783 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
2785         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
2787         * aot-compiler.c (emit_plt): Fix a warning.
2788         
2789         * aot-compiler.c: Implement ARM support in the binary writer.
2791 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2793         * basic-simd.cs: Add test for getter with byref arg.
2794         Fix the naming of a few tests.
2795         Add missing checks to a test.
2797 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
2799         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
2801         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
2802         most of the full-aot support for monitor enter/exit trampolines.
2804         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
2805         enter/exit trampoline creation functions.
2807         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
2808         make dist.
2810 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
2812         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
2813         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
2814         implement the needed functionality without adding crap to the runtime.
2816 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
2818         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
2819         non-x86 builds.
2821         * mini.c (mono_build_date): New global version holding the build date in
2822         string format.
2823         
2824         * Makefile.am (buildver.c): Generate a file containing the build date.
2826         * main.c: Set the build date from the generated file.
2828         * mini.c (mono_get_runtime_build_info): New helper function returning build
2829         information in a string format.
2830         
2831         * driver.c (mono_main): Print the build date in --version.
2833         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
2834         file when the bind-to-runtime-version option is used.
2836 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2838         * simd-intrinsics.c: Fix bug when using getters and byref args. 
2840 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2842         * simd-methods.h: Rename prefetch methods.
2844         * simd-intrinsics.c: Same.      
2846 2008-11-05  Mark Probst  <mark.probst@gmail.com>
2848         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
2849         sizes.
2851 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2853         * aot-compiler.c: Use the bundled elf header files instead of depending on
2854         the system one.
2855         
2856         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
2857         mempool.
2859         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
2860         on every call.
2862 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2864         * cpu-x86.md: Add store nta ops.
2866         * mini-ops.h: Same.
2868         * mini-x86.c: Same.
2870         * mini.h: Add an enum for simd prefetch modes.
2872         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
2873         of store. Use the changed code to support store nta.
2875         * simd-intrinsics.c: Add prefetch ops for all vector types.
2877 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2879         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
2880         threads.
2881         
2882         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
2883         names.
2885         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
2886         trampolines.
2888 2008-11-04  Mark Probst  <mark.probst@gmail.com>
2890         * mini-x86.c: Fixed commit.
2892 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2894         * aot-compiler.c (emit_plt): Align the plt section only on x86.
2896 2008-11-04  Mark Probst  <mark.probst@gmail.com>
2898         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
2899         and MONITOR_EXIT, for the ASM fastpaths.
2901         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
2902         available.
2904         * mini.c, patch-info.h: Signature and patch infos for
2905         Monitor.Enter/Exit trampolines.
2907         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
2909         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
2910         Monitor.Enter/Exit ASM fastpath for Linux.
2912 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
2914         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
2916         * objects.cs: Add a new test.
2917         
2918         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
2920         * aot-runtime.c (load_method): Run class initialization in the PLT case even
2921         if MONO_LOG_LEVEL is set.
2923         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
2925         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
2927         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
2928         
2929         * aot-compiler.c: Change the relocation code to use virtual addresses instead
2930         of file offsets. Align the sections belonging to the data segment to 
2931         PAGESIZE.
2933 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
2935         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
2936         elf.h. Port it to amd64.
2938 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2940         * driver.c: Enable SIMD by default.
2942 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2944         * cpu-x86.md: Add prefetch op.
2946         * mini-ops.h: Same.
2948         * mini-x86.c: Same.
2950         * mini.h: Add an enum for simd prefetch modes.
2952         * simd-methods.h: Add prefetch function names.
2954         * simd-intrinsics.c: Add prefetch ops for all vector types.
2956 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
2958         * aot-compiler.c (emit_bytes): Speed this up a little.
2960 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
2962         * aot-compiler.c: Add JIT time etc. statistics.
2963         
2964         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
2966         * mini.h (MonoCompile): Add 'got_offset' field.
2968         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
2969         method_got_offsets array.
2971         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
2972         wrappers.
2974         * aot-compiler.c (compile_method): Add generic method instances referenced
2975         by the method to the list of methods to be compiled, this is required so if
2976         A<T> references B<T>, and another assembly references A<int>, then it will
2977         also get a copy of B<int>.
2979         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
2980         when checking for monitor enter/exit.
2982 2008-10-30  Mark Probst  <mark.probst@gmail.com>
2984         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
2985         for Monitor.Enter and Monitor.Exit if enabled.
2987         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
2988         Solaris.
2990 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
2992         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
2993         of an OP_MOVE. Fixes #440046.
2995         * basic-long.cs: Add a new test.
2997 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
2999         * mini.h: Add synchronization note for the managed counter-part.
3001         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
3002         returns the simd caps of the current cpu.
3004 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
3006         * basic-simd.cs: Remove Console.WriteLine.
3008 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3010         * basic-simd.cs: New tests for Vector2ul.
3012 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3014         * simd-intrinsics.c: Add new vector type Vector2ul.
3016 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3018         * basic-simd.cs: New tests for Vector2l.
3020 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3022         * cpu-x86.md: Add long version of most packed int ops.
3024         * mini-ops.h: Same.
3026         * mini-x86.h: Same.
3028         * simd-intrinsics.c: Add new vector type Vector2l.
3030 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3032         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
3034         * simd-methods.h: Remove SN_op_BitwiseXor.
3036 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
3038         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
3039         alignment.
3041 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3043         * basic-simd.cs: Test for Vector2d.
3045         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
3046         value.
3048 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3050         * cpu-x86.md: Add double version of all packed float ops.
3052         * mini-ops.h: Same.
3054         * mini-x86.h: Same.
3056         * simd-intrinsics.c: Add new vector type Vector2d.
3058         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
3060         * simd-methods.h: Add Duplicate.
3062 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3064         * basic-simd.cs: Test for packing with signed saturation.
3066 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
3068         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
3069         found in the TYPESPEC table.
3071 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
3073         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
3074         too.
3076         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
3078         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
3079         instead of the RVA, since the RVA can be changed by tools like the cil 
3080         stripper.
3082         * method-to-ir.c (mono_method_to_ir2): Ditto.
3084         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
3085         (deserialize_variable): Ditto.
3087 2008-10-25  Martin Baulig  <martin@ximian.com>
3089         * debug-mini.c (write_variable): Use
3090         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
3092 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3094         * cpu-x86.md: Add unsigned variants of packd and packw.
3096         * mini-ops.h: Same.
3098         * mini-x86.h: Emit the right instruction for packd and packw.
3099         Add unsigned variants of packd and packw.
3101         * simd-intrinsics.c: Packd and packw were used in place of their
3102         unsigned variants. Change that.
3103         Add intrinsics for (Signed)PackWithSignedSaturation.
3105         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
3107 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3109         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
3111 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3113         * mini-ops.h: Remove dword packed add/sub with saturation ops.
3115         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
3117         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
3118         sse instructions.
3120         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
3122 2008-10-24  Mark Probst  <mark.probst@gmail.com>
3124         * method-to-ir.c, mini.c: Special casing for the synchronized
3125         wrapper for the ldtoken+GetTypeFromHandle case.
3127 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
3129         * mini.c (mono_replace_ins): Move this to branch-opts.c.
3131         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
3132         created/split bblocks.
3134 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3136         * mini-ops.h: Add packed signed mul high.
3137         
3138         * cpu-x86.md: Same.
3140         * mini-x86.c (mono_arch_output_basic_block): Same.
3142         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
3144         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
3146 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3148         * basic-simd.cs: Tests for Vector16sb.
3150 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
3152         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
3154 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3156         * mini-ops.h: Add packed signed min, max and compare greater.
3157         
3158         * cpu-x86.md: Same.
3160         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
3161         saturation.
3163         * simd-methods.h: Add CompareGreaterThan.
3165         * simd-methods.h: Remove CompareEquals.
3167         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
3169         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
3171         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
3172         CompareEqual.
3174 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3176         * basic-simd.cs: Fix tests due to change in the API.
3178 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3180         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
3182 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3184         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
3186         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
3187         inst_offset as this has invalid values for LDADDR.
3189 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3191         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3193         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
3195 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3197         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
3198         for accessing field->data.
3200 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3202         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3204 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3206         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
3208         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
3210 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3212         * dominators.c (mono_compute_natural_loops): Allocate GList enties
3213         from the cfg mempool.
3215 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
3217         * basic-simd.cs: Tests for new methods in Vector8us.
3219 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
3221         * mini-ops.h: Add multiply and store high.
3222         
3223         * cpu-x86.md: Same.
3225         * mini-x86.c (mono_arch_output_basic_block): Same.
3227         * simd-methods.h: Same.
3229         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
3230         and CompareEqual.
3232 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3234         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
3235         mono_class_setup_vtable ().
3237         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
3238         mono_class_get_vtable_entry () for accessing klass->vtable.
3240         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
3242         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
3243         found.
3245         * method-to-ir.c (mono_save_token_info): Don't save references made from
3246         wrappers.
3248         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
3249         of generic instances.
3251         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
3253 2008-10-19  Mark Probst  <mark.probst@gmail.com>
3255         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
3256         OP_JMP depends on the method signature.  Calculate it properly.
3258 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3259         
3260         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
3261         called directly.
3263         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
3264         instances.
3265         (emit_extra_methods): Add another table mapping method indexes to 
3266         offsets in the extra_method_info table.
3268         * mini.h: Bump AOT file format version.
3269         
3270         * aot-runtime.c: Merge most of the code from mono_aot_get_method
3271         and mono_aot_get_method_from_token () into one function.
3273 2008-10-19  Mark Probst  <mark.probst@gmail.com>
3275         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
3276         separate counter.
3278 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
3280         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
3281         methods.
3283         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
3284         disable_aot.
3286         * mini.c (mono_patch_info_equal): Compare the generic context as well.
3288         * mini.h: Bump aot file format version.
3290         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
3291         AOT file can contain native code for methods which are not in the METHOD
3292         table. Generate code for non-sharable generic instances of generic methods
3293         found in the METHODSPEC table.
3294         
3295         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
3296         encoding generic type handles.
3298         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
3299         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
3301         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
3302         macros + MONO_ADD_INS.
3304         * mini.c (mono_jump_info_token_new2): New function which takes a generic
3305         context as well.
3307         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
3309         * mini.h: Bump aot file format version.
3311         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
3313 2008-10-17  Mark Probst  <mark.probst@gmail.com>
3315         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
3316         platforms, with definable stack alignment value.  Set to 16 now
3317         for all platforms.
3319         * mini.c, mini.h, driver.c: Command line option for disabling
3320         stack alignment.
3322 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3324         * basic-simd.cs: Tests for new methods in Vector4ui.
3326 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3328         * mini-ops.h: Add packed int shuffle.
3329         
3330         * cpu-x86.md: Same.
3332         * mini-x86.c (mono_arch_output_basic_block): Same.
3334         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
3335         extract mask, max, min, shuffle.
3337         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
3339 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
3341         * basic-simd.cs: Tests for new methods in Vector8us.
3343 2008-10-17  Mark Probst  <mark.probst@gmail.com>
3345         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
3346         RuntimeTypeHandle, not a TypedReference.
3348 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
3350         * simd-intrinsics.c: remove relocations.
3352 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
3354         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
3355         optimizations from the x86 backend.
3357 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
3359         * simd-methods.h, simd-intrinsics.c: debloat method names and
3360         prepare for no relocations.
3362 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3364         * mini-ops.h: Add packed min/equal and sum of absolute differences.
3365         
3366         * cpu-x86.md: Same.
3368         * mini-x86.c (mono_arch_output_basic_block): Same.
3370         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
3371         extract mask, max, min and sum of absolute differences.
3373         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
3374         method name.
3376 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3378         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
3379         Renamed one test for consistency.
3381 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3383         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
3384         fix to the code that deal with other blocks.
3386 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3388         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
3390 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
3392         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
3393         that deals with vreg interference. Explicitly check for OP_LDADDR to be
3394         able to process the source reg.
3396 2008-10-16  Martin Baulig  <martin@ximian.com>
3398         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
3400         * inssel.brg: Add `OP_HARD_NOP'.
3402         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
3404         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
3405         `OP_HARD_NOP' instruction when running inside the debugger.
3407         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
3408         `OP_HARD_NOP' instruction when running inside the debugger.
3410 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3412         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
3413         now works. The issue with the regalloc tripping up no longer
3414         happens.
3416         * simd-intrinsics.c (load_simd_vreg): Same.
3418 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3419         
3420         * basic-simd.cs: Tests for new Vector8ui methods.
3422 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3424         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
3425         only for type. This fixes crashes where MonoInst::klass is checked
3426         for ops of type != VTYPE or OBJ.
3428         * simd-intrinsics.c (load_simd_vreg): Same.
3430 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
3432         * mini-ops.h: Add ops for packed shuffle/max/avg and
3433         extract mask.
3434         
3435         * cpu-x86.md: Same.
3437         * mini-x86.c (mono_arch_output_basic_block): Same.
3439         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
3440         extract mask.
3442         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
3443         to emit extract mask op.
3445         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
3446         to emit word shuffles.
3448 2008-10-15  Mark Probst  <mark.probst@gmail.com>
3450         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
3451         the largest alignment needed by a variable, but at least
3452         sizeof(gpointer).
3454 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3456         * basic-simd.cs: Tests for the fixes in the last commit.
3458 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3460         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
3461         no longer handles STACK_PTR input.
3463         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
3465         * simd-intrinsics.c (load_simd_vreg): New function that works like 
3466         get_simd_vreg   but handles STACK_PTR input.
3468         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
3469         as the input can be an arbitrary pointer.
3471         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
3472         LDADDR local optimization directly otherwise use a store op.
3474 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3476         * basic-simd.cs: Tests for dup low and dup high.
3478 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
3480         * mini-ops.h: Add dup low and dup high ops.
3481         
3482         * cpu-x86.md: Same.
3484         * mini-x86.c (mono_arch_output_basic_block): Same.
3486         * simd-intrinsics.c (vector4f_intrinsics): Same.
3488 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3490         * basic-simd.cs: Tests for recently added functionality.
3492 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3494         * mini-ops.h: Add remaining sse1 fp ops.
3495         
3496         * cpu-x86.md: Add remaining sse1 fp ops.
3498         * mini-x86.c (mono_arch_output_basic_block): Same.
3500         * mini.h: Add enum for simd FP compare conditions.
3502         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
3504         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
3505         so the backed can generate the appropriate op.
3507 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
3508         This patch squeese one more byte from the SimdIntrinsc struct.
3510         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
3511         a a shift amount intead of simply or'ing it.
3513         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
3515         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
3516         byte so we can have an aditional flags field without increasing struct size.
3518         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
3519         against the simd_supported_versions bitmask.
3521         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
3523 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
3525         * mini.c: remove rawbuffer code (the only use here is unsafe because
3526         it takes locks during signal handling and the kernel now provides much
3527         better info in proc/pid/smaps these days).
3529 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3531         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
3532         OP_X86_PUSH_OBJ. Fixes #434620.
3534         * objects.cs: Add a test.
3535         
3536 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
3538         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
3539         that the packuswb/packusdw don't work with unsigned numbers for what
3540         would be negative numbers in signed format.
3542         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
3543         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
3545         * mini-ops.h: Add doubleword forms of many ops and packing ones.
3547         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
3549         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
3551         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
3553         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
3554         add more ops.
3556         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
3557         version as the enum in mini.h.
3559         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
3560         for sse3 ops, check the simd_version field if present. This way the code
3561         works with all versions of sse.
3563 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3565         * simd-intrinsics.c: Fixed intrinsic name typo.
3567         * mini.h: Added missing simd exported function.
3569         * basic-simd.cs: Added tests for Vector4ui.
3570         Fixed broken test for Vector16b.
3572 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3574         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
3575         the max length to 64.
3577 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3579         * method-to-ir.c: Only do the fast virtual generic method call for
3580         non-wrapper methods.
3582         * mini.h, mini-trampolines.c: The new generic virtual remoting
3583         trampoline handles virtual method calls via the vtable (as done by
3584         the fast virtual generic method calls) to remoting proxies.
3586         * mini.c (mono_jit_create_remoting_trampoline): For generic
3587         methods reate a generic virtual remoting trampoline.
3589         * mini-amd64.h: Enable fast virtual generic method calls again.
3591 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3593         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
3594         restore registers when doing tail calls.
3596 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3598         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
3599         Vector4ui.
3601 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3603         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
3605 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3607         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
3609 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3611         * basic-simd.cs: Retrofit for API changes.
3613 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3615         * mini-ppc.c: Handle integer stack arguments for tail calls.
3617 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3619         * optflags-def.h: Removed sse3 optimization.
3621         * driver.c: Same.
3623         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
3624         sse3.
3626         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
3628         * mini.h: Added enumeration with simd versions.
3630         * simd-intrinsics.c (emit_intrinsics): Use the new static var
3631         for detecting SSE3.
3633         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
3635         * mini.c (mini_init): Call mono_simd_intrinsics_init.
3637 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3639         * basic-simd.cs: Added tests for Vector8u and Vector16u.
3641         * basic-simd.cs: Fixed test naming.
3643 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3645         * mini-ops.h: Added ops for packed and saturated math, shifts
3646         and packing/unpacking.
3648         * cpu-x86.md: Added descriptors for the above ops.
3650         * mini-x86.c: Added code to emmit the above ops.
3652         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
3654 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3656         * aot-compiler.c (compile_method): Enable AOT for generic code.
3658         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
3660 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
3662         * mini.c: add a workaround for a common screwup that ends up blamed
3663         to mono (other processes blocking signal delivery).
3665 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3667         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
3668         in the LDFLD/STFLD opcodes. Fixes #432673.
3670         * iltests.il.in: Add a new test.
3672 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
3674         * mini-arm.c: attach the thread in unmanaged->managed transitions
3675         using delegates (bug #433148).
3677 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
3679        * basic-simd.cs: Use new ShuffleSel constants.
3681 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
3683         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
3685         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
3686         only disable simd intrinsics if no sse2 is detected.
3688         * optflags-def.h: Added sse3.
3690         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
3691         is disabled.
3693 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3695         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
3696         when adding delegate-invoke wrappers.
3698 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3700         * Makefile.am: Reenable the simd tests.
3702 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3704         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
3705           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
3706           other vreg is allocated to that hreg.
3708         Contributed under MIT/X11 license.
3710 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
3712         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
3713         yet checked in.
3715 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
3717         * basic-simd.cs: New test suite for SIMD intrinsics.
3719         * Makefile.am: Added new tests.
3721 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
3723         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
3725         * mini-ops.h: Same.
3727         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
3729         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
3730         using SSE2 aware opcodes.
3732         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
3733         is enabled, this code path is only reachable if conversion ops are emmited after
3734         mono_method_to_ir.
3736         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
3738         This optimization saves 6 bytes per conversion against the old version.
3740 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3742         * aot-compiler.c (compile_method): Don't skip methods referencing 
3743         generic methods without a corresponding entry in token_info_hash, since
3744         encode_method_ref () can handle all generic methods now.
3746         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
3747         generic context is set.
3748         
3749         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
3750         generic sharing of LDTOKEN.
3752 2008-10-06  Mark Probst  <mark.probst@gmail.com>
3754         * mini-amd64.h: Temporarily disabled fast virtual generic method
3755         calls because it breaks the System.Runtime.Remoting tests.
3757 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3759         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
3761         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
3762         so inlining actually works.
3763         (check_inline_caller_method_name_limit): Ditto.
3765 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
3767         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
3768         64 bit safety (from Olaf Hering and Andreas Färber).
3770 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3771         
3772         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
3773         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
3774         unused virtual call support code.
3776         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
3777         
3778         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
3779         which can't use aot trampolines.
3780         (decode_patch): Don't create aot trampolines for methods which can't use
3781         them.
3783         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
3784         use aot trampolines.
3786         * mini.h: Bump AOT image format version.
3787         
3788 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
3790         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
3791         to save_token_info () since cmethod is inflated for constrained calls.
3793         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
3795 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3797         * Makefile.am: Add build rules for ppc64.
3798         This avoids the build failing at pedump with unresolved symbols
3799         due to lack of arch_sources. Instead it will now fail earlier
3800         due to lack of cpu-ppc64.md.
3802         Contributed under MIT/X11 license.
3804 2008-10-04  Mark Probst  <mark.probst@gmail.com>
3806         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
3807         tail calls.
3809         * iltests.il.in: Add test case for tail call with many arguments.
3811 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3813         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
3814         to the fast virtual generic method code until the aot case is fixed.
3816 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3818         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
3820 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3822         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
3823         thunks.
3825 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3826         
3827         * simd-intrinsics.c: Forgot to add this one.
3829         * mini-codegen.c: Fix macro in case SIMD is not supported.
3831 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3832         
3833         This patch land initial JIT support for simd intrinsics.
3835         * mini-x86.h: Added new define to make --enable_minimal work on x86.
3837         * Makefile.am: Added simd-intrinsics.c
3839         * simd-intrinsics.c: New file with simd instrinsic related
3840         code.
3842         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
3844         * cpu-x86.md: Add simd related instructions.
3846         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
3848         * driver.c: Added two new --regression variants.
3850         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
3852         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
3854         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
3855         extract some complicated logic to helper functions.
3857         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
3859         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
3861         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
3862         the specialized simplification pass.
3864         * method-to-ir.c (mono_spill_global_vars): Use new macro.
3866         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
3868         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
3869         table.
3871         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
3872         if MONO_ARCH_NEED_SIMD_BANK is defined.
3874         * mini-ops.h: Added the new simd ops.
3876         * mini-x86.c: Added mono_arch_xregname.
3878         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
3880         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
3882         * mini-x86.h: Define simd related MONO_ARCH macros.
3884         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
3886         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
3888         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
3889         MONO_CLASS_IS_SIMD to deal with simd related IR.
3891         * mini.h (MonoInst): Added spill_var to the backend union.
3893         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
3895         * mini.h: Added forward declarations of the new simd fuctions.
3897         * optflags-def.h: Added new optimization names SIMD.
3899         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
3901         * regalloc.h: Added support for working with 3 register banks.
3903         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
3905         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
3907 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
3909         * mini-exceptions.c: remove 64 bit related ifdef clutter.
3911 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3913         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
3914         instead of one on 64 bit systems.
3916         * method-to-ir.c: Remove unused includes.
3918 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
3920         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
3921         cfg->used_int_regs, since the two are different on arm.
3923 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3925         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
3926         mono_method_get_vtable_index() to get the vtable index.
3928 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3930         * method-to-ir.c (mono_method_to_ir2): Don't create native
3931         wrappers for array methods, because they're never called (and if
3932         they were called they wouldn't work).
3934 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3936         * method-to-ir.c (mono_method_to_ir2): Array methods are
3937         special-cased and must not be invoked indirectly via the (M)RGCTX
3938         when generic sharing is turned on.  Fixes #431413.
3940 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3942         * method-to-ir.c: When generic sharing is active, call
3943         non-interface virtual generic methods via the standard trampoline.
3945         * mini-trampolines.c: Handle virtual generic shared methods.
3947         * mini.h, mini-x86.c, mini-x86.h: New argument for
3948         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
3949         method thunks and which is the trampoline to call if the lookup
3950         fails.  Enable the virtual generic method thunk for x86.
3952         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
3953         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
3954         argument but assert that it's NULL, because these archs don't yet
3955         implement the virtual generic method thunk.  Changes in the IMT
3956         thunk data structures.
3958 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3960         * aot-compiler.c (emit_globals): Avoid invalid characters in
3961         the static linking symbol.
3963         * objects.cs: Add a test for the range check optimization. Fix warnings.
3965         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
3966         optimization from the current JIT.
3968         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
3969         later in decompose_array_access_opts () to allow more optimizations.
3971         * method-to-ir.c (mono_handle_soft_float): Rename this to 
3972         mono_decompose_soft_float () for consistency.
3974         * mini-ops.h: Fix arguments of OP_STRLEN.
3976         * method-to-ir.c (save_cast_details): Extract the cast details saving code
3977         into a separate function.
3978         (reset_cast_details): Ditto.
3979         (handle_unbox): Save cast details. Fixes #431254.
3981         * method-to-ir.c: Remove some obsolete FIXMEs.
3983 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3985         * ir-emit.h (alloc_dreg): Write a warning before crashing.
3987 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3989         * mini-codegen.c: More work on macros to make them
3990         ready for multiple regbanks.
3992 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
3994         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
3996         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
3998 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
4000         * mini-codegen.c (mono_spillvar_offset): Proper support for
4001         multiple regbanks.
4003 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
4005         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
4006         the stack overflow changes.
4008 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
4010         * mini-codegen.c: Make all bank macros depend on reg_bank.
4012         * mini-codegen.c (mono_local_regalloc): Make free mask
4013         initialization regbank aware.
4015 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
4017         * mini-codegen.c (mono_local_regalloc): Extract callee
4018         mask selection to a function and make it regbank aware.
4020 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
4022         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
4023         code to deal with many regbanks.
4025 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
4027         * mini-codegen.c: More fp->regbank changes.
4029 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
4031         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
4032         of a hardcoded constant.
4034 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
4036         * method-to-ir.c (type_from_stack_type): Fix typo.
4038 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
4040         * mini-ia64.c (emit_move_return_value): Convert float return values to
4041         double.
4043         * objects.cs: Add a new test.
4044         
4045         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
4046         VARARG methods to fix an assert later.
4048         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
4049         end so it at least compiles.
4051 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
4053         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
4055 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
4057         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
4058         optimization to a new function (emit_optimized_ldloca_ir) and enable
4059         it for both ldloca and ldloca_s.
4061 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
4063         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
4064         gshared CASTCLASS code.
4066         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
4067         amd64, where the libc stack unwinder encounters stack frames referring to
4068         native code in unmapped memory.
4070         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
4071         sharing.
4073         * generics.cs: Add new test.
4075 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
4077         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
4078         add a check that one of the ARM_FPU_ constants is defined.
4080         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
4081         
4082         * mini-exceptions.c: Fix build on non-altstack platforms.
4084         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
4085         sharing of vtypes.
4087         * ir-emit.h: Add a comment to NEW_PCONST.
4089         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
4091         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
4093         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
4094         after the changes to MonoJitDomainInfo.
4096 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4098         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
4100 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4102         * mini-ppc.c: Compiler warning fixes.
4104 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4106         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
4107         for pinvokes.
4109 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4111         * exceptions-ppc.c, mini-ppc.h: Compile
4112         mono_arch_handle_altstack_exception() on Darwin, too.
4114 2008-09-27  Mark Probst  <mark.probst@gmail.com>
4116         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
4117         work on archs which don't have generic sharing implemented, only
4118         without the vtable_arg.
4120 2008-09-26  Mark Probst  <mark.probst@gmail.com>
4122         * mini.c: Added comment explaining why delegate ctor icall
4123         wrappers are compiled.
4125 2008-09-26  Mark Probst  <mark.probst@gmail.com>
4127         * mini.c: Don't produce trampolines to delegate ctor icall
4128         wrappers but compile them upfront.
4130 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
4132         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
4133         runtime-set function when going back to managed code. Currently this
4134         is used to set back the protection on the soft ovf pages and/or to
4135         throw the stack overflow exception that happened in unmanaged code.
4137 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
4139         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
4140         runtime-set function when going back to managed code. Currently this
4141         is used to set back the protection on the soft ovf pages and/or to
4142         throw the stack overflow exception that happened in unmanaged code.
4144 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
4146         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
4147         the support code for restoring stack protection after stack overflows
4148         that happen in unmanaged code. Don't set the exec permission on the
4149         soft overflow area.
4151 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
4153         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
4154         delegate->method_ptr is set. Fixes #428054.
4156 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
4158         * tests.cs: Rename to ratests.cs.
4160         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
4161         emit_get_rgctx_... functions.
4163 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4165         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
4167 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4169         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
4170         before asserting that method is sharable.
4172 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4174         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
4175         whether method needs a static RGCTX wrapper used instead of
4176         complex conditions.
4178         * generic-sharing.c, mini.h: A few functions moved to
4179         metadata/generic-sharing.c.
4181 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4183         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
4184         Generic code sharing for value types, which essentially means
4185         treating value type methods like static methods.  The RGCTX is
4186         passed in the same way.
4188 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
4190         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
4191         opcode when creating multi-dimensional arrays of open types.
4193         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
4194         open generic types.
4196         * generics.cs: Add a test.
4198         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
4200 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4202         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
4204         * mini.c (mini_method_compile): Set it when running under the debugger. 
4206         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
4207         vreg optimization if the flag is set.
4209         * driver.c (mono_main): Add --attach= option to pass options to
4210         the attach agent.
4212         * mini.c (sigquit_signal_handler): Start the attach agent.
4214         * ssapre.c: Disable this to save space since it is not yet ported to
4215         linear IR.
4217         * regalloc2.c: Disable this to save space.
4219         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
4221 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
4223         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
4224         the -v option useful again.
4226 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4228         * mini-amd64.c (mono_arch_output_basic_block): Add support for
4229         --break-at-bb.
4231         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
4232         arrays of arrays. Fixes #428406.
4234         * method-to-ir.c (mini_emit_castclass): Ditto.
4236         * objects.cs: Add new test.
4237         
4238 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
4240         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
4241         was wrong at it choked against target_type_is_incompatible for byref types.
4243 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
4245         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
4246         places.
4248 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
4250         * mini-exceptions.c: update a few more exceptions-related counters.
4252 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
4254         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
4255         new functions to allocate from persistent mempools.
4257 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
4259         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
4260         multiple register banks in the future.
4262         * mini-codegen.c (mono_local_regalloc): Fix a warning.
4264 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
4266         * mini.c (type_to_eval_stack_type): Remove duplicated function.
4268         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
4270         * mini.h: Export type_to_eval_stack_type.
4272         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
4273         is only ins->klass of byref types.
4275 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
4277         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
4278         (mini_emit_memcpy2): Ditto.
4280         * mini-amd64.c: Fix a warning.
4282 2008-09-21  Mark Probst  <mark.probst@gmail.com>
4284         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
4285         linking.
4287 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
4289         * method-to-ir.c: Extract stloc micro-optimization to a
4290         function and apply it to all cases.
4292 2008-09-19  Mark Probst  <mark.probst@gmail.com>
4294         * method-to-ir.c: Don't fail generic code sharing in cases we
4295         already support.
4297 2008-09-18  Mark Probst  <mark.probst@gmail.com>
4299         * mini-ppc.c: Handle structs in tailcalls on Darwin.
4301 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
4303         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
4304         implementation.
4306 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
4308         * trace.c: make tracing more useful and correct, with per-thread
4309         id and indent info.
4311 2008-09-15  Mark Probst  <mark.probst@gmail.com>
4313         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
4314         doing a method call and the argument is an R4.
4316 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
4318         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
4319         generic methods.
4321 2008-09-13  Mark Probst  <mark.probst@gmail.com>
4323         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
4325 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
4327         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
4328         (MONO_JUMP_TABLE_FROM_INS): Ditto.
4330 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
4332         * driver.c: Add a --agent argument (not supported yet) to load managed
4333         agent assemblies before loading the main assembly, similarly to how the
4334         Java VM handles agents.
4336 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4338         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
4339         function to do stack layout of local variables.
4341 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4343         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
4344         calculation.
4346 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
4348         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
4349         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
4350         JIT if DISABLE_JIT is defined.
4352         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
4353         defined.
4355 2008-09-10  Mark Probst  <mark.probst@gmail.com>
4357         * iltests.il.in: Disable the fconv test on PPC (the result is
4358         undefined according to ECMA).
4360 2008-09-10  Mark Probst  <mark.probst@gmail.com>
4362         * iltests.il.in: Enable tail call tests for PPC.
4364         * mini.h: Add variable for storing incoming valuetype argument
4365         addresses for tail calls.
4367         * mini-ppc.c: Implement valuetype arguments and return values for
4368         tailcalls on Linux.
4370 2008-09-09  Mark Probst  <mark.probst@gmail.com>
4372         * mini-ppc.c: Partially implement tail calls (struct arguments and
4373         return values not supported).
4375         * method-to-ir.c: Enable tail calls on PPC.
4377 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
4379         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
4380         runtime-invoke wrappers to work around the problem of them getting
4381         assigned to a random class.
4383         * aot-runtime.c (mono_aot_get_method): Ditto.
4384         
4385 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
4387         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
4388         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
4390 2008-09-07  Mark Probst  <mark.probst@gmail.com>
4392         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
4393         until they're implemented properly.
4395         * exceptions-ppc.c: Use arch-independent exception-handling code
4396         instead of custom one.
4398         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
4399         for Linear IR.
4401         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
4403         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
4404         applies when __powerpc__ is defined.
4406 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
4408         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
4409         methods to their code to avoid computing the full name of wrappers and
4410         doing a lookup in a string hash table.
4412 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
4414         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
4415         we identify bblocks before method_to_ir () is ran.
4417         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
4418         Also avoid optimizing branches pointing to themselves.
4420         * mini.c (mini_method_compile): Ditto. Fixes #422947.
4422 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
4424         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
4426 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
4428         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
4429         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
4430         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
4431         'buf'.
4433         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
4434         jumped to the same entry in plt_jump_table.
4436 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4438         * method-to-ir.c (initialize_array_data): Handle field with RVA from
4439         dynamic images.
4441 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
4443         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
4444         other assignment can be if converted. Saves 1.5% on corlib size and fixes
4445         #421807.
4447 2008-08-29  Geoff Norton  <gnorton@novell.com>
4449         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
4450         segment, and doesn't properly handle .space as .text.  Fixes
4451         AOT Mach/ARM
4453 2008-08-29  Geoff Norton  <gnorton@novell.com>
4455         * mini.c: Disable the mach exception handler when running on 
4456         ARM
4458 2008-08-29  Geoff Norton  <gnorton@novell.com>
4460         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
4461         globals on Darwin/ARM
4463 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
4465         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
4466         since too many things depend on it. Instead, call 
4467         mono_runtime_set_no_exec ().
4468         
4469         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
4470         the new JIT.
4472         * aot-compiler.c: Add an 'asm-only' AOT option.
4474         * mini.c: Avoid initializing the runtime when doing AOT compilation.
4475                 
4476         * aot-compiler.c (compile_method): Disable gshared support for now as it
4477         doesn't yet work.
4479 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
4481         * mini-amd64.h : Fix a compiler warning.
4483         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
4484           Changed to use a callback function to retrieve the unwind info.
4485           This avoids problems observed when code blocks were removed by
4486           unloading an app domain.
4488         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
4489           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
4490           to work properly.
4492         Contributed under MIT/X11 license.
4494 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
4496         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
4497           case to keep the stack aligned to 8.
4499         Contributed under MIT/X11 license.
4501 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
4503         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
4504         avoid repeated linear searches.
4506 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
4508         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
4509         methods it can't handle.
4510         
4511         * aot-compiler.c (add_method): Avoid adding a method twice.
4512         (add_wrappers): Add runtime invoke wrappers for all methods.
4514         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
4515         function to create an aot-compatible version of this trampoline.
4517         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
4519 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4521         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
4523         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
4524         with a generic sharing failure.
4526         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
4528         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
4529         CEE_RETHROW. Fixes #419634.
4531         * mini.c (mono_method_to_ir): Ditto.
4533         * exceptions.cs: Add a new test.
4534         
4535         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
4536         to mono_type_stack_size_internal () since some callers might not pass in
4537         an rgctx.
4539         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
4540         instrument_prolog. Fixes #419878.
4542         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
4543         doubles in soft float mode volatile.
4545 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
4547         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
4549         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
4550         to handle soft float correctly.
4552         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
4553         the fast path.
4555         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
4557         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
4558         to sp, since the generics catch code requires it.
4560         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
4561         copying.
4563         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
4564         mono_arch_emit_imt_argument ().
4566         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
4568         * mini-arm.c tramp-arm.c: Generic sharing updates.
4570 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
4572         * mini-arm.c: Fix the arm build.
4574         * generic-sharing.c (mini_type_get_underlying_type): New helper function
4575         handling enums, generic instances and generic sharing.
4576         (mini_type_stack_size_full): Ditto.
4578         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
4579         
4580         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
4582         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
4584         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
4585         trampolines.
4587         * mini-arm.c: Various small generic sharing changes.
4589         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
4590         this for x86.
4591         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
4592         custom code.
4594         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
4595         helper function to return a generic class init trampoline.
4597         * method-to-ir.c mini.c: Use it.
4598         
4599         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
4600         arch-specfic function to return a generic class init trampoline.
4602         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
4603         the GENERIC_CLASS_INIT custom code.
4605         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
4606         a fatal error, not a sharing failure.
4608         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
4609         needed.
4611         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
4612         trampoline argument from MONO_ARCH_VTABLE_REG.
4614         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4615         order of the arguments to the C trampoline: pass 'slot' as the trampoline
4616         argument, and pass the vtable in VTABLE_REG.
4618         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4619         order of the arguments to the C trampoline: pass 'slot' as the trampoline
4620         argument, and pass the vtable in VTABLE_REG.
4621         (mono_arch_create_trampoline_code_full): Remove some special casing for
4622         the rgctx fetch trampoline.
4624         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
4625         Fixes #419273.
4627         * iltests.il: Add a test for it.
4629 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
4631         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
4633         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
4634         no longer needed.
4636         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
4637         use mono_jit_info_table_find () to avoid recursion.
4638         (mono_delegate_trampoline): Add a sync wrapper here.
4640         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
4641         here.
4643         * mini.c (mono_method_to_ir): Ditto.
4644         
4645         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
4646         add_sync_wrapper argument. Don't add a sync wrapper here.
4647         (mono_create_jump_trampoline): Don't add a sync wrapper here.
4649         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
4650         
4651 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4653         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
4654           of nonvolatile registers back from MonoContext to CONTEXT.
4656         Contributed under MIT/X11 license.
4658 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4660         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
4661           arguments on Winx64 there are only 4 argument registers.  For this
4662           logic to work the last argument must be pulled from the stack.  
4664         Contributed under MIT/X11 license.
4666 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4668         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4670         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
4671         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
4672         encode/decode_method_ref ().
4674         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
4676         * aot-runtime.c (decode_patch): Ditto.  
4678         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
4679         MONO_PATCH_INFO_METHOD.
4681         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
4682         MonoGenericJitInfo.
4684         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
4685         MonoGenericJitInfo.
4687         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
4689         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
4690         one from the caller.
4692         * aot-runtime.c (decode_generic_inst): New function to decode and
4693         return a interned generic inst.
4694         (decode_klass_ref): Use it.
4695         (decode_method_ref): Ditto.
4697         * aot-compiler.c (emit_exception_debug_info): Save 
4698         jinfo->has_generic_jit_info too.
4700 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
4702         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
4704         * iltests.il.in: Add a test for fconv_to_i.
4706         * liveness.c: Disable the liveness2 pass for now to save space.
4708         * regalloc2.c: Include mempool-internals.h to fix warnings.
4710         * aot-compiler.c (encode_method_ref): Encode the context of generic
4711         instance methods.
4713         * aot-runtime.c (decode_method_ref): Inflate generic methods using
4714         the context saved in the aot file.
4716         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4718         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4720         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
4721         volatile so they won't be optimized away.
4723 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4725         * ssa.c:
4726         * ssa2.c:
4727         * mini.c:
4728         * regalloc2.c:
4729         * dominators.c: Remove duplicated functions that now are in
4730         mempool-internals.h.
4732 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
4734         * aot-compiler.c: Fix warnings.
4736         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
4738         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
4740         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
4741         as the patch type.
4743         * mini.c (mono_resolve_patch_target): Ditto.
4744         
4745         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
4746         (encode_klass_ref): Add support for encoding VARs/MVARs.
4748         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
4750         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
4751         the handling of the got entries into a separate 'decode_got_entry' function.
4752         Add support for RGCTX_FETCH.
4754         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
4755         clobbered by the trampoline code.
4757         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
4758         not clobbered by the indirect calling code.
4760 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
4762         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
4763         to fix the build.
4765 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4767         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
4768         signature using the compilation mempool otherwise we would leak it.
4770 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
4772         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
4773         mono_emit_abs_call ().
4775         * patch-info.h: Add GENERIC_CLASS_INIT.
4777         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
4779         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
4780         as their target as a near call.
4782         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
4783         ABS handling code.
4784         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
4786         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
4787         call to a runtime function described by a patch.
4789         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
4790         mono_emit_abs_call, this has the advantage that the ABS handling code in
4791         mono_codegen () can handle them both, and can handle other stuff in the
4792         future without additional code.
4794         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
4795         entry.
4796         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
4797         abs addresses.
4799         * mini.h: Add missing bblock related prototypes.
4801         * mini.h (MonoCompile): Remove unused reverse_inst_list and
4802         reverse_inst_list_len fields.
4804         * mini.c: Refactor this file a bit by moving branch optimizations to 
4805         branch-opts.c.
4807         * method-to-ir.c: Merge generic sharing changes missed earlier.
4809         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
4811         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
4812         shared patches. Process METHODCONST as a shared patch.
4814         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
4815         as it crashes on the 2.0 mscorlib.
4817         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
4818         to cause crashes.
4819         
4820         * aot-compiler.c: Use is_plt_patch () in a few additional places.
4821         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
4822         by IMT.
4824         * aot-compiler.c: Reorganize the got handling code to be a bit more
4825         understandable.
4827 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
4829         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
4830         mono_patch_info_equals/hash, and use it to massively simplify
4831         get_plt_index ().
4833         * mini.c (mono_patch_info_hash): Simplify this and add support for
4834         more patch types.
4836         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
4838         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
4839         handling code, since an offset is not enough to identify a trampoline.
4841         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
4843 2008-08-17  Mark Probst  <mark.probst@gmail.com>
4845         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
4847         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
4849         * mini-ops.h: Argument and result types for OVF_CARRY ops.
4851         * decompose.c: PPC decompositions for various ops.
4853         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
4855 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
4857         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
4858         call the generic trampoline code using a call, instead of a jump, to
4859         remove some special casing from the generic trampoline code.
4861         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
4862         (mono_codegen): Ditto.
4864         * aot-compiler.c aot-runtime.c: Ditto.
4866         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
4868         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
4869         helper function to find the offset corresponding to a lazy fetch trampoline.
4871         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
4872         when doing generic sharing.
4874         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
4875         places.
4876         
4877         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
4878         mini-trampolines.c to be with the other trampoline creation functions.
4880         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
4881         as it is equal to method->signature in most cases, add a 
4882         mono_emit_method_call_full variant which takes a signature and an imt
4883         argument as well.
4885 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4887         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
4888         to this function, since it could be computed easily from the method 
4889         argument.
4890         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
4891         more.
4893         * method-to-ir.c mini.c: Remove references to 
4894         compile_generic_method_wo_context.
4896         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
4897         generic method calls.
4898         
4899         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
4900         dimensional non-szarrays.
4902         * mini.c (mini_init): Register mono_array_new_1.
4904         * jit-icalls.c (mono_array_new_1): New jit icall.
4906         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
4907         pointing to the method.
4909         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
4910         method addresses belonging to METHOD_JUMP patches in the 
4911         jump_target_got_slot_hash.
4912         (mono_aot_load_method): Ditto.
4914         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
4915         METHOD_JUMP patches.
4917         * mini.c (mini_create_jit_domain_info): New helper function which 
4918         initializes/frees domain->runtime_info.
4919         (mini_free_jit_domain_info): Ditto.
4920         (mini_init): Install the domain hook functions with the runtime.
4922         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
4923         information maintained by the JIT.
4925         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
4926         insertion into jump_table_hash into mono_codegen (), also implement proper
4927         locking.
4929         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
4930         tail calls, it is already done by the aot code.
4931         
4932         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
4933         mechanism on amd64.
4935         * iltests.il.in: Make the jmp test a bit more complex.
4937         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
4938         generic instances which doesn't have a token.
4940         * aot-runtime.c (decode_method_ref): Ditto.
4941         
4942         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
4943         can handle this case now.
4944         (handle_box): Ditto.
4946 2008-08-15  Geoff Norton  <gnorton@novell.com>
4948         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
4949         debugging check.
4951 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4953         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
4954         calling generic methods.
4956         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
4958         * aot-runtime.c (decode_patch_info): Ditto.
4960         * mini.c (mono_resolve_patch_target): Ditto.
4961         
4962         * patch-info.h: Add METHOD_RGCTX.
4964         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
4966 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
4968         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
4969         arguments in registers.
4971         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
4972         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
4974         * mini.c (mini_method_compile): Abort aot compilation for generic
4975         methods if generic sharing is disabled.
4976         
4977         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
4978         an mrgctx.
4980         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
4981         requiring an mrgctx.
4983         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
4984         store instructions when converting a vcall to a normal call.
4986         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
4987         mono_arch_find_jit_info.
4989 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
4991         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
4992         avoid calling mono_method_full_name () for every method even if the
4993         env var is not set.
4994         (check_inline_caller_method_name_limit): Ditto.
4996 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4998         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
4999         assemblies in one run.
5001         * aot-compiler.c (mono_compile_assembly): Only print out a count of
5002         skipped methods if it is not 0.
5004         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
5006 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
5008         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
5009           MONO_ARCH_HAVE_UNWIND_TABLE.
5011         Contributed under MIT/X11 license.
5013 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
5015         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
5016           from default optimizaton list on Winx64.
5018         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
5020         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
5021           the LMF from the MonoJitTlsData structure.
5023         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
5025         Contributed under MIT/X11 license.
5027 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
5029         * mini.c (sigsegv_signal_handler): Fix the build.
5031         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
5032         assembly->aot_module.
5034         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
5035         hash table. This simplifies and speeds up a lot of code, and fixes support
5036         for .netmodules.
5038         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
5039         with the runtime.
5041         * mini-exceptions.c: Ditto.
5042         
5043         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
5044         'native_offset' argument, since these are computed in the 
5045         mono_find_jit_info () function.
5047         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
5048         is used by exceptions-ppc.c.
5050         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
5051         mono_arch_find_jit_info ().
5052         
5053         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
5054         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
5055         generic code in mini-exceptions.c.
5057 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
5059         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
5061         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
5062         
5063         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
5064         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
5065         called while holding the loader lock. Fixes #415608.
5066         (mono_aot_get_method_from_token_inner): Ditto.
5068 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
5070         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
5071         to reduce differences between this and the generic implementation in
5072         mini-exceptions.c.
5073         (ves_icall_get_frame_info): Ditto.
5075         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
5077         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
5078         longer neccesarry.
5080         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
5081         mono_arch_get_call_filter () and make it non-static, for consistency with the
5082         other architectures.
5084 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
5086         * mini.c:
5087         * local-propagation.c:
5088         * mini-x86.c: Correct the name of arch defines.
5090 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
5092         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
5093         NO_EMULATE_LONG_SHIFT_OPS define.
5095 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
5097         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
5098         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
5100         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
5101         MACH fixes. Merged from the 2.0 branch.
5103         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
5105         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
5106         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
5108         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
5110         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
5111         mono_marshal_get_native_wrapper () signature changes.
5113 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
5115         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
5116         conversion bug under arm.
5118 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
5120         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
5122         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
5123         with overflow checking.
5125 2008-08-05  Marek Habersack  <mhabersack@novell.com>
5127         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
5128         to the genmdesc.pl file
5130 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
5132         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
5133         arg_array in the soft-float versions of the LOAD/STORE macros.
5135         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
5136         implementation.
5138         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
5140 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
5142         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
5143         a float HFA. Fixes #413621.
5145 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
5147         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
5148         frame_size to args_size. Fixes build.
5150 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
5152         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
5153         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
5155         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
5156         the stack are not unaligned. Fixes #413247.
5157         
5158 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
5160         * mini.c: update jitted methods performance counters.
5162 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
5164         * mini-exceptions.c: increase the exceptions thrown performance
5165         counter in mono_handle_exception ().
5167 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
5169         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
5170         can work with netmodules.
5172 2008-07-28  Geoff Norton  <gnorton@novell.com>
5174         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
5175         regression tests.
5177 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
5179         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
5180         correct place.
5182 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
5184         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5185           The float param registers and other param registers must be the 
5186           same index on Windows x64.
5188         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
5189           ArgValuetypeAddrInIReg argument case.  Setting the argument
5190           op to OP_VTARG_ADDR (OP_REGOFFSET)).
5192         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
5193           variable computed above as the copy length for arguments of storage
5194           type ArgValuetypeAddrInIReg.
5196         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
5197           ArgValuetypeAddrInIReg argument case.  This case will rely on
5198           mono_arch_emit_outarg_vt to emit the correct code later in the process.
5200         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
5201           a 32 byte stack allocation for all calls.  We will omit the adjustment for
5202           jump and tail call instructoins as they do not follow the typical call behavior.
5204         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
5205           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
5206           local variable and pass the local variable by reference to the called method.
5208         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
5209           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
5210           of a struct is passed in a register it must be saved with the other
5211           volatile argument on the stack.
5213         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
5214           frame pointer the stack adjustment value must be saved to the unwind 
5215           info structure.
5217         Contributed under MIT/X11 license.
5219 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
5221         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
5222         which got lost in the merge.
5224 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
5226         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
5227         build.
5229         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
5230         
5231         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
5232         icalls, since they won't be patched.
5234         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
5235         different code sequence when running under valgrind to prevent some valgrind
5236         errors.
5238         * iltests.il.in: Add new regression test.
5240         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
5241         end with a throw.
5243         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
5244         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
5246         * iltests.il.in: Add new test.
5248         * aot-compiler.c: Fix some warnings.
5250         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
5251         Fixes #412494.
5253 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
5255         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
5256         (mini_usage_jitdeveloper): Add a missing --wapi option.
5258 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5260         * mini-codegen.c: Simplify the is_fp macros.
5261         (free_up_ireg): Remove, use free_up_reg instead.
5262         (free_up_reg): Fix the fp case.
5264 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
5266         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
5267         lowered earlier.
5269         * exceptions-x86.c: Merge some changes which seemed to have got lost
5270         in the linear-ir merge.
5272         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
5274         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
5275         long vreg volatile even if the variable was already created.
5277         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
5278         volatile variables.
5280 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
5282         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
5284         * mini.c (mono_jit_compile_method_inner): Add support for 
5285         MONO_EXCEPTION_BAD_IMAGE.
5287         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
5288         mini_method_get_context () returns NULL. Fixes #356531.
5290         * mini.c (mono_method_to_ir): Ditto.
5291         
5292         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
5293         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
5295 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5297         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
5298         in the LDFTN implementation.
5300 2008-07-25  Mark Probst  <mark.probst@gmail.com>
5302         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
5303         code, patch calls to icalls, too, even if they're not in the
5304         shared generic code hash.  Fixes #411962.
5306 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
5308         * cpu-x86.md: Increase the length of the fcall opcodes.
5310         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
5311         calls returning floats.
5313         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
5314         on NEWARR.
5315         
5316         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
5317         missed earlier.
5319         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
5320         into the domain->method_code_hash.
5322         * aot-compiler.c: Fix win32 build.
5324         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
5325         
5326         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
5327         gshared NEWARR implementation.
5329         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
5331         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
5332         can be used outside of method_to_ir.
5334         * mini.h (MonoCompile): Add arg_types field.
5336         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
5337         
5338         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
5339         the values of the local arg_array and param_types array.
5341 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
5343         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
5344         got accesses might only get generated later when NEWOBJ is decomposed.
5345         
5346         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
5347         looking up the native code of the target method when a delegate is called
5348         for the first time.
5350         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
5351         optimization.
5353         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
5355         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
5356         AOT work on platforms without a working dlsym implementation.
5358         * mini.h: Bump AOT image format version.
5359         
5360 2008-07-24  Mark Probst  <mark.probst@gmail.com>
5362         * mini-exceptions.c: Free a MonoType with
5363         mono_metadata_free_type() instead of g_free().
5365         * aot-runtime.c: Free a MonoType.
5367 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
5369         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
5370         optimization.
5372         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
5373         fp stack on x86.
5375 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
5376         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
5377         profiler hook.
5379 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
5381         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
5382         NEWOBJ calls on valuetypes.
5384         * iltests.il.in: Add new test.
5386         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
5388 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
5390         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
5391         is no longer needed.
5393         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
5394         non register sized integer arguments.
5395         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
5396         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
5397         emit_memcpy2 ().
5399         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
5400         CEE_MONO_RETOBJ.
5401         
5402         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
5403         two a binop with different sized arguments is emitted.
5405         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
5406         instruction in the ins==NULL case.
5408 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
5410         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
5412         * mini-x86.c: Fix osx build.
5414         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
5415         opcodes as well.
5417         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
5418         instruction for non int sized variables.
5420         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
5421         implementation.
5423 2008-07-23  Robert Jordan  <robertj@gmx.net>
5425         * method-to-ir.c: Fix MSVC build.
5427 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
5429         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
5430         a non int sized type, widen it to an int since newer versions of gcc seem to
5431         generate code which needs this.
5433         * ssa2.c abcremoval2.c: Fix warnings.
5435         * *: Merge the Linear IR branch.
5437         The original branch is at trunk/branches/vargaz/mini-linear-il, and
5438         the ChangeLog file there describes all the changes done over the years. 
5439         Further documentation can be found at www.mono-project.com/Linear_IL.
5441 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
5443         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5444           The float param registers and other param registers must be the 
5445           same index on Windows x64.
5447         Contributed under MIT/X11 license.
5449 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
5451         * mini.c: Make the previous fix GC safe.
5453 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
5455         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
5457 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
5459         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
5460           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
5461           ArgValuetypeAddrInIReg instead.
5463         Contributed under MIT/X11 license.
5465 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
5467         * mini-codegen.c (get_register_spilling): Fix a warning.
5469 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
5471         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
5472         for types which the initialization fails. Raises the provided exception
5473         at the right stop after cleanup.
5475 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
5477         * aot-compiler.c: Free most of the memory allocated during compilation.
5479         * mini.c (mini_parse_debug_options): Fix a leak.
5480         
5481         * mini.c (mini_method_compile): Don't add the method to the jit info tables
5482         during aot compilation.
5484 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
5486         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
5487         it has too much register pressure.
5489 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
5491         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
5493 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
5495         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5496         on x86.
5498         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5499         on amd64 similar to the way it is done on arm.
5501         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5503         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
5504         consistency, normalize error messages, avoid loading aot-only modules in
5505         normal mode.
5507         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
5508         for consistency.
5510         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
5512 2008-07-11  Martin Baulig  <martin@ximian.com>
5514         * debug-debugger.h
5515         (MonoDebuggerInfo): Add `interruption_request'.
5517 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
5519         * aot-compiler.c (emit_plt): Remove some dead code.
5521         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
5523         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
5524         return the plt info offset belonging to a given plt entry.
5526         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
5527         mono_aot_get_plt_info_offset.
5528         
5529         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
5530         similar to the amd64 code by makeing jumps through a separate jump table 
5531         instead of embedding the jump addresses into the code.
5533 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
5535         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
5536         method.
5538 2008-07-10  Martin Baulig  <martin@ximian.com>
5540         * mini.c (mini_method_compile): Disable generics sharing when
5541         running in the debugger.
5543 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
5545         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
5547         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
5548         the local register allocator from running out of registers on x86 when 
5549         using aot.
5551 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
5553         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
5554         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
5555         C4146.
5557         Contributed under MIT/X11 license.
5559 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
5561         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
5562         speed up the assembler.
5564 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
5566         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
5567         support.
5569         * mini.c: Move the soft float handling macros a bit earlier, add 
5570         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
5571         place.
5573         * mini.h: Add prototype for mono_arch_fixup_jinfo.
5575         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
5576         read-only to help catch code allocation requests.
5577         
5578         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
5579         and turn it off when using --aot-only or when compiling with --aot=full.
5581         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
5582         jump table for switches from the normal domain mempool, not the code
5583         manager.
5585         * mini-trampolines.c (get_unbox_trampoline): New function to return an
5586         unbox trampoline which handles aot-only mode too.
5588         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
5589         an AOTed unbox trampoline.
5591         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
5593 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
5595         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
5596         ""
5598         Contributed under MIT/X11 license.
5600 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
5602         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
5603           the unwind information for the method at the end of the allocated block.
5604           
5605         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
5606           MonoCompileArch to hold the unwind info for SEH on Winx64
5607         
5608         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
5609           frame pointer info for the method being compiled.
5610           
5611         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
5612           the call to mono_exception_from_token.
5613           
5614         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
5615           storing the method prolog information in a format that the Winx64 SEH can understand.  This
5616           information is stored a the end of the method block because it is all 32-bit offset based.
5618         Contributed under MIT/X11 license.
5620 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
5622         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
5624         * wapihandles.c: Fix warnings.
5626         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
5627         mode.
5629         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
5630         mono_jit_compile_method in aot-only mode since that calls the type 
5631         initializer.
5632         
5633         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
5634         get_delegate_invoke_impl in aot-only mode.
5636         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
5638 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
5640         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
5642         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
5643         is on by default.
5645         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
5647         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
5648         init trampoline from the AOT file as well.
5650         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
5651         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
5652         code.
5654         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
5655         mono_init.
5657         * exceptions-amd64.c: Add _full variants for the remaining exception code
5658         creation functions as well, allow emission of relocatable code, remove
5659         caching since that is now done by the caller.
5661         * mini-exceptions.c: Add _full variants for the remaining exception code
5662         creation functions as well, add aot-only support.
5664         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
5665         if we can determine a proper token for them.
5666         (add_wrappers): Add a few more wrappers.
5667         (emit_method_code): Remove some dead code.
5668         (emit_trampolines): Emit exception code too.
5670         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
5672         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
5673         mono_array_new_va which avoids varargs.
5675         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
5677         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
5678         mono_arch_create_specific_trampoline () in all places.
5680         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
5681         a bit so it can be used for other things as well.
5682         
5683         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
5684         on demand as well.
5686         * exceptions-amd64.c: Rename the caching from the exception code creation
5687         functions, it is done by the caller instead.
5688         
5689         * exceptions-amd64.c: Change the signature of the exception code creation 
5690         functions to allow the creation of relocatable code later.
5692         * mini-exceptions.c: Add a set of functions to query the various 
5693         runtime-generated exception functions.
5695         * mini.c mini-exceptions.c: Use the newly added functions instead of the
5696         mono_arch_.. () functions.
5697         
5698 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
5700         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
5702         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
5704         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
5705         (mini_get_vtable_trampoline): Ditto.
5707         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
5708         code in the AOT case by returning the code size and a list of relocations to
5709         the caller.
5711         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
5713 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
5715         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
5716           clean the stack.
5718         Contributed under MIT/X11 license.
5720 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
5722         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
5723         so the buffer size can be computed correctly. Fixes #404735.
5725         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
5726         normally as cfg->debug_info is already freed.
5728 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
5730         * mini-amd64.c: For calls returning vtypes in registers, don't store
5731         the return address on the stack, instead allocate a separate local for
5732         it. Fixes #404729.
5734 2008-07-05  Mark Probst  <mark.probst@gmail.com>
5736         * mini-trampolines.c, mini.h: Add an argument to
5737         mono_create_jit_trampoline_in_domain() for turning off the adding
5738         of the sync wrapper.
5740         * mini.c: Use the JIT trampoline without sync instead of
5741         ldftn_nosync in static RGCTX invoke wrappers so that the call can
5742         be patched.
5744 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5746         * driver.c: Turn on GSHARED optimization by default.
5748 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
5750         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
5751         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
5753         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
5754         create a variant of the generic trampoline code callable from AOTed trampolines.
5756         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
5757         trampoline code callable from AOTed trampolines.
5759         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
5761 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5763         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
5764         pass-through manner.
5766         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
5767         and don't fail sharing for them anymore.
5769         * mini-exceptions.c: Handle exceptions in shared generic methods.
5771         * generic-sharing.c: When checking the context of a generic
5772         method, also check its class's context.  Don't treat wrappers as
5773         sharable.
5775         * mini-trampolines.c: Some code factored out to
5776         metadata/generic-sharing.c.  Handle the MRGCTX case.
5778         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
5779         we must deal with the method being of another instantiation of the
5780         class.  Add static rgctx invoke wrappers to generic methods.
5782 2008-07-04  Mark Probst  <mark.probst@gmail.com>
5784         * mini.c: Provide all jit infos of generic shared methods with a
5785         generic jit info.
5787         * mini-exceptions.c: Handle the new situation that a generic info
5788         might be available, but not info about the this/vtable/mrgctx
5789         variable.
5791 2008-07-03  Mark Probst  <mark.probst@gmail.com>
5793         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
5794         generic methods.
5796 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
5798         * dominators.c (check_dominance_frontier): Fix a warning.
5800         * mini.h: Add some missing prototypes.
5802         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
5804         * driver.c (mono_jit_init_version): Correct the comments since the first
5805         argument should be the name of the root domain, not a filename.
5807         * aot-runtime.c (make_writable): Error out if this is called while running
5808         with --aot-only.
5809         (load_aot_module): Ditto.
5811         * aot-compiler.c: Really fix the computation of method indexes.
5813         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
5814         optimizations as this is no longer called frequently.
5816         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
5817         method and the invoke impl code and pass it to the delegate trampoline instead of
5818         just the delegate class.
5820 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
5822         * aot-compiler.c: Fixup the computation of method indexes.
5823         (add_wrappers): Create the base methods of the runtime invoke wrappers using
5824         the method builder infrastructure.
5826         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
5827         has no header.
5829         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
5830         mode, load the method right away instead of creating a trampoline.
5832         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
5834         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
5835         some checks a bit.
5837 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
5839         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
5840         (mono_aot_load_method): Use method_index instead of method->token.
5842         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
5843         can handle icalls etc. properly.
5845         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5847         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
5849         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
5850         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
5851         JIT_ICALL_ADDR patch type.
5853         * patch-info.h: Add JIT_ICALL_ADDR patch type.
5855         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
5856         request flag.
5857         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
5859         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
5861 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
5863         * mini.c: Use domain->jit_code_hash_lock for controlling access to
5864         domain->jit_code_hash.
5866 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
5868         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
5870 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
5872         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
5873         get_this_arg_from_call, let it compute it when needed.
5875         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
5876         gsctx from code only when needed.
5878         * mini-trampolines.c (get_generic_context): Rename this to 
5879         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
5880         it can be called by the arch backends.
5882         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
5884 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
5886         * driver.c (mono_main): Add experimental --aot-only command line option.
5888         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
5889         set.
5891 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
5893         * driver.c (DllMain): Remove mono_module_handle.
5895         Contributed under MIT/X11 license.
5897 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
5899         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
5900         for emitting methods which are not in the source assembly. Detect and report
5901         failure of assembling+linking.
5902         
5903         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
5905         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
5907 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
5909         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
5911 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
5913         * mini.h: Remove some obsolete prototypes.
5915         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
5917 2008-06-24  Mark Probst  <mark.probst@gmail.com>
5919         * mini.c (get_object_generic_inst): Variable-sized arrays are not
5920         supported by Visual Studio, so use alloca().
5922 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
5924         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
5925         Fixes #402585.
5927 2008-06-23  Mark Probst  <mark.probst@gmail.com>
5929         * mini.c: Fail sharing of a generic method if it contains an open
5930         catch clause (because we don't pass MRGCTXs yet).
5932 2008-06-23  Mark Probst  <mark.probst@gmail.com>
5934         * mini.c: When compiling a method with generic sharing, insert the
5935         method instantiated with an all-Object generic context into the
5936         jit info table, instead of the context of the first instantiation
5937         of the method we happen to compile.
5939 2008-06-18  Martin Baulig  <martin@ximian.com>
5941         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
5942         `major_version' and `minor_version'.
5944 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5946         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
5947         mono_method_is_generic_sharable_impl() takes an additional
5948         argument specifying whether to treat type variables as reference
5949         types.
5951 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5953         * mini.h: Removed obsolete prototypes.
5955 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5957         * mini.c: Don't fail generic sharing for initobj and sizeof - we
5958         already handle them.
5960 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5962         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
5963         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
5964         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
5965         tramp-x86.c: Added a MonoGenericContext* argument to
5966         mono_arch_get_unbox_trampoline() so that it can call other
5967         functions which require it.
5969 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5971         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
5972         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
5973         mono_arch_get_this_arg_from_call() takes a
5974         MonoGenericSharingContext* as well.
5976 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5978         * mini.c: Factor out code for emitting unbox into emit_unbox() and
5979         implement generic sharing of unbox.
5981 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5983         * mini.c: Don't compute the vtable to determine whether a field is
5984         special static, because it might not work for open types.
5986 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5988         * mini.c: Removed the unused token_type and token_source arguments
5989         from get_runtime_generic_context_ptr().
5991 2008-06-17  Marek Habersack  <mhabersack@novell.com>
5993         * mini.c (ADD_BINOP): fix the build
5995 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
5997         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
5998         a widening op.
6000 2008-06-16  Mark Probst  <mark.probst@gmail.com>
6002         * mini.h: Removed class relations enum that's not used anymore.
6004 2008-06-16  Mark Probst  <mark.probst@gmail.com>
6006         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
6008         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
6009         the lazy fetch trampoline access code.
6011 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
6013         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
6015 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
6017         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
6019         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
6021         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
6023 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
6025         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
6026         intrinsics.
6028         * mini-ops.h: Add MIN/MAX_UN opcodes.
6030         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
6031         intrinsics.
6033         * basic-math.cs: Add more min/max tests.
6035         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
6037 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6039         * mini.c: Small fix in the prologue of emit_castclass.
6041 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
6043         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
6045         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
6046         do not work even for unsigned types. Fixes #400014.
6048         * basic-math.cs: Add regression tests for unsigned Min/Max.
6050 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6052         * mini.c: Added additional context_used argument to several
6053         functions, which will be needed for sharing generic methods.  Use
6054         GET_RGCTX macro wherever appropriate.  Declare only one
6055         context_used in mono_method_to_ir().
6057 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6059         * mini.c, generic-sharing.c: Removed generic class relations.
6061         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
6062         functions due to MRGCTX changes.
6064 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6066         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
6067         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
6068         with calculated IMT.
6070         * mini.c: Generic sharing of calls via generic interfaces.
6072         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
6073         generic method with non-constant MonoGenericContext*.  Instead,
6074         the context is taken out of the method itself.
6076 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6078         * mini.c: Generic sharing of ldvirtftn.
6080 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6082         * mini.c: Generic sharing of ldftn.
6084 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6086         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
6088 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6090         * mini.c: Generic sharing of the special case of ldtoken followed
6091         by a call to GetTypeFromHandle.
6093 2008-06-13  Mark Probst  <mark.probst@gmail.com>
6095         * mini.c: Generic sharing of box for nullable types.
6097 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
6099         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
6100         are passed on the stack. Fixes #324807.
6102 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
6104         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
6105         for the ArgValuetypeAddrInIReg case.
6107         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
6108         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
6110         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
6111         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
6112         local variable and pass the local variable by reference to the called method.
6113           
6114         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
6115         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
6117         Contributed under MIT/X11 license.
6119 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
6121         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
6123         * debug-mini.c (mono_debug_print_vars): Release memory after printing
6124         everything.
6126 2008-06-10  Martin Baulig  <martin@ximian.com>
6128         * debug-mini.c
6129         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
6131 2008-06-09  Kornél Pál  <kornelpal@gmail.com>
6133         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
6134         possible error when no arguments are passed.
6136         Contributed under MIT/X11 license.
6138 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
6140         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
6141         where the file name is NULL.
6143 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
6145         * mini.c: Fix s390 build.
6147 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
6149         * trace.c (mono_trace_parse_options): Fix warnings.
6151         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
6153 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
6155         * mini.c (remove_block_if_useless): Avoid printing the method name.
6156         
6157         * mini.c: Remove needless setting of ins->cil_code which is now done by 
6158         MONO_INST_NEW.
6160         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
6161         LMF. Not yet used.
6163         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
6164         translated code after it has been patched.
6166 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
6168         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
6169         avoid problems during code patching on SMP systems.
6170         (emit_call): Avoid adding a patch info which is already added by 
6171         emit_call_body.
6172         (mono_arch_emit_exceptions): Ditto.
6174 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
6176         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
6177         MONO_TYPE_ISSTRUCT already checks for it.
6179 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
6181         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
6182           structs with floats on Winx64 the float registers are not used.  
6183           The integer registers are always used..
6184         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
6185           only one register will be used and only if the size of the struct 
6186           is 1,2,4, or 8 bytes.
6188         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
6189           to work for Winx64.
6191         Contributed under MIT/X11 license.
6193 2008-06-05  Martin Baulig  <martin@ximian.com>
6195         * debug-debugger.c (debugger_lookup_class): Also call
6196         mono_class_setup_methods() here; we're only called from RTI.
6198 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
6200         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
6201         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
6202         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
6203         Post-process object files and add dtrace-generated object, if necessary.
6205         Contributed under MIT/X11 license.
6207 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6209         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
6210         element class.
6212         * mini.c: Generic sharing for unbox.any and castclass.
6214 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6216         * mini.c: Ignore tailcall prefix in shared generic code and when
6217         doing calls which require a vtable/rgctx argument.
6219 2008-06-04  Mark Probst  <mark.probst@gmail.com>
6221         * mini.c: Don't free the JIT info.
6223         * driver.c: Changes in the JIT info table testing code.
6225 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
6227         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
6228         interruption. Fix some warnings.
6230         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
6231         interruption_checkpoint.
6233 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6235         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
6236         from embedding applications.
6238 2008-06-02  William Holmes  <billholmes54@gmail.com>
6240         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
6241           reserving 32 bytes on the stack when making calls. 
6243         Contributed under MIT/X11 license.
6245 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
6247         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
6248         the linear IL branch.
6250         * driver.c: Print out more information for --version on arm.
6252 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
6254         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
6255         bb_exit instead, since out of line bblocks might not actually be emitted
6256         out-of-line.
6257         
6258         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
6259         maximum epilog size for out of line bblocks if tracing is enabled.
6261         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
6263 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
6265         * arrays.cs: Regression tests for allocating arrays with negative sizes.
6267 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
6269         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
6270         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
6271         opcodes.
6273 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
6275         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
6276         the 'value' to store is a constant.
6278         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
6280         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
6281         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
6283 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
6285         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
6286         for accessing method->generic_container.
6288 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
6290         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
6291         
6292         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
6294         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
6296         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
6297         fails.
6299 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
6301         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
6303         * mini.c: Handle the case when mono_class_vtable () fails.
6305 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
6306         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
6307         the stat profiler.
6309 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6311         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
6312         together with domain sharing.
6314 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6316         * mini.c: Treat callvirts to final methods like non-virtual calls
6317         when doing generic sharing, i.e. look them up in the runtime
6318         generic context.
6320 2008-05-22  Mark Probst  <mark.probst@gmail.com>
6322         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
6323         with computed types (for generic sharing).
6325         * mini.c: Generic sharing for mkrefany and refanyval.
6327 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
6329         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
6330         possible.
6332         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
6333         the generic sharing code.
6334         
6335         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
6336         when needed.
6338 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
6340         * mini.h: Remove the declaration of mono_aot_init_vtable ().
6342 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
6344         * driver.c: updated copyright date
6346 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
6348         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
6349         needed.
6351 2008-05-19  Martin Baulig  <martin@ximian.com>
6353         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
6354         pointing to the new `_mono_debug_using_mono_debugger' variable.
6356         * driver.c
6357         (mono_main): Check mono_debug_using_mono_debugger() rather than
6358         the `MONO_INSIDE_MDB' environment variable to check whether we're
6359         inside the debugger.
6361 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
6363         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
6364         argument.
6366 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
6368         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
6370         * mini.c: Added mini_assembly_can_skip_verification. This
6371         function checks if the assembly requested to skip verification. 
6372         Fixes part of #387274.
6374 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6376         * mini.c (mini_get_method): Disable the check for open generic classes when
6377         using generic sharing.
6379         * generics.cs: Add a test for #387034.
6381         * mini.c (mini_get_method): Check whenever the method class is an open generic
6382         type, and return NULL in that case, causing a verification error. Fixes
6383         #384123.
6385 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6387         * driver.c (mono_main): Revert r102623. The right
6388         thing to do is to enable the verifier under verifiable
6389         unless a --security flag was passed.
6391         We need this non-trivial behavior for --verify-all otherwise
6392         mcs-compileall won't be able to use it. As it needs everything to
6393         be verified under validil.
6395 2008-05-06  Martin Baulig  <martin@ximian.com>
6397         Fix #383749.
6399         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
6400         (mono_debugger_thread_cleanup): Likewise.
6401         (mono_debugger_extended_notification): Likewise.
6403 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6405         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
6406         against both inflated and non-inflated methods. We need to check against the
6407         generic definition for cases where the instantiated method is not visible.
6408         We need to check against the inflated types for cases where the instantiation
6409         changes any super type. This fixes #382986.
6411         Note that this doesn't need to be applied to other parts of mono_method_to_ir
6412         that check for visibiliy as generic params only appears as the type subject
6413         of tokens on call opcodes. Field manipulation and ldftn must always
6414         target an exact type.
6416 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
6418         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
6419         if no related --security flag is passed.
6421 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6423         * mini-arch.h: Prepare support for ppc64.
6425         Contributed under MIT/X11 license.
6427 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6429         * aot-runtime.c: Prepare support for ppc64.
6431         Contributed under MIT/X11 license.
6433 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6435         * mini-ops.h: Prepare support for ppc64.
6437         Contributed under MIT/X11 license.
6439 2008-05-04  Andreas Färber  <andreas.faerber@web.de>
6441         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
6443         Contributed under MIT/X11 license.
6445 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
6447         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
6448         assemblies, since aot_name is not a full path, causing us to load MS.NET 
6449         assemblies on windows.
6451 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
6453         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
6454         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
6455         * main.c: Use UTF-8 encoded command line instead of Windows default code
6456         page on Windows to support Unicode.
6457         * driver.c (DllMain): New function for mixed-mode assembly support.
6458         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
6459         export __stdcall functions without decoration.
6461         Contributed under MIT/X11 license.
6463 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6465         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
6466         saving it very early.
6468 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6470         * mini.h, mini.c: Lots of code for accessing the old RGCTX
6471         deleted.  The only way to access the new RGCTX is via the
6472         trampline.
6474         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
6475         vtable instead of the RGCTX to static methods.
6477         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
6478         accessing the new RGCTX.
6480         * generic-sharing.c: There is no separation between self, type
6481         arguments and other types in the RGCTX anymore.
6483 2008-04-25  Jonathan Chambers <joncham@gmail.com>
6485         * mini-amd64.c (add_general): Remove previous stack adjustment.
6486         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
6487         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
6488         for 32 bytes of stack space reserved for all calls.
6489         
6490         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
6491         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
6492         adjustment.
6493         
6494         Code contributed under MIT/X11 license.
6496 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
6498         * mini.c (mini_method_verify): Only verify non-inflated methods, check
6499         against the root definition, peeling out method and type instantiations.
6500         Cache verify success results, code that fails verification is still
6501         checked multiple times.
6503 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6505         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
6507 2008-04-23  Jonathan Chambers <joncham@gmail.com>
6509         * mini-amd64.c (add_general): Always increment stack on Win64.
6510         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
6511         on Win64.
6512         
6513         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
6514         stack based argument handling on Win64.
6515         
6516         Code contributed under MIT/X11 license.
6518 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
6520         * Makefile.am (version.h): Add support for git-svn.
6522 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6524         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
6525         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
6526         avoiding allocations and libc functions which might deadlock.
6527         
6528         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
6529         'no-gdb-backtrace' option is set.
6531         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
6533         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
6535 2008-04-21  Martin Baulig  <martin@ximian.com>
6537         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
6538         and `get_lmf_addr'; `notification_address' is no longer a pointer.
6540 2008-04-21  Martin Baulig  <martin@ximian.com>
6542         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
6543         `thread_vtable', `event_handler_ptr' and `event_handler'.
6545 2008-04-21  Martin Baulig  <martin@ximian.com>
6547         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
6548         allows delayed initialization of the `executable_code_buffer' when
6549         attaching.
6551 2008-04-21  Martin Baulig  <martin@ximian.com>
6553         * mini.h (mono_debugger_create_notification_function): Removed.
6554         * tramp-*.c (mono_debugger_create_notification_function): Removed.
6556         * mdb-debug-info64.s
6557         (MONO_DEBUGGER__notification_function): Added this in the .text section.
6559         * mdb-debug-info32.s
6560         (MONO_DEBUGGER__notification_function): Added this in the .text section.
6562         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
6563         currently only works on x86 and x86_64, so don't create it on ppc.
6565 2008-04-21  Martin Baulig  <martin@ximian.com>
6567         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
6569         * mini.c
6570         (mini_method_compile): In the fp elimination check, check
6571         `debug_options.mdb_optimizations' in addition to
6572         mono_debug_using_mono_debugger().       
6574         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
6575         disable some JIT optimizations which are only disabled when
6576         running inside the debugger.
6577         Added `--help-debug' option to describe the debugging options.
6578         (parse_debug_options): New static function to parse the `--debug'
6579         options, so we can easily add more stuff in future.
6581 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
6583         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
6584         the method has no body.
6586 2008-04-19  Jonathan Chambers <joncham@gmail.com>
6588         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
6589         assembly is not allowed in MSVC 64-bit compiler. 
6590         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
6591         as we get floating point exceptions everywhere.
6592         
6593         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
6594         correctly align arguments for call to throw_exception.
6595         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
6596         
6597         Code contributed under MIT/X11 license.
6599 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
6601         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
6603 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
6605         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
6607         * mini-amd64.c (NEW_INS): Set cil_code.
6609         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
6610         from mini-amd64.c so all debugger related logic is in one place.
6612         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
6613         later won't have a random ip assigned to them.
6615 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
6617         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
6618         the arch specific function initializes code_size.
6619         (mono_create_delegate_trampoline): Ditto.
6621         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
6622         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
6623         platforms.
6625         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
6626         running under the debugger.
6628         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
6629         debugger.
6631         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
6632         debugger. Also move the disabling of optimizations here from driver.c.
6633         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
6634         debugger.
6636         * mini.h (MonoCompile): Add a few new flags.
6638 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
6640         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
6641         so the cil_code field of created MonoInst's is properly set.
6642         (mini_select_instructions): Ditto.
6644         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
6645         (MONO_INST_NEW_CALL): Ditto.
6647         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
6648         in many places so the ins->cil_code field is properly initialized.
6650         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
6651         place.
6653 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6655         * mini.c (mini_method_compile): Print a different message when compiling a 
6656         shared method.
6657         
6658         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
6659         > 1.
6661 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
6663         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
6664         SSE2 instructions.
6666         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
6667         
6668 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
6670         * mini.c (handle_stack_args): Make this return void since its return value was
6671         never used. Also set cfg->unverifiable for invalid IL instead of calling
6672         G_BREAKPOINT ().
6674 2008-04-10  Mark Probst  <mark.probst@gmail.com>
6676         * mini.c: Make sure "this" is live in catch clauses with type
6677         variables in shared generic code.
6679 2008-04-08  Mark Probst  <mark.probst@gmail.com>
6681         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
6682         generic_class_is_reference_type() to ensure the proper behaviour
6683         when sharing generic code and the type in question is a type
6684         argument.
6686 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6688         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
6689         race conditions when printing thread dumps. Fixes #377738.
6691 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
6692         
6693         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
6694         shows up when both MonoInst arguments can cause aliasig.
6695         There is likely no way in the current JIT to trigger this problem, but
6696         it showed up in the development of generics sharing, when in a new
6697         opcode both args of an OP_GROUP can be aliases (addresses of a local).
6698         When the generics sharing code will be committed, its tests will be
6699         valid also for this bug.
6701 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6703         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
6704         PATCH_INFO_METHOD.
6706         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
6707         NULL.
6709 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
6711         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
6712         use a more detailed exception message for InvalidCastException.
6714         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
6716         * driver.c (mono_main): Add --debug=casts option to turn on better 
6717         InvalidCastException message details.
6719         * mini.c (mini_get_debug_options): New helper function to return the address of
6720         the debug_options variable.
6722         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
6723         the jit_tls TLS variable.
6725         * mini.c (mono_jit_tls): New TLS variable.
6727         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
6728         option is used.
6730 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
6732         * mini.h: Removed verifer related stuff. This code was moved to verify.c
6734         * mini.c: Removed verifer related stuff, code moved to verify.c.
6736         * driver.c: Using code from verify.c instead of mini.c.
6738 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
6740         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
6741         longer valid.
6743 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
6745         * mini.c (check_for_method_verify): Enabling verification of
6746         corlib if mono_verify_all is set. Bugs in the verifier preventing that
6747         have been fixed.
6749 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
6751         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
6752         caller saved registers as well.
6753         
6754         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
6755         saved registers as well.
6757 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
6759         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
6761         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
6762         code.
6764 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
6766         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
6767         to get_call_info.
6768         (get_call_info): Take a gsctx argument instead of 'cfg'.
6770 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6772         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
6773         mono_verify_all is set.
6775         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
6777         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
6779 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6781         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
6782         an exception.
6784         * driver.c mini.c mini.h: Add a --verify-all development option to test the
6785         verifier and the code generated by the compiler.
6787 2008-03-25  Mark Probst  <mark.probst@gmail.com>
6789         * mini.c: Generic sharing of the non-nullable case of the box
6790         instruction.
6792 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
6794         * inssel.brg: Fix the build.
6796         * iltests.il.in: Add a test for lconv.ovf.u8.un.
6798 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
6800         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
6801         Array:Address. Fixes #372410.
6803         * iltests.il.in: New tests for readonly prefix.
6805 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
6807         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
6808         mini-trampolines.c.
6810         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
6811         mini-exceptions.c.
6813         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
6814         
6815         * mini.c (mono_decompose_op_imm): New helper function.
6817         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
6818         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6819         return value.
6821         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
6822         mono_arch_output_basic_block. Fix warnings.
6824         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
6825         for now.
6827 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
6829         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
6830         since the extra frame is now detected automatically inside the loop.
6832         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
6833         opts which are now in mono_peephole_ins ().
6834         
6835         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
6837         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
6838         frames and skip duplicate managed-to-native frames. Fixes #367665.
6840         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6841         opts which are now in mono_peephole_ins ().
6842         (mono_arch_peephole_pass_2): Ditto.
6844         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
6846         * mini-codegen.c (mono_peephole_ins): New helper function containing the
6847         arch independent peephole optimizations.
6849         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6850         opts which are now in mono_peephole_ins ().
6852         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
6853         
6854         * mini-s390.c (mono_arch_output_basic_block): Fix build.
6856         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
6857         pattern.
6859         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
6860         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
6861         opcode. 
6863 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
6865         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
6866         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6867         return value.
6869         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
6870         mono_arch_output_basic_block. Fix warnings.
6872 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6874         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6875         conv.ovf.u.un.
6877 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6879         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6880         conv.ovf.u.un.
6882         * iltests.il: Add new tests.
6884 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6886         * mini.c: Removed Windows version macros.
6888 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6890         * generic-sharing.c: Put reflection types in the extensible part
6891         of the runtime generic context.
6893         * mini.c: Generic sharing of the GetTypeHandle special case of the
6894         ldtoken instruction.
6896 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
6898         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
6900         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
6901         
6902         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
6903         consistency with the other version on the linear IR branch.
6905         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
6907         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
6909         * iltests.il.in: Add new tests.
6911 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
6913         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
6915         * iltests.il.in: Add new tests.
6917 2008-03-19  Mark Probst  <mark.probst@gmail.com>
6919         * mini.c: Two variables with the same name were declared in
6920         nesting contexts and one wasn't initialized.  Fixed.
6922 2008-03-19  Mark Probst  <mark.probst@gmail.com>
6924         * mini.c: Generic sharing of the initobj instruction.
6926 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6928         * mini.c: make the test to optimize ldtoken from typeof() more
6929         precise.
6931 2008-03-18  Mark Probst  <mark.probst@gmail.com>
6933         * mini.c: Generic sharing of the initobj instruction for reference
6934         types.
6936 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6938         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
6939         the mono_breakpoint_clean_code() code to perform bound checks.
6941 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
6943         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
6944         mono_arch_patch_callsite() to include the start of the managed method
6945         to be able to perform bound checks.
6947 2008-03-17  Mark Probst  <mark.probst@gmail.com>
6949         * mini.c: Generic sharing for the isinst instruction.
6951 2008-03-17  Mark Probst  <mark.probst@gmail.com>
6953         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6954         inssel-long32-mips.brg: Added opcodes for doing indirect calls
6955         with the runtime generic context argument.
6957         * mini.c: Share calls to several types of unsharable methods by
6958         putting the address of the method code in the runtime generic
6959         context and doing an indirect call.
6961         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6962         to switches.
6964 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6966         * generic-sharing.c: Change due to a change in the runtime genric
6967         context API.
6969 2008-03-15  Martin Baulig  <martin@ximian.com>
6971         * tramp-x86.c
6972         (mono_arch_nullify_class_init_trampoline): Add call to
6973         mono_breakpoint_clean_code() to make things work when running
6974         inside the debugger.
6976         * tramp-amd64.c
6977         (mono_arch_nullify_class_init_trampoline): Add call to
6978         mono_breakpoint_clean_code() to make things work when running
6979         inside the debugger.
6981 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6983         * inssel-long.brg (reg): Fix 64 bit build.
6985 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6987         * mini.c, mini.h: Share static generic code by passing it an
6988         implicit argument pointing to the runtime generic context.
6990         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6991         inssel-long32-mips.brg: New opcodes for calling shared static,
6992         which need to be passed the runtime generic context.
6994         * mini-amd64.c, mini-x86.c: Save the runtime generic context
6995         argument on the stack in the prologue if needed.  New function for
6996         finding the runtime generic context argument from the registers
6997         saved by the trampoline.
6999         * mini-amd64.h, mini-x86.h: Specify which register to use for the
7000         runtime generic context argument.
7002         * tramp-amd64.c: Also restore the register used for the runtime
7003         generic context argument.
7005         * mini-trampoline.c: Resolve shared static calls by consulting the
7006         runtime generic context via the new argument.
7008         * generic-sharing.c: Add an argument to sharability-checking
7009         functions that specifies whether type variables should be treated
7010         as sharable type arguments.
7012         * inssel-x86.brg: Removed a superfluous, buggy rule.
7014         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
7015         to switches.
7017 2008-03-14  Martin Baulig  <martin@ximian.com>
7019         * debug-debugger.c (main_thread_handler): Call
7020         mono_runtime_run_main() without sending any notifications.
7022         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
7024 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
7026         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
7028 2008-03-14  Mark Probst  <mark.probst@gmail.com>
7030         * tramp-x86.c: Fixed register restore offsets in the trampoline
7031         code for ECX and EDX.
7033 2008-03-12  Geoff Norton  <gnorton@novell.com>
7035         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
7036         different ucontext_t implementations.
7037         * exceptions-arm.c: Use the above defines to get exceptions working on 
7038         iPhone (based on a patch by Luke Howard lukeh@padl.com)
7039         * mini-arm.c: Implement iPhone icache support (based on a patch by
7040         Luke Howard lukeh@padl.com)
7042 2008-03-12  Mark Probst  <mark.probst@gmail.com>
7044         * mini.c: Enable generic sharing of calls to non-static
7045         non-interface non-generic non-value-type methods.
7047         * mini-trampolines.c: Resolve calls from shared generic code.
7049 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
7051         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
7053         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
7055 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
7057         * mini.c: some fixes for the AOT compiler.
7059 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
7061         * cpu-amd64.md: Add clob:1 to some float opcodes.
7063 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
7065         * mini.h: Added MiniVerifierMode enumeration.
7067         * mini.c: Added mini_verifier_set_mode to control
7068         the usage of the new verifier.
7070         * mini.c (mono_method): Integrated the new verifier.
7072         * driver.c: Extended --security option with validil and
7073         verifiable options to activate the new verifier.
7075 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
7077         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
7078         optimization to ctors taking 0 or 2 arguments too.
7080         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
7081         a bit.
7083         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
7085         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
7087 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
7089         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
7090         non-aot case as well.
7092         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
7094         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
7095         changes.
7097         * aot-compiler.c (encode_patch): Ditto.
7099         * mini.h (G_MININT32): Fix the definition of this.
7101 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
7103         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
7105         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
7107 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
7109         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
7110         methods returning vtypes in registers.
7111         (mono_arch_allocate_vars): Ditto.
7113         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
7115         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
7117         * generics.cs: Add a test from the linear IR branch.
7119         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
7121         * mini.c (inline_method): Cache failed inline attempts.
7123 2008-03-04  Mark Probst  <mark.probst@gmail.com>
7125         * mini.c: For shared methods of generic classes put the location
7126         of "this" into the MonoGenericJitInfo.
7128         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
7129         register out of a MonoContext by register number.  Add the generic
7130         sharing context as an argument to mono_arch_find_this_argument().
7132         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
7133         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
7134         for new arch function.
7136         * mini-exception.c: Handle open exception clauses in shared
7137         generic code.
7139         * mini-trampolines.c: Supply additional argument to
7140         mono_arch_find_this_argument().
7142 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
7144         * Makefile.am (regtests): Run the bench.exe tests last.
7146 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
7148         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
7149         a bit.
7151 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
7153         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
7154         with MS.
7156         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
7157         
7158         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
7160         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
7161         whose class has no cctor.
7163         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
7165 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
7167         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
7168         unverified.
7170 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
7172         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
7173         to be in sync with the code on the linear IR branch.
7175         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
7177         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
7179 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
7181         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
7183         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
7185         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
7187         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
7189         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
7190         
7191         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
7192         body.
7194 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
7196         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
7197         OP_LOADR4_MEMBASE emission.
7199         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
7200         (mono_spillvar_offset_float): Ditto.
7202         * mini-mips.c (mono_arch_emit_prolog): Ditto.
7204         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
7205         emission.
7207         * basic-long.cs: Add regression tests for them.
7209         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
7210         use.
7211         (mono_arch_allocate_vars): Fix representation of single-precision float
7212         argument.
7213         (mono_arch_output_basic_block): Ditto.
7215         * inssel-mips.brg: Ditto, remove duplicate items.
7217         * mini-mips.c (emit_load_volatile_arguments): New function to handle
7218         arguments of tail calls as on other platforms.
7219         (mono_arch_output_basic_block): Handle tail calls.
7221         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
7222         register.
7224         * objects.cs (test_5_pass_static_struct): Add test for it.
7226         Contributed under MIT/X11 license.
7228 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
7230         * Makefile.am: Use gmcs for compiling the regression tests.
7232         * *.2.cs *.2.il: Rename to *.cs and *.il.
7234 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
7236         * regalloc.h: Make the vassign array smaller.
7238         * mini.c (mini_method_compile): Remove an unused field in cfg.
7240         * mini-codegen.c: Add a bunch of micro optimizations.
7242 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
7244         * regalloc.h: Remove some unused fields.
7246 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
7248         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
7250         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
7252 2008-02-22  Mark Probst  <mark.probst@gmail.com>
7254         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
7256         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
7257         trampoline: Fetch an entry from the runtime generic context.  If
7258         it's NULL, jump to the actual trampoline to fill the runtime
7259         generic context.  Otherwise, return it.
7261         * mini.c: Call the lazy fetch trampoline to get entries out of the
7262         runtime generic context.
7264         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
7265         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
7266         tramp-sparc.c: Stubs for the lazy fetch trampoline.
7268 2008-02-21  Mark Probst  <mark.probst@gmail.com>
7270         * mini.c: Fetch data out of the extensible part of the runtime
7271         generic context instead of calling a helper function.
7273         * generic-sharing.c: Some functions moved into
7274         metadata/generic-sharing.c.  Helper function for fetching other
7275         types now checks and asserts against extensible rgctx (just for
7276         debugging purposes - the helper function isn't called anymore
7277         unless for debugging).
7279 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
7281         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
7282         for tail calls up to the point that the tests in iltests.exe run. Also add a
7283         dummy CKFINITE implementation.
7284         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
7285         needed for trampoline LMF frames.
7287         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
7288         trampoline LMF frames.
7290 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
7292         * mini.c (inline_method): clean any pending loader error when inlining fail.
7293         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
7295 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
7297         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
7299         * aot-runtime.c (decode_patch_info): Ditto.
7301         * mini.c (mono_resolve_patch_target): Ditto.
7302         
7303         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
7304         icall wrappers.
7306         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
7307         
7308         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
7309         if it references an icall address.
7311 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
7313         * cpu-s390x.md: Remove some more unused opcodes.
7314         
7315         * cpu-s390x.md: Remove some unused opcodes.
7317         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
7318         mono_op_imm_to_op ().
7320         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
7321         instead of a switch statement.
7322         
7323         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
7324         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
7326         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
7327         
7328         * mini-codegen.c: Remove unused mono_regstate2_... functions.
7330         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
7331         -1.
7333 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
7335         * driver.c (mono_main): Improve error reporting when an assembly cannot be
7336         opened. Fixes #362607.
7338         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
7340         * iltests.il.in: Add a test for static methods in interfaces.
7342 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
7344         * genmdesc.c (build_table): Fix a crash on older glib versions.
7346         * cpu-sparc.md: Remove some unused opcodes.
7347         
7348         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
7349         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
7351         * cpu-amd64.md: Remove some unused opcodes.
7353         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
7354         like the other opcodes.
7356 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
7358         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
7360         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
7362         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
7363         variables 'cfg' instead of 'm' for consistency.
7365         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
7367         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
7368         argument holding the vtype return address, to avoid the ambigious use of
7369         cfg->ret for this purpose.
7371         * mini.c (NEW_RETLOADA): Use vret_addr if set.
7373         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
7374         
7375         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
7376         new mono_print_ins () function which only takes one argument.
7378 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
7380         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
7381         macro arguments.
7383 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
7385         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
7387         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
7389         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
7390         opcodes and other small changes.
7392         * mini-ops.h: Add some new opcodes from the linear IR branch.
7394         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
7396         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
7397         opcodes, use the REG_MEMBASE opcodes instead.
7398         
7399         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
7400         opcodes, use the REG_MEMBASE opcodes instead.
7401         
7402         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
7403         linear IR branch.
7405         * mini.c (mono_op_imm_to_op): New helper function.
7407         * mini-ops.h: Add some opcodes from linear IR branch.
7409 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
7411         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
7412         <tsv@solvo.ru>.
7414 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
7416         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
7417         OP_ICONV_TO_R4/R8.
7419         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
7421 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
7423         * aot-compiler.c (emit_method_code): Add an assert.
7425         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
7426         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
7427         methods.
7429 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
7431         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
7432         some load/store opcodes so they are consistent. 
7433         (mono_arch_emit_prolog): Simplify some code.
7435         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
7437         * objects.cs: Add tests for large argument offsets on ARM.
7439         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
7440         stack offsets. Fixes #359651.
7442         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
7444         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
7446         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
7448         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
7450         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
7452         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
7453         rid of CEE_CONV_R_UN.
7455         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
7457 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
7459         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
7461         * mini.c (mono_normalize_opcodes): Add some more opcodes.
7463         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
7465         * cpu-amd64.md: Remove some unused opcodes.
7467         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
7469         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
7471         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
7472         arch specific functions for its parts. Call the peephole pass after local
7473         regalloc so the prolog can compute a more accurate max_offset.
7474         
7475         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
7476         the corresponding OP_I/OP_L opcodes.
7478         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
7480         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
7482 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7484         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
7485         as they are handled in mini.c.
7487         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
7488         
7489         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
7490         case since it is handled in mini.c.
7492         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
7494         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
7496         * *.c: Use the new opcodes in the IR and back end code.
7498         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
7500         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
7502 2008-02-06  Mark Probst  <mark.probst@gmail.com>
7504         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
7505         an assert because it has a race condition.
7507 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7509         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
7511         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
7513         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
7515         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
7516         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
7518 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
7520         * cpu-amd64.md (move): Correct the maximum size of move.
7522 2008-02-05  Mark Probst  <mark.probst@gmail.com>
7524         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
7525         the generic class init trampoline to return quickly if the class
7526         is already inited.
7528 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
7530         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
7531         issues where an 32 bit callsite cannot be patched by a 64 bit address.
7533 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
7535         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
7536         branch.
7538 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
7540         * objects.cs: Add some soft-float tests.
7542         * mini.c: Fix a couple more soft-float issues.
7544         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
7546         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
7547         avoid a REX prefix.
7549 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
7551         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
7552         exception happens while compiling a virtual method.
7554 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
7556         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
7557         
7558         * mini-sparc.c: Fix build.
7560         * mini-sparc.c (get_call_info): Add support for generic sharing.
7562         * mini-exceptions.c: Add a FIXME.
7564 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
7566         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
7567         altstack handling code.
7569         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
7570         
7571         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
7573         * mini-s390.c: Add support for generic sharing.
7575         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
7576         Fix CAS on s390.
7577         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7579         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
7581         * mini-s390x.c: Add support for generic sharing.
7582         
7583         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
7584         Fix CAS on ia64.
7585         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7587         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
7588         can be used since it takes a 16 bit signed immediate.
7590         * inssel-s390x.brg: Fix OP_SETRET.
7592         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
7594         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
7596         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
7598         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
7600         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
7601         in one place.
7603         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
7604         stuff.
7606         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
7607         of the unused mono_arch_patch_delegate_trampoline stuff.
7609 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
7611         * basic-long.cs: Move the fp related tests to basic-float.cs.
7613         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
7615         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
7617         * basic-calls.cs: Add a test for proper float argument passing.
7619         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
7620         if the context corresponds to an exception received through a signal.
7622         * exceptions.cs: Add a test for nullref handling at the start of a try
7623         clause.
7625         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
7627         * jit-icalls.c (mono_break): New JIT icall.
7629         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
7631         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
7633 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
7635         * cpu-*.md: Get rid of unused opcodes.
7637         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
7639         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
7640         by all platforms.
7642         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
7643         define.
7645         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
7646         the arch independent trampoline code in mini-trampolines.c.
7648         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
7650         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
7652         * mini-s390.h: Remove an unused define.
7653         
7654         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
7655         the arch independent trampoline code in mini-trampolines.c.
7657         * mini-arm.c (mono_arch_emit_prolog): Fix build.
7659 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
7661         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
7663         * mini-s390.c (mono_arch_emit_prolog): Fix build.
7665         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
7667         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
7669         * cpu-amd64.md: Use smaller sizes for int opcodes.
7671         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
7673         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
7674         objects.cs.
7676         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
7677         debugging.
7679         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
7680         instead of though a pointer to save an indirection when accessing elements of
7681         the array.
7683         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
7684         some typos.
7685         (NOT_IMPLEMENTED): New helper macro.
7686         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
7687         of a bb.
7689         * *.c: Use the new helper macro.
7691 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
7693         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
7695 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7697         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
7698         stack slots.
7700 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
7702         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
7703         profiling is enabled.
7704         
7705         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
7706         the end.
7707         (mono_arch_emit_prolog): Add more first bblock optimizations.
7709         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
7710         in order if possible.
7711         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
7712         bblock, since the arguments are still in their original registers.
7714         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
7716 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7718         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
7719         as well.
7721         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
7722         offset 0.
7724         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
7726         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
7727         process async exceptions received while in unmanaged code.
7729         * mini.c (mini_init): Install a callback with the runtime which will be called
7730         when a thread receives an async exception while in unmanaged code.
7732         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
7734         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
7736 2008-01-16  Wade Berrier  <wberrier@novell.com>
7738         * cpu-g4.md:
7739         * cpu-arm.md:
7740         * cpu-s390x.md:
7741         fix build
7743 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7745         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
7746         compilation with sun cc.
7748         * cpu-*.md: Fix the build.
7750         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
7752         * mini-amd64.h: Add some comments to the MonoLMF structure.
7754         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
7755         
7756         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
7757         in the LMF structure if possible. This saves two instructions in the
7758         managed->native wrappers.
7760         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
7762 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7764         * generic-sharing.c: New type argument lookup code which uses the
7765         runtime generic context template.
7767 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7769         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
7771         * mini-arm.c (add_general): Fix arm eabi parameter passing.
7772         (mono_arch_output_basic_block): Fix localloc implementation.
7774         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
7776         * mini-ia64.c (peephole_pass): Fix ia64 build.
7778         * mini-amd64.c (peephole_pass): Fix a warning.
7779         
7780         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
7781         at a constant offset from sp/fp.
7783         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
7784         instead of obtaining it from *lmf in the managed method case.
7786 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7788         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
7790 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
7792         * mini.h (MonoInstList): New type.
7793         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
7794         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
7795         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
7796         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
7797         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
7798         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
7799         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
7800         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
7801         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
7802         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
7803         MONO_INST_LIST_FOR_EACH_ENTRY,
7804         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
7805         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
7806         mono_inst_list_first, mono_inst_list_last,
7807         mono_inst_list_next, mono_inst_list_prev): New instruction
7808         list handling interfaces.
7809         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
7810         list head 'ins_list'.
7811         (MonoInst): Replace next pointer with list head 'node'.
7812         (MonoCallInst): Make 'out_args' a MonoInstList.
7813         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
7814         (MonoCompile): Delete reverse_inst_list and
7815         reverse_inst_list_len.
7816         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
7817         mono_arch_lowering_pass, mono_arch_local_regalloc,
7818         mono_arch_output_basic_block, mono_arch_emit_prolog):
7819         Convert to new instruction lists.
7820         (insert_after_ins): Delete.
7821         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
7822         instruction lists.
7823         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
7824         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
7825         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
7826         mono_emulate_opcode, mono_emit_load_got_addr,
7827         inline_method, mono_method_to_ir, mono_print_bb_code,
7828         print_dfn, decompose_pass, nullify_basic_block,
7829         replace_out_block_in_code, remove_block_if_useless,
7830         merge_basic_blocks, move_basic_block_to_end,
7831         try_unsigned_compare, optimize_branches, mono_print_code,
7832         mini_select_instructions, remove_critical_edges): Likewise.
7833         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
7834         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
7835         mono_arch_output_basic_block, mono_arch_emit_prolog):
7836         Likewise.
7837         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
7838         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7839         mono_arch_output_basic_block): Likewise.
7840         (inst_list_prepend, insert_after_ins): Delete.
7841         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
7842         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
7843         instruction lists.
7844         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
7845         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
7846         mono_arch_emit_prolog): Likewise.
7847         * cfold.c (mono_constant_fold): Likewise.
7848         * liveness.c (visit_bb, mono_analyze_liveness,
7849         optimize_initlocals): Likewise.
7850         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
7851         * graph.c (mono_draw_code_cfg): Likewise.
7852         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
7853         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
7854         mono_ssa_cprop): Likewise.
7855         * abcremoval (get_relations_from_previous_bb, process_block):
7856         Likewise.
7857         * local-propagation (mono_cprop_invalidate_values,
7858         mono_local_cprop_bb): Likewise.
7859         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
7860         peephole_pass, mono_arch_output_basic_block,
7861         mono_arch_emit_prolog): Likewise.
7862         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
7863         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7864         mono_arch_emit_prolog): Likewise.
7865         (insert_after_ins): Delete.
7866         * aliasing.c (print_code_with_aliasing_information,
7867         mono_build_aliasing_information, mono_aliasing_deadce):
7868         Convert to new instruction lists.
7869         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
7870         peephole_pass, NEW_INS, mono_arch_lowering_pass,
7871         mono_arch_local_regalloc, mono_arch_output_basic_block):
7872         Likewise.
7873         (insert_after_ins): Delete.
7874         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
7875         peephole_pass, mono_arch_output_basic_block): Convert to
7876         new instruction lists.
7877         * mini-codegen (InstList, inst_list_prepend,
7878         insert_after_ins): Delete.
7879         (insert_before_ins, get_register_force_spilling,
7880         get_register_spilling, free_up_ireg, free_up_reg,
7881         create_copy_ins, create_spilled_store, alloc_int_reg,
7882         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
7883         to new instruction lists.
7884         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
7885         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7886         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
7887         (insert_after_ins): Delete.
7888         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
7889         mono_arch_local_regalloc, mono_arch_output_basic_block,
7890         mono_arch_call_opcode): Convert to new instruction lists.
7891         (insert_after_ins): Delete.
7892         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
7893         peephole_pass, mono_arch_output_basic_block,
7894         mono_arch_emit_prolog): Convert to new instruction lists.
7896 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7898         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
7900         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
7901         Fixes #353182.
7903         * Makefile.am (version.h): Make this work with non-bash shells.
7905 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7907         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
7909 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7911         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
7912         the InitializeArray optimization.
7914 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7916         * mini.c driver.c: Don't include os/gc_wrapper.h.
7918 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7920         * mini.c (print_jit_stats): Print GC statistics if available.
7922 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
7924         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
7926 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
7928         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
7930 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7932         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
7933         
7934         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7936         * driver.c (mono_main): Ditto.
7938 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7940         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
7942         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
7943         in the vtable can't be encoded.
7944         (compile_method): Ditto.
7946 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7948         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
7949         defined.
7951         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
7952         lmf->rbp.
7954         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
7955         the top LMF entry belongs to the current method.
7957         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
7959 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7961         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
7962         
7963         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
7965         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
7967         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
7969         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
7971         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
7972         implementation.
7974         * basic-float.cs: Add an ulong->double cast test.
7976 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
7978         * mini.c (mono_method_to_ir): Fix a warning.
7980 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
7982         * mini-ops.h: Add OP_SWITCH.
7984         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
7985         CEE_SWITCH in back-end code, use OP_SWITCH instead.
7987 2007-12-11  Geoff Norton  <gnorton@novell.com>
7989         * mini-s390x.c: Minor change to the MAX() define to allow
7990         it to compile with other gcc versions.
7992 2007-12-11  Geoff Norton  <gnorton@novell.com>
7994         * cpu-s390x.md:
7995         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
7997 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
7999         exceptions-arm.c (mono_arch_get_restore_context): Restore
8000         the frame pointer.
8002         exceptions-arm.c (throw_exception): Save the frame pointer.
8003         This is a partial fix for #323747. Only the client side is
8004         fixed.
8006 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
8008         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
8009         was using an unrelated variable to log the class which
8010         needed the cctor to be called. This was crashing on arm.
8012 2007-12-09  Robert Jordan  <robertj@gmx.net>
8014         * mini-x86.c (mono_arch_emit_epilog):
8015         Consider all kinds of 64-bit types. Fixes #323114.
8017 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
8019         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
8021 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
8023         * mini-amd64.c (peephole_pass): Add a missing instruction check.
8025 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8027         * mini.c: run type ctor before allocating an object, not only
8028         when running it's constructor method (fixes at least part of bug #342507).
8030 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
8031         
8032         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
8033         
8034         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
8035         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
8036         function.
8038         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
8039         mono_generic_class_init_trampoline () the same as it is done with the other
8040         trampolines.
8042         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
8043         aot-runtime.c aot-compiler.c: Implement AOT support.    
8045 2007-12-07  Mark Probst  <mark.probst@gmail.com>
8047         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
8048         build for archs which don't have the vtable trampoline defined
8049         yet.
8051 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
8053         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
8055         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
8057         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
8059         * tramp-<ARCH>.c: Use the new helper function.
8061 2007-12-07  Mark Probst  <mark.probst@gmail.com>
8063         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
8064         trampoline call, which takes a vtable argument.
8066         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
8067         OP_TRAMPCALL_VTABLEs like other calls.
8069         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
8070         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
8071         call.  Implemented a support function which fetches the vtable
8072         from a register set.
8074         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
8075         Implemented a generic class init trampoline, using the
8076         OP_TRAMPCALL_VTABLE opcode.
8078         * mini.c: Implemented static field access when sharing generic
8079         code.  This implies initing the class using the new
8080         OP_TRAMPCALL_VTABLE call.
8082 2007-12-07  Mark Probst  <mark.probst@gmail.com>
8084         * mini.c: Don't compile methods with sharing enabled if their
8085         classes are disabled for sharing.
8087 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
8089         * inssel.brg: Add a missing sign extension to the GETCHR and array access
8090         opcodes. Fixes #346563.
8092         * objects.cs: Add a new test.
8094         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
8096         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
8097         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
8099 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
8101         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
8103 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
8105         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
8106         code stream.
8108 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
8110         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
8112         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
8113         optimization in the AOT case.
8114         
8115 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
8117         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
8118         
8119         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
8121         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
8123         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
8125         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
8126         is created by the inlined delegate ctor.
8128         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
8130         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
8132 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
8134         * cpu-x86.md: Fix the length of ckfinite.
8136 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
8138         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
8139         
8140         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
8141         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
8143         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
8145         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
8146         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
8148 2007-11-28  Martin Baulig  <martin@ximian.com>
8150         * mini-x86.c
8151         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
8152         after creating the trampoline.
8154 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
8156         * aot-runtime.c (load_aot_module): Check runtime version if needed.
8158         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
8159         the same version.
8161         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
8162         instead of the calling method to help AOT.
8164         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
8166 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
8168         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
8169         is defined.
8171 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
8173         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
8174         
8175         * aot-compiler.c (compile_method): Correct check for generic method definitions.
8176         (encode_method_ref): No need to handle generic method definitions specially.
8178         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
8180         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
8181         decode_klass_info.
8183         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
8184         encode_klass_info.
8185         (compile_method): Enable generic sharing.
8187 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
8189         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
8190         (mini_method_compile): Add preliminary support for AOTing shared generic code.
8192         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
8193         generic code.
8195         * mini-trampolines.c: Fix a warning.
8197         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
8198         NEW_PCONST.
8199         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
8200         (generic_class_is_reference_type): Remove unused function.
8202         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
8203         in the generic vtable trampoline case.
8205         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
8206         
8207         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
8208         return an AOT method based on a vtable slot.
8210         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
8212         * mini.c (mini_get_vtable_trampoline): Export this.
8214 2007-11-22  Martin Baulig  <martin@ximian.com>
8216         * debug-debugger.h
8217         (MonoDebuggerInfo): Move `debugger_version' up.
8219 2007-11-22  Martin Baulig  <martin@ximian.com>
8221         * mini-amd64.c
8222         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
8224         * mini-trampolines.c
8225         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
8226         after compiling the method.
8228 2007-11-20  Martin Baulig  <martin@ximian.com>
8230         * debug-mini.c
8231         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
8232         (mono_debugger_remove_breakpoint): Likewise.
8233         (mono_debugger_check_breakpoints): Likewise.
8235         * debug-debugger.c: Implement the new breakpoint interface here.
8237 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
8239         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
8240         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
8242         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
8244 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
8246         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
8248         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
8249         mini.c.
8251         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
8252         mini.c.
8254         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
8255         returning a vtype in a register.
8257         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
8258         here from the arch specific code.
8260         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
8261         mini.c.
8263         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
8264         (mono_arch_emit_prolog): Increment maximum prolog size.
8266         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
8267         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
8269         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
8270         MonoGenericSharingContext.
8272         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
8273         MonoGenericSharingContext. Allocate memory from the cfg mempool.
8275 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8277         * mini.c, mini.h, generic-sharing.c: Functions for producing code
8278         which extract fields out of the runtime generic context.  Full
8279         sharing of the NEWARR opcode.
8281 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8283         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
8284         --enable-minimal=ssa.
8286 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8288         * mini-trampolines.c (mono_delegate_trampoline): Update after 
8289         mono_marshal_get_delegate_invoke () signature change.
8291 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8293         * mini.c: Removed the shared context in favor of the generic
8294         sharing context.  Allocate the MonoJitInfo structure with room for
8295         the generic sharing context if it's needed.
8297         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
8298         domain-internals.h now.
8300         * mini-x86.c: Pass the generic sharing context to get_call_info ().
8302         * generic-sharing.c: Several changes for working without a shared
8303         context and instead operating on open types instead.
8305 2007-11-12  David S. Miller  <davem@davemloft.net>
8307        * inssel-sparc.brg: Fix double instruction emit.
8309 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8311         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
8312         Get/Set/Address methods.
8313         
8314         * mini.c debug-debugger.c mini-trampolines.c: Update after 
8315         mono_marshal_get_delegate_invoke signature change.
8317 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8319         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
8320         This can happens with dynamic methods. Fixes the other bug in #322722.
8322 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
8324         * tramp-arm.c (mono_arch_patch_callsite): Support patching
8325         BX call sequence.
8327         * mini-arm.c (arm_patch): Implement patching of BX call
8328         sequence. Fixes one of the bugs in #322722.
8330 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
8332        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
8333        under Linux.  We only need to flush every 32-byte cache line.    
8335 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8337         * mini.c:
8338         move_basic_block_to_end: Add branches when needed, eventually creating
8339         a new BB.
8340         optimize_branches: added a parameter that tells if it's ok to create
8341         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
8342         and avoid calling move_basic_block_to_end when it's not ok.
8343         Fixes bug 318677.
8345 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8347         * mini.c: Abort inlining call to InitializeArray if something
8348         looks wrong.  Let the icall handle it, which now has proper safety
8349         checks.
8351 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8353         * mini.c (mono_spill_call): add support for soft-float.
8355         * mini.c (mono_method_to_ir): add support for soft-float
8356         to inlined functions that return float.
8358         * mini.c (mono_method_to_ir): add support for soft-float
8359         to cee_stsfld opcode on float fields.
8361 2007-11-05  Geoff Norton  <gnorton@novell.com>
8363         * mini-x86.h: Fix the structure access for X86 Leopard.
8366 2007-11-05  Martin Baulig  <martin@ximian.com>
8368         * mini-trampolines.c
8369         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
8370         after compiling the method to notify the debugger.
8372 2007-11-05  Martin Baulig  <martin@ximian.com>
8374         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
8376 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
8378         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
8379         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
8381 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
8383         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
8384         native-to-managed wrappers.
8385         
8386 2007-11-01  Geoff Norton  <gnorton@novell.com>
8388         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
8389         members.
8391 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
8393         * mini.c, mini-x86.c: when getting back from unmanaged code
8394         to managed via a marshaled delegate we also need to set the
8395         right domain.
8397 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
8399         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
8400         for amd64.
8402 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8404         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
8405         let the debugger or other external agents to tell the JIT when
8406         a sw breakpoint has been inserted in the code that the JIT needs
8407         to be able to inspect.
8409 2007-10-31  Martin Baulig  <martin@ximian.com>
8411         * debug-debugger.h
8412         (MonoDebuggerInfo): Remove `runtime_class_init'.
8414 2007-10-30  Martin Baulig  <martin@ximian.com>
8416         * debug-mini.h
8417         (mono_debugger_thread_created): Added `MonoThread *' argument.
8418         (mono_debugger_extended_notification): New public method.
8419         (mono_debugger_trampoline_compiled): New public method.
8421         * debug-mini.c
8422         (MonoDebuggerThreadInfo): Added `thread' and
8423         `extended_notifications' fields.
8425         * debug-debugger.c
8426         (debugger_executable_code_buffer): New static variable.
8428         * debug-debugger.h
8429         (MonoDebuggerInfo): Added `executable_code_buffer',
8430         `executable_code_buffer_size', `breakpoint_info_area',
8431         `breakpoint_table' and `breakpoint_table_size'.
8433 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
8435         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
8436         that IP  either is an unused value or the vtable pointer. IMT 
8437         calls use vtable + offset now. Reduced by almost half the size
8438         of IMT entries.
8440 2007-10-26  Jonathan Chambers <joncham@gmail.com>
8442         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
8443         defines to access param registers. Replace long usage with
8444         gsize as sizeof(long) != sizeof(void*) on Win64.
8446         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
8447         on Win64. Fix intrinsic, use _AddressOfReturnAddress
8448         instead of non-existant _GetAddressOfReturnAddress.
8450         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
8451         param registers. Save/restore %rdi and %rsi in MonoLMF.
8453         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
8454         param registers. Modify (throw_exception) signature to take 
8455         %rdi and %rsi on Win64. 
8457         Code is contributed under MIT/X11 license.
8459 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8461         * helpers.c: unlink debugging output files.
8463 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8465         * mini.c: Move mono_create_ftnptr () to object.c.
8467 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8469         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
8470         optional. This function can now be used to disassemble code generated
8471         outside the JIT such as trampolines and IMT thunks.
8473         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
8475         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
8476         vtable pointer from a ldr instruction.
8478         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
8479         new IMT call sequence.
8481         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
8482         call sequence for interface invocations.
8484         * mini-arm.c (mono_arch_emit_imt_argument): added, required
8485         for imt support. This function is empty since IMT on ARM requires no
8486         special handling on the IR side.
8488         * mini-arm.c (mono_arch_find_imt_method): added, required for
8489         imt support.
8491         * mini-arm.c (mono_arch_find_this_argument): added, required
8492         for imt support.
8494         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
8495         a ldr instruction to load a value stored in the code stream.
8497         * mini-arm.c (mono_arch_build_imt_thunk):added, required
8498         for imt support.
8501 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8503         * mini.c (mini_init): Install the jump trampoline callback.
8505 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8507         * mini-trampolines.c: handle synchronized methods with the common
8508         vtable trampoline (bug #335601).
8510 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
8512         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
8514         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
8515         64 bit platforms.
8517         * mini-ia64.h mini-ia64.c: Add support for IMT.
8519         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
8520         prolog. Fixes #331958.
8522 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
8524         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
8526 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8528         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
8529         trampoline.
8531 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8533         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
8534         trampoline.
8536 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
8538         * mini-x86.c, mini-x86.h: x86 support for the common vtable
8539         trampoline.
8541 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
8543         * mini-trampolines.c: changed the magic rampoline to understand
8544         the common vtable trampoline method: the method to invoke is
8545         determined by the vtable displacement of the call.
8547 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8549         * mini.c, mini.h: register the common vtable trampoline if the
8550         architecture supports it.
8552 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8554         * cpu-amd64.md: use the correct max length for tls_get.
8556 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
8558         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
8559         CEE_STELEM_ANY. Fixes #333696.
8561 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
8563         * exceptions-x86.c: provide more graceful handling of the case where
8564         we followed a bogus function pointer from managed code (bug #332866).
8566 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8568         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
8569         replaces the generic_shared flag and will carry more information
8570         in the future.
8572         * generic-sharing.c: Added mini_type_stack_size() which allows
8573         allows open types if given a generic sharing context.
8574         mini_get_basic_type_from_generic() takes a
8575         MonoGenericSharingContext* instead of a MonoCompile* now.
8577         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
8578         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
8579         mini-sparc.c, mini-x86.c: Trivial changes required by the two
8580         changes above.  Just passing arguments through to the right
8581         places.
8583 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8585         * mini-arm.c: unify the call emission to emit_code_seq().
8587 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
8589         * tramp-arm.c: reduced the trampoline size.
8591 2007-10-10  Mark Probst  <mark.probst@gmail.com>
8593         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
8594         variable handling out of arch-specific code.
8596 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
8598         * mini-arm.c: implemented fast delegate dispatch.
8600 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
8602         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
8603         that fp elimination is turned off if the space required by locals is too
8604         big. Fixes #331958.
8606 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8608         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
8609         ARM to the new style trampoline.
8611 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
8613         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
8615         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
8617 2007-10-09  Martin Baulig  <martin@ximian.com>
8619         * debug-debugger.h
8620         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
8621         `field_info_offset_offset'.     
8623 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
8625         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
8626         removed more internal usage of the r11 register and made it available
8627         to the register allocator.
8629 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8631         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
8632         when sharing generics and treat type variables as references.
8634 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8636         * mini-ppc.c: started removing the internal uses of register r11
8637         to eventually allow the register allocator to manage it as an
8638         additional available register.
8640 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
8642         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
8644 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
8646         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
8647         specific trampolines as they are not performance critical as a jump
8648         target (maybe align as before only for AOT code?). This saves about
8649         200 KB of native code on x86 for monodevelop startup.
8651 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8653         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
8654         monodevelop startup.
8656 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
8658         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
8660         * mini-sparc.h mini-sparc.c: Implement IMT support.
8662         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
8663         its smaller and doesn't clobber sparc_g1.
8665         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
8667 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8669         * mini-ppc.c: optimized the size of the IMT thunks a bit.
8671 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
8673         * mini-ppc.c: implemented fast delegate invocation.
8675 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8677         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
8679 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8681         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
8682         code to the new style trampoline in preparation for IMT support.
8684 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8686         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
8687         systems already. This also reduces the specific trampiline sizes and
8688         prepares for the use of r12 as the IMT identifier register.
8690 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8692         * mini-mips.h: endianess fix (simplified from a patch by
8693         Thomas Kunze <thommy@tabao.de>, bug #323737).
8695 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8697         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
8698         to access ucontext fields and enable netbsd support
8699         (partially from Magnus Henoch <mange@freemail.hu>).
8701 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8703         * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
8704         use the preprocessor from the CPP env var if it is set.
8706 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8708         * mini-trampolines.c: fixed an assertion and moved it earlier in the
8709         code, before interface_offset gets used.
8711 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
8713         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
8714         mono_class_setup_vtable () before accessing klass->vtable.
8716 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
8718         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
8719         hackish.
8721 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8723         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
8724         IMT slots (this saves hundreds of KB of memory in programs like
8725         IronPython and Monodevelop).
8727 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8729         * mini.c: print the delegate counter.
8731 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
8733         * mini-x86.c: make it easier to enable the debugging code for IMT
8734         slots.
8736 2007-09-28  Martin Baulig  <martin@ximian.com>
8738         * debug-debugger.h
8739         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
8740         `mono_method_klass_offset' and `mono_method_token_offset'.
8742 2007-09-20  Mark Probst  <mark.probst@gmail.com>
8744         * mini.c: First generics sharing implementation.  Can only share
8745         in very simple cases.  If sharing doesn't work it falls back to
8746         dedicated compilation.
8748         * mini.h: Flag in MonoCompile to specify whether generic
8749         compilation is shared.  Flags enum for marking which generic inst
8750         of a context is used.  Prototypes for helper functions.
8752         * generic-sharing.c: Helper functions for generic method sharing.
8754         * optflags-def.h: Optimization flag (gshared) for enabling generic
8755         method sharing added.
8757         * Makefile.am: generic-sharing.c added.
8759 2007-09-19 Daniel Nauck <dna@mono-project.de>
8761         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
8763 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
8764         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
8765         fixes bug 325507.
8767 2007-09-19  Martin Baulig  <martin@ximian.com>
8769         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
8770         mono_debug_cleanup() is now part of mono_cleanup().
8772 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
8774         * driver.c (mono_main): Fix a warning.
8776 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
8778         * aot-compiler.c: Optimize various parts when processing large assemblies.
8779         Fixes ##325568.
8781         * mini.c (mono_patch_info_hash): Improve hash function.
8783 2007-09-14  Jonathan Chambers <joncham@gmail.com>
8785         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
8786         
8787         Code is contributed under MIT/X11 license.
8789 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8791         * mini.c (mini_init): Fix a leak.
8793         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
8795 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8797         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
8799 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
8801         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
8803 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
8805         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
8806         variance tests.
8808         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
8810         * mini.c (handle_alloc): Enable managed allocators in AOT code.
8812         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
8814         * aot-runtime.c (decode_patch_info): Ditto.
8816 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8818         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
8819         static case. Cache delegates in architecture specific code, 
8820         based on number of parameters.
8821         
8822         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
8823         in architecture specific code, based on number of parameters.
8824         
8825         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
8826         caching happen in architecture specific code now.
8827         
8828         Code is contributed under MIT/X11 license.
8830 2007-09-12  Jonathan Chambers <joncham@gmail.com>
8832         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
8833         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
8834         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
8836         Code is contributed under MIT/X11 license.
8838 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
8839         * mini.c: (mono_thread_abort) Fixed bug #82416.
8841 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8843         * mini.: hook the new managed GC allocation feature into the JIT.
8845 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
8847         * mini.c: implementation for the new runtime tls opcode.
8849 2007-09-11  Martin Baulig  <martin@ximian.com>
8851         * debug-debugger.h
8852         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
8853         `mono_method_inflated_offset'.
8855 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
8857         * driver.c mini.h mini.c: Add a new devel command line option for injecting
8858         async exceptions into a method.
8860         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
8861         purpose of testing whenever the unwinder works at every instruction.
8863 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8865         * mini.c: check accessibility of method used in ldftn (fixes
8866         bug #82635).
8868 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
8870         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
8872         * inssel.brg: Fix a warning.
8874 2007-09-03  Martin Baulig  <martin@ximian.com>
8876         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
8877         now takes the `main_method' as argument.
8879 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
8881         * cpu-sparc.md (endfilter): Add missing src1:i argument.
8883 2007-08-30  Jonathan Chambers <joncham@gmail.com>
8885         * driver.c: include the cil-coff.h header on Windows.
8886         
8887         Code is contributed under MIT/X11 license.
8889 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
8891         * mini.c, driver.c: don't include the cil-coff.h header.
8893 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8895         * mini.c: flag places that needs fixes fo soft-float support.
8897 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
8899         * mini.h, inssel-float.brg: fix soft-float constant loads on big
8900         endian systems (partially from Dean Jenkins, bug #81924).
8902 2007-08-28  Mark Probst  <mark.probst@gmail.com>
8904         * mini.c (check_linkdemand): Remove embedded reference object in
8905         call to LinkDemandSecurityException.
8906         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
8907         with an IntPtr instead of a reference object.
8909 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
8911         * mini.c (handle_initobj): Handle alignment properly.
8913         * inssel.brg (mini_emit_memset): Ditto. 
8915         * inssel.brg (mini_emit_memcpy): Ditto. 
8917         * inssel-sparc.brg: Ditto.              
8919         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
8921 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
8923         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
8924         exceptions raised in unmanaged code. Fixes part of #82594.
8926 2007-08-24  Mark Probst  <mark.probst@gmail.com>
8928         * mini.c (mono_method_to_ir), declsec.c
8929         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
8931 2007-08-22  Martin Baulig  <martin@ximian.com>
8933         * debug-mini.h
8934         (MonoDebuggerThreadInfo): New typedef.
8935         (mono_debugger_thread_table): New global variable.
8936         (mono_debugger_thread_created): New public function.
8937         (mono_debugger_thread_cleanup): New public function.
8939         * debug-debugger.h
8940         (MonoDebuggerInfo):
8941         - removed `get_current_thread' and `lookup_assembly'.
8942         - removed `data_table'.
8943         - added `thread_table'.
8945         * mini.c
8946         (mono_thread_start_cb): Call mono_debugger_thread_created().
8947         (mono_thread_attach_cb): Likewise.
8948         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
8949         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
8950         initial domain.
8952         * driver.c (mono_main): Move mono_debug_init() up, before calling
8953         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
8955 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8957         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
8958         together when passing several arguments of type double (gives a small
8959         speedup and saves a few bytes of generated code).
8961 2007-08-20  Jb Evain  <jbevain@novell.com>
8963         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
8965 2007-08-20  Jb Evain  <jbevain@novell.com>
8967         * mini.c (mono_method_to_ir): throw MethodAccessException
8968         and FieldAccessException instead of InvalidProgramException.
8970 2007-08-20  Mark Probst  <mark.probst@gmail.com>
8972         * mini.c: CoreCLR security checks.
8974         * mini.h: Removed MonoSecurityMode (moved to
8975         metadata/security-manager.h) and mono_security_mode global var
8976         (replaced by set/get functions in security-manager.h).
8978         * driver.c: Added "core-clr-test" security mode for testing.  Used
8979         set-function for setting security mode.
8981 2007-08-17  Mark Probst  <mark.probst@gmail.com>
8983         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
8984         the new jit_info_table.
8986         * driver.c: Test code for the new jit_info_table (enabled by the
8987         define MONO_JIT_INFO_TABLE_TEST).
8989 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
8991         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
8992         detection of call <REG> instruction sequence. Fixes build on freebsd.
8994 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
8996         * mini-exceptions.c: Fix a warning.
8998 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
9000         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
9001         stack overflow handling code on amd64 too.
9003         * mini-exceptions.c (mono_setup_altstack): Make this use 
9004         mono_thread_get_stack_bounds ().
9006         * mini-x86.h: Disable sigaltstack on solaris x86.
9008 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
9010         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
9012 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
9014         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
9016 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
9018         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
9020         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
9022 2007-08-03  Neale Ferguson <neale@sinenomine.net>
9024         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
9025         due to alignment.
9027 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9029         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
9030         to be emitted (bug #82281).
9032 2007-08-01  Martin Baulig  <martin@ximian.com>
9034         Merged the `debugger-dublin' branch.
9036         * debug-debugger.h (MonoDebuggerInfo):
9037         Removed the `old_*' compatibility entries.
9038         Added `debugger_version' and `data_table'.
9039         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
9040         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
9042         * debug-mini.c
9043         (MiniDebugMethodBreakpointInfo): Add `address_list'.
9044         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
9045         instead of a `gconstpointer'.
9046         (mono_debugger_insert_method_breakpoint): Return a
9047         `MonoDebugMethodAddressList *'.
9049 2007-06-28  Martin Baulig  <martin@ximian.com>
9051         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
9053 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
9055         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
9056         __builtin_frame_address () since it is broken on older gcc versions.
9058 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
9060         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
9061         on the stack overflow handling and made the managed stack overflows
9062         catchable in most cases using soft guard pages.
9063         * exceptions-x86.c: added code to restore the protection in the soft
9064         guard pages at the end of exception handling.
9066 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
9068         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
9070 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
9072         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
9073         exception handling.
9075 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
9077         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
9078         signal handling support until it has been ported to the new mechanism.
9079         * mini.c: fixed stack overflow detection and use the new
9080         architecture code  to handle signals on the altstack.
9082 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9084         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
9085         stack overflows on the alt stack.
9087 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
9089         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
9090         stack overflows on the alt stack.
9092 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
9094         * exceptions-ppc.c: cleanup preparing for altstack support.
9096 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9098         * exceptions-arm.c: cleanup preparing for altstack support.
9100 2007-07-27  Mark Probst  <mark.probst@gmail.com>
9102         * mini.c (print_jit_stats): Output hazard pointer stats.
9104 2007-07-26  Mark Probst  <mark.probst@gmail.com>
9106         * driver.c, mini.c: Replaced security mode flags with a single
9107         enum variable.
9109 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9111         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
9113 2007-07-25  Mark Probst  <mark.probst@gmail.com>
9115         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
9116         (which doesn't do anything yet) for activating Core CLR
9117         (Silverlight) security.
9119 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
9121         * mini-codegen.c: work around a possible gcc bug on arm.
9123 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9125         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
9126         message for platforms that don't support AOT compilation.
9128 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
9130         * mini.h, mini.c, driver.c: temporary smcs hack.
9132 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
9134         * mini-arm.h, mini-arm.c: arm EABI fixes.
9136 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
9138         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
9139         case.
9141         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
9142         trampolines taking a method argument.
9144         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
9146         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
9147         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
9149         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
9150         JIT compilation throws an exception. Fixes #82050.
9152 2007-07-19  Mark Probst  <mark.probst@gmail.com>
9154         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
9155         with the MONO_EXCEPTION_ defines.
9157 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
9159         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
9160         #82117.
9161         
9162         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
9163         the cause of an assertion.
9165 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
9167         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
9168         removed.
9170 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
9172         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
9173         assert. Should fix #82103.
9175 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
9177         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
9178         here too. Fixes #82095.
9180         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
9181         addresses.
9183         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
9185         * mini-amd64.h: Enable IMT for amd64.
9186         
9187         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
9189 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
9191         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
9193 2007-07-12  Mark Probst  <mark.probst@gmail.com>
9195         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
9196         as soon as check_linkdemand sets an exception_type.
9198 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9200         * mini-x86.c: fixed offsets for IMT call sequence.
9201         * mini-x86.h: enable IMT again.
9203 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9205         * trace.c (mono_trace_enter_method): Decode MonoType too.
9207         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
9209         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
9211         * mini-amd64.c: Add preliminary IMT implementation.
9212         
9213 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
9215         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
9216         understand the new IMT-base interface invocation (thanks to
9217         Daniel Nauck for the report and the remote debugging session).
9219 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9221         * mini-x86.c: size and speed optimizations for the IMT bsearch.
9223 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
9225         * Makefile.am (aotcheck): Make this actually use the AOTed code.
9227 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
9229         * mini-trampolines.c: implement AOT IMT support.
9230         * mini-x86.h: enable IMT support for wider testing.
9232 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9234         * inssel.brg (emit_imt_argument): Add aot support here.
9236         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
9238 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9240         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
9241         of the IMT implementation, partially from massi, with my
9242         implementation of the bsearch sequence. Disabled by default until
9243         the AOT code is implemented.
9245 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
9247         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
9249         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
9251 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9253         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
9254         arch-independent IMT JIT code from Massimiliano
9255         Mantione (massi@ximian.com) with small cleanups from me.
9257 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9259         * Makefile.am: fix svn invocation to get the svn revision to be
9260         independent of the local language (build fix).
9262 2007-07-09  Mark Probst  <mark.probst@gmail.com>
9264         * mini.c (inline_method): Reset cfg->exception_type if the
9265         inlining is aborted.  Fixes: 82049.
9267 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
9269         * mini.c: remove assert from exception handling code when exception_ptr
9270         is not set.
9272 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9274         * mini.c (mono_codegen): Add an assert.
9276         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
9277         enter and leave code.
9278         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
9280 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9282         * mini-ppc.c: fixed memory corruption for localloc(0)
9283         (bug #81852).
9285 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
9286         
9287         * mini.c: Fix warnings.
9289 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9291         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
9292         to emit better double->int conversions.
9294 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9296         * mini.c: the provided Min/Max optimizations are valid for unisgned
9297         ints.
9299 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
9301         * 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
9303 2007-06-28  Miguel de Icaza  <miguel@novell.com>
9305         * mini.c (mono_running_on_valgrind): Add support for reporting the
9306         method and  its boundaries to valgrind.
9308 2007-06-28  Martin Baulig  <martin@ximian.com>
9310         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
9312 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
9314         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
9316         * generic.2.cs: Add new test case.
9318 2007-06-25  Martin Baulig  <martin@ximian.com>
9320         Merged the `debugger-dublin' branch.
9322         * debug-mini.c
9323         (mono_debugger_insert_method_breakpoint): New public method.
9324         (mono_debugger_remove_method_breakpoint): Likewise.
9325         (mono_debugger_check_breakpoints): New static method.
9326         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
9328         * debug-debugger.h (MonoDebuggerInfo):
9329         Renamed (to keep backward compatibility in the vtable):
9330         `insert_breakpoint' -> `old_insert_breakpoint'.
9331         `remove_breakpoint' -> `old_remove_breakpoint'.
9332         `create_string' -> `old_create_string'.
9333         `lookup_class' -> `old_lookup_class'.
9334         `lookup_type' -> removed; changed into a dummy field.
9335         `lookup_assembly' -> `old_lookup_assembly'.
9336         Added (same functionality, but different signature):
9337         `create_string', `lookup_class', `lookup_assembly'
9338         Added new:
9339         `get_method_addr_or_bpt', `remove_method_breakpoint',
9340         `runtime_class_init'.
9342         * debug-debugger.c: Merged the `debugger-dublin' branch.
9344 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
9346         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
9347         well.
9348         (peephole_pass): Likewise.
9350 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9352         * driver.c: hopefully make setaffinity work also for ancient
9353         versions of linux.
9355 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
9357         * driver.c : win32 build fix.
9359 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
9361         * driver.c: check for the MONO_NO_SMP env var and bind to a single
9362         processor if it is set.
9364 2007-06-21  Martin Baulig  <martin@ximian.com>
9366         * debug-mini.h: New file.
9368         * debug-mini.c
9369         (mono_debugger_insert_breakpoint_full): Moved here from
9370         ../metadata/mono-debug-debugger.c.
9371         (mono_debugger_remove_breakpoint): Likewise.
9372         (mono_debugger_breakpoint_callback): Likewise.
9374 2007-06-15  Raja R Harinath  <rharinath@novell.com>
9376         * jit-icalls.c (mono_helper_compile_generic_method): Update to
9377         changes in MonoGenericClass.
9379 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
9381         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
9383 2007-06-14  Raja R Harinath  <rharinath@novell.com>
9385         * jit-icalls.c (mono_helper_compile_generic_method): Update to
9386         removal of MonoGenericMethod.
9388 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9390         * mini-exceptions.c: hooks for the exception events profiling API.
9392 2007-06-14  Randolph Chung  <tausq@debian.org>
9394         * Makefile.ma: Add hppa target.
9395         * mini-arch.h: Include mini-hppa.h
9396         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
9397         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
9398         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9400 2007-06-14  Randolph Chung  <tausq@debian.org>
9402         * inssel.brg: Add rules for "chained" compare-branch operations so that
9403         a single compare op can affect multiple branches.  Adjust cost for
9404         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
9405         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
9406         cost for some rules so that they can more easily be overridden by
9407         per-arch rules (with fixes from lupus).
9408         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9410 2007-06-13  Randolph Chung  <tausq@debian.org>
9412         * mini-ops.h: Reorder branch ops so that they match the order of the
9413         corresponding CEE_* ops.  The code expects them this way.
9414         Add new ops for HPPA target.
9415         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9417 2007-06-13  Randolph Chung  <tausq@debian.org>
9419         * mini-exceptions.c: Handle cases where the stack grows towards
9420         larger addresses.
9421         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9423 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9425         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
9426         counter.
9427         * driver.c: explain where a non-matching corlib is found.
9429 2007-06-13  Mark Probst  <mark.probst@gmail.com>
9431         * mini.c (print_jit_stats): Output dynamic code allocation stats.
9433 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
9435         * mini-exceptions.c: Generate a method profile leave event during
9436         an exception to ensure that the profiler gets notified.
9438 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
9440         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
9441         branch.
9443         * cpu-amd64.md: Add long_and/or/xor opcodes.
9445 2007-06-06  Wade Berrier  <wberrier@novell.com>
9447         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
9448         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
9449         length of instruction shr_imm (expected 8, got 10)
9451 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
9453         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
9455 2007-06-06  Mark Probst  <mark.probst@gmail.com>
9457         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9458         MonoInternalHashTable again (fixed bug in the internal hash table
9459         code).
9461 2007-06-06  Mark Probst  <mark.probst@gmail.com>
9463         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
9464         Have to figure out what makes it crash the SWF regression.
9466 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
9468         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
9470 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9472         * mini.c: optimize out the type check when storing null in a
9473         reference array.
9475 2007-06-04  Mark Probst  <mark.probst@gmail.com>
9477         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9478         MonoInternalHashTable.
9480 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9482         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
9483         signed integer methods.
9485 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
9487         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
9488         permanently since the current approach doesn't work.
9490 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
9492         * inssel.brg (stmt): Only call delegate->invoke_impl if 
9493         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
9495 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
9497         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
9498         the sreg2==rdx case.
9499         
9500         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
9501         account if it contains a rex prefix.
9502         (peephole_pass): Handle OP_FMOVE as well.
9504 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
9506         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
9507         as it causes regressions.
9509 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
9511         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
9512         static case as well.
9514         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
9516         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9517         (mono_arch_get_this_arg_from_call): Ditto.
9519         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
9521         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
9522         invoke_impl field.
9524         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9525         (mono_arch_get_this_arg_from_call): Ditto.
9527         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
9528         
9529         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
9530         try to create optimized invoke code and use that for further invocations. 
9531         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
9533         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
9535 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
9537         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
9538         sealed classes or methods.
9539         *devirtualization.cs: tests for the new optimization
9541 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
9543         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
9544         by the update_volatile () function.
9546 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
9548         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
9549         require it.
9551         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
9553 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
9555         * mini.c: Add configure checks for header files.
9556         * mini-x86.c: Add configure checks for header files.
9557         * trace.c: Add configure checks for header files.
9558         * aot-runtime.c: Add configure checks for header files.
9559         * aot-compiler.c: Add configure checks for header files.
9560         * driver.c: Add configure checks for header files.
9561         * mini-codegen.c: Add configure checks for header files.
9562         
9563         Code is contributed under MIT/X11 license.
9565 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
9567         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
9568         icompare_imm -128 + op_iclt. Fixes #81703.
9570 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
9572         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
9574 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
9576         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
9577         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
9578         so that all isinst checks now use "interface_bitmap".
9580 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
9582         * cpu-amd64.md (jmp): Fix a warning.
9584         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
9586         * basic.cs: Add new regression test.
9588         * basic.cs: Remove test which is now in basic-long.cs.
9590         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
9592         * basic-long.cs: Add new test.
9593         
9594 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
9596         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
9598 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
9600         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
9602         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
9603         places.
9604         
9605         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
9606         throwing code a bit.
9608         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
9609         the exception throwing code a bit.
9611         * mini-x86.c (get_call_info): Allocate result from a mempool.
9613 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
9615         * aot-compiler.c (find_typespec_for_class): Fix the assert.
9617         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
9619         * mini.h (MonoCompile): Add 'token_info_hash' field.
9621         * mini.c: Save token->method associations during compilation so the AOT 
9622         compiler can use it.
9623         
9624         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
9625         which reference generic classes and methods.
9627 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
9629         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
9631         * aot-compiler.c (compile_method): Fix a typo in a comment.
9633         * aot-runtime.c (decode_cached_class_info): Skip generic types.
9635         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
9636         everything generic.
9638         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
9640 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
9642         * mini.h (MonoCompile): Add 'args' field.
9644         * mini.c (mono_compile_create_vars): Store variables representing the arguments
9645         into cfg->args.
9647         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
9649 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
9651         * mini.c (mono_compile_get_interface_var): Remove this unused function.
9653         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
9655         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
9656         opcodes for some opcodes.
9658         * mini.h *.brg *.c: Use the new opcodes.
9660 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
9662         * mini.h: Bumped aot revision.
9664         * inssel.brg: modified code generation of type checks for interfaces
9665         to use the new "MonoClass.interface_bitmap" instead of the old
9666         "MonoClass.interface_offsets".
9668 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
9670         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
9672 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
9674         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
9675         64 bit platforms.
9677 2007-04-27  Neale Ferguson <neale@sinenomine.net>
9679         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
9681 2007-04-27  Wade Berrier  <wberrier@novell.com>
9683         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
9684         mini.h) to fix build.
9686 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
9688         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
9689         
9690         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
9691         causes the corlib unit tests to fail.
9693 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
9695         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
9697         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
9699         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
9700         opcodes to the comparison relations.
9702         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
9703         opcodes to their types.
9704         
9705         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
9707         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
9708         it in cfg->arch.cinfo.
9710         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
9712         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
9713         cfg->cil_offset_to_bb.
9715 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
9717         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
9718         created becase of initlocals.
9720 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
9722         * mini-alpha.c cpu-alpha.md: More alpha port work from 
9723         Sergey Tikhonov <tsv@solvo.ru>.
9725 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
9727         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
9729 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
9731         * cpu-s390.md (break): Correct the length of break instruction.
9733 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9735         * mini.c: fix a couple of soft-float issues and comments.
9737 2007-04-15  Miguel de Icaza  <miguel@novell.com>
9739         * trace.c (is_filenamechar): - is also a filename char.
9741 2007-04-15  Neale Ferguson <neale@sinenomine.net>
9743         * mini-s390.c: Correct checking for enum type in return value processing.
9745 2007-04-14  Raja R Harinath  <rharinath@novell.com>
9747         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
9748         (version.h): Makefile is in the build directory.
9750 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
9752         * mini-amd64.h: fix for assertion failure on Solaris/amd64
9754 2007-04-11  Martin Baulig  <martin@ximian.com>
9756         * mini.c (can_access_member): Fix handling of generic classes;
9757         fixes #81259.
9759 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
9761         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
9763 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
9765         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
9767 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
9769         * mini-codegen.c: make sure the right spill amount is
9770         used for fp or integer registers (fixes the float_sub_spill() on ppc).
9772 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
9774         * mini-ppc.c: fixes for the fp_branch_nan test.
9776 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
9778         * basic.cs: Comment out new test which still fails on ia64.
9780 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9782         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
9784 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9786         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
9788 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
9790         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
9791         on 64 bit machines. Fixes part of #80738.
9793         * basic.cs: Add regression test.
9795 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
9797         * inssel.brg basic.cs: Revert previous change to fix build.
9799         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
9800         platforms.
9801         
9802         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
9804         * basic.cs: Add new regression test.
9806 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
9808         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
9809         many arguments.
9811 2007-03-16  Neale Ferguson <neale@sinenomine.net>
9813         * cpu-s390x.md: Correct length of break instruction.
9815 2007-03-16  Neale Ferguson <neale@sinenomine.net>
9817         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
9818         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
9820 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
9822         * *.c: Begin WIN64 port.
9823         * mini.c:  Use correct register in profiler.
9824         * mini-amd64.c: No inline assembly on Win64.
9825         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
9826         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
9827         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
9828         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
9829         mono_arch_ip_from_context for Win64.
9830         
9831         Contributed under MIT/X11 license.
9833 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
9835         * exceptions-amd64.c (seh_handler): Ditto.
9837         * exceptions-x86.c (seh_handler): Fix a memory leak.
9839 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
9841         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
9842         mini-s390x.c: fixed peephole optimizations to deal
9843         correctly with 1 and 2 byte reload avoidance.
9845 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9847         * cpu-s390.md, cpu-s390x.md: update localloc length.
9849 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9851         * cpu-g4.md: added missing descriptions.
9853 2007-03-14  Miguel de Icaza  <miguel@novell.com>
9855         *  Makefile.am: Add support so the tail tests are not executed on
9856         PowerPC as that is a known limitation of the PowerPC port.
9858 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
9860         * runmdesc.bat:  Move to msvc directory.
9861         
9862 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
9864         * runmdesc.bat:  Run executable that was produced by the current
9865         target and sent via an argument.
9866         
9867 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
9869         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
9870         #81102.
9872         * generics.2.cs: Add regression test.
9874 2007-03-09  Wade berrier  <wberrier@novell.com>
9876         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
9878 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
9880         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
9881         AOT code depends on this.
9883 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
9885         * mini.c: more precise tracking of types in the eval stack
9886         (part of fix for bug #81044).
9888 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
9890         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
9892         * aot-compiler.c (encode_patch): Remove an obsolete comment.
9894 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
9896         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
9898         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
9900 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
9902         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
9903         a pointer on 64 bit systems. Fixes #80190.
9905         * iltests.il: Add new regression test.
9907 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9909         * mini.c: inline a constant for Environment.IsRunningOnWindows.
9911 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
9913         * trace.c: Remove an erroneous alignemnt check when tracing.
9914           Fixes --trace on OSX86.
9916 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
9918         * mini-$(arch).h: initialize SP in context for all the archs.
9920 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
9922         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
9923         regressions in the thread tests.
9925 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
9927         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
9928         - fixed implementation of LOCALLOC opcode
9929         - implemented non-un compare for floats
9930         - code cleanup
9931         - implementation of FDIV and CKFINITE opcodes
9932         - fixes for latest mono updates
9933         - additional arch opcodes
9935 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
9937         * Makefile.am: simplify and merge rules for cross-compilation.
9939 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
9941         * local-propagation.c: Actually *apply* the fix for bug 80591...
9943 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9945         * mini-exceptions.c: backuot part of the last change
9946         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
9948 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
9949         * inssel.brg: Fix bug 59286.
9952 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
9954         * mini-exceptions.c: patch from Zoltan to correctly check for
9955         stack boundaries (using the stack register, not the frame register),
9956         fixes bugs #80724, #79717.
9958 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
9960         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
9961         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
9963         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
9964         presence of frame pointer elimination.
9966 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
9967         
9968         * mini-x86.h: NetBSD UCONTEX_REG defines.
9970 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
9972         * inssel-amd64.brg: Fix amd64 build.
9974 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
9976         * mini.h: remove extern to workaround what looks likes gcc bug 26905
9977         on amd64.
9979 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
9981         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
9982         ends.
9984         * mini-<ARCH>.c: Use mono_is_regsize_var ().
9986 2007-01-30 Mark Mason <mason@broadcom.com>
9988            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
9989            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
9990            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
9991            beginning support for CEE_JMP [not quite working yet]
9992            * tramp-mips.c: LMF handling now works
9993         
9994 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
9996         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
9998         * mini.h (NULLIFY_INS): New macro.
10000 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
10002         * mini.c: statistical profiler fix for windows, patch
10003         from Tor Lillqvist (tml@novell.com).
10005 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
10006         * local-propagation.c: Fix bug 80591.
10008 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
10010         * Makefile.am: put back the --export-dynamic option as with
10011         the previous gmodule flags (thanks to Robert Jordan).
10013 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
10015         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
10017         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
10018         simplify and speed up the local register allocator. Also rename some fields
10019         like iassign->vassign.
10020         
10021         * regalloc.c: Remove some functions which are no longer used since their
10022         inlined version is in mini-codegen.c.
10023         
10024         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
10026         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
10028 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
10030         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
10031         narrowing. Fixes #80622.
10033         * iltests.il: Add new regresssion test. 
10035 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10037         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
10038         debug-debugger.c, debug-debugger.h: warning fixes.
10039         * driver.c: updated copyright year and made it fit in one line.
10041 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
10043         * aot-runtime.c: updated to use mono-dl instead of gmodule.
10045 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
10047         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
10049         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
10051         * iltests.il: Add new test for bug #80507.
10053 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
10055         * mini-arm.h: use soft-float also on vfp for now.
10057 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10059         * mini.c: fix some more soft-float issues.
10061 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
10063         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
10065 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
10066         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
10067         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
10068         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
10070 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
10072         * mini-arm.c: typo fix.
10074 2007-01-23  Neale Ferguson <neale@sinenomine.net>
10076         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
10078 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
10080         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
10081         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
10083         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
10085         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
10087         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
10088         
10089         * inssel.brg: Fix a warning.
10091         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
10093         * abcremoval.c ssa.c ssapre.c: Update after this change.
10094         
10095         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
10097         * dominators.c (df_set): Use mono_bitset_union_fast.    
10099 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10101         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
10102         mini-codegen.c: reduce relocations and memory usage for the cpu
10103         description.
10105 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
10107         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
10109         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
10110         to reduce their size.
10112 2007-01-19 Mark Mason <mason@broadcom.com>
10114         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
10115         * mini-mips.c: more configuration macros, support long conditional branches, additional
10116         asserts, fix epilog instrumentation.
10117         * mini-mips.h: use standard stack walk
10118         * cpu-mips.md: increase size of div, rem and conditional branches
10119         
10120 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
10122         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
10123         to cpu spec data.
10125 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
10127         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
10128         (compile_method): Ditto.
10130         * aot-runtime.c (decode_klass_info): Ditto.
10132         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
10133         needed by the code generated by inssel.brg. Also fix a warning.
10135 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
10137         * mini.c: deal with enums that become genericinsts by
10138         being nested in a generic class (bug #79956).
10140 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
10142         * mini.c: match the generic definition to check for
10143         private access with generic types (bug #78431).
10145 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
10147         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
10148         to make life easier for people cross-compiling that insist on not
10149         using scratchbox.
10151 2007-01-17 Mark Mason <mason@broadcom.com>
10153         * inssel-long.brg: patch to deal with mips missing flags
10154         * inssel-long32-mips.brg: implement overflow checks
10155         * insset-mips.brg: implement overflow checks
10156         * mini-mips.h: implement conditional exception handling
10157         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
10158           Remove unused code, minor cleanups.
10159         * exceptions-mips.c: minor cleanups
10160         * mini-ops.h: add mips conditional exception ops
10161         * cpu-mips.md: add mips conditional exception ops
10163         
10164 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
10166         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
10167         to deal with mips missing of flags.
10169 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10171         * exceptions-ppc.c: execute fault handlers.
10173 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
10175         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
10177 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
10179         * mini.c: handle also floating point values in initialize_array.
10181 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10183         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
10184         array initialization and make it conditional on the intrins option.
10186 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10188         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
10189         relocations and put the patch info names close to the enum definition.
10191 2007-01-15 Mark Mason <mason@broadcom.com>
10193         * basic.cs, exceptions.cs: break up large tests to increase debugability.
10195 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
10197         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
10199 2007-01-12  Raja R Harinath  <rharinath@novell.com>
10201         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
10203 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10205         * Makefile.am: distribute the mips sources.
10207 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
10209         * mini-codegen.h: handle bug #80489 here, by excluding ecx
10210         directly.
10212 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
10214         * cpu-x86.md: back out for now as this triggers other regressions.
10216 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
10218         * cpu-x86.md: force src1 and dest regpair for long shift instructions
10219         to eax:edx, so ecx can't get allocated to them (bug #80489).
10221 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
10223         * mini.c, mini-exceptions.c: enabled running fault handlers
10224         (bug #80469).
10226 2007-01-03  Miguel de Icaza  <miguel@novell.com>
10228         * driver.c: If nothing fail, do not use the string "failed",
10229         because it makes it very annoying to view test result logs on the
10230         web. 
10232 2006-12-30  Miguel de Icaza  <miguel@novell.com>
10234         * debug-debugger.c (mono_debugger_main): Rename "main" to
10235         "main_method" to prevent a warning.
10237         Remove a warning for unused field.
10239 2006-12-28  Martin Baulig  <martin@ximian.com>
10241         * debug-debugger.c
10242         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
10244 2006-12-22  Martin Baulig  <martin@ximian.com>
10246         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
10247         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
10248         seperate `.mdb_debug_info' section, so we can access it from the
10249         debugger even if the binary is stripped.
10251         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
10252         from the `.mdb_debug_info' here to prevent the linker from
10253         removing that section.
10255         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
10256         mdb-debug-info64.s.
10258 2006-12-19  Robert Jordan  <robertj@gmx.net>
10260         * mini-x86: enable the code to return small structures in
10261         registers for FreeBSD as well. Fixes bug #80278.
10262         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
10264 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10266         * mini-x86.c: align the stack when calling the profiler
10267         function instrumenting the prolog (on OSX).
10269 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10271         * mini.c: emit a break opcode where Debugger.Break () is called.
10273 2006-12-13  Miguel de Icaza  <miguel@novell.com>
10275         * mini.c (mono_method_to_ir): Provide useful information on this
10276         assert, to prevent others from debugging like I did.
10278 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10280         * mini.c: enable code which was incorrectly commented
10281         (bug #80235).
10283 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10285         * mini-x86.c: enable on OSX, too, the code to return small
10286         structures in registers.
10288 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
10290         * mini-x86.c: remove the use of the dynamic code manager here, too.
10292 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
10294         * mini.h, debug-debugger.c, tramp-*.c: fixed 
10295         mono_debugger_create_notification_function() to use
10296         mono_global_codeman_reserve () instead of a dynamic code manager.
10298 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
10300         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
10301         ves_array_element_address() jit icall and use a generated
10302         managed method instead (which is about 4 times faster for a rank 3
10303         array access).
10305 2006-11-29  Mark Mason  <mason@broadcom.com>
10307         * basic-calls.cs: additional tests for passing
10308         structures as function arguments.
10310 2006-11-29  Mark Mason  <mason@broadcom.com>
10312         * mini-mips.h: disable custom exception handling
10313         * mini-mips.c: throw/rethrow should use jalr to call
10314         exception stubs.  Fixed bug with passing structures
10315         by value. More support for tracing floating point
10316         functions.
10318 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10320         * mini.c: fixed typo in the soft-float ldind.r4 handling
10321         (bug #80086).
10323 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10325         * mini.c, mini.h, driver.c: added --runtime command line
10326         option to select a different runtime than the autodetected one.
10327         * jit.h: added API for embedders to initialize with a specific
10328         runtime version.
10330 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
10332         * mini.c: handle also boxing of r4 values (bug #80024).
10334 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10336         * mini-ppc.c: force indirect calls until we reserve
10337         enough address space for all the generated code.
10339 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
10341         * exceptions-arm.c: workaround bugs in the libc definition
10342         of struct ucontext.
10344 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10346         * inssel.brg: fixes from me and Mark Mason.
10348 2006-11-23  Dick Porter  <dick@ximian.com>
10350         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
10351         semaphore display now we've fixed the initial value
10353 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10355         * inssel.brg: partially revert the last change to fix the build.
10357 2006-11-21  Mark Mason  <mason@broadcom.com>
10359         * inssel.brg: Add and use compare-and-branch macros to support
10360         architectures that do not have condition code registers (ie. MIPS).
10361         * *-mips.{c,brg,md}: Fix copyright statements
10363 2006-11-20  Mark Mason  <mason@broadcom.com>
10365         * Makefile.am: remove mini-codegen.c from list of MIPS sources
10366         * mini.c: Allow GET_CONTEXT to be specified by the arch port
10367         * mini.h: Added declaration for mono_print_ins()
10368         * mini-codegen.c: added ins_spec initializer for MIPS
10369         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
10370         vreg to be virtual and hreg to be non-virtual.
10371         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
10372         is not yet working/implemented correctly.
10373         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
10374         non-static, fixup calls to print_ins() from other parts in the file.
10376 2006-11-20  Mark Mason  <mason@broadcom.com>
10378         * basic-calls.cs: added tests for passing structures as arguments
10379         to calls.
10381 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10383         * inssel-long32.brg: optimize signed division by power of two.
10385 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
10387         * mini-arm.c: added support for interworking with thumb code
10388         (mono must be still be built using the ARM instruction encoding).
10390 2006-11-19  Miguel de Icaza  <miguel@novell.com>
10392         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
10393         verifier has different rules for it.   Fixes a few verifier issues
10394         in the test suite.
10396         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
10397         at the end, so people know what happened.
10399 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10401         * brach-opts.c: in optimize_exception_target() make sure we
10402         are in a catch clause (fixes bug #79871).
10404 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10406         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
10407         more soft-float support fixes.
10409 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
10411         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
10412         that are passed half on the stack and half in registers.
10414 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10416         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
10417         more mips integration work from Mark E Mason 
10418         <mark.e.mason@broadcom.com>.
10420 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10422         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
10423         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
10424         tramp-mips.c: added sources for the mips port, not
10425         integrated in the build yet. Contributed by
10426         Mark E Mason <mark.e.mason@broadcom.com>.
10428 2006-11-14  Neale Ferguson <neale@sinenomine.net>
10430         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
10432 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10434         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
10435         put the soft-float rules in its own file since it seems to
10436         break s390 compilation.
10438 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10440         * mini-arm.c: fixed wrnings.
10442 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
10444         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
10445         inssel-arm.brg: ARM support for soft-float.
10447 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10449         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
10450         loads and stores of 32 bit fp values.
10452 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
10454         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
10456         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
10457         works. Fixes #79852 and #79463.
10459 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10461         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
10462         more soft-float support WIP and fixes.
10464 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
10466         * mini-arm.c: some VFP updates.
10468 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
10470         * mini-exceptions.c: 0 is a valid local var offset in some
10471         architectures, don't assert (bug #78508).
10473 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
10475         * exceptions-arm.c: fixed off by one error in stack walk code.
10477 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10479         * mini.h, mini.c: more precise tracking of type load exceptions.
10481 2006-11-03  Robert Jordan  <robertj@gmx.net>
10483         * Makefile.am: [WIN32] Add monow.exe target.
10484         * driver.c: [WIN32] Don't detach the console when debugging.
10485         Fixes bug #79797.
10486         
10487 2006-10-30  Miguel de Icaza  <miguel@novell.com>
10489         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
10491 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
10493         * aot-compiler.c (emit_method_info): Add a case missed earlier.
10495         * driver.c (mini_regression): Fix --regression with AOT.
10497         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
10499 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
10501         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
10503         * mini-sparc.h: Don't use sigaction on sparc/linux.
10505         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
10507         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
10509         * mini-exceptions.c: Add proper include files for getpid ().
10511 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
10513         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
10514         address instead of a MonoJitInfo* to avoid decoding the exception info for the
10515         method.
10517         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
10518         name cache to reduce its size.
10520         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10522 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
10524         * mini-x86.c: Save/restore the current LMF structure more efficiently using
10525         the mono_lmf TLS variable.
10527         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
10528         trampoline lmf frames.  
10530         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
10532 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
10534         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
10535         the mono_lmf TLS variable.
10537         * mini-exceptions.c: Access the LMF structure through accessors.
10539         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
10540         variable instead of in jit_tls->lmf.
10542         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
10543         
10544         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
10545         trampoline lmf frames.
10547         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
10549 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
10551        * mini.c trace.c mini-x86.c: Revert these too.
10552         
10553        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
10554        signature change.
10556 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
10558         * genmdesc.c: removed now dead code.
10560 2006-10-09  Robert Jordan <robertj@gmx.net>
10562         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
10564 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
10566         * mini.h: do not leave gaps in the opcode values.
10568 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
10570         * jit-icalls.h: flag functions as internal here, too.
10572 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
10574         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
10575         functions with the internal attribute.
10577 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
10579         * aot-compiler.c: fclose the file descriptor in the profile read loop.
10581 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10583         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
10584         for soft-float.
10586 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
10588         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
10589         tail calls as on other platforms.
10591         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
10593         * iltests.il: Add a few tailcall tests.
10595 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10597         * driver.c: fix loop for old compilers (bug #79521).
10599 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
10601         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
10603         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
10605         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
10606         metadata without any code.
10608         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
10609         more precise debugging information using gdb.
10611 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
10613         * inssel-ia64.brg: Make the helper methods static.
10615 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10617         * inssel-x86.brg: make the helper methods static.
10619 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
10621         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
10623 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10625         * mini.c: updates for monoburg changes.
10626         * inssel.brg: make a few helper functions static as they should.
10628 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
10630         * Makefile.am: Move mini-codegen.c to common_sources.
10632 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10634         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
10635         instructions.
10636         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
10637         mini-ppc.h: port to use the common local register allocator.
10639 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10641         * mini.h: Remove the comment too then.
10643 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
10645         * mini.h: put back backend.data which is to be used shortly and
10646         doesn't increase the size of MonoInst. If any 64 bit arch aligned
10647         pointers on 4 byte boundaries it'd have much bigger issues running
10648         and you can ifdef it out anyway.
10650 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10652         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
10653         MonoInst size by 4 bytes on 64 bit machines.
10655 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10657         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
10658         replacement with more meaningful field names. Arch maintainers, please
10659         check the assigned names are good enough for your arch.
10661 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
10663         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
10664         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
10666 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10668         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
10669         relocations and memory requirements, put the optimization flags
10670         definitions in their own file.
10672 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
10674         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
10676         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
10678 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
10680         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
10682 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
10684         * inssel.brg: use the correct function to get the size of an item
10685         in an array, given an element class.
10686         * aot-compiler.c: do not access class->class_size directly.
10688 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10690         * mini.h, debug-mini.c: added a debugging function to print
10691         info about local variables and arguments in a jitted method.
10693 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
10695         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10697         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
10699 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
10701         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
10702         inner and outer loops when passing vtypes.
10704 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
10706         * mini-ppc.c: take into account the cpu errata for cache flushing
10707         which caused some random errors (bug #79381).
10709 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
10711         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
10712         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
10714 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
10716         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
10717         loaded.
10719         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
10720         freebsd ports tree.
10722         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
10723         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
10725         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
10726         displacement.
10728 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
10730         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
10732 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
10734         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
10735         macro does not have to be changed during debugging.
10737         * 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>.
10739         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
10741         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
10742         
10743         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
10744         MONO_ARCH_NO_EMULATE_MUL is defined.
10746         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
10748         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
10750         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
10752         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
10753         
10754 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
10756         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
10757         stuff to mini-exceptions.c where it is used.
10759         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
10760         setup code, the real one is in mini-exceptions.c.
10762         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
10763         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
10764         some changes from the freebsd ports tree.
10766         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
10767         constants.
10768         
10769         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
10771 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
10773         * mini.c: on Linux, check for /proc to be mounted
10774         (bug# 79351, novell bug#201204).
10776 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
10778         * mini.c: handle cases where pthread_attr_getstack() behaves
10779         incorrectly (bug #78096).
10781 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
10783         * mini-arm.c: support larger stack frames (bug #79272).
10785 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
10787         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
10789         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
10790         tokens.
10792         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
10793         mono_class_from_name () to find a class from its name.
10795         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
10797 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
10799         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
10801 2006-09-05  Kornél Pál  <kornelpal@gmail.com>
10803         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
10805 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
10807         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
10808         callinfo->trampoline.
10810         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
10811         fixes #79271.
10812         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
10813         future.
10815 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
10817         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
10819 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
10821         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
10822         stats.method_trampolines, it is already done by the generic trampoline code.
10824         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
10825         
10826 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
10828         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
10830         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
10832         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
10834         * mini.c (print_jit_stats): Print mscorlib mempool size too.
10835         
10836         * mini.c (print_jit_stats): Print new stats.
10838         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10840 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
10842         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
10843         Address on two dimensional arrays. Fixes #78729.
10845         * mini.h (MonoCompile): Add a 'skip_visibility' field.
10847         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
10848         a method.
10850         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
10852         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
10853         #79130.
10854         
10855         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
10856         a race condition.
10857         (mini_get_ldelema_ins): Ditto.
10859 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
10861         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
10862         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
10863         Fixes #79213.
10865 2006-08-29 Neale Ferguson <neale@sinenomine.net>
10867         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
10868         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
10870         * exceptions-s390x.c: Cosmetic change.
10872         * tramp-s390.c: Fix warning.
10874         * cpu-s390.md: Correct length of mul_imm.
10876 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10878         * aot-compiler.c: added binary writer with ELF backend
10879         implementation (only on Linux/x86 for now).
10881 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
10883         * Makefile.am: Don't run net 2.0 AOT tests.
10885         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
10886         (mono_compile_assembly): Skip net 2.0 assemblies as well.
10888         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
10890 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10892         * aot-compiler.c: simplified and refactored the asm-writing code
10893         to allow different backends.
10895 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
10897         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
10899         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
10900         little. Share patches of type TYPE_FROM_HANDLE as well.
10902         * mini.c (mono_patch_info_equal): New helper function.
10903         (mono_patch_info_hash): Ditto.
10905         * aot-compiler.c (emit_method_code): Fix s390 build.
10907         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
10908         is not handled because it is stored as a flag and not as a type ctor. Fixes
10909         #79016.
10911 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
10913         * aot-compiler.c: Fix computation of GOT slot statistics.
10914         
10915         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
10916         Also remove support for not PIC AOT.
10918         * mini.h: Bump AOT file format version.
10920         * objects.cs: Add a test for #78990.
10922         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
10923         (peter.dettman@iinet.net.au). Fixes #79087.
10925         * basic-long.cs: Add a test for the above.
10927 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
10929         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
10930         
10931         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
10932         code somewhat.
10934 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
10936         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
10937         exceptions.
10939 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
10941         * mini.c: Don't verify COM proxy invoke calls
10942         
10944 2006-08-10  Dick Porter  <dick@ximian.com>
10946         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
10947         which process is holding semaphores locked.
10949 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
10951         * mini-ia64.c mini-amd64.c: Fix #79027.
10953         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
10955         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
10957         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
10958         implicit arguments in a vararg call. Fixes #79027.
10960 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
10962         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
10963         (mono_get_array_new_va_signature): Ditto.
10965 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
10967         * aot-runtime.c: Call init_plt lazily.
10969         * inssel-long.brg: Fix unsigned long->int conversion.
10971         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
10973         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
10974         that most data is now in the .rss/.data section.
10976 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
10978         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
10980         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
10982         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
10984         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
10986         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
10987         virtual call. Fixes #79010.
10989         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
10990         and use the result as the this argument in the real call.
10992         * generics.2.cs: Add a new test for #79010.
10993         
10994 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
10996         * mini-x86.c: Fix a warning.
10998         * aot-compiler.c: Add a bunch of statistics.
11000         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
11002 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
11004         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
11006 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
11008         * 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>.
11010 2006-07-13  Miguel de Icaza  <miguel@novell.com>
11012         * mini.c (mono_method_to_ir): Obtain the original method in the
11013         CIL stream and use this to perform validation.
11015         Fixed: #78816
11017 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
11019         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
11020         (mono_arch_call_opcode): Ditto.
11022         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
11023         #78826.
11025         * mini.c (mono_patch_info_dup_mp): New helper function.
11026         
11027         * aot-compiler.c (compile_method): Fix some of the memory allocated during
11028         compilation. Fixes #78827.
11030 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
11032         * declsec.c: Use original security informations for
11033           MONO_WRAPPER_MANAGED_TO_MANAGED.
11035 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
11037         * mini.c: Allow Com Interop methods/classes and
11038         don't verify COM wrapper calls
11039         
11041 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
11043         * inssel-long32.brg: Fix long->i4 checked conversion.
11045         * exceptions.cs: Add a test for the above.
11047 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
11049         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
11051         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
11052         leaks.
11054         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
11055         #78775.
11057 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
11059         * mini.c: Fix solaris/x86 exception handling.
11061         * Makefile.am: Get rid of $(ICU_LIBS).
11063 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
11065         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
11066         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
11067         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
11069         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
11071         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
11072         this function causes a SIGSEGV.
11074 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
11076         * mini.c: Remove unused solaris/x86 includes.
11078 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
11080         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
11082 2006-06-20  Jb Evain  <jbevain@gmail.com>
11084         * cpu-g4.md: fix max length of start_handler instruction.
11086 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
11087         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
11089 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
11090         * ssa.c: Fixed bug 78653 for SSA based deadce.
11091         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
11092         MonoInst.flags, used in SSA based deadce.
11093         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
11094         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
11096 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
11098         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
11099         it can end up using non executable memory on ppc64 systems
11100         running ppc32 userspace (fix from Johannes Berg).
11102 2006-06-14  Dick Porter  <dick@ximian.com>
11104         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
11105         4.1.1
11107 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
11108         * mini.c: Made so that inline is locally disabled if it would
11109         trigger a .cctor, because too many apps depend on this behavior
11110         (which seems to be also the one of the MS CLR).
11112 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
11114         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
11115         No idea why this worked before.
11117         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
11118         which branch to outer exception clauses since they could skip the
11119         inner finally clauses. Fixes #78633.
11121         * exceptions.cs: Add a test for the above.
11123         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
11124         Fixes #78629.
11126         * iltests.il: Add a test for the above.
11128 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
11130         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
11131         after the end of a try bblock, to prevent asserts in mini_method_compile ().
11133         * iltests.il: Add a test for the above.
11135 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
11137         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
11138         
11139         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
11140         methods as instrinsics.
11142 2006-06-09  Wade Berrier <wberrier@novell.com>
11144         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
11145         (simple-cee-ops.h ssapre-mini-ops.h)
11147 2006-06-09  Neale Ferguson <neale@sinenomine.net>
11149         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
11150         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
11151         instruction).
11152         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
11153         * cpu-s390x.md: Fix max. length values for a couple of instructions.
11155 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11157         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
11159 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
11161         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
11162         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
11163         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
11164         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
11165         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
11166         of opcodes, so that bug 78549 should not happen again.
11167         * ssapre.c: Updated to use the renamed files.
11169 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
11171         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
11172         in OP_ATOMIC_EXCHANGE_I4.
11174 2006-06-07  Wade Berrier <wberrier@novell.com>
11176         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
11177         in mono_debugger_create_notification_function)
11179 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
11181         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
11182         
11183         * mini.c (type_from_stack_type): Disable some changes which do not
11184         seem to work.
11186         * driver.c: Reenable opts.
11188         * mini.h (MonoStackSlot): New structure to keep track of the verification state
11189         of the evaluation stack.
11190         
11191         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
11192         evaluation stack trace at entry to the bblock.
11194         * mini.c (merge_stacks): New function to perform verification of stack merges.
11195         Turned off by default.
11197         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
11198         STACK_MP.
11199         
11200 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
11202         * local-propagation.c: Fixed bug 78549.
11204 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
11206         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
11208 2006-06-02  Miguel de Icaza  <miguel@novell.com>
11210         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
11211         tramp-arm.c, tramp-ia64.c
11212         (mono_debugger_create_notification_function): Update signature to
11213         new signature and use new protocol for creating the notification
11214         function.  
11216         Should fix the build.
11218 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
11220         * exceptions-ppc.c (mono_jit_walk_stack)
11221         (ves_icall_get_frame_info): Fix the build
11223 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
11225         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
11227 2006-05-31  Raja R Harinath  <rharinath@novell.com>
11229         * il2tests.2.il: New file for generics CIL tests.  Add test for
11230         #78019.
11231         * Makefile.am: Update.
11233         Fix #78019
11234         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
11235         to nullable types.
11237 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
11239         * aliasing.c: Fixed bug 78311.
11241 2006-05-29  Martin Baulig  <martin@ximian.com>
11243         * mini-exceptions.c (mono_find_jit_info): When computing the
11244         native offset, check whether we're actually inside the method's
11245         code; call mono_debug_print_stack_frame() to format the frame.
11246         (ves_icall_System_Exception_get_trace): Call
11247         mono_debug_print_stack_frame() to format the stack frame.
11248         (ves_icall_get_trace): Update to the new debugging API.
11249         (mono_jit_walk_stack_from_ctx): Likewise.
11250         (ves_icall_get_frame_info): Likewise.
11252         * mini.c (get_method_from_ip): Use the new debugging API.
11253         (mono_print_method_from_ip): Likewise.
11255         * exceptions-ppc.c
11256         (mono_jit_walk_stack): Use the new debugging API.
11257         (ves_icall_get_frame_info): Likewise.   
11259 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
11261         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
11263 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
11265         * mini.c: Added "limitator" to inline for debugging.
11267 2006-05-24  Martin Baulig  <martin@ximian.com>
11269         * debug-debugger.c (mono_debugger_init): Create a private,
11270         malloc()-based code manager for the notification function and
11271         intentionally leak it on exit.  This fixes the crash-on-exit race
11272         condition.
11274         * tramp-amd64.c
11275         (mono_debugger_create_notification_function): Added
11276         `MonoCodeManager *' argument.
11278         * tramp-x86.c
11279         (mono_debugger_create_notification_function): Added
11280         `MonoCodeManager *' argument.
11282 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
11284         * aliasing.c: Fixed 64 bit issue.
11285         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11286         default since all known bugs are fixed (one more time!).
11288 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11290         * mini.c: write barrier support.
11292 2006-05-23  Martin Baulig  <martin@ximian.com>
11294         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
11295         check at the top of the file.
11297 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
11299         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
11300         reverting changes without reason and without changelog entries.
11302 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
11304         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
11305         to a few opcodes. Fixes #78439.
11307         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
11308         consistency with other archs.
11310         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
11312 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11314         * debug-debugger.c: fix the build.
11316 2006-05-17  Martin Baulig  <martin@ximian.com>
11318         * debug-debugger.c
11319         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
11320         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
11321         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
11322         (debugger_attach): Call GC_mono_debugger_add_all_threads().
11324 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
11326         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
11328 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
11330         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
11331         MONO_TYPE_GENERICINST.
11332         
11333         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
11334         MONO_TYPE_GENERICINST.
11336 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
11338         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
11339         #78325.
11341 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
11343         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
11344         mempool.
11345         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
11347 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
11349         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
11350         mono_trace_cleanup ().
11352         * iltests.il: Fix problem with the newly added test.
11354         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
11355         due to register constraints, free up the previous hreg. Fixes #78314.
11357         * iltests.il: Add new test for #78314.  
11359         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
11360         Interlocked.Add. Fixes #78312.
11362         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
11363         
11364 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
11366         * inssel.brg (mini_emit_virtual_call): Fix a warning.
11368 2006-05-05  Martin Baulig  <martin@ximian.com>
11370         * debug-mini.c (mono_debug_open_block): New method.
11372         * mini-amd64.c
11373         (mono_arch_output_basic_block): Call mono_debug_open_block() at
11374         the beginning of each basic block.
11376         * mini-x86.c
11377         (mono_arch_output_basic_block): Call mono_debug_open_block() at
11378         the beginning of each basic block.
11380 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
11382         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11383         default until I understand why they break the build on amd64.
11385 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
11387         * mini.c (mini_cleanup): Call mono_cleanup ().
11389         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
11390         errors.
11392 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
11394         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
11395         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11396         default since all known bugs are fixed, and I cannot reproduce bug
11397         77944... I'm asking Matt Hargett to test again after this commit.
11399 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
11401         * mini-codegen.c: Fixed typo that thrashed inline.
11403 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
11405         * dominators.c (compute_dominators): Avoid using a worklist since
11406         it is not correct in some cases. Instead, iterate over all bblocks as
11407         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
11409 2006-04-28  Miguel de Icaza  <miguel@novell.com>
11411         * mini.c (mono_jit_compile_method_inner): Use
11412         mono_prepare_exception_from_error that resets the value
11413         internally.
11415 2006-04-27  Miguel de Icaza  <miguel@novell.com>
11417         * mini.c: Move the mini_loader_error_to_exception to metadata. 
11418         
11419 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
11421         * aliasing.c: Fixed bug 78210.
11423 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
11425         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11426         default until all their problems (or the ones they trigger) are fixed.
11428 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
11430         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
11431         
11432         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
11433         as loaded only after resolving patches since that could invoke the same method.
11435         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
11437         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
11438         functions.
11440         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
11441         AOT loader.
11443         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
11444         stack.
11446         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
11447         made from AOT code through the PLT table.
11449         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
11450         holding the plt offset when a call is made to the aot plt trampoline.
11451         
11452 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
11454         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
11455         amd64 AOT support.
11457         * Makefile.am (common_sources): Fix build breakage.
11459         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
11460         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
11461         intra-assembly calls if possible.
11462         
11463         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
11465         * mini-trampolines.c: Handle PLT entries.
11467         * mini.c: Avoid creating a GOT var for calls.
11469         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
11470         from mscorlib code.
11472         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
11473         from mscorlib code.
11475         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
11476         AOT code.       
11478         * mini.h: Bump AOT file format version.
11479         
11480         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
11481         covers more cases.
11483 2006-04-25  Martin Baulig  <martin@ximian.com>
11485         * driver.c: Disable copyprop, consprop and inline when running
11486         inside the debugger.
11488 2006-04-25  Martin Baulig  <martin@ximian.com>
11490         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
11491         with `get_current_thread' and added `detach'.
11492         (MonoDebuggerMetadataInfo): Added `thread_size',
11493         `thread_tid_offset', `thread_stack_ptr_offset' and
11494         `thread_end_stack_offset'.
11496 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
11498         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
11499         aot-runtime.c.
11501         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
11502         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
11504         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
11506         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
11508         * aot.c: Add support for ADJUSTED_IID.  
11510 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
11512         * aot.c (emit_method_order): Don't align method_order_end.
11514         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
11515         the interface ID changes.
11517 2006-04-21  Dick Porter  <dick@ximian.com>
11519         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
11520         cleaning up a thread.  Fixes the new part of bug 77470.
11522 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
11524         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
11525         to managed wrapper.
11526                      
11527 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
11529         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
11530         
11531         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
11532         SIGSEGV. Fixes #78072.
11534         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
11535         unregister our SIGABRT handler.
11537 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
11539         * mini.c: Disabled inline where it can alter the call stack in a
11540         way visible from managed code.
11541         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
11542         default.
11544 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
11546         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
11547         on other platforms. Fixes #78089.
11549 2006-04-13  Martin Baulig  <martin@ximian.com>
11551         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
11552         determine whether we're inside the debugger.
11554         * debug-debugger.h
11555         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
11557 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
11559         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
11560         handler clauses. Fixes #78024.
11562         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
11563         in the CALL_MEMBASE opcodes. Fixes #78088.
11564         (mono_arch_get_vcall_slot_addr): Ditto.
11566 2006-04-10  Martin Baulig  <martin@ximian.com>
11568         * debug-debugger.c: The thread handling code has now been moved
11569         into ../metadata/threads.c.
11571 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11573         * driver.c (mono_main): Fix --with-gc=none build.
11575         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
11576         (mono_spillvar_offset_float): Ditto.
11577         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
11578         hreg, not when its !global, since on ia64, there is a third category: stacked
11579         registers.      
11581 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
11583         * mini.c: set MonoInst->klass for load field address and a few other
11584         places.
11586 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
11588         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
11590 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
11592         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
11593         the branch opt changes.
11595 2006-04-06  Dick Porter  <dick@ximian.com>
11597         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
11598         
11599         * wapihandles.c (mini_wapi_seminfo): 
11600         * driver.c (mono_main): Add semaphore info option
11602 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
11604         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
11605         branch optimization changes. Fixes #78009.
11607 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11609         * mini.c: ignore accessibility of methods in managed->native wrappers.
11611 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
11613         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
11614         
11615         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
11617 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
11619         * mini.c: Modify the branch optimizations to preserve the invariant that
11620         the entries inside the in_bb and out_bb arrays are unique.
11621         (mono_unlink_bblock): Avoid creation of new arrays.
11623 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
11625         * mini.c (mono_unlink_bblock): Fix regression caused by previous
11626         change (#77992).
11628 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
11630         * mini.c (optimize_branches): Remove the "optimizations" in
11631         the cbranch1/cbranch2 -> branch cases which were causing several
11632         problems in the past. Fixes #77986.
11634 2006-03-31  Chris Toshok  <toshok@ximian.com>
11636         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
11637         default optimizations :(
11639 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
11641         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
11642         branch.
11644 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
11646         * local-propagation.c: Added comments to structs and removed
11647         "Mono" prefixes from local tree mover types.
11649 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
11651         * Makefile.am (arch_sources): Define this for each architecture so 
11652         libmono_la_SOURCES is defined in one place.
11654 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
11656         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
11657         from handles/.
11659 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
11661         * driver.c: print the GC name supplied by configure.
11663 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
11665         * local-propagation.c: Added tree mover, and moved here all the
11666         local propagation code from mini.c
11667         * mini.c: Added support for treeprop, and moved all the local
11668         propagation code to local-propagation.c
11669         * mini.h: Added support for treeprop
11670         * driver.c: Added support for treeprop, enabled consprop, copyprop,
11671         treeprop, inline and deadce by default
11672         * Makefile.am: Added local-propagation.c
11674 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
11676         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
11678 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
11680         * debug-debugger.c: make it compile without the Boehm GC.
11682 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11684         * mini.c: fixed issue with mismatch when an icall is registered
11685         with multiple names but same address.
11687 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11689         * declsec.c, mini-exceptions.c: use write barrier to set reference
11690         fields of managed objects.
11692 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
11694         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
11695         (can_access_internals): Fix a warning.
11697         * mini.c (print_method_from_ip): Rename this to 
11698         mono_print_method_from_ip so it gets exported.
11700         * trace.c: Deal with strings inside StringBuilder's containing garbage
11701         and fix memory leaks. Fixes #77848.
11703 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
11705         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
11706         fixes #77787.
11708 2006-03-16 Neale Ferguson <neale@sinenomine.net>
11709         
11710         * mini-s390.c: Remove OP_X86_TEST_NULL.
11712 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11714         * mini.c: use the correct GetHashCode() for the moving collector.
11716 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
11718         * liveness.c: Regalloc spill cost tuning.
11720 2006-03-15 Neale Ferguson <neale@sinenomine.net>
11721         
11722         * mini-s390x.h: Correct S390_LONG macro.
11724         * mini-s390x.c: Cleanup unused code.
11726 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
11728         * jit-icalls.h: New file.
11730         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
11731         icalls and include that instead of including jit-icalls.c.
11733         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
11734         OP_X86 opcodes.
11736 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
11738         * mini.c: when checking for member accessibility, also check for
11739         friend assemblies and for explicit interface implementations.
11741 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
11743         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
11745         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
11747         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11748         common cases are done first.    
11750         * mini-ops.h: Only define platform specific opcodes on the given platform.
11752         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
11753         branch.
11754         
11755 2006-03-14  Martin Baulig  <martin@ximian.com>
11757         Revert Paolo's change from r57348:
11759         * mini.h: don't use gboolean for bitfields.
11760         * mini.c: verifier changes for fields and methods accessibility.
11762 2006-03-13  Neale Ferguson <neale@sinenomine.net>
11764         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
11766         * mini-s390x.c: Fix conv_r_un.
11768         * cpu-s390, cpu-s390x.md: Fix lengths.
11770 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11772         * mini.c: nested types have access to all the nesting
11773         levels, not just the enclosing types.
11775 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11777         * mini.c: added a few more verification checks.
11779 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
11781         * liveness.c: Merge optimizations from the linear-il branch.
11783 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11785         * mini-ia64.c (emit_call): Add a comment.
11787         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
11789         * tramp-ia64.c: Fix some warnings.
11791 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11793         * mini.h: don't use gboolean for bitfields.
11794         * mini.c: verifier changes for fields and methods accessibility.
11796 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
11798         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
11799         lazy icall wrapper changes.
11801         * dominators.c: Replace all the dominator algorithms with faster
11802         ones from the linear-il branch.
11804         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
11805         the mempool.
11807         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11808         common cases are done first.
11810         * mini-amd64.c: Fix some warnings.
11812         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
11813         from the mempool.
11815         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
11816         added code.
11818         * mini.h: Add a missing prototype.
11820 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
11822         * mini.c: Compile icall wrappers lazily.
11824         * mini-codegen.c: Use printf instead of g_print since its much faster.
11826         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
11827         function.
11829         * mini.c (optimize_branches): Cache the negative result from 
11830         remove_block_if_useless ().
11832         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
11833         Also fix some bblock linking issues.
11835         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
11836         assembly files.
11838         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
11840         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
11841         accessed fields first, for better cache behavior.
11842         
11843 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11845         * mini.c: speedup IList<T> array accesses.
11847 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
11849         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
11850         inline_costs counter. Fixes #77190.
11852 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
11854         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
11855         trace messages. Fixes #77706.
11857 2006-03-04  Martin Baulig  <martin@ximian.com>
11859         * tramp-amd64.c, tramp-x86.c
11860         (mono_debugger_create_notification_function): Use
11861         mono_global_codeman_reserve() to allocate a buffer at runtime and
11862         return it.
11864         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
11866         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
11867         notification function at runtime and then call `initialize' in the
11868         `MONO_DEBUGGER__debugger_info' vtable.
11870 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
11872         * iltests.il: Fix a visibility problem.
11874 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11876         * driver.c, mini.c: add hooks for the counters API.
11878 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11880         * driver.c: show disabled options.
11882 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11884         * linear-scan.c: always use cost-driven selection.
11886 2006-02-28  Raja R Harinath  <rharinath@novell.com>
11888         * jit-icalls.c (helper_compile_generic_method): Revert change from
11889         2006-02-24.
11891 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
11893         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
11895 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11897         * inssel.brg: style fixes, mostly to force the updated monoburg
11898         to run for people using svn.
11900 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11902         * mini.c: match monoburg changes.
11904 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11906         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
11907         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
11908         declaration in the header file.
11910 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11912         * helpers.c: reduce relocations and mem usage.
11914 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11916         * mini.h, mini-codegen.c: disable logging features if
11917         requested by configure.
11919 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
11921         * mini.c: tiny verifier changes.
11923 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11925         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
11926         cpu-pentium.md: stack alignment changes for osx/x86,
11927         partially from Geoff Norton <gnorton@customerdna.com>.
11929 2006-02-24  Raja R Harinath  <harinath@gmail.com>
11931         * jit-icalls.c (helper_compile_generic_method): Update to changes
11932         in metadata/class.c.
11934 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
11935         
11936         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
11937         
11938         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
11939         interface calls with large offsets.
11941 2006-02-23  Raja R Harinath  <rharinath@novell.com>
11943         * jit-icalls.c (helper_compile_generic_method): Document the
11944         special-case we depend on so that we can inflate the method twice
11945         with the same context with no bad side-effects.
11947 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11949         * mini-x86.c, mini-amd64.c: fix for case when xen support
11950         is disabled.
11952 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11954         * mini-x86.c, mini-amd64.c: generate code to access tls items
11955         in a faster way for Xen systems.
11957 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11959         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
11960         updates and compilation fixes for the OSX/x86 port, mostly from
11961         Geoff Norton <gnorton@customerdna.com>.
11963 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
11965         * inssel.brg: faster interface call implementation
11966         to sync with the interface_offsets MonoVTable changes.
11968 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11970         * mini.c: more verification checks.
11972 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
11974         * mini.c: added a few more verification checks.
11976 2006-02-17      Neale Ferguson <neale@sinenomine.net>
11978         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
11979         facility on the processor and use it if available.
11981 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11983         * driver.c, aot.c, mini.c: throw exception if the IL code is
11984         invalid or unverifiable.
11986 2006-02-17  Raja R Harinath  <rharinath@novell.com>
11988         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
11989         m.StructField.
11991 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
11993         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
11995 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11997         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
11998         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
11999         handling of instantiated generic valuetypes.
12001 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
12003         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
12004         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
12005         instead.
12007         * generics.2.cs: Revert the nullable reftypes tests.
12009 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
12011         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
12012         using __builtin_frame_address (1) as it doesn't work in the presence
12013         of optimizations. Hopefully fixes #77273.
12015         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
12016         -> generics.cs change as it doesn't work with some automake versions.
12018 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
12020         * mini.c: handle systems that sue a different way to
12021         retrieve the stack address of the current thread.
12023 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
12025         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
12026         it specially in the makefile.
12028         * generics.2.cs: Add tests for nullable reference types.
12030 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
12032         * mini.c: always handle the case when mono_jit_init()
12033         is called in a thread different from the main thread,
12034         confusing libgc (bug #77309).
12036 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
12038         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
12040 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
12042         * mini.c: change optimize_branches () to use a single loop
12043         and introduce a new optimization to simplify some range checks.
12045 2006-02-03  Martin Baulig  <martin@ximian.com>
12047         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
12048         and merged with debugger_thread_manager_add_thread().
12049         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
12050         inform the debugger about the main thread.
12052 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
12054         * basic.cs: Add test for div.un/rem.un constant folding.
12056 2006-02-03  Neale Ferguson <neale@sinenomine.net>
12058         * cpu-s390x.md: correct int_xor_imm length
12060 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
12062         * generics.2.cs: New test for #77442.
12064         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
12065         #77442.
12067 2006-02-02  Martin Baulig  <martin@ximian.com>
12069         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
12070         <mono/metadata/mono-debug-debugger.h>   
12072         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
12074 2006-02-02  Martin Baulig  <martin@ximian.com>
12076         * debug-debugger.h: New header file for debug-debugger.c.
12078         * debug-debugger.c: Big API cleanup; don't run the managed Main()
12079         function is a separate thread anymore; add support for attaching.
12081 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
12083         * tramp-x86.c: Fix a warning.
12085 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
12087         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
12088         on very large methods.
12090         * aot.c (load_patch_info): Fix a warning.
12092 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
12094         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
12095         mini-ops.h: alu membase optimizations.
12097 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
12099         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
12100         to speedup StringBuilder.
12102 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
12104         * dominators.c (mono_compute_natural_loops): Fix detection of
12105         loop body start blocks.
12107         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
12109 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
12111         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
12112         #75145.
12114 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
12116         * aliasing.c: Fixed aliasing issue on 64 bit archs.
12118 2006-01-25  Martin Baulig  <martin@ximian.com>
12120         * debug-debugger.c: Moved the `MonoDebuggerManager' and
12121         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
12122         started to cleanup this file a little bit.
12124 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
12126         * mini.c: optimize a codepath frequently happening in generics code.
12128 2006-01-23  Martin Baulig  <martin@ximian.com>
12130         * Makefile.am: Only compile debug-debugger.c on supported platforms.
12132         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
12133         functions directly.
12135         * driver.c: debug-debugger.c is only available if
12136         `MONO_DEBUGGER_SUPPORTED' is defined.   
12138 2006-01-23  Martin Baulig  <martin@ximian.com>
12140         * debug-debugger.c: Only enable this on platforms where the Mono
12141         Debugger is working (x86 and x86_64).
12143 2006-01-21  Martin Baulig  <martin@ximian.com>
12145         The Mono Debugger is now using the normal `mono' instead of the
12146         `mono-debugger-mini-wrapper' when executing managed code.
12148         * debug-debugger.c: New file; previously known as
12149         debugger/wrapper/wrapper.c.
12151         * debug-mini.c (mono_init_debugger): Removed.
12153         * driver.c (mono_main): Added new `--inside-mdb' command line
12154         argument which is used when running inside the debugger.
12156 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
12158         * liveness.c (mono_analyze_liveness): Remove some unused data
12159         structures.
12161 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
12163         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
12165 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
12167         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
12168         depends on implementation details of monobitset.
12170         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
12171         Fixes #77271.
12173 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
12175         * liveness.c: Update after monobitset changes.
12177 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
12179         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
12181 2006-01-11 Neale Ferguson <neale@sinenomine.net>
12183         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
12185         * mini-s390x.c: Remove warning messages.
12187 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
12189         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
12191 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
12193         * generics.2.cs: Add ldelem/stelem_any test.
12195 2006-01-10 Neale Ferguson <neale@sinenomine.net>
12197         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
12199 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
12201         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
12202         
12203 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
12205         * generics.2.cs: Reenable vtype tests.
12207         * inssel-x86.brg: Remove an icorrect valuetype rule.
12209 2006-01-06 Neale Ferguson <neale@sinenomine.net>
12211         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
12212         initial support for OP_ABS.
12214 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12216         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
12218 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12220         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
12221         conversion and implement LADD/LSUB.
12223         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
12224         architectures.
12226 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12228         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
12230         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
12231         architectures.
12233 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12235         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
12236         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
12237         (stack walk problem).
12239 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
12241         * aot.c (mono_aot_load_method): Fix a warning.
12243 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12245         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
12247 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12249         * iltests.il: Add test for #77148.
12251         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
12252         #77148.
12254 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12256         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
12258 2006-01-03  Neale Ferguson <neale@sinenomine.net>
12260         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
12261         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
12263         * basic-long.cs: Add lconv-to-r4/r8 tests.
12265 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
12267         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
12269         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
12270         here as on other archs.
12272 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12274         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
12276 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12278         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
12279         
12280         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
12282         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
12283         instrument_prolog; Add memory_barrier instruction.
12285 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
12287         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
12289 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
12291         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
12293         * aliasing.c inssel.brg: Fix warnings.
12295         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
12296         could skip initialization of some parts of memory.
12298         * mini.c mini-ia64.c: Fix warnings.
12300         * inssel-sparc.brg: Add an implementation of lneg which actually works.
12302 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
12304         * aliasing.c (mono_build_aliasing_information): Add a workaround for
12305         a crash seen on sparc.
12307         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
12308         
12309         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
12311 2005-12-21 Neale Ferguson <neale@sinenomine.net>
12313         * mini-ops.h: Add s390_backchain instruction
12315         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
12317         * cpu-s390.md: Add s390_backchain instruction
12319         * mini-s390.c: Significant ABI changes
12321         * mini-s390.h: Cater for zero length structures
12323 2005-12-20 Neale Ferguson <neale@sinenomine.net>
12325         * mini-s390.c: ABI fixes
12327         * inssel-s390.brg: Remove debug statements
12329         * cpu-s390.md: Fix length of ATOMIC_xx operations
12331 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
12333         * basic-float.cs: Add float<->long conversion tests.
12335 2005-12-16 Neale Ferguson <neale@sinenomine.net>
12337         * mini-s390.c: Fix LOCALLOC processing.
12339         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
12341 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
12343         * iltests.il: Add tests for some opcodes not covered by the other
12344         tests.
12346 2005-12-15 Neale Ferguson <neale@sinenomine.net>
12348         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
12349         register loading for Tail processing; Correct trace output.
12351         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
12353         * cpu-s390.md: Correct size of jmp instruction. 
12355 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12357         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
12359 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12361         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
12362           Bring s390 up to current level.
12364 2005-12-12  Zltan Varga  <vargaz@gmail.com>
12366         * generics.2.cs: Disable the newly added tests as they do not work yet.
12367         
12368         * generics.2.cs: Add valuetype tests.
12370 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
12372         * basic-long.cs: Add i4->u8 test.
12374         * objects.cs: Add tests for JIT intrinsic.
12376         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
12377         optimizations lost by a mistake.
12379 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
12381         * basic-long.cs: Remove a test moved to objects.cs.
12383         * arrays.cs: Add more array tests.
12385 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
12387         * arrays.cs: Add new tests for multi-dimensional arrays.
12389 2005-12-06  Raja R Harinath  <rharinath@novell.com>
12391         * Makefile.am (test_sources2): Add generics.2.cs.
12392         (EXTRA_DIST): Add test_sources2.
12394 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
12396         Support for boxing and unboxing nullable types as well as the
12397         isinst operation on nullables, per the CLI ammendment.
12399         * inssel.brg (CEE_ISINST): Special case for nullable
12401         * mini.c (handle_unbox_nullable): new method
12402         (handle_box): Special case for nullable types
12403         (mono_method_to_ir): Call handle_unbox_nullable in correct
12404         places.
12406         * generics.2.cs: New test suite
12408         * Makefile.am: Support for regression tests with generics.
12410 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
12412         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
12413         allocated to registers. Fixes #76800.
12415 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
12417         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
12419 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
12421         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
12422         of platforms.
12424 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
12426         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
12427         objects.cs.
12429         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
12430         
12431         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
12432 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
12434         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
12435         single precision before storing to a single precision location.
12437 2005-11-28  Raja R Harinath  <rharinath@novell.com>
12439         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
12441 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
12443         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
12444         correct files.
12446         * basic.cs: Remove test_0_byte_compares test which was moved to
12447         objects.cs a long time ago.
12449 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
12451         * aliasing.c: Fixed aliasing issue on 64 bit archs.
12453 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
12455         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
12456         handlers are called.
12458         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
12459         throwing code.
12461          * mini-ia64.c: Add support for the throw->branch exception 
12462         optimization.   
12464         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
12466 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
12468         * mini.c: Enabled "fastpath" deadce :-)
12469         
12470 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
12472         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
12473         alias analysis pass to support it.
12474         * mini.h: Likewise.
12475         * ssa.c: Likewise.
12476         * liveness.c: Likewise (liveness computation can use aliasing
12477         information to be more accurate).
12478         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
12479         moreover made so that "--compile-all" uses the given optimization
12480         flags and not the default ones.
12481         * aliasing.c: Alias analysis (new file).
12482         * aliasing.h: Likewise.
12483         * Makefile.am: added "aliasing.c" and "aliasing.h".
12484         
12485 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
12487         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
12488         OP_L opcodes.
12490 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
12492         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
12493         fp >= end_of_stack exit condition, as it is not needed, and it might
12494         become true for fp eliminated frames.
12496 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
12498         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
12499         coded offsets.
12501 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
12503         * mini-arm.c: fixed alignment of doubles/longs to match
12504         the C ABI (bug #76635).
12506 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
12508         * aot.c: fix compilation with --enable-minimal=aot.
12510 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
12512         * mini-arm.c: fixed compatibility with the new
12513         floating point emulator package for compares.
12515 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
12517         * mini.c : reverted sig->pinvoke changes (r51396-51397).
12519 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
12521         * mini-exceptions.c (print_stack_frame): Output to stderr.
12522         (mono_handle_native_sigsegv): Ditto.
12524 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12526         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
12527         OP_LCONV_TO_OVF_I implementation.
12529         * mini-amd64.c: Add support for the throw->branch exception 
12530         optimization.
12532         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
12533         when the catch clause catches a more general exception, i.e. Object.
12535 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
12537         * cpu-ia64.md: Remove unused opcodes.
12539         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
12540         specific defines for architectures defining USE_SIGACTION.
12542         * mini-ia64.c: Fix some warnings.
12544         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
12545         version seemed to skip a frame.
12547 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
12549         * mini.c: Clean up the usage of sig->pinvoke flag. Now
12550         only calls which are made to native code use this flag.
12552 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
12554         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
12555         varargs methods as well.
12556         
12557         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
12558         which have save_lmf set. Reorganize methods prologs a bit.
12560         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
12561         debugger to the proper place.
12563 2005-10-29  Martin Baulig  <martin@ximian.com>
12565         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
12566         when running inside the debugger until the debugger has support
12567         for it.
12569 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
12571         * mini.h: Fix a warning.
12573 2005-10-24  Miguel de Icaza  <miguel@novell.com>
12575         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
12576         we expose publicly, this returns the string.
12578 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
12580         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
12581         with fp elimination.
12583 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
12585         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
12586         native stacktrace using the glibc 'backtrace' function if available.
12588 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
12590         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
12592         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
12593         handle SIGSEGVs received while in native code.
12595         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
12596         code, call mono_handle_native_sigsegv which will abort the runtime
12597         after printing some diagnostics, instead of converting it into a
12598         confusing NullReferenceException.
12600 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
12602         * cpu-pentium.md: Remove unused opcodes.
12604 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
12606         * mini-amd64.h (MonoLMF): Add rsp field.
12608         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
12609         the lmf too.
12611 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
12613         * mini-codegen.c (get_register_spilling): Fix some warnings.
12615 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
12617         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
12618         elimination during exception handling. Enable fp elimination by
12619         default.
12621         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
12622         elimination.
12624 2005-10-16  Martin Baulig  <martin@ximian.com>
12626         * mini-exceptions.c
12627         (mono_debugger_run_finally): New public method for the debugger.
12629 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
12631         * debug-mini.c (mono_debug_init_method): Fix warning.
12633         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
12634         the 'exname' parameter const to fix some warnings.
12636 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
12638         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
12639         introduced by the previous patch.
12641 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
12643         * basic-float.cs: Add test for precision of float arithmetic.
12645         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
12646         when loading/storing single values from/to memory.
12648         * mini.c (mono_jit_compile_method_with_opt): Create the function
12649         pointers in the correct domain.
12651 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
12653         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
12654         introduced by previous patch.
12655         
12656         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
12657         when out_filter_idx is NULL.
12659         * mini-exceptions.c: Don't run filter clauses twice during exception
12660         handling. Fixes #75755.
12662 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
12664         * aot.c: Add support for ldflda wrappers.
12666         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
12667         #75902.
12669 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
12671         * mini.c, mini.h: do not consider exception handlers blocks when
12672         setting up interface variables.
12674 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
12676         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
12678 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
12680         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
12681         causes a regression.
12683         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
12685 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
12687         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
12688         of the OP_P definitions.
12690         * TODO: Add a proposal for dealing with the CEE/OP mess.
12692         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
12693         optimizations from the x86 port.
12695         * cpu-amd64.md: Ditto.
12697         * basic.cs basic-long.cs: Add tests.
12699 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
12701         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
12702         Patrik Torstensson's implementation of my exception-handling
12703         optimization idea, when the exception object is not used
12704         (bug #62150).
12706 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
12708         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
12709         of the mul_imm optimizations from the old jit.
12711 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
12713         * mini.c, liveness.c: patch by Patrik Torstensson and
12714         Zoltan Varga to improve performance in methods with
12715         exception clauses.
12717 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
12719         * driver.c: Remove 'Globalization' entry from --version.
12721 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
12723         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
12724         there is a profiler interested in JIT events.
12726         * aot.c: Load profile files produced by the AOT profiling module, and
12727         reorder methods based on the profiling info. Add a 'method_order' table
12728         to the AOT file to make mono_aot_find_jit_info work with the reordered
12729         methods.
12731         * mini.h: Bump AOT file version info.
12733 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
12735         * mini-arm.h: work around what looks like a gcc bug when optimizations
12736         are enabled.
12738 2005-09-28  Raja R Harinath  <rharinath@novell.com>
12740         * Makefile.am (AM_CFLAGS): Don't use += to append inside
12741         conditionals.  Use ...
12742         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
12744 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
12746         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
12747         to determine the amount of memory to copy when passing valuetypes.
12749         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
12750         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
12752 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
12754         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
12755         information about aot.
12757 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
12759         * *.c: Replace the use of {Enter,Leave}CriticalSection with
12760         macros. This will allow a deadlock debugger to easily be plugged
12761         in.
12763 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
12765         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
12767 2005-09-27  Raja R Harinath  <rharinath@novell.com>
12769         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
12770         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
12771         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
12772         ($(arch_built)) [CROSS_COMPILING]: Error out.
12774 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
12776         * aot.c: Add support for the no_special_static flag for classes.
12778 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12780         * Reapply reverted patches.
12782         * *: Revert r50174 as well.
12784         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
12786 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
12788         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
12790 2005-09-23  Miguel de Icaza  <miguel@novell.com>
12792         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
12793         part of the SIG_HANDLER_SIGNATURE.  
12795 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
12797         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
12798         statistics.
12800         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
12801         introduced by previous patch.
12803 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
12805         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
12806         saved registers too.
12808         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
12809         upon the information returned by get_call_info ().
12810         
12811         * mini-x86.c (add_float): Fix stack size calculation.
12812         (mono_arch_call_opcode): Rewrite this so it works based up the
12813         information returned by get_call_info ().
12814         (mono_arch_get_this_vret_args): Ditto.
12816 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
12818         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
12819         in cinfo to determine the registers which need to be used.
12821 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12823         * driver.c (mono_main): Add --server and --desktop flags. 
12825 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
12827         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
12828         registers as global registers.
12830         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
12831         longer needed with the new register allocator.
12833         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
12835         * cpu-ia64.md: Remove unused opcodes.
12836         
12837         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
12838         
12839 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
12841         * cpu-amd64.md: Remove unused opcodes.
12843         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
12844         needed with the new register allocator.
12846         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
12847         reg-reg moves.
12849 2005-09-16  Raja R Harinath  <rharinath@novell.com>
12851         * Makefile.am (check-local): Don't invoke semdel-wrapper.
12853 2005-09-16  Martin Baulig  <martin@ximian.com>
12855         * exceptions-amd64.c
12856         (throw_exception): Don't call mono_debugger_throw_exception() if
12857         we're a rethrow - see the FIXME in the code.
12859 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
12861         * mini.c (mono_init_exceptions): This only works on some architectures.
12862         
12863 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
12865         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
12866         on ia64.
12868         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
12870         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
12871         now in mini-exceptions.c.
12873 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
12875         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
12876         now in mini-exceptions.c.
12878 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
12880         * exceptions-x86.c: Applied patch from Patrik Torstensson 
12881         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
12883         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
12884         code into mini-exceptions.c. Add some assertions to it.
12886 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
12888         * aot.c (emit_section_change): Applied patch from "The Software Team" 
12889         (<software@solmersa.com>). Fix as errors on windows.
12891 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
12893         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
12894         method info into the LMF.
12896 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12897         
12898         * mini-ia64.c: Add proper unwind info for method epilogs.
12900         * exceptions-ia64.c: Add some code to help debugging.
12901         
12902         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
12904         * mini-exceptions.c: Fix warning.
12906 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
12908         * mini.c: Really fix build.
12910         * mini-x86.c mini-amd64.c: Fix build.
12912 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
12914         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
12916         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
12917         some Interlocked methods as intrinsics.
12919         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
12920         for Thread methods as well.
12922         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
12924         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
12926         * mini-ia64.c mini-x86.c mini-amd64.c 
12927         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
12928         OP_MEMORY_BARRIER.
12929         
12930         * mini.c (mono_init_exceptions): Fix build breakage.
12932 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
12934         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
12935         of instructions. Use the new ia64_unw_op macros for emitting unwind
12936         info.
12938         * mini.c (mono_init_exceptions): Initialize exception handling
12939         related trampolines at startup.
12941 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
12943         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
12945 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
12947         * mini.c: Handle type loading errors gracefully during compilation and
12948         throw the appropriate exception.
12950 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
12952         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
12953         for the mono binary.
12955 2005-09-09  Martin Baulig  <martin@ximian.com>
12957         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
12958         the release.
12960 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12962         * mini-arm.h: use emulation for conv.r.un for the release.
12964 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12966         * mini-arm.c, objects.cs: more fixes and tests for them.
12968 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12970         * mini-arm.c: align structures to at least 4 bytes to be able
12971         to keep our current optimized memcpy.
12973 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
12975         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
12977 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12979         * mini.c: ignore SIGPIPE.
12981 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
12983         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
12985         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
12987 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
12989         * mini.h: Add prototype for mono_allocate_stack_slots_full.
12991 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12993         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
12994         exception handling support.
12995         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
12996         patch by Brian Koropoff <briank@marakicorp.com>).
12998 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
13000         * mini.c: revert another 'optimization' which breaks when
13001         items on the eval stack need to be saved at a basic block end
13002         (bug #75940).
13004 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
13006         * jit-icalls.c: for arrays, ensure we always provide
13007         lower bounds.
13009 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
13011         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
13012         
13013         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
13015 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
13017         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
13018         arguments in their original register.
13020 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
13022         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
13023         memset/memcpy.
13025         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
13026         when ssapre is enabled.
13028         * inssel-long.brg: Fix bug in previous patch.
13030         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
13031         multiplication by a constant.
13033 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
13035         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
13036         icc.
13038         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
13039         saving registers.
13041 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
13043         * inssel-arm.brg: apply changes tested by Brian Koropoff
13044         <briank@marakicorp.com>.
13046 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
13048         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
13049         
13050 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
13052         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
13053         to the same register if dreg is just a base register.
13054         (print_ins): Improve printing of membase opcodes.
13056         * inssel-x86.brg: Add optimized ldind(reg) rules.
13058         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
13060 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
13062         * mini.c: when running under valgrind, set the stack bottom for
13063         the GC at the actual approximate stack for the app (fixes running
13064         mono with valgrind).
13066 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
13068         * mini.c: do no break at the first valuetype to init found
13069         (fixes bug #75791).
13071 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
13073         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
13075 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
13077         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
13079 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
13081         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
13083 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13085         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
13087         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
13088         code.
13090         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
13091         code.
13093         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
13094         methods.
13096 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
13098         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
13100 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13102         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
13103         in the tail recursion optimization.
13105         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
13106         debug info into the assembly file.
13108         * iltests.il: Add test for filter regions.
13110         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
13111         initial stack of filter regions. Fixes #75755.
13113 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
13115         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
13116         stack requirements.
13118 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
13120         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
13121         the check for an already compiled method on non-ia64 platforms.
13122         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
13123         proper domain.
13125         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
13127         * inssel-x86.brg: Add some optimized call rules.
13129 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
13131         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
13132         method here.
13134         * mini.h mini-trampolines.c: Pass the trampoline argument to 
13135         mono_arch_patch_delegate_trampoline.
13137         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
13139         * mini-trampolines.c: Fix build.
13141         * mini-amd64.h: Add delegate trampolines.
13143         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
13145         * inssel-amd64.brg: Add optimized call rules.
13146         
13147         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
13149         * inssel-ia64.brg: Add optimized ldind(reg) rules.
13151 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
13153         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
13154         change.
13156         * mini-ia64.c: Remove LMF fixmes.
13158         * mini-ia64.h: Remove most fields from LMF.
13160         * inssel-ia64.brg (stmt): Fix unaligned access errors.
13162         * mini-trampolines.c: Add support for IA64 function descriptors.
13164         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
13165         for IA64 function descriptors.
13167 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
13169         * tramp-arm.c: patch the vtable for virtual calls. Added
13170         support code to register/unregister the LMF.
13171         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
13172         more LMF work.
13174 2005-08-19  Dick Porter  <dick@ximian.com>
13176         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
13177         bit value if needed.
13179 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
13181         * mini.c (mini_get_method): Move handling of wrapper data here.
13183         * mini.c (mono_method_to_ir): Add support for dynamic methods.
13185         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
13186         virtual.
13188         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
13189         bblock->code does not remain empty.
13191 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
13193         * arrays.cs: Add regression test for #75832.
13195         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
13196         rules. Fixes #75832.
13198         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
13199         instruction scheduling.
13201 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
13203         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
13205 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
13207         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
13209         * mini-codegen.c: Fix VC build.
13211         * cpu-pentium.md: Increase length of atomic_exhange_i4.
13213 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13215         * mini.h: fix signature for mono_register_opcode_emulation.
13217 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
13219         * mini.c: Get rid of most of the helper_sig_... constants using
13220         mono_create_icall_signature ().
13222 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
13224         * jit-icalls.c (helper_ldstr): New helper function.
13226         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
13228         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
13229         throw, load the string using a helper call instead of creating a string object.
13231         * aot.c: Update after LDSTR changes.
13233         * mini.h: Bump AOT file version.
13234         
13235         * aot.c: Save class size info into the AOT file. Print more statistics during
13236         compilation.
13238         * mini.h: Bump AOT file version.
13240         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
13241         ordering of disasm cases. Fixes #74957.
13243 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
13245         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
13246         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
13247         the generic code needed for the ARM port.
13249 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
13251         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
13252         inssel-arm.brg: more ARM features and fixes.
13254 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
13256         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
13257         ARM port work in progress.
13259 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
13261         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
13263         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
13265         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
13267         * inssel.brg (mini_emit_memset): Add support for unaligned access.
13269         * *-ia64.*: Ongoing IA64 work.
13270         
13271         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
13273 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
13275         * TODO: Remove out-of-data todo stuff.
13277         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
13278         dead code.
13280         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
13282         * mini.h: Bump corlib version.
13284 2005-07-27  Martin Baulig  <martin@ximian.com>
13286         * mini-codegen.c
13287         (create_copy_ins): Added `const unsigned char *ip' argument; set
13288         `copy->cil_code' from it.
13290 2005-07-27  Martin Baulig  <martin@ximian.com>
13292         * mini-exceptions.c (mono_handle_exception): Don't call
13293         mono_debugger_handle_exception() for filters.
13295 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
13297         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
13298         as well.
13300 2005-07-26  Martin Baulig  <martin@ximian.com>
13302         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
13304         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
13305         helper_compile_generic_method() if the method is actually virtual
13306         and non-final.
13308 2005-07-26  Martin Baulig  <martin@ximian.com>
13310         * mini.c
13311         (trampoline_code): Renamed to `mono_trampoline_code' and made it
13312         public; this is now accessed directly by the debugger.
13313         (mono_generic_trampoline_code): Removed.
13315         * debug-mini.c
13316         (mono_debug_init_method): Also add interncalls and wrappers.
13318 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
13320         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
13322 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
13324         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
13326 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
13328         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
13330 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13332         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
13333         getting TLS offsets on AMD64 too.
13335 2005-07-20  Kornél Pál <kornelpal@hotmail.com>
13337         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
13339 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
13341         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
13342         inssel-arm.brg, mini-arm.h: ARM port work in progress.
13344 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
13346         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
13348         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
13349         to mini.c.
13351         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
13352         mono_sparc_is_virtual_call ().
13353         
13354         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
13356         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
13357         trampoline parameters.
13359         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
13360         
13361         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
13362         to mono_arch_get_vcall_slot_addr.
13364         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
13365         trampoline code.
13367         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
13369 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
13371         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
13373 2005-07-19  Martin Baulig  <martin@ximian.com>
13375         * exceptions-amd64.c (throw_exception): Call
13376         mono_debugger_throw_exception() here like we're doing it on i386.
13378 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
13380         * mini-ia64.c: Add optimized TLS access support.
13382 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
13384         * mini-exceptions.c: Ongoing IA64 work.
13386         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
13388         * mini.c: Use the default optimization set when embedding. Fixes
13389         #75194.
13391 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
13393         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
13394         of trampolines to a separate file.
13396         * mini-trampolines.c: New file.
13398         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
13399         separate file.
13400         
13401         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
13402         amd64/ia64 code.
13404         * mini-codegen.c: Fix cygwin build.
13406 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
13408         * mini.c: Add some minor changes needed by the IA64 port.
13410         * *-ia64.*: Ongoing IA64 work.
13412 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
13414         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
13415         trampolines into arch-independent and arch-dependent parts.
13417         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
13419 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
13421         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
13423         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
13424         the xp-regalloc-branch for amd64.
13426         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
13427         xp-regalloc-branch for x86.
13429 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
13431         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
13433 2005-07-06  Martin Baulig  <martin@ximian.com>
13435         * mini.c
13436         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
13437         (mono_jit_runtime_invoke): Likewise.
13439 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
13441         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
13442         on x86 too.
13443         
13444         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
13445         without loading their metadata. Reorganize the file format so exception handling+
13446         debug info is kept separate from normal method info. Create MonoJitInfo 
13447         structures for methods lazily.
13449         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
13450         loading metadata.
13451         (x86_class_init_trampoline): Patch AOT class init trampolines too.
13453         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
13455         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
13456         in AOT code.
13458         * mini.h: Bump AOT file version.
13460 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
13462         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13464 2005-07-01  Raja R Harinath  <rharinath@novell.com>
13466         * Makefile.am (check-local): Call semdel-wrapper.
13468 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
13470         * mini-x86.c: Revert the last change as it seems to break the build..
13472 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
13474         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13475         
13476         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
13478 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
13480         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
13481         outside of the macro, so strange stuff doesn't happen with gcc4
13482         (NEW_AOTCONST_TOKEN): Likewise.
13484 2005-06-28  Martin Baulig  <martin@ximian.com>
13486         * mini.c (mini_class_is_system_array): New static method; use this
13487         instead of `klass->parent == mono_defaults.array_class' everywhere
13488         since this also works for the new generic array class.
13490 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
13492         * inssel.brg: Remove warnings.
13494 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
13496         * mini-ia64.c: Ongoing IA64 work.
13498         * basic-float.cs: Add float->i1 conversion test.
13500         * iltests.il: Add conv.u4 test.
13502 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
13504         * inssel-long.brg: Fix bug caused by last change.
13506 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
13508         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
13509         BSDs.  Allows the x86 JIT to work on OSX86
13511 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
13513         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
13514         u4->i8 conversion.
13516         * mini-ia64.c: Ongoing IA64 work.
13518 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
13520         * mini-ia64.c: Ongoing IA64 work.
13522         * driver.c: Clean up jit_code_hash as well when using --regression.
13524         * inssel-long.brg: Fix long->i4/u4 conversion rules.
13526         * basic-long.cs: Add tests for long->u4 conversion.
13528 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
13530         * mini.c: Take mono_get_domainvar out of macros. This makes sure
13531         that we do not depend on undefined C behavior: the order stuff
13532         gets evaluated within an expression. Fixes mono when compiled on
13533         GCC 4.
13535 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
13537         * *-ia64.*: Ongoing IA64 work.
13539         * aot.c: Lower memory usage while loading AOT methods.
13541         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
13543         * mini.h: Bump AOT file format version.
13545 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
13547         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
13549 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
13551         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
13552         not on callee assembly). Fixed some comments.
13554 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
13556         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
13557         it gets proper disassembly.
13558         (emit_method_info): Remove some dead code.
13560         * mini.c (mini_method_compile): Allways allocate the GOT var in
13561         mono_method_to_ir for emulating opcodes.
13563 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
13565         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
13566         before freeing the code memory. Fixes #74990.
13568         * objects.cs: Add regression test for #74992.
13570         * liveness.c: Extend live ranges of arguments to the beginning of the
13571         method. Fixes #74992.
13573         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
13574         so it points into the faulting instruction.
13576 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
13578         * jit-icalls.c (mono_imul_ovf): Add exception handling.
13580         * *-ia64.*: Ongoing IA64 work.
13582         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
13584 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
13586         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
13588         * *-ia64.*: Ongoing IA64 work.
13590 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
13592         * basic-long.cs: Add tests for add/sub.ovf.
13594         * basic.cs: Add tests for sub.ovf.
13596         * *-ia64.*: Ongoing IA64 work.
13598 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
13600         * *-ia64.*: Ongoing IA64 work.
13602         * basic.cs: Add conv.ovf.i4.un test.
13604 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
13606         * mini.c: (remove_block_if_useless) Fixed bug 75061.
13607         
13608 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13610         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
13612 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
13614         * *-ia64.*: Ongoing IA64 work.
13616 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13618         * trace.[ch]:
13619         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
13621 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
13623         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
13625 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
13627         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
13629         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
13630         of a call is callable by a near call.
13632 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
13634         * mini-ia64.c: Ongoing IA64 work.
13636 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
13638         * genmdesc.c: Make the generated array non-static.
13640         * inssel-long.brg: Fix LSHR_IMM rule.
13642         * *-ia64.*: Ongoing IA64 work.
13644         * *-ia64.*: Ongoing IA64 work.
13646 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
13648         * *-ia64.*: Ongoing IA64 work.
13650         * *-ia64.*: Ongoing IA64 work.
13651         
13652         * mini-ia64.c: Ongoing IA64 work.
13654         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
13656 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
13658         * objects.cs basic-calls.cs: Move some tests to objects.cs.
13659         
13660         * objects.cs basic-long.cs: Move some tests to objects.cs.
13662 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
13664         * *-ia64.*: Ongoing IA64 work.
13666         * iltests.il: Add a new test.
13668         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
13669         newobj. Fixes #75042.
13671 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
13673         * *-ia64.*: Ongoing IA64 work.
13674         
13675         * *-ia64.*: Ongoing IA64 work.
13676         
13677         * *-ia64.*: Ongoing IA64 work.
13679         * basic.cs objects.cs: Move tests accessing static variables as well.
13681         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
13683 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
13685         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
13687         * driver.c: Always print failed tests.
13689         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
13690         frame pointer.
13692         * *ia64*: Ongoing IA64 work.
13694 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
13696         * basic.cs: Add tests for add.ovf. Fix warnings.
13698 2005-05-18  Miguel de Icaza  <miguel@novell.com>
13700         * driver.c (mono_main): Avoid crash if no argument is passed to
13701         --break;  Do not use g_error, but f_printf.   And fix all other
13702         ocurrences of the same crash.
13704 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
13706         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
13707         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
13708         Fixes #74742.
13710 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
13712         * *-ia64.*: Add beginnings of IA64 backend.
13714         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
13716 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
13718         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
13719         Fixes #74925.
13721         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
13723         * mini-amd64.c: Fix a warning.
13725 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
13727         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
13728         in float_neg. Fixes #74897.
13730         * mini-amd64.c (emit_call): Fix another near call bug.
13732 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
13734         * declsec.c: Keep the appdomain information in the structure. Added a 
13735         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
13736         value gets overwritten).
13737         * declsec.h: Set the default MonoArray for the the stack to 6. Added
13738         an MonoAppDomain member to MonoSecurityFrame.
13739         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
13740         used in the stack walk. Now use a MonoArray which grow (double) when
13741         it gets full.
13743 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
13745         * mini.c: Re-enabled runtime cleanup, since running threads should
13746         now properly stop when exiting.
13748 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
13750         * mini-codegen.c: New file contaning the arch-independent local
13751         register allocator. Not used by any architectures yet.
13753         * mini.h linear-scan.c: Merge some changes from the 
13754         mini-xp-local-regalloc branch.
13756 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
13758         * mini-amd64.c (emit_call): Fix calls to native functions when the
13759         runtime is compiled as a shared library. Fixes #74756.
13761         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
13762         on a literal field. Fixes #74751.
13764 2005-04-25  Raja R Harinath  <rharinath@novell.com>
13766         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
13768 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
13770         * objects.cs: Add missing null casting test.
13772 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
13774         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
13775         in wrapper methods. Also rename 'address' variable to 'offset'.
13777 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
13779         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
13780         warnings.
13781         
13782         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
13784         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
13785         work on windows.
13787 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
13789         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
13791 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
13793         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
13794         just the last bytes.
13796 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
13798         * aot.c (mono_compile_assembly): Fix warning.
13800         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
13801         by the _MSC_VER stuff.
13803 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
13805         * inssel-long.brg: Fix #74588.
13807         * cpu-amd64.md: Fix #74591.
13809         * iltests.il: Add new regression tests.
13811 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
13813         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
13814         valuetype.
13816 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
13818         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
13820         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
13821         from Bill Middleton <flashdict@gmail.com>.
13823 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
13825         * arrays.cs: Add new regression test. Fix warnings.
13827 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
13829         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
13830         and leakage in CKFINITE.
13832         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
13833         this to a null op since it is called on amd64 too.
13835         * exceptions-amd64.c (get_throw_trampoline): Align stack.
13837         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
13838         body since this is not used on amd64.
13839         
13840         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
13842         * mini-amd64.c: Remove obsolete fixmes.
13844         * mini.c (print_method_from_ip): Fix debugging support.
13846 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
13848         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
13849         so that expressions that don't give much gain are not reduced.
13850         * ssapre.h: Likewise.
13852 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
13854         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
13856         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
13858         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
13860 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
13862         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
13864         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
13866 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
13868         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
13869         stack touching.
13871         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
13873         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
13875         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
13877         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
13878         MONO_ARCH_USE_SIGACTION. Fixes #74252.
13880         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
13882         * mini-x86.c: Fix up stack overflow handling.   
13884         * exceptions.cs: Add new regression test.
13886 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
13888         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
13889         mono_jit_thread_attach.
13891         * mini.c (mono_method_to_ir): Verify called method is not abstract.
13893 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13895         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
13896         avoid calling constructors using callvirt.
13898         * inssel.brg: Fix #74073.
13900 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
13902         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
13903         compilation with non-GCC compilers.
13904         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
13905         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
13907 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
13909         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
13910         klass->interface_offsets (will likely fix bug#74073).
13912 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
13914         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
13916 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
13918         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
13919         to amd64_div_reg_size ().
13920         
13921         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
13923 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
13925         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
13927 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13929         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
13931 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
13933         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
13934         
13935         * mini.c (mono_precompile_assembly): Load and precompile referenced
13936         assemblies as well. Fixes #74015.
13938 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
13940         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
13942 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
13944         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
13945         a lot of checks and (anyway) permissions cannot work until corlib is 
13946         loaded.
13948 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
13950         * mini-ppc.c: fixed ABI issue on sysv/ppc.
13952 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13954         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
13955         calls (fixes bug#72824).
13957 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
13959         * mini.c: fix tail recursion elimination (see test in bug#73936).
13961 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
13963         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
13964         some fp functions in sse2 mode.
13966 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
13968         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
13970 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
13972         * mini.h mini.c: Add mono_get_jit_tls_key ().
13974         * mini-x86.c: Enable fast TLS support on windows.
13976 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
13978         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
13979         * mini.c: Check for p/invoke method when generating code. If a
13980         p/invoke method, or it's class, isn't decorated with [Suppress
13981         UnmanagedCodeSecurity] then generate code to call System.Security.
13982         UnmanagedDemand (only if the security manager is active).
13984 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13986         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
13987         last change as it seems to cause strange crashes.
13988         
13989 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
13991         * *.c: handle unsafe function pointers where needed.
13993 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
13995         * mini.c (mono_jit_free_method): Remove the fixme too.
13997 2005-03-15  Miguel de Icaza  <miguel@novell.com>
13999         * mini.c: As discussed, make the code actually free the delegate
14000         thunk now, to enable the debugging of delegate problems, use
14001         MONO_DEBUG=1 when running Mono. 
14003         This takes also care of parts of the leaks as seen by Joe.
14005 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
14007         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
14008         thread_tls_offset calculation.
14010 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
14012         * declsec.c: Reworked linkdemand checks for icall. The previous code
14013         was using the declaration code (untrusted) and didn't work as expected
14014         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
14015         specific case.
14017 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
14019         * iltests.il: Add new localloc test.
14021         * mini-amd64.c: Handle large stack allocations the same way as on
14022         windows if stack overflow handling is working.
14023         
14024         * mini-amd64.c: Allocate the signal stack using mmap.
14026         * mini.c (sigsegv_signal_handler): Fix reading of context.
14028         * mini-exceptions.c: Fix up stack overflow handling.
14030         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
14032         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
14034         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
14036         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
14038         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
14039         tramp_init functions as they are no longer needed.
14041 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
14043         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
14044         
14045         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
14047         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
14048         
14049         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
14050         support that now.
14052         * mini-ops.h: Add OP_LMUL_IMM.
14054         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
14055         long mul/div opcodes as intrinsic.
14057         * mini-amd64.c (emit_call): Handle the case when the callee might be
14058         an AOT method.
14060 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
14062         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
14063         extra safe.
14064         
14065         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
14067         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
14069 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
14071         * mini.c (mono_codegen): Don't leak here, to help people running
14072         monogrind.
14074 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
14076         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
14077         conversions in sse2 mode.
14079         * basic-float.cs: Add regression test.
14080         
14081         * mini-amd64.c: Reenable sse2.
14083 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
14085         * mini-amd64.c: Disable sse2 until some regressions are fixed.
14087 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
14089         * driver.c: Copyright text should include 2005.
14090         
14091 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
14093         * cpu-amd64.md (load_membase): Fix more max lengths.
14095 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
14097         * cpu-amd64.md (load_membase): Fix max length.
14099         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
14101         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
14103         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
14104         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
14106         * basic-float.cs: Add rounding regression test.
14108         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
14110 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
14112         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
14113         structures in registers for pinvoke wrappers.
14115 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
14117         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
14119 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
14121         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
14122         wrapper to mono_jit_thread_attach.
14124         * mini.c (mini_jit_thread_attach): New jit icall.
14126         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
14127         native->managed wrappers.
14129         * exceptions.cs: Add new regression test.
14131         * mini.c (optimize_branches): Check regions in the cbranch to throw
14132         block case as well. Fixes #73242.
14134 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14136         * mini.c: thread safety fixes.
14138 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
14140         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
14141         patching stuff, since delegates use jump trampolines so there is
14142         no caller.
14144         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
14145         jump trampolines.
14146         
14147         * tramp-amd64.c: Fix build.
14149         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
14150         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
14152         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
14153         Rename this to mono_arch....
14154         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
14156         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
14158         * mini-amd64.c (emit_call): If both the caller and the callee is
14159         guaranteed to have 32 bit addresses, emit a normal call.
14161         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
14163         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
14164         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
14165         method_ptr inside delegates.
14167 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
14169         * mini.c (mono_jit_free_method): Free the method info even if the native code is
14170         invalidated. Fixes #73001.
14172         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
14174         * mini-x86.c: Only use stdcall for pinvokes on windows.
14176 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14178         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
14179         * mini-x86.c: remove unreliable __thread var offset detection,
14180         use the correct accessors and enable by default.
14182 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
14184         * mini.c (mono_jit_free_method): Fix memory leak.
14186 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
14188         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
14190 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
14192         * cpu-amd64.md: Fix lengths of atomic opcodes.
14194 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14196         * driver.c: try to not imply using ICU is any good.
14198 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
14200         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
14201         functions as inline ops.
14203         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
14204         some Interlocked functions as inline ops.
14206         * mini.c (move_basic_block_to_end): Fix bug in last patch.
14208         * mini.h (MonoBasicBlock): Reorganize fields a bit.
14210         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
14212         * mini.c: Add support for OP_NOT_TAKEN.
14214         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
14215         structures in registers for pinvoke wrappers.
14217         * mini-amd64.c: Fix warnings.
14219 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
14221         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
14223         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
14225         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
14226         address instead of loading the address from it.
14228         * mini-x86.c: Add support for returning small structs in registers
14229         on Win32. Fixes part of #70864.
14230         
14231 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
14233         * trace.c (get_token): Improve error checking.
14235 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
14237         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
14239 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
14241         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
14242         it can be reused for MonoClass.
14243         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
14244         _LINKDEMAND.
14246 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
14248         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
14249         instead of a MonoReflectionMethod. The method information wasn't used
14250         when displaying SecurityException details (but will be now).
14252 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
14254         * Makefile.am : windows build fix.
14256 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
14258         * iltests.il: Add new regression test.
14260         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
14261         #72522.
14263 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
14265         * mini.c: Moved linkdemand check into helper function check_linkdemand
14266         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
14267         LDFTN, LDVIRTFTN).
14269 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
14271         * declsec.c: Added statistics counter for different kinds of 
14272         LinkDemands.
14273         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
14274         (and commented) declaration.
14275         * mini.c: Added statistics counter for security Demand code 
14276         generation. Added display of security statistics.
14278 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
14280         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
14281         Fix compilation errors under gcc-2.95.
14283 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
14285         * mini.c, driver.c: Use the new jit trampoline hashtable
14287 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14289         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
14291 2005-02-11  Martin Baulig  <martin@ximian.com>
14293         * debug-mini.c (mono_debug_close_method): Free the line number array.
14295 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
14297         * aot.c: Break up large methods into smaller ones. Share GOT slots for
14298         icalls.
14300         * mini.h: Bump AOT file format version. 
14302 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
14304         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
14305         APTC and P/Invoke.
14306         * declsec.h: Added macros to get/set lazyly initialized security 
14307         informations about assemblies. Added new enum for different type of
14308         possible LinkDemand violation. Added function to check LinkDemands.
14309         * mini.h: Added a field to MonoCompile to hold any security violation
14310         detected when JITting a method (so it can be thrown later).
14311         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
14312         and CEE_CALLVIRT. Added code to throw exception at the end of
14313         mini_method_compile (note: the exception is unhandled right now).
14315 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14317         * mini.c, jit-icalls.c: use the managed implementation of
14318         memset for initobj and memset, to avoid managed <-> unmanaged
14319         transitions.
14321 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
14323         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
14324         optimization if it would need a GOT var.
14326         * basic.cs: Add tests for constant propagation and switch statements.
14328         * ssa.c: Fix out-of-range constant propagation and switch statements.
14330 2005-02-09    <vargaz@freemail.hu>
14332         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
14334 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
14336         * cpu-amd64.md (load_membase): Fix max length of load_membase.
14338 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14340         * mini.c: update to new signature of mono_class_get_allocation_ftn().
14342 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
14344         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
14345         arithmetic operations.
14347 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
14349         * mini-ppc.c: add a workaround for broken user code that
14350         DllImports vararg functions with non-vararg signatures.
14352 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
14354         * mini.c (mono_jit_compile_method_inner): Add detection and a 
14355         meaningfull error message for assemblies written in Managed C++.
14357         * tramp-amd64.c mini-amd64.h: Add support for 
14358         create_trampoline_from_token ().
14360         * aot.c mini-x86.c abcremoval.c: Applied patch from
14361         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14363 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
14365         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
14366         which takes a MonoImage/token as parameter instead of a MonoMethod.
14368         * aot.c: Use the new trampoline for initializing vtables.
14370         * aot.c: Add support for ldfld/stfld_remote wrappers.
14372         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
14373         rules for compare <MEM>, IMM.
14375         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
14377         * aot.c: Handle inherited finalizers correctly.
14379 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
14381         * inssel.brg (stmt): Add a missing _setup_... ().
14383         * aot.c: Save some parts of the class state to the AOT file and use it
14384         to recompute that state when a class is initialized.
14386         * mini.c: Install AOT hooks into the runtime.
14388         * mini.h: Bump AOT file format version.
14389         
14390         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
14391         Fixes #72148.
14393         * iltests.il: Add new test.
14395 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14397         * mini.c: fix typo.
14399 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
14401         * mini.c: setup the statistical profiler in the thread attach
14402         callback to cope with the new single thread code.
14404 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14406         * mini-ppc.c: ensure we have enough room for the profiler
14407         calls (fixed bug#72084).
14409 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
14411         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
14412         it.
14414 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14416         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
14418 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14420         * ssapre.c: Fixed an issue with down safety (this allows IronPython
14421         to succesfully execute parrotbench).
14422         * ssapre.h: Likewise.
14424 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
14426         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
14427         variable for stores to method arguments (fixes a SSAPRE issue).
14429 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14431         * mini.c: handle value types in dup, fixes gen-112.cs.
14433 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
14435         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
14436         sequence for calls in dynamic methods to avoid thunks.
14438 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14440         * mini.c: correctly remove dynamic methods from the hashtable.
14442 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14444         * driver.c: Disabled SSAPRE until fix the bug that appears
14445         in IronPython's parrotbench.
14447 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
14449         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
14451         * mini.c (mono_method_to_ir): Revert the previous change.
14452         
14453         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
14454         when AOT compiling.
14456         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
14457         mono_jit_info_table_find () etc. when running under valgrind.
14459         * inssel.brg: Fix warnings.
14461         * mini-exceptions.c: Fix warnings.
14463 2005-01-31  Martin Baulig  <martin@ximian.com>
14465         * driver.c (compile_all_methods_thread_main): Don't try to compile
14466         generic methods or anything which has type parameters.
14468 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
14470         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
14472         * TestDriver.cs: Add --verbose flags.
14474         * graph.c ssa.c: Fix 64 bit warnings.
14475         
14476         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
14477         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
14478         Fix 64 bit warnings.
14480         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
14481         variable not spotted by gcc.
14482         
14483         * mini-amd64.c inssel-amd64.brg: Applied patch from  
14484         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
14485         X86_COMPARE_MEMBASE opcodes.
14487         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
14489 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
14491         * *: MonoMethod->signature might be NULL now. You *MUST* use
14492         mono_method_signature.
14494 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14496         * driver.c (compile_all_methods_thread_main): Compile the methods
14497         without invoking cctors.
14499 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14501         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
14502         * basic-calls.cs: test for the above.
14504 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
14506         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
14507         MonoJitInfo changes.
14509 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
14511         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
14512         eagerly if it contains dynamic methods.
14513         
14514         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
14516         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
14517         trace, it is now computed by an icall from trace_ips.
14518         
14519         * mini-exceptions.c: Fix a warning.
14521 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14523         * mini-exceptions.c: don't bother getting stack trace info if
14524         it's not going to be used.
14526 2005-01-27  Raja R Harinath  <rharinath@novell.com>
14528         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
14529         ssapre-mini-ops.h.
14531 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
14533         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
14535         * aot.c: Avoid calling mono_method_get_header () if not needed.
14537         * mini.h: Bump AOT file format version.
14538         
14539         * mini.c (mono_emit_native_call): Allocate a GOT var here.
14541         * mini.c (mono_print_tree): Print more info for calls.
14543 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
14545         * declsec.h: Remove warning by adding missing include for marshal.h
14547 2005-01-26  Martin Baulig  <martin@ximian.com>
14549         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
14550         `ip' twice.
14552 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
14554         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
14555         flags.
14557         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
14559         * aot.c (mono_compile_assembly): Fix a warning.
14561 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
14563         * declsec.c: Look for security attributes on the original MonoMethod 
14564         (and not the wrapped one). This fix permissions on icalls.
14566 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
14568         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14570         * mini.c (mono_allocate_stack_slots): Add a fixme.
14572         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14574 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14576         * inssel.brg: optimize casts of sealed types (more
14577         optimizations waiting for fixes in remoting).
14579 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
14581         * inssel.brg (stmt): Add another dummy rule.
14583         * driver.c: Fix warnings.
14585         * driver.c (mono_main): If running under valgrind, instruct glib to use
14586         the system allocation functions so valgrind can track the memory
14587         allocated by the g_... functions.
14589         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
14591         * mini-ops.h: Add OP_DUMMY_STORE opcode.
14593         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
14595         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
14596         variables in try regions.
14598         * mini.c (mini_method_compile): Don't disable optimizations on large
14599         methods when AOT compiling.
14601         * mini.c (mono_allocate_stack_slots): New arch independent method to 
14602         allocate stack slots. Not yet used.
14604 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
14606         * debug-mini.c (mono_debug_close_method): Plug some leaks.
14608 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
14610         * mini-ppc.c: make the branch info relative as the code
14611         buffer can be reallocated.
14613 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
14615         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
14616         * driver.c: Removed the AOT/security restriction. Now initialize the
14617         security manager (in metadata) if --security is used.
14618         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
14619         rather than the pointer to declarative security, when AOT is used.
14621 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
14623         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
14624         basic blocks, reduced intrinsic exception throwing code size.
14626 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14628         * driver.c (mini_usage): Reorder the usage screen.
14630 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
14632         * mini.c (mono_resolve_patch_target): Fix warning.
14634 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
14636         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
14637         previous patch.
14639         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
14641         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
14642         breaks the amd64 build.
14644         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
14645         register allocation. Fixes #71454.
14647         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
14649         * arrays.cs: Add new regression test.   
14651 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14653         * ssapre.c: Turned usage of snprintf to GString.
14654         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
14655         (I left it on by mistake in my previous commit).
14657 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
14659         * mini.c, cfold.c, basic-calls.cs: preserve side effects
14660         on cond branch optimization (fixes bug# 71515).
14662 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14664         * abcremoval.c: Fixed bug 71062.
14665         * abcremoval.h: Likewise.
14667 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
14669         * mini.c: Added a new functionality to optimize_branches, the removal
14670         of useless basic blocks, and fixed some problem in the removal of
14671         critical edges; some utility functions added for both purposes.
14672         * ssapre.c: Added complex expression support, and fixed bug 70637.
14673         * ssapre.h: Likewise.
14674         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
14675         enabled in SSAPRE.
14676         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
14677         * driver.c: Re-enabled SSAPRE.
14679 2005-01-19  Martin Baulig  <martin@ximian.com>
14681         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
14682         the result of mono_get_method_constrained().
14684 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
14686         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
14687         manager.
14689 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
14691         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
14692         be detected.  Fixes #59296.
14694 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14696         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
14697         which can happen. Fixes #71361.
14699 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
14701         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
14702         manager.
14704 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14706         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
14707         appdomain-unload.exe to fail.
14708         
14709         * mini.c: Fix some memory leaks.
14711 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
14713         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
14714         Fixed bug and sped up some codepaths.
14716 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
14718         * mini.c: Fix some memory leaks.
14720         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
14721         conversion.
14723         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
14725         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
14726         #71320.
14728         * iltests.il: Add regression test for #71320.
14730 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
14732         * mini.c (mono_codegen): Fix installation of profiler hooks.
14734         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
14736 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14738         * mini.h, mini.c, cfold.c: optimize access to enum
14739         readonly fields, too. Eval conditional branches if possible
14740         to perform unreachable code removal in more cases.
14742 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
14744         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
14746         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
14747         code manager.
14749         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
14750         WinXP DEP. Fixes #71244.
14752 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
14754         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
14756 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
14758         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
14760 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
14762         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
14763         changes.
14765         * mini.h: Bump AOT version.
14767         * mini.h (MonoCompile): Change exvar to a hash table.
14769         * mini.c: Allocate a separate exvar for each handler block.
14771         * mini.c: Get rid of the computation of filter_lengths, its not needed.
14773         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
14774         ex var with the pending exception and only throw if the two are equal.
14775         Fixes #68552.
14776         
14777         * exceptions.cs: Add tests for rethrow and nested catch clauses.
14779         * mini-x86.c: Fix warnings.
14781         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
14782         used by all the ports now.
14784         * aot.c: Add write-symbols and save-temps options.
14786 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
14788         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
14790 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
14792         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
14793         operations.
14795         * tramp-s390.c: Check vtable slot belongs to the domain.
14797         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
14798         as per other platforms.
14800         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
14802 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14804         * driver.c: we don't run the Main() code in a subthread anymore.
14806 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
14808         * mini.c: added experimental rtc support in the statistical
14809         profiler: if the user has the permission, more accurate statistics
14810         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
14811         The MONO_RTC value must be restricted to what the linux rtc allows:
14812         power of two from 64 to 8192 Hz.
14814 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
14816         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
14818 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
14820         * mini-ppc.c: better icache flush for smp.
14822 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
14824         * mini-amd64.c (emit_move_return_value): Fix memory leak.
14826         * mini-x86.c (get_call_info): Add the get_call_info () code from the
14827         amd64 port, not yet used.
14829 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14831         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
14832         a struct type.
14834 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
14836         * driver.c: Added --security option to activate the security manager.
14837         Right now this will allow code generation for declarative demands and
14838         is disabled when AOT is specified.
14839         * mini.c: Add code generation for declarative security demands.
14840         * mini.h: Add mono_use_security_manager as an extern gboolean.
14842 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
14844         * aot.c (mono_compile_assembly): Speed up compilation a bit by
14845         emitting more dense assembly code.
14847         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
14848         exception throwing stuff.
14850 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
14852         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
14853         dead code.
14855         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
14856         left in by mistake.
14858         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
14859         fixed.
14861         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
14863         * tramp-*.c: Only patch vtable slots if the object is in the current
14864         domain. Fixes appdomain-unload.exe.
14866         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
14867         
14868         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
14869         x86 branch.
14871 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14873         * mini.c (reverse_branch_op): New helper function.
14875         * mini.c (optimize_branches): Run the new optimization only on 
14876         platforms which support it. Also reverse all kinds of branches.
14878         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
14880         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
14881         a throw statement.
14883         * mini.c (optimize_branches): Reverse not-equals branches if the false
14884         bblock is a throw. This happens a lot of time with argument checking in
14885         corlib.
14887         * mini.c (mono_codegen): Add support for placing basic blocks after
14888         the function epilogue.
14890         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
14891         function epilogue.
14892         
14893 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
14895         * mini.c (setup_stat_profiler): Only set this up if the platform
14896         supports ITIMER_PROF.
14898 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
14900         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
14901         previous patch.
14903         * inssel.brg: Fix a warning.
14905 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
14907         * mini.c: added support for statistical profiler 
14908         (run with: --profile=default:stat).
14910 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
14912         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
14914         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
14916         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
14917         related to global registers from the amd64 port.
14919 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
14921         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
14923         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
14924         with global registers.
14925         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
14927         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
14929 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
14931         * debug-mini.c (encode_value): Fix off-by-one.
14933         * aot.c (encode_value): Likewise.
14935         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
14937 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
14939         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
14940         AOT.
14942         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
14943         
14944         * aot.c (emit_method_info): Increase size of temp buffer.
14946         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
14947         the AOT case.
14949 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
14951         * aot.c (emit_method_info): Fix build.
14952         
14953         * aot.c: Further rework of the AOT file format to reduce the size of
14954         the method info data.
14956         * mini.h: Bump AOT file format version.
14958 2004-12-27  Martin Baulig  <martin@ximian.com>
14960         * mini.c (mini_get_method): New static method; call
14961         mono_get_method_full() and mono_get_inflated_method().
14962         (mono_method_to_ir): Use mini_get_method() instead of
14963         mono_get_method_full(). 
14965 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
14967         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
14969 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
14971         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
14973         * inssel-amd64.brg: Add some optimization rules.
14975 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
14977         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
14978         standard not GC'd stuff is fine.
14980 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
14982         * aot.c: Rework the AOT file format to get rid of most of the global
14983         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
14985         * mini.h: Bump AOT file format version.
14986         
14987 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
14989         * mini.h: Bump AOT file format version.
14991         * aot.c (mono_aot_is_got_entry): New function to determine if an 
14992         address is inside a GOT.
14994         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
14996         * cpu-pentium.md: Increase the maximum size of some instructions which
14997         might involve a got access.
14998         
14999         * mini.c (get_method_from_ip): Another debug helper function.
15001         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
15002         when got var accesses are created during the decompose phase.
15004         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
15006         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
15007         argument mini_compile_method and to MonoCompile, and use this to
15008         determine whenever a given method is compiled for AOT. This allows the
15009         other methods compiled during AOT compilation to be free of AOT stuff,
15010         so the backends does not need to add special support for them by
15011         creating a fake GOT etc.
15013         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
15014         longer needed.
15016 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
15018         * mini.c (mono_method_to_ir): It turns out that some of the
15019         x-appdomain wrappers are lax with types, so just ignore this for
15020         all wrappers.
15022         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
15023         at the vtable->klass. If it is non-shared code we can just use the
15024         vtable.
15026 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
15028         * mini-ppc.c: access MonoDomain from tls, too.
15030 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
15032         * declsec.c: Removed unused variable (and related warning ;-)
15034 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
15036         * iltests.il: New test for LDELEMA on an array of ref types.
15038         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
15039         all ldelema's on reftypes.
15040         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
15041         it was the wrong place to put it.
15043         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
15044         register to pop to make this cleaner, at the request of Paolo.
15046 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15048         * mini-ops.h (OP_GETHASHCODE): New op.
15050         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
15052         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
15053         operation.
15055         For a microbenchmark, this reduces the cost of Hashtable.get_Item
15056         by 25%.
15057         
15058         * mini-x86.c (mono_arch_output_basic_block): Rather than
15060         add ebp, 4
15062         Emit
15064         pop edx
15066         The first is 3 bytes while the second is 1. This saves 36 kb on
15067         mscorlib, quite a big saving. When bootstraping mcs, I was able to
15068         see a small boost because of icache locality.
15070         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
15072 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
15074         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
15075         started code sharing with the generic code.
15077 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
15079         * mini-ppc.c, cpu-g4.md: added code for direct access to
15080         tls data slots.
15082 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
15084         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
15085          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
15086         to OP_TLS_GET.
15088 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
15090         * declsec.c|h: Added functions to cache the declarative stack modifiers
15091         in MonoJitInfo and to create a security frame from a MonoJitInfo 
15092         structure.
15093         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
15094         created. Register internal calls for System.Security.SecurityFrame::
15095         _GetSecurityFrame and _GetSecurityStack.
15096         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
15097         the definitions for the new stack walk/callback mechanism.
15098         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
15099         first security frame for LinkDemands and InheritanceDemands) and
15100         GetSecurityStack for Demands. Both use the new mono_walk_stack code
15101         from lupus.
15102         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
15103         walk initialization (lupus).
15105 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
15107         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
15108         idiom.
15109         (handle_loaded_temps): Do not create a temporary variable for
15110         things that we know are temps. They will never be modified.
15111         (mono_spill_call): Set MONO_INST_IS_TEMP
15112         (mono_emulate_opcode): ditto
15113         (emit_tree): ditto
15114         (mono_method_to_ir.CEE_DUP): ditto
15116 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
15118         * mini.c (type_to_eval_stack_type): Make this handle the void type
15119         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
15120         (emit_tree): use ip_in_bb to special case some common idioms
15121         Update all callers to pass in the IP.
15122         (mono_method_to_ir): Make CEE_CALL* do the above as well.
15124         This gives us a nice 2% speedup in mcs bootstrap.
15126         * mini-x86.c (peephole_pass): Peephole pass to make
15127         mov  [foo], eax
15128         push [foo]
15130         into
15132         mov [foo], eax
15133         push eax
15135         * mini.c (ip_in_bb): new method.
15136         (mono_method_to_ir): use this method rather than doing the hash
15137         lookup ourselves.
15139         * linear-scan.c (mono_linear_scan): When expiring actives, you
15140         don't need to keep around variables that expire on this
15141         instruction. This makes it so that:
15142              a = b + 1
15143         will turn into:
15144              store (ebx add (ebx, 1))
15145         which will become
15146              add ebx, 1
15148 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
15150         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
15151         combination to avoid doing two copies. Fix up problems with previous
15152         patch.
15154         * mini.c: Fix 64 bit warnings.
15156         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
15158 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
15160         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
15161         changes from the x86 code.
15163         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
15165 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
15167         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
15168         throwing code to reduce its size, unify the AOT and non-aot code and 
15169         get rid of relocations in the AOT case.
15171         * mini-x86.h mini.c exceptions-x86.c 
15172         (mono_arch_get_throw_corlib_exception): New arch specific function to 
15173         raise corlib exceptions which doesn't require relocations in the 
15174         caller.
15176         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
15178 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
15180         * mini.c (mono_emit_method_call): Only allocate the got var when it is
15181         needed.
15183         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
15184         in the AOT case.
15186 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15188         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
15189         with add function when used from Inc/dec atomic 
15190         functions. Re-enabled optimization on x86.
15191         * mini-ops.h: renamed atomic_add functions to
15192         allow _add to match the Interlocked::Add and
15193         _add_next to match Interlocked::Inc/Dec.
15195 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
15197         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
15198         linking of BBs to the end BB, and enabled SSAPRE also with
15199         consprop and copyprop (which was prevented by that bug).
15201 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15203         * mini-x86.c: disabling the Interlocked optimizing code. 
15205 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15207         * aot.c (load_aot_module): Move reading of got_addr after the AOT
15208         file version check.
15209         
15210 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
15212         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
15213         interlocked optimization due lack of support on x86, rewrote 
15214         exchange to take into account that base may be in eax.
15215         
15216         xsp works again; activated Interlocked optimizing code.
15217         
15218 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
15220         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15222 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
15224         * mini-ops.h: Add new opcodes.
15226         * mini.h: Add new patch types. Add got_var to MonoCompile.
15228         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
15229         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
15230         make it work with all kinds of patchable code.
15232         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
15233         address of the GOT, and referencing entries in the GOT.
15235         * mini.c: Add code to load the GOT address if needed by an opcode.
15237         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
15238         independent AOT code on the x86 using an elf-style Global Offset Table.
15240 2004-12-14  Raja R Harinath  <rharinath@novell.com>
15242         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
15244 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15246         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
15247         when running xsp.
15249 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
15251         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
15252         of Interlocked:Increment/Decrement/Add as inline ops.
15253         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
15255 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
15257         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
15258         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
15260 2004-12-12  Duncan Mak  <duncan@ximian.com>
15262         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
15263         again. `patch_info->table_size' is no longer valid after Zoltan's
15264         commit #37636.
15266 2004-12-12  Martin Baulig  <martin@ximian.com>
15268         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
15269         if we are the "real" method, ie. not an inlined method inside it.
15271 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
15273         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
15274         before we look in the special fields table. This fixes
15275         ../tests/thread-static-init.cs.
15277 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15279         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
15280         for Array get_Rank and get_Length. Fixes bug #70465.
15282 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
15284         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
15285         separate structure to reduce the size of MonoJumpInfo.
15287 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15289         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
15291 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
15293         * mini.c (mini_get_inst_for_method): Changed to allow ports
15294         to return a MonoInst instead of opcode 
15295         (renamed mini_get_opcode_for_method to better reflect the new functionality)
15296         
15297         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
15298         Allow ports to return a created MonoInst instead of op-code, will enable
15299         new optimizations.
15300         (renamed mini_get_opcode_for_method to better reflected the functionality)
15302 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
15304         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
15306 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15308         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
15309         Fixes #69985.
15311 2004-12-08  Martin Baulig  <martin@ximian.com>
15313         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
15314         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
15316 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
15318         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
15319         correctly.
15321         * exceptions.cs: Disable some tests which depend on properties of x86 fp
15322         arithmetic.
15324 2004-12-08  Raja R Harinath  <rharinath@novell.com>
15326         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
15328 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
15330         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
15331         bug introduced by the previous patch.
15333 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15335         * mini-ppc.c, objectc.cs: handle large structs passed by value
15336         (fixes bug #69972).
15338 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15340         * mini-ppc.c: OP_ARGLIST implementation from
15341         Geoff Norton  <gnorton@customerdna.com>.
15343 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
15345         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
15346         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
15348 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15350         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
15352 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15354         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
15355         support.
15357 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
15359         * mini-sparc.c: Zero out localled-ed memory.
15361         * iltests.il: Add tests for zeroing out localloc-ed memory.
15363 2004-12-04  Martin Baulig  <martin@ximian.com>
15365         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
15366         mono_method_get_signature_full().       
15368 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
15370         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
15371         and some utility functions (always for SSAPRE), integrated SSAPRE.
15372         * mini.h: Likewise.
15373         * driver.c: Added ssapre option.
15374         * ssa.c: Small fix on OP_ARG handling.
15375         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
15376         * Makefile.am: Likewise.
15378 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
15380         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
15381         now in the xp code.
15383         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
15384         icall.
15386 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15388         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
15389         
15390         * cpu-s390.md : Increase instruction length of oparglist.
15392         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
15394 2004-11-30  Martin Baulig  <martin@ximian.com>
15396         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
15397         virtual generic methods.  We call a special helper_compile_generic_method()
15398         icall to retrieve the method from the vtable, inflate and compile
15399         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
15401         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
15403 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
15405         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
15407 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
15409         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
15410         Fixes #69929.
15412 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
15414         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
15415         platforms with PIC aot.
15417 2004-11-28  Martin Baulig  <martin@ximian.com>
15419         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
15420         Fixes gen-112.cs.
15422 2004-11-28  Martin Baulig  <martin@ximian.com>
15424         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
15425         the result of mono_type_get_underlying_type() to check whether
15426         we're byref.
15428 2004-11-26  Martin Baulig  <martin@ximian.com>
15430         * mini.c
15431         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
15432         in the g_assert().
15434 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
15436         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
15437         the same way as the other arguments so they won't get clobbered.
15439         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
15440         calls through R11 since it is clobbered by the trampoline code.
15442 2004-11-26  Raja R Harinath  <rharinath@novell.com>
15444         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
15445         pick up in-tree mscorlib.dll.
15447 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
15449         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
15451         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
15452         runtime data/code are now stored in a table similar to the GOT in ELF. 
15453         This allows the code itself to be position independent.
15455         * aot.c: Fix loading of referenced assemblies after the lazy assembly
15456         loading changes.
15458         * aot.c: Attach ELF type (object/function) directives to all global
15459         symbols.
15461         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
15463         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
15465         * mini-amd64.h: Turn on PIC AOT code.
15467         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
15468         returning the offset within an OP_AOTCONST instruction where the GOT
15469         offset needs to be added.
15471         * mini.h: Bump AOT file format version.
15473 2004-11-25  Martin Baulig  <martin@ximian.com>
15475         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
15476         uninflated generic methods.
15478 2004-11-25  Martin Baulig  <martin@ximian.com>
15480         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
15482 2004-11-24  Martin Baulig  <martin@ximian.com>
15484         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
15485         original klass (this only applies for generic instances).
15487 2004-11-24  Martin Baulig  <martin@ximian.com>
15489         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
15490         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
15491         that array).
15493 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
15495         * mini.c (mono_method_to_ir): Disable inlining for methods containing
15496         localloc. Fixes #69678.
15498         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
15499         
15500 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
15502         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
15503         used SSE registers on pinvoke calls. Fixes #69774.
15505 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
15507         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
15508         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
15510 2004-11-23  Raja R Harinath  <rharinath@novell.com>
15512         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
15513         Refer directly to the mcs/ tree.
15515 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15517         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
15518         Check if a trampoline for a synchronized method is required. 
15520 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
15522         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
15523         with localloc if needed. Throe arithmetric exception in
15524         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
15525         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
15527 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
15529         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
15530         types before switching on type.  Fixes #69622.
15532 2004-11-19  Raja R Harinath  <rharinath@novell.com>
15534         * Makefile.am (check-local): New.  Integrate into 'make check'.
15535         (MCS,RUNTIME): Define using in-tree mono and mcs.
15536         (ILASM): New.
15537         (%.exe): Use $(ILASM).
15539 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
15541         * mini-ppc.c: adjust initial prolog size (bug #69691).
15543 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
15545         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
15546         #69664.
15548 2004-11-17  Raja R Harinath  <rharinath@novell.com>
15550         * Makefile.am (clean-local): Rename from 'clean'.
15552 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15554         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
15555         to mono_arch_is_int_overflow. 
15556         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
15557         SIGFPE events.
15559 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
15561         * declsec.c|h: New files to support declarative security attributes.
15562         Added function to check if a method has (applicable) security.
15563         * mini.c|h: Add check for declarative security attributes in
15564         mono_method_check_inlining.
15565         * Makefile.am: Added declsec.c and declsec.h to the build.
15567 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15569         * mini.c, mini.h: update to keep dynamic code info per-domain.
15571 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
15573         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
15574         (mini_init): Get rid of it from here too.
15576 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
15578         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
15579         implemented OP_RETHROW (patch by Geoff Norton
15580         <gnorton@customerdna.com>).
15582 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
15584         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
15585         between appdomains.  Fixes appdomain-unload on PPC.
15587 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
15589         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15590         mini-exceptions.c: handle the new wrapper types.
15591         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
15592         token value as a MonoClass* when compiling a wrapper.
15593         mono_jit_create_remoting_trampoline now takes an additional
15594         MonoRemotingTarget parameter.
15595         
15596 2004-11-10  Martin Baulig  <martin@localhost>
15598         * mini.c (mono_method_to_ir): Use `generic_container->context'
15599         rather than creating a new one.
15601 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15603         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
15605         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
15607 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
15609         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
15610         the experimental aot cache stuff.
15612 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
15614         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15615         mini-exceptions.c: update to exception clause structure changes.
15617 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15619         * exceptions-x86.c (throw_exception): Fix warnings.
15621         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
15622         for OP_RETHROW.
15624 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
15626         * exceptions-sparc.c (get_throw_exception): Really fix this.
15628 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
15630         * tramp-*.c: we no longer support icalls without wrappers, so
15631         a bit of code can be removed here
15633 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
15635         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
15636         patch.
15638         * cpu-sparc.md: Add op_rethrow.
15640         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
15642         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
15644         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
15645         * mini-ops.h: Add OP_RETHROW.
15647         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
15649         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
15651 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
15652         
15653         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
15654         Makes the output much easier to read
15656 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
15658         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
15659         prevents another huge leak when compiling with ssa. Secondly, the
15660         performance of doing this rather than freeing the lists is much
15661         better. GList does a lock every time you allocate a list link,
15662         so that it can use a memory pool. So, it is better to just use
15663         a memory pool of our own.
15664         
15665         * ssa.c, linear-scan.c: replace g_list_remove_link with
15666         g_list_delete.  The remove one does not free the GList, so we were
15667         leaking memory. On -O=all --compile-all with corlib, this cut down
15668         3 MB of allocations.
15670 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
15672         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
15674         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
15676         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
15677         into a new function mono_create_jit_trampoline ().
15679 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
15681         * trace.c (get_spec): Allow tracing of classes without a namespace.
15683 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
15685         * mini.c: Fix pointer overwrite in mini_method_compile.
15687 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
15689         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
15690         The darwin ABI needs some special handling for 1 and 2 byte structs
15691         Lets use lbz/lhz instead of lwz everywhere.
15692         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
15693         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
15694         Use stb/sth for the former, and put the latter always on stack instead of in
15695         argument registers.
15697 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
15699         * trace.c (is_filenamechar): Add '_'.
15701 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
15703         * mini-s390.c: Fix prolog length to allow for large trace requirements.
15705         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
15707 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
15709         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
15710         depends on libmonogc. Fixes #68805.
15712 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
15714         * mini.c (mono_jit_free_method): Provide extra information for
15715         this error.  Currently this leaks, but will be turned into a
15716         developer option in the future.
15718 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
15720         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
15722 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
15724         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
15725         boundary. Fixes reading of PATCH_INFO_R4 and R8.
15726         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
15728 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
15730         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
15731         trampolines for AOT code.
15733 2004-10-22    <vargaz@freemail.hu>
15735         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
15736         constructed types. Fixes #68136.
15738 2004-10-21  Martin Baulig  <martin@ximian.com>
15740         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
15741         if it returns true, unwind the stack to the call instruction.
15743 2004-10-21    <vargaz@freemail.hu>
15745         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
15747         * mini.h: Bump AOT version number.
15749         * objects.cs: Add another test for unbox trampolines.
15751         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
15752         valuetype methods.
15754 2004-10-20    <vargaz@freemail.hu>
15756         * driver.c: Add SHARED to the set of optimizations tested.
15758         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
15760         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
15761         used by CEE_NEWARR.
15763         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
15765 2004-10-20  Martin Baulig  <martin@ximian.com>
15767         * mini-exceptions.c (mono_handle_exception): Call
15768         mono_debugger_handle_exception() to tell the debugger about
15769         catch/finally clauses.
15771 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
15773         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
15775         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
15776         #68447.
15778 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
15780         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
15781         methods as their native size, fixed bug #57543, #57545.
15782         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
15783         This saves a temporary register and mullw call down into 1 (minor perf
15784         increase for cases like sum = sum * 5;  This use to translate into:
15785             li r11,5
15786             mullw r28,r28,r11
15787         It now translates to
15788             mulli r28,r28,5
15790 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
15792         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
15793         #68388.
15795 2004-10-11  Martin Baulig  <martin@ximian.com>
15797         * mini.c (mono_method_to_ir): If we're a generic method, get the
15798         MonoGenericContainer from our MonoMethodNormal and create a
15799         MonoGenericContext from it.
15801 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
15803         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
15805         * basic-long.cs: Add test for checked i8->i2 cast.
15807 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
15809         * inssel-ppc.brg: added a couple of speedup rules.
15811 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
15813         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
15814         to speed up rebuilds.
15816 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15818         * mini-s390.c: Minor fix to OP_OR_IMM.
15820 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
15822         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
15823         better. Fixes appdomain-unload.exe on sparc.
15825 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
15827         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
15828         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
15829         see bug 67324.
15831 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
15833         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
15835 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
15837         * mini.c: Always generate a field read/write wrapper for members
15838         of the class MarshalByRefObject since the actual instance could
15839         be a CBO.
15841 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
15843         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
15845 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
15847         * driver.c mini.h trace.c: Move the setting of the main assembly into
15848         a separate function called mono_trace_set_assembly () and call it after
15849         actually loading the main assembly. Fixes #66872.
15851 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
15853         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
15854         using the code manager.
15856 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
15858         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
15860 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
15862         * cpu-amd64.md: Fix bug in previous patch.
15863         
15864         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
15865         #66650.
15867 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
15869         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15870         mini-exceptions.c: updates for changed stack walk interface.
15872 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15874         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
15876 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
15878         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
15880 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
15882         * driver.c (mini_regression_list): Do not call mono_assembly_close 
15883         since assemblies can't be unloaded.
15884         
15885 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15887         * cpu-amd64.md: Fix more instruction lengths.
15889         * cpu-amd64.md: Fix lengths of some instructions.
15891 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
15893         * inssel.brg: Make the array ldelema check aot friendly.
15895 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
15897         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
15899         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
15901 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
15903         * mini-x86.c: Fix build.
15905         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
15906         mono_type_get_underlying_type () helper function to simplify code.
15907         
15908 2004-09-09  Martin Baulig  <martin@ximian.com>
15910         * mini-amd64.c: Don't access `type->data.klass' directly, call
15911         mono_class_from_mono_type() instead since the type may be a
15912         generic instance.
15914 2004-09-09  Martin Baulig  <martin@ximian.com>
15916         * mini-amd64.c (get_call_info): Fix support for generic instances.
15917         (add_valuetype): Use mono_class_from_mono_type() to get the class
15918         since we can be a generic instance.
15920 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
15922         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
15924 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
15926         * liveness.c: reset spill costs on each scan: bug 62107
15928 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
15930         * exceptions-sparc.c (mono_arch_find_jit_info): remove
15931         unnecessary line that doesn't compile
15933 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
15935         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
15936         trampolines, make them call an error function so people can fix their
15937         code.
15939 2004-09-06  Martin Baulig  <martin@ximian.com>
15941         * mini.c (mono_method_to_ir): When initializing locals, handle a
15942         generic instances like a valuetype if it's a valuetype and like a
15943         class if it's a class.
15945 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15947         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
15948         stack. Fixes #64674.
15950         * exceptions.cs: Add test for unwinding of call arguments.
15952 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
15954         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
15955         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
15956         set the carry/borrow flag). The sparc and s390 implementations
15957         can now use optimized versions (and simplify the code). ppc bugfixes.
15959 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
15961         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
15963 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
15965         * inssel-amd64.brg: Remove leftover 32 bit rule.
15967         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
15969 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
15971         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
15972         mono_arch_find_jit_info functions into a new function. Fix a memory
15973         leak.
15975         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
15976         refactored code.
15977         
15978 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
15980         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
15981         as well.
15982         
15983         * exceptions.cs: Add array size tests.
15985         * mini.c: Allocate a separate icall wrapper for each arity of 
15986         mono_array_new_va. Fixes #59509.
15988         * exceptions.cs: Add testcase for 64578.
15990         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
15992         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
15993         
15994 2004-09-02  Martin Baulig  <martin@ximian.com>
15996         * mini.c (mono_method_to_ir): When initializing the locals, call
15997         handle_initobj() on the generic instance itself, not its
15998         underlying type.
16000 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
16002         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
16003         MonoJitInfo for dynamic methods.
16005         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
16007         * mini.c: Add support for freeing JIT data for dynamic methods.
16008         
16009 2004-09-01  Martin Baulig  <martin@ximian.com>
16011         * mini-x86.c (is_regsize_var): Added support for generic
16012         instances.
16013         (mono_arch_emit_prolog): Make this compile again, use
16014         `x86_push_imm_template (code)'.
16016 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
16018         * mini-x86.c: make all push_imm instructions that get
16019         patched always emit the long form
16021 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
16023         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
16024         in a per-domain hash.
16026         * mini-amd64.c (merge_argument_class_from_type): Handle generic
16027         types.
16029 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
16031         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
16032         work.
16033         
16034         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
16035         work.
16037         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
16038         Beginnings of SSE2 support.
16040         * exceptions.cs: Add more tests for checked int<->uint casts.
16042 2004-08-28  Martin Baulig  <martin@ximian.com>
16044         * mini-x86.c (mono_arch_instrument_epilog): Added support for
16045         generic instances.
16047         * mini.c
16048         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
16049         Handle generic instances recursively.
16051 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
16053         * iltests.il: test for conv.u8 on a constant
16055 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
16057         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
16058         LCONV_x4 (shrun_32 (membase)).
16060 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
16062         * inssel-x86.brg: c&p rules for push/setret of long
16064 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
16066         * inssel-x86.brg: c&p rules for compare (base, regvar) and
16067         compare (regvar, base)
16069         * inssel-x86.brg: more burg love
16071         * inssel.brg: more cleanup
16073         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
16075 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
16077         * basic-long.cs, basic-calls.cs: new tests for optimization.
16079 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
16081         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
16082         patch.
16084 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
16086         * mini-amd64.c (read_tls_offset_from_method): Add another case.
16087         
16088 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
16090         * inssel.brg (mini_emit_memcpy): use 
16091         NO_UNALIGNED_ACCESS to disable memcpy optimization
16093 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
16095         * mini-amd64.c: Handle generic types in various places.
16097         * mini.c (mono_method_to_ir): Handle generic types in init locals.
16099 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
16101         * mini.c (handle_box): Fix warning.
16103         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
16105         * mini-amd64.h: Enable the emit_state optimization.
16107         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
16109         * mini-amd64.c: Add some new 64 bit peephole opts.
16111         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
16113         * cpu-amd64.md: sreg1 of div instructions must be %rax.
16115         * mini-amd64.c: Register allocator fixes.
16117         * mini.c: Add an optimization to emit_state to avoid allocation of new
16118         registers on some platforms.
16120 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
16122         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
16124         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
16125         allocation. Fixes #63085.
16127         * basic-long.cs: Add new regression test.
16129         * mini-amd64.c: Register allocator improvements.
16131 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
16133         * mini-amd64.c (read_tls_offset_from_method): Add another code
16134         sequence.
16136         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
16137         instruction sequence for nullifying class init trampolines.
16139         * objects.cs: Add new regalloc test.
16141         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
16143 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
16145         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
16146         
16147         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
16148         arguments.
16150         * driver.c: Fix profiling after TLS changes.
16151         
16152         * driver.c (mono_main): Set mono_stats.enabled if needed.
16154         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
16155         CEE_BOX.
16157 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
16159         * mini-x86.c: use a 1 op rather than a 2 op tls access
16160         instruction -> faster.
16162 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
16164         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16165         x86 backend.
16167 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
16169         * exceptions-sparc.c (throw_exception): fix typo
16171 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
16173         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
16174         set tree->dreg correctly with tls. Allow any
16175         register to be used.
16177         * mini-x86.c (read_tls_offset_from_method): add new code
16178         generation pattern seen with GCC.
16181 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
16183         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
16184         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
16185         exceptions-sparc.c: fix some performance issues in exception
16186         handling and setting of the stack trace for exceptions that were
16187         already thrown.
16189 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16191         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
16192         x86 backend.
16193         
16194         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
16195         registers.
16197 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
16199         This patch inlines tls access, when possible.
16200         
16201         * mini.h: new arch functions for TLS intrinsics.
16202         All platforms updated with a stub.
16204         * mini.c: use the new intrinsics
16206         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
16207         arch specific intrinsic for tls variables
16209 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
16211         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
16212         under windows.
16214 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
16216         * mini.c: thread local allocation
16218 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
16220         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
16222         * Makefile.am: Link against the static version of libmonogc.
16223         
16224         * Makefile.am: Link the static versions of the convenience libraries
16225         into the mono executable.
16227         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
16229 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
16231         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
16232         on integer overflow.
16234         * mini-amd64.c: Reorganize function call code.
16236         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
16238 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16240         * inssel-x86.brg: use xor eax,eax.
16241         
16242         * basic.cs: new tests
16244 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16246         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
16247         in exception throwing code.
16248         
16249 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16251         * inssel-x86.brg: use xor esi,esi.
16253 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16255         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
16256         can trace methods compiled during mini_init () too.
16258         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
16259         CEE_CONV_U4.
16261 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
16263         * Makefile.am: static link on x86 (r=zoltan)
16265 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
16267         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
16268         code since it causes some programs to fail.
16270 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
16272         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
16274 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
16276         * mini.c: ovfops_op_map - add STACK_OBJ case for
16277         CONV_I 
16278         * basic.cs: add test_0_pin_string as test
16279         case for above.
16281 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
16283         * Makefile.am: build C# if srcdir != builddir
16285 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
16287         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
16288         fall-through blocks.
16290 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16292         * driver.c: enable loop by default again and include abcrem in -O=all.
16294 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
16296         * iltests.il: Add some localloc tests.
16298         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
16300         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
16301         Fixes #62574.
16303         * inssel-amd64.brg: Add some optimizations.
16305         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
16306         for gcc-3.4.
16308         * Makefile.am: Statically link mono against libmono on AMD64.
16309         
16310         * mini-amd64.c inssel-amd64.brg: Optimizations.
16312 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
16314         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
16316         * tramp-amd64.c: Patch calling code in trampolines.
16318 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
16320         * mini-amd64.c: pinvoke struct passing fixes.
16322 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
16324         * mini-sparc.c: redo change, make mono_arch_cpu_init call
16325         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
16327 2004-08-05  Duncan Mak  <duncan@ximian.com>
16329         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16330         CEE_LDELEM_ANY.
16332 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16334         * mini-amd64.c (emit_move_return_value): Move return value for normal
16335         calls too.
16337 2004-08-05  Martin Baulig  <martin@ximian.com>
16339         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
16340         `type->type'; just modify `type' itself when dealing with enums
16341         and generic instances.
16342         (check_call_signature): Make `simple_type' a `MonoType *'.
16344 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16346         * mini.c: Use OP_PADD to add offsets to addresses.
16348         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
16350 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
16352         * mini-sparc.c (mono_arch_emit_epilog): fix check
16353         for folding last op into restore instruction
16355 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
16357         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
16358         helper methods using the code manager.
16359         
16360         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
16362         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
16364 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16365         
16366         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
16367           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
16369         * mini-s390.c: fix tail processing
16371 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
16373         * mini-ppc.c: mul.ovf.un exception name fix.
16375 2004-08-03  Martin Baulig  <martin@ximian.com>
16377         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
16378         instances; before jumping to `handle_enum', also modify `ptype'.
16380 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
16382         * cpu-sparc.md: fcall maximal length too small.
16384 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
16386         * mini-amd64.c mini.h: Add initial support for passing/returning 
16387         structures to/from pinvoked methods.
16389 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
16391         * mini-ppc.c: reg allocator fix.
16393 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
16395         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
16397         * inssel.brg: Optimize memset on 64 bit machines.
16399         * mini-amd64.c: Fix some vararg cases.
16401 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16403         * mini-s390.c: Corrected macro in emit_float_to_int
16405         * s390-abi.cs: Tests to exercise the s390 ABI
16407 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16409         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
16410         caller saved regs.
16412         * basic.cs: Add a test for add.ovf.un.
16414 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
16416         * mini-sparc.c: add case for OP_IDIV_UN
16418 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16420         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
16421         
16422         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
16424 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
16426         * basic.cs: regression tests.
16428         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
16429         regressions.
16431 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
16433         * basic.cs: Add a new test.
16435         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
16436         and AOT. Various fixes and optimizations.
16438         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
16440 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16442         * mini-ppc.c: make sure temp regs are not used for global reg
16443         allocation.
16445 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
16447         * cpu-sparc.md: conv_i8 fix for 64bits
16449         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
16451 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
16452         
16453         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
16454         add opcode for cmp BYTE PTR [eax], imm.
16456         * inssel.brg: Make memcpy and memset takes bases.
16458 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
16460         * *-amd64.*: More AMD64 work.
16461         
16462 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
16464         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
16465         add a compare-not-equal opcode.
16466         
16467 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
16469         * mini.c: Use mono_init_from_assembly instead of mono_init.
16470         
16471 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
16473         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
16475         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
16477         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
16479         * inssel.brg: 64 bit fixes.
16481         * mini.h (MonoCallInst): Add some AMD64 specific data.
16483         * mini.h: Add some OP_P opcodes.
16485 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
16487         * basic.cs: tests for 61797 and 61740
16489 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16491         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
16492         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
16494 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
16496         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
16498         * *-amd64*.*: Ongoing AMD64 work.
16500 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
16502         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
16504         * *-amd64*: Ongoing AMD64 work.
16506         * mini-arch.h: Add AMD64 support.
16508         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
16510         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
16512         * mini-ops.h: Add new opcodes.
16514         * Makefile.am: Add AMD64 support.
16516         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
16517         rules into the inssel-long*.brg files.
16519         * *-amd64.*: Add beginnings of AMD64 backend.
16521 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
16523         * mini.c (print_dfn): commenting out the code that prints
16524         the cil. With -O=deadce, this makes -v -v crash.
16525         
16526         * cpu-pentium.md: make checkthis have a length of 2
16528 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
16530         * mini-sparc.h: fix implementations of __builtin
16531         functions for Sun compiler for V9.
16533 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
16535         * mini.c: use the new stelem.ref wrapper
16536         * exceptions.cs, arrays.cs: new stelem.ref tests
16538 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16540         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
16541         new XSP should work with these changes).
16543 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
16544         
16545         * inssel-{long32,x86,}.brg: trivial optimizations.
16546         
16547 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
16549         * mini.c: load value when emitting box operation in
16550         constrained calls.
16552 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
16554         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
16555         is one byte shorter than cmp DWORD PTR [eax], 0.
16557 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
16559         * inssel-ppc.brg: arguments on the stack are always
16560         relative to the stack pointer (spotted by Neale Ferguson).
16562 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16564         * exceptions-x86.c: delay appending the method name to the trace until
16565         after mono_jit_info_table_find is called, as this gets the real
16566         MonoMethod.
16568 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
16570         * aot.c: register roots
16572 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16574         * aot.c : I could just use PLATFORM_WIN32 flag.
16576 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16578         * aot.c : Reverting the previous fix. This time it broke linux build.
16580 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
16582         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
16584 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
16586         * mini.c (handle_stack_args): Remove some more debugging code.
16587         
16588         * mini.c (handle_stack_args): Remove debug output left in by mistake.
16590         * driver.c mini.h aot.c: Allow additional options to be specified with
16591         --aot and pass them to mono_compile_assembly.
16593         * aot.c: Add experimental code to AOT compile all loaded assemblies
16594         on demand and save the code into a cache in the filesystem.
16596         * aot.c: Add support for more wrapper methods.
16597         
16598         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
16599         58863.
16601         * cpu-*.md: Remove removed opcodes.
16603         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
16604         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
16605         related icalls to marshal.c.
16607 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
16609         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
16611         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
16613         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
16615 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
16616         * liveness.c: If liveness is recomputated we need to reset the information
16617         for each variable. This way, if the liveness range has been narrowed
16618         by optimizations that happened after the last computation, we can return
16619         a smaller range.
16620         
16621         For example, if you have
16622         
16623         {
16624                 int i = 0;
16625                 
16626                 // Tons of code that does not affect i
16627                 
16628                 i = foo ();
16629                 ...
16630         }
16631         
16632         i = 0 is dead code and will be removed by SSA. However, when
16633         linear scan gets to the code, i will still appear to be live
16634         throughout the entire block. This prevents good register allocation.
16636 2004-07-06  Martin Baulig  <martin@ximian.com>
16638         * debug-mini.c (mono_debug_init_method): Allow
16639         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
16640         (mono_debug_add_icall_wrapper): New method.
16642         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
16644 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
16646         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
16647         optimization.
16649 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
16651         * aot.c (mono_aot_load_method): Fix loading of debug info.
16653 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16655         * aot.c: Add logging support.
16657 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
16659         * mini.h: Add prototype for mono_print_method_from_ip.
16661         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
16663         * inssel.brg: 64 bit fixes.
16665         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
16666         inssel-long32.brg.
16668         * Makefile.am: Add SPARC64 support.
16670 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
16672         * aot.c: Fix alignment problems on 32 bit platforms.
16674 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
16676         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
16677         SPARC64.
16679         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
16680         problems.
16682         * mini.h: Bump AOT file version. Some 64 bit fixes.
16684 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16686         * inssel-sparc.brg: Add new rule to avoid register moves.
16688         * inssel.brg: Add ldind_to_load_membase helper function.
16690 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
16692         * mini.c: OffsetToStringData intrinsic.
16693         
16694 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
16696         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
16698         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
16699         regression tests.
16701         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
16702 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
16704         * mini.c: reinstated mono_compile_get_interface_var()
16705         on x86, too, since the change breaks the Gtk# build there as well.
16707 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16709         * driver.c: remove loop from the default optimizations: it seems to
16710         interact badly with some of the other options (see bug #60613).
16712 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
16714         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
16715         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
16717 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
16719         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
16720         vararg-using methods.
16722 2004-06-21  Martin Baulig  <martin@ximian.com>
16724         * mini/mini-exceptions.c
16725         (mono_handle_exception): Added `gpointer original_ip' argument.
16726         After calling mono_unhandled_exception(), call
16727         mono_debugger_unhandled_exception() and if that returns true,
16728         restore the context and return.
16730 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16732         * mini-ppc.c: prefer the use of relative branches so
16733         they won't need to be patched in aot code (patch from Patrick Beard).
16735 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16737         * aot.c: patch from Patrick Beard to make the output assembly
16738         more correct for the MacOSX assembler. Small tweak to
16739         generate sane images on Linux/PPC, too.
16741 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16743         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
16744         case until bug #59509 is fixed (shows up in #60332).
16746 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16748         * mini.c: make sure the needed wrappers are compiled, too, with
16749         precomp.
16751 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
16753         * driver.c: remove NPTL reference in --version output.
16755 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16757         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
16758         generate valid assembly for the Mach-O assembler.
16760 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
16762         * driver.c: don't include abcrem in the all optimization specifier
16763         since it slows down jit compilation too much for now.
16765 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
16767         * mini.c: use BIGMUL only if both operands have the same signage.
16768         * iltests.il: Test for bug 60056. (errors related to signage in
16769         BIGMUL).
16771         r=lupus.
16773 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
16775         * mini.c, aot.c: memory leak fixes.
16777 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16779         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
16781 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
16783         * Makefile.am: remove the -static hack completely, it links in
16784         statically glib as well.
16786 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
16788         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
16789         * exceptions.cs: make it compile with new mcs/csc.
16791 2004-06-03 Massimiliano Mantione <massi@ximian.com>
16792         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
16793         and added relevant test case.
16795 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16797         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
16798         regressions in gtk-sharp.
16800 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
16802         * exceptions.cs: New regression tests.
16804         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
16806 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
16808         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
16810 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
16812         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
16814         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
16816 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
16818         * mini.c (mono_jit_runtime_invoke): Init class in this
16819         method instead of trusting mono_jit_compile_method to
16820         do the work (because wrappers can be in object class)
16822 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
16824         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
16826         * basic-long.cs: New regression test.
16828 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
16830         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
16831         and div/rem checks.
16833 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16835         * Makefile.am: fix miguel's change to build mono statically against
16836         libmono (track build dependencies).
16838 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
16840         * cfold.c: Some glib versions do not have G_MININT32.
16842 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
16844         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
16845         with precision of tan, atan, sin and cos, and implemented related
16846         regressions tests (fixes bug 54467, but one new problem appeared and
16847         is not fixed yet).
16849 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
16851         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
16853         * exceptions.cs: Add test for constant folding && division by zero.
16855         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
16856         since driver.c is in libmono too, so the optimization was useless.
16858         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
16859         variable to driver.c so the compiler can emit more efficient code to
16860         access them.
16862 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16864         * Makefile.am: don't distribute generated inssel.[ch] files.
16866 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
16868         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
16869         into the default appdomain. Fixes #58707.
16871         * jit-icalls.c: Remove the broken approximation for truncl, doing
16872         no conversion is better.
16874         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
16875         Fixes #58863.
16877 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
16879         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
16880         of the mcrxr instruction which is not available on some processors
16881         even if it's documented to be. Implement add and sub overflow correctly
16882         (still not complete for long unsigned). Speed up icalls a bit.
16884 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
16886         * mini.c (mono_jit_compile_method_with_opt): Make sure that
16887         we run .cctor in the current domain instead of target_domain.
16888         
16889         Fixes bug #58558, .cctor not being called in -O=shared.
16891 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16893         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
16895 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
16897         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
16898         which can be done with an imm8, do it that way.
16899         (mono_arch_output_basic_block): ditto for a jmp
16900         (mono_arch_emit_prolog): Computate maximum offset of a label.
16902 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
16904         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
16905         now tries to allocate prefered physical reg's for virtual
16906         regs. This reduces the number of emited spills/loads with
16907         20-30% on our core assemblies.
16909 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16911         * jit-icalls.c: truncl() is not needed and trunc() is
16912         the correct thing to do anyway (bug #58287).
16914 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
16916         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
16917         if available.
16919 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16921         * driver.c: enable loop optimizations by default.
16923 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16925         * mini-x86.c: fix calc of max loop size when aligning loops start.
16927 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
16929         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
16930         the stack.
16932 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
16934         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
16935         should set carry.
16937         * basic-long.cs: Add tests for add/subtract of immediates with carry.
16939         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
16940         
16941         * mini.c (inline_method): Allways inline some wrappers even if the cost
16942         is too large. Fixes #58785.
16944         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
16945         
16946 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
16948         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
16949         (crichton@gimp.org). Beginning of support for sparc/linux.
16951         * mini-sparc.c: Optimize retrieval of LMF address.
16953 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
16955         * exceptions-ppc.c:  handle alloca in methods with clauses.
16957 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
16959         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
16961 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
16963         * mini.c: Delegate most of the abort signal work to 
16964           mono_thread_request_interruption, which also handles Stop and Suspend
16965           states.
16967 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
16969         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
16970         supports the save/restore lmf opcodes.
16972 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
16974         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
16975         by gcc-3.4 as well.
16977         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
16979 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
16981         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
16982         methods which contain array accesses.
16984         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
16985         boundaries. Fixes #58537.
16987         * iltests.il: Add regression test for #58537.
16989 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
16991         * mini-x86.c (mono_arch_local_regalloc): Last part of
16992         fix for bug #58633 (releasing register to early).
16994 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
16996         * basic-long.cs: Add new regression test.
16998 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
17000         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
17001         register too early on the chain.
17003 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
17005         * mini.c (create_helper_signature): Use a helper function to reduce
17006         the code which needs to be written. Also set the calling convention of
17007         icalls on windows. Fixes #57840.
17009 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
17011         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
17012         exceptions-ppc.c: added helper function to get the instruction address
17013         from a signal handler context.
17015 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17017         * helpers.c: use g_get_tmp_dir. Invokes happyness 
17018         from gonzalo.
17020 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17022         * helpers.c: Add new env variable to pass args to objdump.
17023         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
17025 2004-05-17  Radek Doulik  <rodo@ximian.com>
17027         * Makefile.am (common_sources): added abcremoval.h so it get
17028         disted and daily mono packages on go-mono.com will build again
17030 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
17032         * abcremoval.c: Fixed coding style, added copyright header.
17034         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
17036         * mini.h: Added prototype for abc removal main function.
17038         * build_relations_propagation_table.pl: Added copyright header.
17040 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
17042         * basic-long.cs: reg test for complex ceq_long bug.
17044 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
17046         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
17047         reg in long and clob case (bug #58343). Fixed/added comments.
17049 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
17051         * mini.c (mono_jit_runtime_invoke): Follow new convention
17052         of calling the invoke method with an function pointer.
17054 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
17056         * ChangeLog: Fix author of memory leak patch.
17058 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
17060         * Makefile.am: fix make dist as well...
17063 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
17065         * cfold.c: Made so that conversions from pointer to int4 are no-ops
17066         on archs where pointers are 4 bytes long.
17068         * Makefile.am: Added abcremoval.c source file.
17070         * abcremoval.c: Added abcremoval.c.
17072         * abcremoval.h: Added abcremoval.h.
17074         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
17076         * inssel.brg: Enabled bounds check removal.
17078         * mini.c: Added support for abcrem optimization.
17080         * mini.h: Added abcrem optimization label.
17082         * driver.c: Added support for abcrem optimization.
17084         * propagated_relations_table.def: Added propagated_relations_table.def.
17086 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
17088         * mini.c, cfold.c: fix style.
17090 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17092         * mini.c: handle issue with the low-level implementation of
17093         some long opcodes (bug #54209).
17095 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
17097         * basic.cs: test for my new cmov stuff.
17099 2004-05-13      Patrik Torstensson
17101         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
17102         opt and added peephole documentation.
17104 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
17106         * tramp-ppc.c: rewrote the generic trampoline code.
17108 2004-05-11      Patrik Torstensson
17110         * mini-x86.c: optimize long shl/shr asm code (one less branch)
17112 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
17114         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
17116         * mini.h mini.c dominators.c: Applied patch from Derek Woo
17117         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
17119         * mini.c: Add new icalls for AsAny marshalling.
17121 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
17123         * tramp-ppc.c, mini-ppc.c: more cleanups.
17125 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17127         * mini.c: no warnings.
17129 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17131         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
17133 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
17135         * mini.c: In the thread abort signal handler, if the thread is in the
17136         process of being stoped, don't throw the Abort exception, just stop the
17137         thread.
17139 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
17141         * tramp-ppc.c: removed old code.
17143 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17145         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
17146         do some simple speed optimizations on ppc.
17148 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
17150         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
17151         and large offsets in load/store.
17153 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
17155         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
17156         it causes regressions.
17158 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
17160         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
17161         support.
17163 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17165         * jit-icalls.c: remove warnings.
17166         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
17167         speedups for unsafe code.
17169 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
17171         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
17173 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
17175         * basic-calls.cs: Add new regression test.
17177         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
17178         more portable.
17180         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
17182         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
17183         is no longer used.
17185 2004-05-06      Patrik Torstensson
17187         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
17188         long reg allocation in any reg (not only eax:edx) and implemented 
17189         long shl/shr ops in asm instead of helpers.
17191 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
17193         * mini-sparc.h: Fix warnings.
17195         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
17196         stack.
17198         * mini-exceptions.c (mono_handle_exception): Call the filter in a
17199         separate statement for clarity.
17201         * mini-sparc.c: Update status.
17203 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
17205         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
17206         here.
17208 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17210         * inssel-ppc.brg: another small pre-release workaround:
17211         we don't do overflow detection for long_sub_un.
17213 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17215         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
17216         (also works around a weird ppc bug: 57957).
17218 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
17220         * tramp-ppc.c: trampoline fixes.
17222 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
17224         * mini-ppc.c: fixed typos.
17226 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17228         * mini-ppc.c, exceptions-ppc.c: more code saves registers
17229         at the top of the stack. Fixed typos. Use a frame registers
17230         for all the methods with exception clauses.
17232 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17234         * exceptions-ppc.c: restore fp registers.
17236 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
17238         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
17239         order from the stack top (moved the stack room to save the
17240         return value for trace after the param area). Fixed corruption
17241         in restoring registers on unwind.
17243 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17245         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
17247 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17249         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
17250         and prolog/epilog for methods that use it. Allow
17251         enough param area room for varargs methods. Fix miguel's
17252         breakage in exception handling.
17254 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17256         * Makefile.am: run genmdesc only on current arch.
17258 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17260         * exceptions-x86.c:
17261         * mini-x86.h: fix the build on windows.
17263 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
17265         * 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.
17267         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
17269         * mini-exceptions.c: New file.
17270         
17271         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
17272         Move some parts of the x86 exception handling code to an 
17273         arch-independent file so it can be shared with other ports.
17275 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17277         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
17279 2004-04-26  David Waite  <mass@akuma.org>
17281         * driver.c: remove comma from end of enumeration declaration
17283 2004-04-26  Jackson Harper  <jackson@ximian.com>
17285         * driver.c: parse config file before loading first assembly. This
17286         allows the user gac to be enabled/disabled. 
17287         
17288 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
17290         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
17291         simpler mechanism: we do not care what is encoded initially
17292         (branch absolute or relative), we care about the code and its
17293         target.  I kept the old code for reference for now.
17295         The new code tries first to determine if the jump is anywhere in
17296         the -/+32 absolute meg range, if it succeeds, it encodes using the
17297         absolute branch;  If not, it tried to find something in the
17298         relative range, if not, it uses the handle_thunk code. 
17300 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
17302         * exceptions-ppc.c: use the correct ip register on macosx.
17304 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
17306         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
17308 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
17310         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
17311         Raise exception on integer divide by zero by hand since the hw
17312         doesn't support it. Handle NaNs in FP compares.
17314 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17316         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
17317         code reducing duplication between the platforms and enabled
17318         signal exception handling (on linux for now).
17320 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
17322         * exceptions-ppc.c: more macosx support.
17324 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17326         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
17328 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17330         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
17332 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
17334         * iltests.il: more tests.
17336 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17338         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
17339         vars as well.
17341 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17343         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
17345 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
17347         * liveness.c: Mark variables as volatile in all basic blocks reachable
17348         from exception clauses.
17350 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
17352         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
17353         inlining.
17355 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
17357         * iltests.il, basic.cs: more tests for regalloc.
17359 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
17361         * iltests.il: Some tests for register allocation modifications
17362         I have locally.
17364 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
17366         * exceptions.cs: Add regression test for bug #56782.
17368         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
17369         original stack trace if an exception is rethrown. Fixes #56782. Oh,
17370         the beauty of fixing the same thing in 5 different files...
17372 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
17374         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
17375         methods.
17377 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
17379         * mini.c: Add support for STRWLPARRAY marshalling convention.
17381 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17383         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
17384         to init the context to setup the regs pointer).
17386 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17388         * exceptions-ppc.c: more exceptions work.
17390 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17392         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
17393         not allowed.
17395 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17397         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
17398         can use the memory directly.
17400         * cpu-pentium.md: Update documentation from a post from Zoltan. 
17402         add x86_add_membase, x86_sub_membase, x86_mul_membase
17404 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
17406         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
17407         GENERAL_REGS they were also hardcoded for all PPC ports.
17409         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
17411         Remove hard-coded limit for floating point registers, use
17412         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
17414         Notice that in MacOS X calling conventions you can fit a lot more
17415         floating point values in registers, so I should update the PInvoke
17416         test to excercise the passing of floating point values on the
17417         stack (currently broken).
17418         
17419 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
17421         * tramp-ppc.c (create_trampoline_code): Added
17422         JUMP_TRAMPOLINE_SIZE. 
17423         (ppc_magic_trampoline): Follow the pattern from
17424         x86_magic_trampoline: if code is set to zero, return. 
17425         (create_trampoline_code): Always pass MonoMethod to the jump
17426         trampoline, before it was passing a null.
17427         (mono_arch_create_jump_trampoline): Implement the jump stub, could
17428         share the code with mono_arch_create_jit_trampoline. 
17430         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
17431         implemented.
17432         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
17433         implemented.  
17435         * cpu-g4.md: Added length for jmp instruction, the worst case
17436         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
17437         for save_lmf).
17439 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
17441         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
17443 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
17445         * mini.c: Only set bblock->real_offset when adding a new bblock, and
17446         before each IL instruction.
17448         * mini.c (CEE_BOX): Fix warnings.
17450 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17452         * mini.c: removed a few unused vars and extra whitespace.
17454 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
17456         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
17457         checks.
17458         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
17459         index.
17460         (OP_GETCHR): use the above
17461         (CEE_LDELEMA): use the above.
17463         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
17464         version of the generic impl.
17465         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
17466         (CEE_LDELEMA): use the above.
17468 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17470         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
17471         Fixes #56317.
17473         * iltests.il: Added new regression test for #56317.
17475 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
17477         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
17478         under NetBSD. Fixes #56450.
17480         * liveness.c (update_gen_kill_set): Fix previous patch.
17482 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17484         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
17486 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
17488         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
17489         ldsfld and ldsflda.
17491         * inssel-sparc.brg: Add more optimizations.
17493         * mini-sparc.c: Replace multiply/divide with shifts if possible.
17495 2004-04-01  Martin Baulig  <martin@ximian.com>
17497         * mini.c (handle_box): New static function; moved the
17498         implementation of CEE_BOX here.
17499         (mono_method_to_ir): Added `constrained_call' variable.
17500         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
17501         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
17502         mono_method_get_constrained() to get the method.
17504 2004-04-01  Martin Baulig  <martin@ximian.com>
17506         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
17507         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
17508         (mono_method_to_ir): We don't need these macros anymore since
17509         mono_class_get_full() already takes care of it. 
17511 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17513         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
17514         use @function (as doesn't accept #function here) and check the return
17515         value of system and stop if fails.
17517 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17519         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
17521 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
17523         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
17525         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
17527         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
17528         #56223.
17530         * basic-long.cs: Add test for negation of Int64.MinValue.
17532 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
17534         * mini-sparc.c: Update status.
17536         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
17538         * exceptions-sparc.c: Fix return value in filters.
17540         * inssel-sparc.brg: Fix register allocation in some rules.
17542 2004-03-28  Martin Baulig  <martin@ximian.com>
17544         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
17545         if neccessary.  
17547 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
17549         * mini-x86.c (mono_arch_patch_code): Fix warnings.
17550         
17551         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
17552         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
17553         remove unused conv_u4 opcode.
17555         * mini-x86.c: Remove valgrind workaround since it slows down things
17556         even when mono is not run under valgrind.
17558 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
17560         * mini-sparc.c: Update status.
17562         * inssel-sparc.brg: Add some optimizations.
17564         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
17565         future delay slot filling. Add support for varargs, tail calls and JMP.
17567         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
17568         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
17570         * inssel.brg: Fix register allocation in OP_ARGLIST.
17572         * inssel.brg: Fix warnings.
17574 2004-03-25  Martin Baulig  <martin@ximian.com>
17576         * mini.c (inflate_generic_field): Removed.
17577         (mini_get_method): Removed, use mono_get_method_full(),
17578         (mini_get_class): Removed, use mono_class_get_full().
17579         (mono_method_to_ir): Pass our generic context to
17580         mono_field_from_token().        
17582 2004-03-25  Martin Baulig  <martin@ximian.com>
17584         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
17585         of a `MonoMethod *'.
17586         (mini_get_method): Take a `MonoGenericContext *' instead
17587         of a `MonoMethod *'.
17588         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
17589         a new local variable called `generic_context' which holds the
17590         current `MonoGenericContext *'; use it to lookup things.
17592 2004-03-24  Martin Baulig  <martin@ximian.com>
17594         * mini.c (mini_get_class): New static method; if we're inside a
17595         generic instance, inflate the class if neccessary.
17596         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
17598 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
17600         * iltests.il: New regression test for #55976.
17602         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
17603         #55976.
17605 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
17607         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
17608         output.
17610 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
17612         * liveness.c: Consider SSA stores as well as loads when making vars
17613         volatile.
17615         * exceptions.cs: New regression tests for register allocation.
17616         
17617 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
17619         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
17620         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
17621           domain lock only to protect puntual access to data structures.
17622           Added access lock for sighash, jit_icall_hash_name, 
17623           jit_icall_hash_addr and domain->code_mp.
17625 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
17627         * driver.c: Print SIGSEGV handling method.
17629         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
17631         * mini.c (setup_jit_tls_data): Handle case when this is called
17632         multiple times for a thread.
17634         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
17635         is different from fbxx_un. Fixes #54303. Also use constants instead of
17636         magic numbers in a lot of places.
17638 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
17640         * exceptions.cs: Fix cctor test when --regression is used.
17642 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
17644         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
17645         for Linux/ppc.
17647 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17649         * inssel-ppc.brg: fixed register assignments for some rules.
17651 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
17653         * exceptions.cs: Add test for exceptions in static constructors.
17655         * mini.c (mono_jit_compile_method_with_out): Move the calling of
17656         static constructors outside the domain lock. Fixes #55720.
17658 2004-03-17  Martin Baulig  <martin@ximian.com>
17660         * mini.c (get_generic_field_inst): Removed, this'll never happen.
17661         (inflate_generic_field): Take the `MonoMethod *' instead of the
17662         `MonoClass *' and added support for generic method.
17663         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
17664         have a `field->parent->gen_params', only inflate the field if it's
17665         an open constructed type.
17667 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
17669         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
17670         exception object instead of the preconstructed ones.
17672 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17674         * mini.c: reverted changed to sigsegv_signal_handler commited
17675         accidentally in the previous patch.
17677 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17679         * mini.c:
17680         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
17681         running --aot with an old assembly.
17683 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
17685         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
17686         point values.
17688         * mini-sparc.c: Add support for v9 branches with prediction.
17690 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
17692         * mini.c (mini_init): #warning is GNUC only
17694         * mini-sparc.h: implement __builtin_frame_address
17695         and __builtin_return_address for Sun C compiler
17697 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
17699         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
17701 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
17703         * basic-calls.cs: Add test for unaligned byref long argument passing.
17705         * mini-ops.h: Add sparcv9 compare and branch instructions.
17707         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
17708         v9 instructions if we have a v9 cpu.
17710         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
17711         registers for global allocation.
17713         * exceptions-sparc.c: Fixes.
17714         
17715 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
17717         * liveness.c (mono_analyze_liveness): Optimized version.
17719         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
17721         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
17722         sparc work.
17724         * basic-float.cs basic-calls.cs: New regression tests.
17726 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
17728         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
17729         sigaltstack implementation.
17731         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
17732         
17733         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
17734         stuff if SIGSEGV_ON_ALTSTACK is not defined.
17736 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
17738         * mini.c: Fix warnings.
17739         
17740         * mini.c (mono_resolve_patch_target): New function which contains the
17741         arch independent part of the patching process.
17743         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
17744         patching code to a separate function.
17746 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
17748         * mini.c (add_signal_handler): ifdef out on Windows
17750 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
17752         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
17753         cpu-sparc.md: Add exception handling support + other fixes.
17755         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
17756         typed GC detection in --version.
17758         * basic.cs exceptions.cs: New regression tests.
17760         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
17761         the arch specific code can store data during a compilation.
17763         * mini-ops.h: Add OP_SETFRET.
17765         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
17766         function, register a separate icall for each arity, so the icalls can
17767         get a wrapper.
17768         
17769         * mini.c (mono_print_tree): Print negative offsets in a more readable
17770         form.
17771         
17772         * mini.c: Make signal handling work on sparc.
17773         
17774         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
17776         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
17778         * jit-icalls.c: Emulate truncl by aintl on solaris.
17780         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
17782 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
17784         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
17786 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
17788         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
17789         a MarshalByRef type, inline a method that performs the check, taking into
17790         account that the object can be a proxy. Also implemented tow new opcodes:
17791         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17792         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
17793         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17795 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17797         * mini-ppc.c: if a relative branch displacement is too big
17798         but it points to and area reachable with an absolute branch, 
17799         avoid the thunks.
17801 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17803         * mini.c: optimize small copies in cpblk.
17805 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
17807         * basic-calls.cs basic-float.cs: New regression tests.
17809         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
17810         negative offsets from %fp. Implement localloc. Fix local register 
17811         allocation. Fix the case when the this argument needs to be saved to
17812         the stack. Implement some missing opcodes.
17814 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
17816         * mini.c (mini_method_compile): Reenable global regalloc in methods
17817         with exception handlers.
17819         * linear-scan.c (mono_varlist_sort): Fix warning.
17821         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
17823         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
17824         regalloc costs.
17826         * liveness.c: Make all variables uses in exception clauses volatile, to
17827         prevent them from being allocated to registers. Fixes #42136.
17829 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
17831         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
17832         causes regressions.
17834         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
17835         argument to mono_arch_regalloc_cost.
17837         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
17838         precisely.
17840 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
17842         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
17843         Make the cost of allocating a variable to a register arch dependent.
17845         * basic-calls.cs: Fix compilation of tests.
17846         
17847         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
17848         helper function to cut back on the number of #ifdefs needed.
17850         * mini-ppc.c: Fix compilation.
17852         * basic-calls.cs: New regression tests.
17854         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
17856         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
17857         of l0 since that is callee saved.
17859         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
17860         to virtual calls.
17862         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
17863         of delay instruction.
17865         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
17867         * mini.h (MonoCallInst): Add 'virtual' flag.
17869         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
17871 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
17873         * *.cs: New regression tests.
17875         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
17876         work.
17878         * mini.c (mono_runtime_install_handlers): Fix build.
17880         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
17881         'signal_stack_size' members.
17883         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
17884         alternate signal stack.
17886         * exceptions-x86.c: Add stack overflow handling.
17888         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
17889         functions to arch independent code.
17891         * mini.c (mono_print_tree): Print more detailed info for load_membase
17892         opcodes.
17893         
17894 2004-02-23  Martin Baulig  <martin@ximian.com>
17896         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
17898 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17900         * mini-x86.c: fixed reg allocation for div/rem.
17902 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
17904         * driver.c (mono_main): Report some configuratio options on --version.
17906 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
17908         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
17909         low in the address space. Correctly flush memory in thunks where we
17910         output native code.
17912 2004-02-20  Martin Baulig  <martin@ximian.com>
17914         * mini.c (mini_get_method): New static method; inflate all generic
17915         methods and methods in open generic instances.
17916         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
17917         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
17919 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
17921         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
17923         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
17925 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
17927         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
17929         * mini-sparc.c (flushi mono_arch_output_basic_block): make
17930         it compile using Sun's compiler.
17932 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
17934         * 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.
17936         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
17938 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
17940         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
17941         code.
17942         * mini-ppc.c: handle calls outside of the allowed range with thunks
17943         allocated using the code manager.
17944         * tramp-ppc.c: use the code manager to hold generated native code.
17945         Fixed the magic trampoline to just patch vtable entries.
17947 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
17949         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
17950         independent file.
17952 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
17954         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
17955         PPC.
17957         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
17958         if we have a working __thread implementation.
17960         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
17961         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
17963 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
17965         * mini-x86.c: Fix compilation under gcc 2.
17966         
17967 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
17969         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
17970         contains a call to the wrapped function.
17972         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
17973         OP_<CALL>_IMM opcodes, and use them under X86.
17974         
17975         * mini.c (mono_jit_find_compiled_method): Fix warning.
17977         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
17979         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
17981         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
17982         functionality to mini.c.
17984         * mini.c (mono_create_jump_trampoline): New function to create a jump
17985         trampoline. Return a compiled method instead of a trampoline if it
17986         exists. Add a cache for jump trampolines.
17988         * mini.c (mono_jit_find_compiled_method): New function to return a
17989         compiled method if it exists.
17991         * mini-x86.c: Call mono_create_jump_trampoline instead of 
17992         mono_arch_create_jit_trampoline.
17994         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
17995         a jump trampoline. Fixes #52092.
17996         
17997 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
17999         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
18000         which is not up-to-date. Add check_corlib_version () instead.
18002         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
18003         have to call it.
18004         
18005         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
18006         since newer valgrind versions do not need it.
18008         * mini.c (mono_jit_compile_method_with_opt): New helper function to
18009         compile a method with a given set of optimizations.
18011         * mini.c: Compile icall wrappers on-demand instead of at startup.
18013         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
18014         wrapper for an icall.
18016 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
18018         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
18019         #54063.
18021         * iltests.il: Add test for non-empty stack before switch instruction.
18023 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
18025         * mini.c: Add support for new stringbuilder marshalling conventions.
18027         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
18029 2004-02-01  Martin Baulig  <martin@ximian.com>
18031         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
18032         in `ginst->mtype_argv'.
18034 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
18036         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
18037         facilitate grepping.
18039 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
18041         * mini.c: fixed buglet in initobj generic implementation for references.
18043 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
18045         * Makefile.am: make the version script conditional.
18046         * jit-icalls.c: handle missing truncl().
18048 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
18050         * exceptions.cs: Add more tests for double->int conversion.
18052         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
18053         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
18055 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
18057         * driver.c: make --verbose --version emit an error
18058         if the loaded corlib doesn't match the runtime version.
18060 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
18062         * mini-ppc.h: export ppc_patch().
18063         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
18064         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
18065         on par or better than on MacOSX.
18067 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
18069         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
18070         mono_lookup_pinvoke_call.
18072         * mini-x86.c: Under windows, the default pinvoke calling convention is
18073         stdcall. Fixes #52834.
18075         * mini.c (optimize_branches): Add an upper bound to the number of
18076         iterations to prevent infinite loops on strange loops. Fixes #53003.
18078 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
18080         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
18081         and ISINST. Fixes #52093.
18083         * objects.cs (test_0_vector_array_cast): New tests.
18084         
18085 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
18087         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
18088         checking in Array.Set ().
18090         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
18091         #52590.
18093         * object.cs (test_0_multi_array_cast): New regression test.
18095 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
18097         * exceptions-ppc.c: fix build on Linux/PPC.
18099 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
18101         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
18102         running under valgrind.
18103         (x86_magic_trampoline): Fix build bustage.
18105         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
18106         negative values as well. This is needed for the encoding of the line number
18107         info, since sometimes the line numbers are not in increasing order.
18109 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
18111         * cpu-pentium.md (localloc): Increase the size of the localloc 
18112         instruction since it is a loop under Win32.
18114         * debug-mini.c (record_line_number): Get rid of unneccesary memory
18115         allocation.
18117 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
18119         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
18120         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
18121         Max Horn (max@quendi.de). Fix file names in comments.
18123 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
18125         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
18126         avoid stack overflow.
18127         (replace_usage): Avoid uninitialized variable warnings.
18129         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
18130         and taking the address of valuetype variables.
18132 2004-01-03  Patrik Torstensson
18134         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
18135         for other purposes than FP later on.
18137 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
18139         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
18140         of tail calls.
18142 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
18144         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
18146 2003-12-30  Patrik Torstensson <p@rxc.se>
18148         * mini-x86.h: Decreased number of availiable fp regs.
18149         Solves corner cases with FP spilling.
18151 2003-12-23  Patrik Torstensson <p@rxc.se>
18153         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
18154         for floating point stack tracking / spilling on x86. 
18155         Fixes bug #49012.
18156         
18157         * basic-float.cs: added float mul overflow test.
18159 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
18161         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
18163 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18165         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
18166         supports for cond branches that overflow the immediate
18167         overflow offset. mcs can compile simple programs.
18169 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18171         * exceptions-ppc.c: exception handling support wip:
18172         finally handlers get run on exception.
18174 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
18176         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
18177         profiling.
18179 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18181         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
18182         initial support for stack walking and unwinding.
18184 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
18186         * driver.c (mono_main): Make corlib-out-of-sync message more 
18187         descriptive. Also remove verify_corlib call.
18189 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18191         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
18192         not overlap with other call's arguments, too.
18194 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
18196         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
18197         move to arch-specific code the choice of arch-specific
18198         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
18199         * mini.c: ensure emulation calls will not interleave
18200         with other calls.
18202 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
18204         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
18205         the magic trampoline stack frame is dropped before executing
18206         the new method.
18208 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18210         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
18211         and integer to fp conversions. Added support for overflowing
18212         arguments on the stack. Reserve a couple more registers as temps.
18213         Added support for aot compilation (as output still needs to be
18214         tweaked, though).
18216 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18218         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
18219         Don't overwrite return register in some corner cases.
18221 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
18223         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
18224         static constructors when AOT compiling.
18226         * driver.c (mono_main): Call mono_check_corlib_version.
18228 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18230         * cpu-g4.md, basic.cs: fixed div target register.
18232 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18234         * mini-ppc.c, basic.cs: shl_imm fix with test.
18236 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18238         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
18239         structures by value. Misc fixes.
18240         * objects.cs: more tests.
18242 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
18244         * mini-ppc.c: lconv.ovf.i implemented.
18246 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18248         * mini.c:
18249         (mini_init): don't error out if someone already called g_thread_init.
18251 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18253         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
18254         to be any type per the spec. Fix abnormal memory usage when
18255         the same object is repeatedly thrown.
18257 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
18259         * mini.c: check for overruns in IL code.
18261 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
18263         * TODO: Add/remove some todo entries.
18265 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
18267         * driver.c (mono_main): Call mono_verify_corlib.
18269 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
18271         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
18272         This has been moved to mini.c
18273         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
18274         type being casted is marshalbyref it could be a proxy, so instead of
18275         emitting the type check code, emit a call to a runtime method that will
18276         perform the check by calling CanCastTo if needed.
18278 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
18280         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
18281         methods with large stack frames under Win32.
18283 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
18285         * Makefile.am: Distribute regression tests.
18287         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
18288         at the end instead of inserting each variable into the sorted list.
18290         * linear-scan.c (mono_varlist_sort): New helper function.
18291         
18292 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18294         * mini.c: ensure arguments and locals are within bounds.
18296 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18298         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
18299         related fixes.
18301 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
18303         * mini.c (mono_cprop_copy_values): Fix crash.
18305         * aot.c: Set verbosity back to 0.
18306         
18307 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18309         * regalloc.c: complete memory leak fix by Laurent Morichetti
18310         (l_m@pacbell.net).
18312 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
18314         * driver.c (main_thread_handler): Revert the previous patch.
18316         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
18317         under valgrind.
18319         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
18320         memory from the memory pool.
18322         * driver.c (main_thread_handler): Turn on all optimizations when
18323         --aot is used.
18325         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
18326         an array for better performance.
18328         * regalloc.c (mono_regstate_assign): Fix memory leak.
18330         * debug-mini.c (mono_debug_serialize_debug_info): New function to
18331         serialize the debug info.
18333         * debug-mini.c (mono_debug_add_aot_method): New function to load the
18334         debug info from the serialized representation.
18336         * aot.c: Save debug info into the generated file and load it when 
18337         loading a method.
18339         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18341 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18343         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
18344         More FP-related fixes.
18346 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18348         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
18349         and register allocation buglet. Hello world now runs.
18351 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18353         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
18354         * tramp-ppc.c: fixed class init trampoline.
18355         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
18357 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18359         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
18360         mini.c: more ppc changes/fixes.
18362 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
18364         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
18365         Also optimize the case when the arguments are the same in the caller 
18366         and in the callee.
18368         * iltests.il: Add tests for tail calls with valuetype arguments.
18370 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18372         * mini-ppc.c: fixes for struct return type.
18374 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
18376         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
18377         mono_spillvar_offset() to arch-specific code.
18379 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18381         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
18383 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
18385         * exceptions-x86.c: Fix stack space leaks.
18386         
18387         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
18388         registers from the lmf if the method has save_lmf set.
18390 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
18392         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
18393         of icall wrappers into InvokeInDomain, since these are now per-domain.
18395 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
18397         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
18398         make some opcode emulation and intrinsic ops enabled/disabled 
18399         according to the architecture. More fixes.
18401 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18403         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
18405 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18407         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18408         arch-specific handling for 'this' and struct return type to
18409         arch-specific code.
18411 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18413         * aot.c: prevent divide by zero error when reporting (it happened with
18414         Accessibility.dll).
18416 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
18418         * mini.h (inst_switch): Remove unused macro.
18420 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18422         * aot.c:
18423         (load_aot_module): free 'info->methods' and 'info' properly. No more
18424         "free(): invalid pointer blah" messages when you have an old aot
18425         compiled assembly.
18427 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
18429         * jit-icalls.c, mini.c: Added support for context static fields.
18431 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18433         * mini.c (mono_method_blittable): Methods which set LastError are not 
18434         blittable either. Fixes #51108.
18435         
18436 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18438         * mini.c: flush icache.
18439         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
18441 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
18443         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
18445 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
18447         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
18448         safe on IA32.
18450         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
18451         vararg calls.
18453         * inssel.brg (CEE_MKREFANY): Fix AOT case.
18455 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
18457         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
18458         instruction when the result is discarded.
18460         * iltests.il (test_0_div_regalloc): New regression test.
18462         * arrays.cs: Fix compilation error.
18464 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18466         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
18467         float rules to inssel-x86.brg: sane architectures with FP registers
18468         don't need to implement these rules.
18470 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18472         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
18474 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18476         * mini.h, inssel-long32.brg: fixed endianess issues in int64
18477         implementation of 32 bit systems.
18479 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18481         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
18482         (Jeroen Zwartepoorte).
18484 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
18486         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
18487         the caller and the callee matches.
18488         
18489         * mini.c (mono_method_to_ir): Add comment.
18491         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
18492         signbit is missing on some platforms.
18494 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
18496         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
18498         * mini.c (setup_jit_tls_data): Call the new function.
18499         
18500         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
18502         * mini-x86.c: Add experimental support for fast access to the lmf
18503         structure under NPTL/Linux 2.6.x.
18505 2003-11-06  Martin Baulig  <martin@ximian.com>
18507         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
18508         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
18509         the debugger.
18511 2003-11-02  Martin Baulig  <martin@ximian.com>
18513         * mini.c (inflate_generic_field): New static method.
18514         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
18515         generic instance and the field is declared in a generic type, call
18516         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
18518 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
18520         * mini.h mini.c (mono_method_same_domain): New function to return
18521         whenever the caller and the callee are in the same domain.
18523         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
18525 2003-10-30  Martin Baulig  <martin@ximian.com>
18527         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
18528         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
18529         method parameters.
18530         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
18531         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
18533 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
18535         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
18536         propagation.
18538         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
18539         object here, so it is in the correct appdomain etc.
18541 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
18543         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
18544         already done.
18545         (mono_method_to_ir): Avoid freeing the type created returned from
18546         mono_type_create_from_typespec, since it is put into an internal cache
18547         by the function. Fixes pointer.exe.
18549         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
18550         trampolines for icalls and pinvokes as well. Fixes #33569.
18552 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
18554         * mini.c: Update after appdomain changes.
18556         * mini.c (mono_jit_compile_method_inner): Allways compile native
18557         method wrappers in the root domain, since there can only be one
18558         instance of them, whose address is stored in method->info.
18560 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18562         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
18563         environment variable. Instead detect automatically whenever running
18564         under valgrind using the magic macro RUNNING_ON_VALGRIND from
18565         valgrind.h.
18567 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
18569         * trace.c, trace.h: New files that implement the new trace option
18570         parsing. 
18572         * driver.c: Document new --trace options.
18574         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
18575         mini-x86.c: Apply:
18577         -       if (mono_jit_trace_calls)
18578         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
18580         * mini.h: prototypes.
18581         
18582 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18584         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
18586         * mini.c inssel.brg: Implement typedefbyref opcodes.
18588         * mini.c (mono_jit_compile_method): Remove unused local variable.
18590         * mini.c (mono_jit_compile_method_inner): Ditto.
18591         
18592 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
18594         * tramp-x86.c (x86_class_init_trampoline): Fix build.
18595         
18596         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
18598 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18600         * mini.c (mono_no_aot): Remove unused global variable.
18602         * mini.c: Thread safety fixes.
18604 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18606         * mini.c (mono_create_class_init_trampoline): Add a lock around
18607         class_init_hash_addr.
18609         * arrays.cs (test_0_newarr_emulation): Add new regression test for
18610         #30073.
18612         * mini.c: Decompose the NEWARR instruction before decomposing its
18613         arguments. Fixes #30073.
18615 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
18617         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
18618         convention.
18620 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
18622         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
18624         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
18626         * driver.c: Add support for compiling icall wrappers to --compile.
18628 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
18630         * inssel.brg: The empty value in class->interface_offsets is -1, not
18631         0. Fixes #49287.
18633 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
18635         * objects.cs: New test for 'is' operator on an array of interfaces.
18637 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
18639         * tramp-ppc.c: update trampoline code to support jumps
18640         and class initialization.
18642 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
18644         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
18646         * inssel.brg (OP_UNBOXCAST): Fix #46027.
18648         * inssel.brg (OP_UNBOX): Remove unused rule.
18650         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
18651         region instead of one for each method. Fixes #47813.
18653 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
18655         * exceptions.cs (test_0_nested_finally): New regression test for
18656         nested exception handlers.
18658         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
18660         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
18662         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
18663         inlining.
18665         * mini.c (mono_method_check_inlining): Make the inlining limit 
18666         configurable by an environment variable.
18667         
18668         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
18670         * mini.h: Bump AOT file version.
18672         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
18673         token, store the image along with the token, since the token might not 
18674         refer to the same image as the method containing the relocation, 
18675         because of inlining.
18677 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
18679         * mini.c (mono_precompile_assemblies): New function to compile
18680         all methods in all loaded assemblies.
18682         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
18684         * regalloc.h regalloc.c (MonoRegState): Change the type of 
18685         iassign and fassign to int*, since they can contain large negative
18686         values if the register is spilled. Also added some comments. Fixes
18687         #45817.
18689         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
18690         under Win32. Fixes #42964.
18692 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
18694         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
18696         * aot.c: Added support for AOT compiling methods which contain calls
18697         to wrappers. Currently, only remoting-invoke-with-check wrappers are
18698         handled.
18699         
18700         * driver.c (compile_all_methods): Run the compilation in a thread
18701         managed by mono. Fixes #44023.
18703         * mini.c (mono_codegen): Print full method name in verbose output.
18705         * mini-x86.c (mono_arch_patch_code): Fix warning.
18706         
18707         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
18708         jumps, since the method we are jumping to might be domain-specific.
18710         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
18712 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
18714         * inssel.brg: string chars are unsigned.
18716 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
18718         * TODO: New todo item.
18720         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
18721         which calls mono_runtime_class_init and patches the call site to
18722         avoid further calls.
18723         (mono_arch_create_class_init_trampoline): New arch specific function 
18724         to create a class init trampoline.
18725         (create_trampoline_code): Generalized so it can create
18726         class init trampolines as well.
18728         * mini.c (helper_sig_class_init_trampoline): New helper variable.
18729         (mono_create_class_init_trampoline): New function to create and cache
18730         class init trampolines.
18731         (mono_find_class_init_trampoline_by_addr): New function to lookup the
18732         vtable given the address of a class init trampoline. Used by the
18733         patching process.
18734         (mono_codegen): Generate a call to a trampoline instead of
18735         mono_runtime_class_init in LDSFLD[A].
18736         (mono_codegen): Add relocations for the new trampoline.
18737         
18738         * mini.h mini-x86.c aot.c: Added a new relocation type: 
18739         MONO_PATCH_INFO_CLASS_INIT.
18741         * mini.h: Bump AOT version number.
18743         * aot.c: Create a copy of the loaded code instead of using the original
18744         so methods which call each other will be close in memory, improving
18745         cache behaviour.
18746         
18747         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
18748         patch since it breaks the regression tests.
18749         
18750         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
18751         for the register saving instruction sequence since the 
18752         frame_state_for function in glibc 2.3.2 don't seem to detect it.
18754 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
18756         * TODO: Fix todo item && remove another.
18758 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
18760         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
18761         previous checkin.
18763         * aot.c: Moved the check for MONO_LASTAOT into the initialization
18764         function of the module.
18766         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
18767         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
18768         --no-aot command line option.
18770 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
18772         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
18773         by Bernie Solomon (bernard@ugsolutions.com).
18775         * inssel.brg: Refactor the interface offset table related code into
18776         its separate functions and add support for the AOT case.
18778 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
18780         * aot.c (mono_aot_get_method_inner): Fix memory leak.
18781         
18782         * aot.c: Added mono_aot_verbose variable and made all debugging
18783         output depend on the value of this variable.
18785         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
18786         method_label and info_label.
18788         * mini.h mini-x86.c aot.c: Added a new relocation type 
18789         MONO_PATCH_INFO_IID for klass->interface_id.
18791         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
18792         the MonoJitInfo structure.
18794         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
18795         a non-root appdomain in shared mode.
18797 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
18799         * aot.c: make aot loader less verbose. Remove free of unused variable.
18801 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
18803         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
18805         * .cvsignore: Added *.dll.
18807         * mini.c (mono_print_tree_nl): New function callable while debugging.
18809         * mini.c (mono_print_code): Export this.
18811         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
18812         patched code.
18814 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
18816         * mini.h (MonoCompile): Added 'jit_info' field.
18818         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
18819         the cfg structure, since it is needed by the AOT compiler.
18821         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18823         * aot.c: A major rewrite. Changes include:
18824         - save exception tables for methods which have them.
18825         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
18826         to g_module_symbol.
18827         - reworked the file format so it is now much smaller and needs
18828         fewer relocation entries.
18829         
18830 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18832         * aot.c (load_aot_module): Fix build bustage on platforms without
18833         Boehm GC.
18835 2003-09-04  Martin Baulig  <martin@ximian.com>
18837         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
18839 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
18841         * TODO: Some new optimization ideas.
18843         * aot.c: Move AOT module loading logic here from mono_assembly_open.
18845         * aot.c: Save the optimization flags used to compile the code into
18846         the AOT module.
18848         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
18849         support emitting domain specific code.
18850         
18851         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
18852         no longer domain neutral. It can be made domain neutral by compiling 
18853         with --optimize=shared.
18855         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
18856         between appdomains.
18858         * driver.c mini.h mini.c: New --no-aot debugging option which disables
18859         loading of AOT code.
18861         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
18862         
18863         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
18864         if there is no domain neutrality information.
18866 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
18868         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
18869         format version into the generated library.
18871         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
18872         callee method into the caller since one of them could be shared.
18874         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
18875         system exceptions from AOT code now works.
18877         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
18878         method if it is domain neutral and the callee is not.
18880         * graph.c (cfg_emit_one_loop_level): Fix warning.
18882 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
18884         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
18885         last checkin.
18887 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
18889         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
18890         is needed  by code which is executed before mono_runtime_init ().
18891         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
18892         
18893         * mini.c (mono_thread_abort): Fix warning.
18894         (mono_jit_compile_method): Call static constructor in the AOT case too.
18896         * aot.c (mono_compile_assembly): Fix warning.
18898 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18900         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
18902 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
18904         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
18906         * cpu-pentium.md: Fix the length of call opcodes so they include the
18907         ESP restoring instruction. Fixes #47968.
18909 2003-08-28  Martin Baulig  <martin@ximian.com>
18911         * mini-x86.c (mono_arch_call_opcode): Added support for
18912         MONO_TYPE_GENERICINST.
18914         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
18916 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
18918         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
18919         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
18921         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
18922         metadata_section.
18924 2003-08-26  Martin Baulig  <martin@ximian.com>
18926         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
18927         when reporting an error, set this to the actual error location.
18928         (mono_method_to_ir): Report the correct error location if
18929         get_basic_blocks() returned an error.
18931 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
18933         * mini.c (mono_type_blittable): OBJECT is not blittable.
18934         (mono_method_blittable): Methods which have marshalling descriptors
18935         are not blittable either. Fixes #47842.
18937 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
18939         * driver.c mini.c: Use an environment variable instead of a global 
18940         variable. Also fix the build.
18942         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
18943         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
18944         reporting this. 
18946         * driver.c mini.c: Added --with-valgrind option to turn off some
18947         code which prevents mono from running under valgrind.
18949         * mini.c (mono_emit_call_args): Fixed warning.
18951         * mini.c (mono_emulate_opcode): Fixed warning.
18953 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18955         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
18956         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
18957         regalloc.c, regalloc.h: specify available registers in arch-specific
18958         code and support floats in the regallocator (patch by Laurent Morichetti 
18959         <l_m@pacbell.net>)
18961 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
18963         * mini.c: mono_thread_current() can be called only after
18964         mono_runtime_init(): rearrange code to not call it early on.
18966 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18968         * mini.c: allocate jump tables in the code mempools.
18970 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
18972         * mini.c, mini.h: make sure per-thread data allocated by the jit is
18973         freed.
18975 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
18977         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
18978         12 to 16.  This fixes bug #47453.
18981 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18983         * mini-ppc.c: fixed indexed load and unsigned compares.
18985 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
18987         * mini.c: reenabled installation of handler for
18988           thread abort signal.
18990 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18992         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
18993         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
18994         until it's fixed and actually useful.
18996 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
18998         * inssel-long32.brg: couple more opcodes implemented.
19000 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
19001         
19002         * mini-sparc.c: Even more opcodes implemeted.
19004 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
19006         * mini-sparc.c: More opcodes implemented.
19008 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
19010         * mini-sparc.c: More opcodes implemented.
19012 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
19014         * inssel-sparc.brg: Add some needed rules.  Direct
19015         copy from PPC.
19016         * Makefile.am: Use inssel-sparc.brg
19017         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
19018         an assert happy for now.
19020 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
19022         * mini-sparc.c: Fixed compile errors.
19023         * exceptions-sparc.c: Same.  We now produce a mono binary 
19024         on sparc-linux.  Yea.
19026 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
19028         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
19029         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
19030         They compile, but do not work.
19032 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19034         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
19035         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
19036         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
19037         (ct@gentoo.org).
19039 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19041         * mini.c: more opcodes implemented and better support for generics.
19043 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
19045         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
19046         * mini.c, mini.h: first cut at generics support: some new instructions 
19047         added and changed the behaviour of some of the existing ones.
19049 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
19051         * mini.c: Removed definition of metadata_shared mutex here.
19053 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
19055         * mini-x86.c: make vararg calls work for instance methods.
19057 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19059         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
19060         returns the arguments in a separte list, now.
19062 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19064         * aot.c, mini.c: updates for array type representation changes.
19066 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
19068         * mini.c: register function to perform jit shutdown.
19070 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19072         * mini.c: use a faster allocator if possible.
19074 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19076         * aot.c: some cleanups and portability changes.
19078 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19080         * mini.c: use faster allocation for CEE_BOX if possible.
19082 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19084         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
19085         Moved inlined mempcy code to its own function so that is can be
19086         reused. Added an inline memset function as well (optimized initobj).
19087         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
19089 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19091         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
19093 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19095         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
19096         arch code can setup the cpu for CLR execution, if needed.
19097         We use it on x86 to set the precision of FP operations.
19099 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19101         * mini.c: disable some optimizations if we can guess they'll cost too
19102         much for a given method.
19104 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19106         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
19107         
19108 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19109         * mini.h mini.c mini-x86.c: Added instruction level coverage 
19110         info collection support.
19112 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19114         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
19115         is now implemented in the profiling API. Get rid of a couple of
19116         unnecessary global variables.
19118 2003-06-15  Nick Drochak <ndrochak@gol.com>
19120         * basic-long.cs: tests for negative values for bigmul, and unsigned.
19121         * cpu-g4.md: add op_bigmul and op_bigmul_un
19122         * cpu_pentium.md: add op_bigmul_un
19123         * inssel-long32.brg: add rule for unsigned bigmul
19124         * mini-ops.h: define OP_BIGMUL_UN
19125         * mini-x86.c: THE BUG: handle (un)signed properly
19126         * mini.c: choose unsigned opcode if needed.
19127         This set of patches fixes bug #44291
19129 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
19131         * mini.c (optimize_branches): improved to handle all kinds of
19132         conditional branches.
19134 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19136         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
19137         don't raise exceptions.
19139 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19141         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
19142         to arch-specific files.
19144 2003-06-09  Martin Baulig  <martin@ximian.com>
19146         * Makefile.am (libs): Added $(LIBGC_LIBS).
19148 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
19150         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
19151         and OP_ATAN (fixes bug#44293).
19153 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
19155         * Makefile.am, mini-x86.c: rename cpu description array to
19156         pentium_desc, since some compilers define the 'pentium' preprocessor
19157         symbol.
19159 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
19161         * mini.c (mini_select_instructions): add explicit branch if the
19162         following block is not the false target of a conditional branch -
19163         we need this with any optimization that reorder or remove bblocks
19165         * mini.c (optimize_branches): bug fixes
19167 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
19169         * mini.c (mono_method_to_ir): inline static readonly fields
19171         * ssa.c (fold_tree): start cfold support for long (very simple
19172         cases only)
19174         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
19176 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19178         * inssel.brg: fixed memcpy (bug #44219).
19180 2003-06-05  Dick Porter  <dick@ximian.com>
19182         * driver.c: Set the glib log levels to not abort if g_message
19183         recurses.
19185         g_set_prgname() has to happen before mini_init() so that the
19186         process handle gets the info.
19187         
19188 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19190         * driver.c: add intrins to the default optimizations to get wider
19191         exposure.
19193 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19195         * mini.h: some large basic blocks will overflow a 16-bit
19196         integers for symbolic registers.
19198 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19200         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
19201         (mono_arch_output_basic_block): fix bug 43499 
19203 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19205         * mini.c: kill duplicated definition of mono_debug_format.
19207 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19209         * mini-x86.c, arrays.cs: fixed register allocation bug.
19211 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19213         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
19215         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
19217 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19219         * mini.c:
19220         (print_method_from_ip): also print source location information if
19221         available.
19223 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
19225         * mini.c (mono_find_block_region): bug fix in region code
19226         (mini_method_compile): enable removing unreachable code again, but
19227         only in methods without exception clauses.
19229 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
19231         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
19232         Implemented arglist opcode and handling of TypedReference type.
19233         Fixed x86 call convention when a structure is returned.
19234         Minimal support for calling static vararg methods.
19236 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
19238         * mini.c (mini_method_compile):  always remove unreachable code,
19239         because the code in them may be inconsistent  (access to dead
19240         variables for example).
19242 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19244         * driver.c, debug-mini.c: warning fixes.
19246 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19248         * Makefile.am, jit.h, mini.h: install header for embedding mono.
19250 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
19252         * mini.c: thread-static fields are registered in mono_class_vtable(),
19253         so ensure the function is called before checking for them.
19255 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
19257         * mini.c (optimize_branches): fix for bug 43586
19259         * jit-icalls.c (mono_llmult_ovf): added an additional check for
19260         overflow (fixes Bug #43639)
19262 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19264         * mini.c, objects.cs: allow the use of stobj for primitive types.
19266 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19268         * mini.c: be less strict about argument checking until we support
19269         running the verifier.
19271 2003-05-27  Nick Drochak <ndrochak@gol.com>
19273         * basic-long.cs: tests for (ulong)int * (ulong)int also
19274         * mini.c: use the same trick for (ulong)int * (ulong)int
19276 2003-05-27  Nick Drochak <ndrochak@gol.com>
19278         * basic-long.cs: add regression test for (long)int * (long)int
19279         * cpu-pentium.md: add op_bigmul specification
19280         * inssel-long32.brg: add OP_BIGMUL rule
19281         * mini-ops.h: add OP_BIGMUL
19282         * mini-x86.c: register allocator: handle case where src1 needs to be
19283         in EAX.
19284         * mini.c: substitute special BIGMUL opcode in the tree for 
19285         (long)int * (long)int
19287 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19289         * jit-icalls.c: call the type ctor on field access if needed.
19291 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19293         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
19294         to a method (including results of ldelema, bug#43207).
19296 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
19298         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
19299         colors to show exception handler blocks.
19301         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
19302         (fix for pinvoke7.cs).
19304 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19306         * mini.h, mini.c: ensure correct initialization order for types that
19307         require it. Prepare for lazy compilation of jit icall wrappers.
19308         Provide a name for opcode emulation to reduce unneeded mallocing.
19310 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19312         * mini-x86.c: better register restoring code and profiling
19313         support for tail calls.
19315 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19317         * mini.h, driver.c: prepare for leaf methods optimization.
19319 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19321         * mini.c: get targets of branches before converting a method.
19323 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
19325         * mini.c (optimize_branches): added some experimental code (disbaled) 
19327 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
19329         * mini.c (optimize_branches): fix branch to branch optimization 
19331         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
19333         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
19335         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
19337         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
19338         if needed.
19340 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
19342         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
19343         enable use of interface variables again.
19345         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
19346         I1 to registers because there is no simply way to sign extend 8bit
19347         quantities in caller saved registers on x86.
19349         * inssel-float.brg: set costs of some rules to 2 so
19350         that monobure always select the arch. specific ones if supplied,
19351         regardless of the order we pass the files to monoburg.
19353 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19355         * mini.c, mini-x86.c: since the magic trampoline for jumps
19356         can't patch the code directly, we do it as soon as the
19357         method gets compiled.
19359 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19361         * mini-x86.c, mini.h: introduce a new patching method
19362         to support CEE_JMP and tail calls.
19363         * mini.c: obey tail.call. Don't precompile methods target
19364         of CEE_JMP.
19365         * tramp-x86.c: new trampoline code to handle methods
19366         reached through a jump.
19368 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
19370         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
19371         bit values to registers
19373 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
19375         * mini.c (mono_compile_get_interface_var): share interface
19376         variables if possible.
19378 2003-05-16  Martin Baulig  <martin@ximian.com>
19380         * debug-mini.c (mono_init_debugger): New function to initialize
19381         the debugger.  This is not in the debugger since it needs to
19382         access some of mini's internals.
19384 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
19386         * mini.c (mono_method_to_ir): inlining fixes/cleanups
19388 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
19390         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
19391         for value type handling.
19393 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
19395         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
19396         (mono_method_check_inlining): enable inlining of all kinds of wrappers
19398 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
19400         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
19401           the constructor through a proxy.
19403 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19405         * jit-icalls.c, inssel.brg: fixes to array element address
19406         calculations.
19408 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
19410         * mini-x86.c (is_regsize_var): allocate pointer to registers
19412 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19414         * driver.c: fixed typo, added intrins to the set of optimizations
19415         tested with regressions.
19417 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19419         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
19420         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
19421         test case.
19423 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
19425         * inssel.brg: remove some common pop instructions without side effects
19427 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19429         * inssel-x86.brg: fixed thinko in int to double conversions.
19431 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19433         * mini.c, jit-icalls.c: added runtime thread-static variable support.
19435 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19437         * inssel-long32.brg: two more missing instructions.
19439 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
19441         * mini.c (mono_emit_call_args): set the cil_code for all arguments
19442         if not already set.
19444 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
19446         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
19447         correctly.
19449         * basic-float.cs: Added tests for negative zero.
19451 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19453         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
19454         a couple of missing operations for long casts, with test cases.
19456 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19458         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
19460 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
19462         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
19463         code size estimation.
19465 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
19467         * mini.c (mono_jit_create_remoting_trampoline): make it work with
19468         abstract methods (fix bug 42542)
19470         * aot.c: add ability to handle array types
19471         
19472 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
19474         * mini.c: Call the _specific versions of the object allocation
19475         functions if possible.
19477 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19479         * driver.c: call setlocale ().
19481 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19483         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
19484         windows build.
19486 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
19488         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
19490         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
19491         wrappers (fix bug 42122)
19493 2003-05-04  Martin Baulig  <martin@ximian.com>
19495         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
19497         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
19498         s/mini_set_defaults/mono_set_defaults/g.
19500 2003-05-04  Martin Baulig  <martin@ximian.com>
19502         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
19504 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19506         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
19507         (reported by Don Roberts).
19509 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
19511         * mini.c: temporarily work around two bugs for this release.
19513 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19515         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
19516         that contains -export-dynamic and it makes using the ld script
19517         useless.
19518         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
19520 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19522         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
19523         specific cpu.
19525 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19527         * mini.c: make sure leave calls all the needed finally blocks,
19528         even when the target jumps out of multiple exception clauses.
19530 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19532         * ldscript, Makefile.am: add linker script to reduce the number of
19533         exported symbols (should also fix the issues with libwine defining
19534         some of the same symbols in io-layer).
19536 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
19538         * driver.c (mini_main): Avoid assertion when no file name is given on 
19539         the command line.
19541 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
19543         * driver.c: added --version/-V command line option.
19544         Added the inline optimization in the regression tests.
19546 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19548         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
19549         to the type in the method signature (fixes bug#42134).
19551 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
19553         * mini.c: when inlining, check this is not null only when needed (bug #42135).
19555 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
19557         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
19559 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19561         * driver.c: fixed bug #42100.
19563 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
19565         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
19567 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19569         * mini.c: moved most of the code required to do inlining to its own
19570         function so it can be reused. Inline also ctors if appropriate.
19572 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
19574         * Makefile.am: Link with -export-dynamic so shared libs loaded by
19575         the runtime can call mono API functions.
19577 2003-04-27  Martin Baulig  <martin@ximian.com>
19579         * debug-mini.c (mono_debug_init_method): Added
19580         `guint32 breakpoint_id' argument; if the method has a breakpoint,
19581         send a notification to the debugger.
19583         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
19584         running in the Mono Debugger, just pass the breakpoint number to
19585         mono_debug_init_method().
19587         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
19589 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
19591         * mini.c: allow some more unsafe compares.
19593 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19595         * mini-x86.c, Makefile.am: make distcheck works (partially from
19596         a patch by Richard Lee <r.h.lee@attbi.com>).
19597         * regset.c, regset.h: removed, they are unused.
19599 2003-04-25  Dick Porter  <dick@ximian.com>
19601         * driver.c: Usage reports the name as 'mono' not 'mini'
19602         * exceptions-x86.c: Build and run on freebsd
19604 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19606         * Makefile.am: install the program with the 'mono' name and
19607         the library as libmono instead of mini and libmini.
19609 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19611         * driver.c: provide the APIs for the embedding interface of the old jit.
19613 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
19615         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
19617 2003-04-23  Martin Baulig  <martin@ximian.com>
19619         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
19621         * driver.c: Added `--debug' command line argument to enable
19622         debugging support.
19624 2003-04-23  Martin Baulig  <martin@ximian.com>
19626         * debug.[ch]: Removed.  The code is now in
19627         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
19629         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
19630         last six months.
19632 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
19634         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
19636 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19638         * mini.c:
19639         (mini_cleanup): moved mono_runtime_cleanup call after the call to
19640         mono_domain_finalize.
19641         (mini_method_compile): use mono_method_profile* if the the option is
19642         enabled.
19644 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
19646         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19647         methods with their wrapper.
19649         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19650         methods with their wrapper.
19652         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
19653         their wrapper.
19655         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
19656         wrapper.
19658         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
19659         methods.
19661 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
19663         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
19665 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
19667         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
19668         of the mempool. This is slightly faster and uses less memory
19670 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19672         * mini.c: avoid O(n) allocation for variables.
19674 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19676         * mini.c: handle items on the stack after inlining methods.
19678 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19680         * mini.c: make the method->opcode optimization dependent
19681         on MONO_OPT_INSTRINS and do it lazily.
19683 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19685         * driver.c: print overall results at the end of regression run.
19687 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19689         * inssel.brg: don't overwrite symbolic registers.
19691 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19693         * inssel-x86.brg: fix conversion from long to float.
19695 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
19697         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
19699 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
19701         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
19703         * driver.c: Added --print-vtable option as in the old JIT.
19705 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19707         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
19709 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19711         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
19713 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
19715         * mini.c regalloc.c regalloc.h: Fix memory leak.
19717 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
19719         * aot.c (mono_aot_get_method): register all used strings
19721 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19723         * mini.c: always intern strings references with ldstr at compile time.
19725 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19727         * Makefile.am: add BUILT_SOURCES.
19729 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19731         * driver.c: give a better error message when the assembly to execute
19732         doesn't have an entry point.
19734 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
19736         * Makefile.am: added hack for automake
19738         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
19739         correct sematics.
19741         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
19743 22003-04-07  Martin Baulig  <martin@ximian.com>
19745         * Makefile.am: Added Makefile.am.
19747         * debugger-main.c: Removed, this is now in the debugger where it
19748         belongs.
19750         * mini.pc.in: Call this package `mini' for the moment.