Remove unused var and declare variables first to fix msvc build.
[mono/afaerber.git] / mono / mini / ChangeLog
blob4a887d3ef2e3635cf57d69fe33ecbb5709c90d97
1 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
3         * mini.c (mono_jit_compile_method_inner): Implement the check for native func
4         wrappers correctly now that their wrapper info is NULL.
6 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
8         * mini.c (mono_jit_compile_method_inner): Avoid calling
9         mono_marshal_method_from_wrapper () for native func wrappers. Fixes #597189.
11 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
13         * genmdesc.c (inst_name): Define this as a copy of mono_inst_name in helpers.c,
14         so the latter can be #ifndef DISABLE_JIT-ed.
16         * helpers.c: Comment out the opstr array if DISABLE_JIT is set.
18 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
20         * method-to-ir.c driver.c: Disable a few more things when DISABLE_JIT is set.
22 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
24         * mini-llvm.c (emit_entry_bb): Fix support for simd arguments passed on the
25         stack.
27 2010-04-15  Zoltan Varga  <vargaz@gmail.com>
29         * debugger-agent.c (type_commands): Call mono_class_setup_methods () before
30         calling mono_class_num_methods (). Fixes #592244.
32 2010-04-14  Zoltan Varga  <vargaz@gmail.com>
34         * mini-x86.c (mono_arch_get_llvm_call_info): Handle empty structures correctly.
36         * mini-llvm.c: Disable LLVM for calls with non-default calling conventions.
38 2010-04-14  Zoltan Varga  <vargaz@gmail.com>
40         * method-to-ir.c (handle_box_inst): Merge into handle_box, simplify the merged
41         version.
42         * (handle_alloc): Ditto.
43         (mono_method_to_ir): Remove the constrained call restriction added by a previous
44         change, its not needed anymore.
46 2010-04-12 Rodrigo Kumpera  <rkumpera@novell.com>
48         * mini-posix.c (sigusr1_signal_handler): Fix build on
49         non x86/amd64 systems.
51 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
53         * method-to-ir.c (mono_method_to_ir): Disable generic sharing for constrained
54         calls where the constrained class needs a context. Fixes #595863.
56         * iltests.il.in: Add a test.
58 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
60         * mini.c (mini_method_compile): Disable llvm+methods with clauses again, llvm
61         2.6/SVN seems to have broken support for them.
63 2010-04-13  Zoltan Varga  <vargaz@gmail.com>
65         * mini-llvm.c: Fix support for LLVM 2.6.
67 2010-04-10  Zoltan Varga  <vargaz@gmail.com>
69         * debugger-agent.c (thread_commands): Add a GET_ID command to get the
70         MonoInternalThread belonging to the thread.
72 Fri Apr 9 15:28:01 CEST 2010 Paolo Molaro <lupus@ximian.com>
74         * driver.c, optflags-def.h, ir-emit.h: introduce an unsupported
75         unsafe optimization that will remove bound checks.
77 2010-04-08  Kornel Pal  <kornelpal@gmail.com>
79         * method-to-ir.c (mini_emit_inst_for_method): Fix a typo that caused
80         CompareExchange not to be inlined for I8.
82         Contributed under MIT/X11 license.
84 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
86         * array.cs: Add tests for cast between primitive array types.
88 2010-04-07 Andreia Gaita  <avidigal@novell.com>
90         * Makefile.am: create a convenience library for moon to link with
92 2010-04-07 Paolo Molaro <lupus@ximian.com>
94         * method-to-ir.c: optimize array accesses from generic interfaces.
96 2010-04-06  Zoltan Varga  <vargaz@gmail.com>
98         * mini-llvm.c: Update after the memset/memcpy intrinsics changes in LLVM SVN.
100 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
102         * method-to-ir.c (mono_method_to_ir): Handle call to virtual final methods
103         of marshalbyref classes.
105         Fixes #515884.
107 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
109         * aot-compiler.c (emit_exception_debug_info): Encode try holes
110         information.
112         * aot-runtime.c (decode_exception_debug_info): Decode try holes
113         information.
115         * mini.h: Increase AOT version.
117 2010-04-04  Andreas Faerber  <andreas.faerber@web.de>
119         * mini-x86.h: Only enable soft debugger when using sigaction or on
120         Windows. Fixes build on Haiku (lacks siginfo_t).
122         Code is contributed under MIT/X11 license.
124 2010-04-02  Andreas Faerber  <andreas.faerber@web.de>
126         * mini.h, mini-x86.h: Suppress sigaction for Haiku, add support for
127         BeOS-style signal handlers.
129         Code is contributed under MIT/X11 license.
130         
131 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
133         * mini-posix.c (sigusr1_signal_handler): Fix openbsd support.
135 2010-04-01 Rodrigo Kumpera  <rkumpera@novell.com>
137         * mini-exceptions.c: Fix win32 build.
139 2010-04-01  Mark Probst  <mark.probst@gmail.com>
141         * mini.c, driver.c: Call mono_gc_base_init() before
142         mono_debug_init().
144 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
146         * method-to-ir.c (ensure_method_is_allowed_to_[access_field|
147         call_method]): Delegate the actual work in security-core-clr.c
148         to ease code sharing.
150 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
152         * decompose.c (mono_decompose_opcode): Set the cfg exception if the unsupported
153         float conv.ovf.un opcodes are encountered, instead of asserting later.
154         Fixes #566296.
156 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
158         * decompose.c (mono_decompose_opcode): Add OP_ICONV_TO_U4_UN as a no-op.
160         * iltests.il.in: Add a test.
162 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
164         * mini-amd64.c (mono_arch_emit_call): Fail compilation if an argument is too
165         large. Fixes #567040.
167         * method-to-ir.c: Call CHECK_CFG_EXCEPTION after emitting a call.
169 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
171         * method-to-ir.c (handle_ccastclass): Call save_cast_details (). Fixes
172         #592711.
174 2010-03-31 Rolf Bjarne Kvinge <RKvinge@novell.com>
176         * mini-trampolines.c: Surround mono_handler_block_guard_trampoline and
177         mono_create_handler_block_trampoline with the proper #ifdef so that it
178         compiles on amd64.
180 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
182         * mini-exceptions.c: Introduce mono_walk_stack_full, which
183         allows to select if it's new or old context that is passed to 
184         the callback.
186         * mini-exceptions.c (mono_handle_exception_internal): Handle the
187         case when executing a guarded handler from the EH machinery.
189         * mini-exceptions.c (mono_install_handler_block_guard): New function
190         responsible for checking for handler blocks, installing the guard and
191         clearing abort state.
193         * mini-posix.c (sigusr1_signal_handler): Call mono_install_handler_block_guard
194         to check for handler blocks and skip interruption logic if one was found.
196         * mini-trampolines.c (mono_handler_block_guard_trampoline): Function called
197         by the handler block guard trampoline. Resumes interruption by raising the
198         pending ThreadAbortException.
200         * mini.c (create_jit_info): Calculate the end address of a finally block.
202         * mini-x86.c (mono_arch_install_handler_block_guard): Patch the return address
203         of a finally block to a specified address and return the old one.
205         * tramp-x86.c (mono_arch_create_handler_block_trampoline): The handler block
206         trampoline patches the original return address and calls the trampoline function.
208 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
210         * mini-trampolines.c (mono_aot_trampoline): Remove some dead code.
212         * aot-runtime.c (mono_aot_patch_plt_entry): New helper function, which only
213         does the patching if the callee is in the same domain.
215         * aot-runtime.c mini-trampolines.c: Call mono_aot_patch_plt_entry instead
216         of mono_arch_patch_plt_entry ().
218 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
220         * mini.c (create_jit_info): Fix try block hole length encoding.
222 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
224         * mini.c (create_jit_info): Emit saner debug spew. Now it doesn't
225         duplicate information and print offsets instead of absolute addresses.
227 2010-03-29  Zoltan Varga  <vargaz@gmail.com>
229         * debugger-agent.c (jit_end): Send type loads for types loaded before the VMStart
230         event is sent. Fixes #591733.
232 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
234         * mini-posix.c (SIG_HANDLER_SIGNATURE): Handle the case when ctx is NULL on
235         OpenBSD.
237 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
239         * debugger-agent.c (mono_debugger_agent_init): Set the GC type of the
240         thread_to_tls hash table.
242         * image-writer.c (bin_writer_emit_writeout): Fix the size of the got.plt
243         section. Fixes #591000.
245 2010-03-26  Andreas Faerber  <andreas.faerber@web.de>
247         * Makefile.am (version.h): Check for pure .git directory only,
248         fixes SVN revision when using git without git-svn.
250         Contributed under MIT/X11 license.
252 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
254         * aot-runtime.c: Apply some openbsd changes from openbsd ports.
256 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
258         * basic-simd.cs: Test for vector x scalar binary operators.
260 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
262         * simd-intrincs.c (simd_intrinsic_emit_binary): Support binary
263         intrinsics with expanded scalar arguments.
265 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
267         * mini-exceptions.c (get_exception_catch_class): Non catch clauses
268         don't have an exception class, so don't decode it. This would crash
269         with filter clauses.
271 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
273         Make sure that trunk builds with DISABLE_JIT, an update to the
274         PlayStation 3 port.
275         
276         * mini.c (mini_get_shared_method): this code seems to be necessary
277         regardless of whether DISABLE_JIT has been defined.
279         (mono_jit_compile_method_inner): it seems that this method is
280         required even in full AOT mode, so ifdef out only the pieces that
281         try to genrate code (the body of code that applies patches to the
282         code).  
284         (mini_method_compile): do not compile when using DISABLE_JIT.
286         * mini-ppc.c (mono_arch_get_allocatable_int_vars)
287         (mono_arch_output_basic_block, mono-arch_emit_exceptions): Do not
288         compile when DISABLE_JIT is set.
290 2010-03-24  Mark Probst  <mark.probst@gmail.com>
292         * mini.c (mono_create_tls_get): Only create a TLS operation if the
293         arch really supports it.
295 2010-03-24  Mark Probst  <mark.probst@gmail.com>
297         * mini-x86.c, mini-x86.h, mini.c: CEE_MONO_TLS support for Darwin/x86.
299 2010-03-23  Neale Ferguson <neale@sinenomine.net>
301         * exceptions-s390x.c: Add support for
302         mono_arch_get_throw_corlib_exception and fix throw by name.
304         * mini-s390x.c: Add IMT support; Fix stack parameter passing
305         logic (especially for varargs); Correct localloc sizing; Add
306         mono_arch_get_this_arg_from_call and
307         mono_arch_get_this_arg_from_call.
309         * mini-s390x.h: Add support for facility list extraction;
310         Correct/update MONO_ARCH_xxx settings.
312         * mini-s390.c: Minor corrections to instruction output for
313         varargs. No IMT implementation - I think it's time to deprecate
314         s390 and just leave s390x.
316         * tramp-s390x.c: Correct creation of trampoline instruction
319         * cpu-s390x.md: Update some instruction lengths
321 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
323         * mini-generic-sharing.c (fill_in_rgctx_template_slot): Remove an assert which
324         can be hit with partial sharing.
326         * mini-generic-sharing.c (get_shared_class): Handle partially shared methods
327         in non-shared classes correctly.
328         (generic_inst_is_sharable): Allow all primitive types in partial sharing.
329         Turn on partial sharing.
331 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
333         * mini-amd64.h: Put back MONO_ARCH_NOMAP32BIT for OpenBSD which was removed
334         by mistake.
336 2010-03-23  Zoltan Varga  <vargaz@gmail.com>
338         * method-to-ir.c (mono_method_to_ir): Handle the failure of
339         mono_method_signature ().
341         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
343         * mini.c (mini_method_compile): Get the signature of cfg->method early with
344         error checking, so later calls do not need error checking.
346 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
348         * exceptions-amd64.c: Add support for OpenBSD which has no UCONTEXT_GREGS.
350         * mini-amd64.h: Enable MONO_ARCH_USE_SIGACTION on OpenBSD as well.
352 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
354         * mini-exceptions.c (mono_handle_exception_internal): Don't
355         check try_end for archs different than s390. 
357         * mini.c (create_jit_info): Don't crash if the finallt block is the
358         last one.
360 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
362         * driver.c (mono_main): Don't free global codeman under linux since
363         glic now peeks at code on stack for more archs than just amd64.
365 Mon Mar 22 18:09:09 CET 2010 Paolo Molaro <lupus@ximian.com>
367         * mini.c, method-to-ir.c: changes to support compressed interface
368         bitmaps.
370 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
372         * mini-x86.h: Applied patch from Robert Nagy (Robert@openbsd.org).
373         Use sigaction on OpenBSD too.
375 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
377         * debugger-agent.c (event_req_matches_assembly): Handle request modifiers too.
379 2010-03-21  Andreas Faerber  <andreas.faerber@web.de>
381         * debugger-agent.c: #include sys/select.h for fd_set.
383         Code is contributed under MIT/X11 license.
385 2010-03-21  Zoltan Varga  <vargaz@gmail.com>
387         * mini.c (SIG_HANDLER_SIGNATURE): Fix the build on platforms without sigaction
388         (openbsd+amd64 ?).
390 2010-03-21  Zoltan Varga  <vargaz@gmail.com>
392         * mini-ppc.c (mono_arch_emit_exceptions): Avoid an assert in ppc_patch () for
393         some large methods with lots of exception handlers. Fixes #440924.
395 Sat Mar 20 11:56:24 CET 2010 Paolo Molaro <lupus@ximian.com>
397         * method-to-ir.c: remove code duplication for interface checks.
399 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
401         * debugger-agent.c (clear_event_requests_for_assembly): New helper function.
402         (assembly_unload): Clear all event requests referencing the to-be unloaded
403         assembly.
406 Fri Mar 19 16:45:20 CET 2010 Paolo Molaro <lupus@ximian.com>
408         * mini.h, mini-exceptions.c: restore the state of the stack
409         guard page permissions.
411 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
413         * mini-trampolines.c (common_call_trampoline): Remove the condition guarding the
414         call site patching code, it doesn't appear to be needed.
416 2010-03-19  Zoltan Varga  <vargaz@gmail.com>
418         * mini-generic-sharing.c: Add infrastructure for partial sharing, ie.
419         sharing generic methods whose type arguments are a mix of reference and
420         non-reference types. Not yet turned on.
422         * mini.c (mini_get_shared_method): New helper function to return
423         the method which will be compiled/registered in the JIT tables when doing
424         generic sharing.
425         (mono_domain_lookup_shared_generic): Moved to mini.c from mini-generic-sharing.c,
426         use mini_get_shared_method ().
428         * mini.c (mini_method_compile): Register the same method which is compiled when
429         doing generic sharing.
431         * mini.c aot-compiler.c aot-runtime.c: Add support for partial sharing.
433         * generics.cs: Add partial sharing tests.
435 2010-03-17 Jerry Maine  <crashfourit@gmail.com>
437         * mini.h : Changed the SIMD_VERSION* enum values to match those in Mono.Simd.AccelMode.
438                    Add an enum value that or's all possable values together. Add an enum value
439                    that marks the end of the used bit indexes.
441         * mini-amd64.c : Make changes to match the changes in mini.h 
443         * mini-x86.c : Make changes to match the changes in mini.h
445         * simd-intrinsics.c : Reorder the SimdIntrinsc struct to add more bits to
446                    simd_version to support more simd versions. Changed the name of
447                    simd_version to simd_version_flags to make it more intuitive that
448                    it now contains bit flags. Reordered the *_intrinsics arrays to
449                    match the changes above. Changed emit_intrinsics() to use the new
450                    setup mentioned above.
452         Code is contributed under MIT/X11 license.
454 2010-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
456         * mini-*.c (mono_arch_output_basic_block): Record try block holes on all
457         remaining archs. Alpha and hppa maintainers, please stand up.
459 2010-03-17  Zoltan Varga  <vargaz@gmail.com>
461         * mini-ppc.c (mono_arch_build_imt_thunk): Always save and restore r11 since it
462         is needed even when fail_tramp!=NULL.
464 2010-03-17  Zoltan Varga  <vargaz@gmail.com>
466         * debugger-agent.c (insert_breakpoint): Write a log message.
468 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
470         * iltests.il.in: Add a few tests for LEAVE going over multiple
471         finally clauses.
473 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
475          * mini-x86.c (mono_arch_output_basic_block): Record try block holes.
477 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
479         * mini.h (MonoBasicBlock): Add native_length field.
480         * mini.h (MonoCompile): Add try_block_holes field.
481         * mini.h (MonoInst): Add exception_clause pointer to
482         the data union.
484         * mini.c (mono_codegen): Calculate MonoBasicBlock::native_length.
485         * mini.c (mono_cfg_add_try_hole): New function to register possible
486         holes in try blocks.
487         * mini.c (create_jit_info): Fill in the holes information.
489         * mini-exceptions.c: Verify for holes when checking if an IP is covered
490         by a try block.
492         * method-to-ir.c: Add the EH clause to the CALL_HANDLE instruction.
494 Tue Mar 16 13:16:16 CET 2010 Paolo Molaro <lupus@ximian.com>
496         * jit-icalls.c: adjusted for the array API changes.
498 2010-03-16  Zoltan Varga  <vargaz@gmail.com>
500         * iltests.il.in: Disable the fconv_to_i test on sparc too.
502 2010-03-16  Zoltan Varga  <vargaz@gmail.com>
504         * debugger-agent.c: Simplify the way breakpoints are processed by removing
505         the 'pending' flag. This fixes support for appdomains too.
508 Mon Mar 15 18:25:49 CET 2010 Paolo Molaro <lupus@ximian.com>
510         * mini-amd64.c, mini-ia64.c: remove direct access to method->header.
512 2010-03-12  Zoltan Varga  <vargaz@gmail.com>
514         * simd-intrinsics.c (simd_intrinsic_emit_getter): Don't emit shuffle opcodes
515         when using LLVM, LLVM generates it itself when needed.
517         * mini-llvm-cpp.cpp (mono_llvm_build_aligned_load): New helper function.
519         * mini-llvm.c: Use an unaligned load for OP_LOADX_MEMBASE. Add zero extension
520         to some OP_EXTRACT_ opcodes. Fix the naming of some sse intrinsics. Fix
521         OP_ANDNPS/OP_ANDNPD.
523 2010-03-11  Zoltan Varga  <vargaz@gmail.com>
525         * tramp-x86.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code' for
526         the pc instead of 'buf'. Fix the call to mono_arch_flush_icache ().
527         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
529 2010-03-11  Martin Baulig  <martin@ximian.com>
531         * debugger-agent.c (type_commands): Add NULL check to
532         `CMD_TYPE_GET_SOURCE_FILES'.
534 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
536         * mini-ppc.c (mono_arch_decompose_opts): Fix OP_ICONV_TO_R_UN when cross-compiling.
538 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
540         * mini-codegen.c (mono_peephole_ins): Fix the OP_FMOVE optimization. Fixes
541         #586664.
543         * iltests.il.in: Add a test.
545 2010-03-05  Martin Baulig  <martin@ximian.com>
547         Add support for aborting invocations.
549         * debugger-agent.c
550         (InvokeData): Added `InvokeData *last_invoke'.
551         (DebuggerTlsData): Renamed `invoke' into `pending_invoke' and
552         added a new `invoke' field to keep the `InvokeData *' throughout
553         the invocation.
554         (ErrorCode): Added `ERR_NO_INVOCATION'.
555         (CmdVM): Added `CMD_VM_ABORT_INVOKE'.
556         (mono_debugger_agent_handle_exception): Don't report any exception
557         if an abort was requested.
558         (invoke_method): Store the `InvokeData *' in `tls->invoke'; reset
559         a thread abort if necessary.
560         (vm_commands): Implement `CMD_VM_ABORT_INVOKE'.
562 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
564         * method-to-ir.c: Store the initial basic block returned by mono_basic_block_split
565         so we can release the whole list and not just the first one. Free
566         it in more places as well.
568 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
570         * method-to-ir.c: Revert r153222 as it doesn't belong here.
572 Mon Mar 8 17:58:26 CET 2010 Paolo Molaro <lupus@ximian.com>
574         * mini.h, *.c: prepare for MonoMethodHeader to become a transient entity.
576 Mon Mar 8 17:35:26 CET 2010 Paolo Molaro <lupus@ximian.com>
578         * driver.c: report also other misc build options.
580 2010-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
582         * method-to-ir.c: Generate better code for the NewObject
583         intrinsic.
584         
585 2010-03-07  Zoltan Varga  <vargaz@gmail.com>
587         * branch-opts.c (mono_if_conversion): Disable one of the cases when deadce
588         is disabled. Fixes #582322.
590         * iltests.il.in: Add a test.
592 2010-03-06  Zoltan Varga  <vargaz@gmail.com>
594         * tramp-amd64.c (mono_arch_create_monitor_exit_trampoline_full): Delegate
595         the handling of obj->synchronization == null and owner != current thread to
596         mono_monitor_exit ().
598         * tramp-x86.c (mono_arch_create_monitor_exit_trampoline_full): Ditto.
601 Sat Mar 6 18:14:15 CET 2010 Paolo Molaro <lupus@ximian.com>
603         * mini.c: change the way emulated opcode info is stored and save about
604         4 KB of runtime memory.
606 2010-03-04  David S. Miller  <davem@davemloft.net>
608        * mini-sparc.h: Always use MONO_ARCH_USE_SIGACTION.  Linux kernels
609        that don't provide the siginfo in the second signal handler argument
610        are buggy, and this has been fixed for years.
611        * mini.h (GET_CONTEXT): Remove __sparc__ special case.
612        (SIG_HANDLER_SIGNATURE, SIG_HANDLER_PARMS): Likewise.
614 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
616         * aot-runtime.c (find_symbol): Fix a leak.
617         (decode_patch): Ditto.
619 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
621         * mini.h (MONO_INST_IS_TEMP): Kill this unused define.
623 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
625         * mini.c (mono_resolve_patch_target): Fix an uninitialized variable.
627 Wed Mar 3 19:19:21 CET 2010 Paolo Molaro <lupus@ximian.com>
629         * method-to-ir.c: MONO_PROFILE_STRING_ALLOC is dead.
631 2010-03-03  Rodrigo Kumpera  <rkumpera@novell.com>
633         * method-to-ir.c (mono_method_to_ir): Don't create a runtime vtable
634         to check for errors, it's enough to create the metadata open.
636         Fixes #562150
638 2010-03-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
640         * trace.c|h:
641         * mini-exceptions.c: Add support for printing stack traces when handling
642         exceptions, and when printing exceptions thrown while tracing also print
643         the exception message.
645 2010-03-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
647         * trace.c: We need to parse exclude tokens ('-') before string tokens,
648         since the exclude token is a valid string character.
650 2010-03-02  Levi Bard  <levi@unity3d.com>
652         * debugger-agent.c: Invalidate thread stacks on domain unload.
654 2010-03-02  Mark Probst  <mark.probst@gmail.com>
656         * method-to-ir.c: Emit dummy_use for stored reference after write
657         barriers to make sure the object is pinned if the GC interrupts
658         before the write barrier is done.
660 2010-03-02  Zoltan Varga  <vargaz@gmail.com>
662         * cpu-<ARCH>.md: dummy_use was missing src1:i.
664 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
666         * debugger-agent.c: Add a log message printing the protocol version.
668 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
670         * debugger-agent.c: Add a new command to communicate the protocol version used
671         by the client. This could be used to allow newer runtimes to communicate with
672         older clients.
674 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
676         * debugger-agent.c (domain_commands): Add a new command to create a boxed value.
678 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
680         * debugger-agent.c (type_commands): Fix the setting of fields with a reference
681         type.
683 Mon Mar 1 15:20:44 CET 2010 Paolo Molaro <lupus@ximian.com>
685         * mini-arm.c: make the arm cpu arch configurable with the
686         MONO_CPU_ARCH env var (for example: "armv4 thumb").
687         Bug #584198.
689 Mon Mar 1 14:48:35 CET 2010 Paolo Molaro <lupus@ximian.com>
691         * mini.c, mini.h, driver.c: added the --jitmap option to enable
692         support for the perf tool on Linux.
694 Mon Mar 1 14:43:55 CET 2010 Paolo Molaro <lupus@ximian.com>
696         * method-to-ir.c: make string.InsertenalSetChar() specialization
697         effective.
699 2010-03-01  Robert Jordan  <robertj@gmx.net>
701         * Makefile.am: fix the non-static build.
703 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
705         * mini-generic-sharing.c: Move the contents of ../metadata/generic-sharing.c
706         here.
708 2010-02-26  Robert Jordan  <robertj@gmx.net>
710         * tasklets.c (continuation_store): Return from an error condition
711         immediately.
713 2010-02-26  Martin Baulig  <martin@ximian.com>
715         * debug-debugger.c (MonoDebuggerInfo): Added `abort_runtime_invoke'.
717         * debug-mini.c
718         (MonoDebuggerThreadInfo): Added `internal_flags'.
719         (MonoDebuggerInternalThreadFlags): New enum.
720         (_mono_debugger_throw_exception): Don't signal the debugger if a
721         type abort was requested.
722         (_mono_debugger_unhandled_exception): Likewise.
723         (mono_debugger_abort_runtime_invoke): New method to abort an invocation.
724         (mono_debugger_runtime_invoke): If the debugger requested a thread
725         abort during the invocation, reset it here.
727 2010-02-26  Martin Baulig  <martin@ximian.com>
729         * debug-mini.c (MonoDebuggerThreadInfo): Use `MonoInternalThread *'
730         instead of `MonoThread *'.
732 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
734         * aot-runtime.c (mono_aot_find_jit_info): Use a merge sort for sorting the
735         code offsets table, as it is mostly sorted.
737 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
739         * debugger-agent.c (do_invoke_method): Fix invoking of static methods on vtypes.
740         Fixes #582991.
742 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
744         * driver.c (mono_main): Get rid of mono_setup_vtable_in_class_init.
746 Wed Feb 24 15:58:03 CET 2010 Paolo Molaro <lupus@ximian.com>
748         * Makefile.am: build the new ABI version of the libmono library.
749         * debugger-agent.c, mini.c: fix warnings with the new API.
750         * jit.h: don't depend on glib.h being included.
752 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
754         * method-to-ir.c (mono_method_to_ir): Implement AOT support for fast TLS access.
756 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
758         * method-to-ir.c (mono_method_to_ir): Implement support for fast access to
759         ThreadStatic variables.
761 2010-02-24  Zoltan Varga  <vargaz@gmail.com>
763         * debugger-agent.c (notify_thread): Skip terminated threads, since their tls
764         data is not freed yet. Fixes #582460.
766 2010-02-23  Zoltan Varga  <vargaz@gmail.com>
768         * debugger-agent.c: Add support for the caught/uncaught flags on exception
769         event requests. Bump protocol minor version.
771 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
773         * decompose.c (mono_decompose_long_opts): Handle OP_LCONV_TO_OVF_I8 here too.
775 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
777         * decompose.c (mono_decompose_opcode): Handle OP_LCONV_TO_OVF_I8. Fixes
778         #581950.
780         * iltests.il.in: Add a test.
782 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
784         * mini.c (inline_method): Check for loader errors.
786 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
788         * mini.c (mono_method_check_inlining): Use !mono_method_get_header_summary
789         instead of mono_method_get_header as it doesn't decode locals
790         so the called method can have unresolved dependencies that will only
791         be satisfied after the current method is JIT'd.
793         Fixes #550968.
795 2010-02-22  Zoltan Varga  <vargaz@gmail.com>
797         * basic.cs (test_0_div_opt): Speed this up a bit.
799 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
801         * mini-amd64.c: Fix DISABLE_JIT support after the latest changes.
803         * mini.c (mono_jit_create_remoting_trampoline): Call
804         mono_create_specific_trampoline () instead of
805         mono_arch_create_specific_trampoline ().
807         * mini-trampolines.c tramp-arm.c: Disable more stuff when DISABLE_JIT is set.
809 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
811         * unwind.c (mono_unwind_get_cie_program): New function, moved here from
812         aot-compiler.c, so it can be found even if DISABLE_JIT is set.
814         * aot-compiler.c xdebug.c: Update callers of mono_arch_unwind_get_cie_program ().
816         * mini-amd64.c: Fix DISABLE_JIT support.
818 2010-02-20  Geoff Norton  <gnorton@novell.com>
820         * aot-runtime.c: Ensure we dont leak a held lock when unwinding exceptions.
822 2010-02-20  Zoltan Varga  <vargaz@gmail.com>
824         * debugger-agent.c (mono_debugger_agent_handle_exception): Receive two contexts,
825         one for the throw and one for the catch. Mark uncaught exceptions by a NULL
826         CATCH_TXT. Send normal exception events for unhandled exceptions too.
827         (mono_debugger_agent_handle_unhandled_exception): Remove this, merged into
828         handle_exception.
830 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
832         * exceptions-x86.c (mono_arch_get_restore_context): Changes this so it restores
833         edx/ecx too. This is needed to support OP_SEQ_POINT.
835 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
837         * exceptions-amd64.c (get_throw_trampoline): Add xdebug info.
839         * method-to-ir.c (mono_method_to_ir): Fix SIZEOF in dynamic methods.
841 2010-02-16  Zoltan Varga  <vargaz@gmail.com>
843         * mini-llvm.c aot-compiler.c aot-runtime.c unwind.c: Finish support
844         LLVM+AOT+exceptions, not enabled yet.
846 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
848         * mini.c (SIG_HANDLER_SIGNATURE): Fix the windows build.
850 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
852         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Emit
853         xdebug info for these.
855         * mini-trampolines.c (common_call_trampoline): Use mini_jit_info_table_find ()
856         in a few places.
858         * mini.c (mini_get_vtable_trampoline): Make this take a 'slot_index' argument,
859         not used yet.
861 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
863         * aot-compiler.c (load_profile_files): Update after the profiler changes.
865 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
867         * mini.c (mono_jit_compile_method_inner): Avoid passing icall wrappers to
868         mono_profiler_method_end_jit, since the profiler has no way to process wrappers.
870         * aot-runtime.c mini.c: Resurrect the aot pagefault profiling stuff, it is useful
871         for mtouch.
873 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
875         * debugger-agent.c: handle incomplete reads and EINTR in
876         recv()/send(). This could have been causing random
877         disconnections.
879 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
881         * aot-runtime.c (decode_exception_debug_info): Fix aot support for sequence
882         points.
884         * mini-arm.c (mono_arch_allocate_vars): Allocate the seq point related vars first
885         so they have small offsets. Fixes #566311.
887 2010-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
889         * method-to-ir.c (mono_method_check_inlining): Check for loader errors.
891 2010-02-11  Zoltan Varga  <vargaz@gmail.com>
893         * mini-amd64.c: Remove the special casing of byref in a few places now that
894         mini_type_get_underlying_type () handles it.
896         * mini-generic-sharing.c (mini_type_get_underlying_type): Handle byref as well
897         by returning native int. Fixes #577984.
899 2010-02-11  Zoltan Varga  <vargaz@gmail.com>
901         * method-to-ir.c (handle_isinst): Factor out the is_complex_isinst check into
902         a macro.
904         * mini-llvm.c (exception_cb): Put the clause index into the type info instead
905         of putting the clause itself.
907         * mini-arm.c mini.c linear-scan.c: Disable more stuff when DISABLE_JIT is used.
909 2010-02-09  Zoltan Varga  <vargaz@gmail.com>
911         * unwind.c (mono_unwind_frame): Use read32 for reading a 32 bit value, since it
912         might be unaligned.
914 2010-02-10  Geoff Norton  <gnorton@novell.com>
916         * aot-compiler.c: Make the number of IMT trampolines configurable as well.
918 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
920         * aot-compiler.c (emit_code): Create the ut trampolines here, so they work for
921         llvm methods too.
923         * aot-compiler.c (emit_code): Don't add the llvm label prefix to 'methods', since
924         it is not an LLVM generated symbol.
926         * mini-llvm.c (emit_entry_bb): Fix the handling of simd types.
928         * method-to-ir.c (handle_castclass): Turn off the more efficient isinst/castclass
929         implementation in gshared mode because it causes regressions.
931         * mini-trampolines.c: Add a stat for the number of calls to trampolines.
933         * image-writer.c (asm_writer_emit_global): Don't prepend the global prefix, it
934         should be done by the caller.
936         * mini-llvm.c (mono_llvm_emit_method): Don't make the debug symbols global.
938         * aot-compiler.c (emit_code): Add the llvm label prefix before 'methods'.
940         * mini-exceptions.c (mini_jit_info_table_find): Search the root domain as well,
941         since mono_jit_info_table_find () doesn't do it anymore.
943         * mini-generic-sharing.c debugger-agent.c: Call mini_jit_info_table_find ()
944         instead of mono_jit_info_table_find ().
946 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
948         * aot-compiler.c aot-runtime.c: Add support for MONO_WRAPPER_WRITE_BARRIER.
950         * aot-compiler.c (encode_method_ref): Update after the removal of
951         mono_gc_get_managed_allocator_type ().
953         * method-to-ir.c (mono_method_to_ir): Place a seq point just before a RET.
954         Fixes #564538.
956 2010-02-06  Zoltan Varga  <vargaz@gmail.com>
958         * method-to-ir.c (handle_castclass): Use the icall for classes with variant
959         generic params as well.
960         (handle_isinst): Ditto.
962         * method-to-ir.c: Make isninst/castclass checks in gshared code more efficient
963         instead of always calling an icall.
965         * aot-compiler.c (emit_llvm_file): Take into account trampolines etc when
966         computing the size of the got.
968         * aot-compiler.c (emit_code): Change the way the 'methods' symbol is emitted
969         when using LLVM. Instead of emitting it as an LLVM method, emit it using
970         the assembly directive '.set' so it points to the first LLVM emitted method.
972 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
974         * mini.c (mini_method_verify): Report the method which failed to verify.
976 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
978         * method-to-ir.c (mono_method_to_ir): Use the new basic block formation pass
979         to avoid JIT'ng dead basic blocks. This is the same behavior as the
980         runtime MS verifier.
982 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
984         * debugger-agent.c (decode_value): Fix decoding of vtype instances. Fixes
985         #561962.
987 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
989         * mini-llvm.c: Init the jit module only when first JITting.
991         * aot-compiler.c (emit_plt): Fix the naming of plt entries of llvm+darwin.
993         * mini-llvm.c (get_plt_entry): Make the plt entries have hidden visibility.
995         * mini-llvm.c (mono_llvm_emit_aot_module): Remove the dummy got after it is
996         replaced with the real got.
998         * debugger-agent.c (type_commands): Return the enumness if the type as well.
1000         * image-writer.c: Reduce the amount of #ifdefs a bit.
1002         * aot-compiler.c: Reduce the amount of #ifdefs. Add beginnings of support for
1003         llvm on darwin/arm.
1005         * aot-compiler.c (mono_compile_assembly): Handle asmonly+llvm mode.
1007         * mini-llvm.c (mono_llvm_emit_method): Don't make the 'type_info' symbols
1008         global.
1010 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1012         * mini-llvm.c (mono_llvm_emit_method): Add support for unaligned loads.
1013         (mono_llvm_emit_method): Fix unaligned stores too.
1015         * mini-amd64.c (mono_arch_emit_prolog): Initialize lmf->rsp in the prolog too
1016         so async stack walks don't crash.
1018 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1020         * mini-trampolines.c (common_call_trampoline): Fix a problem where the callsite
1021         was not patched if the callee needed an rgctx trampoline.
1023 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1025         * mini-ppc.c (mono_arch_get_global_int_regs): Reserve r29 for holding the
1026         vtable address in AOT code.
1028 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1030         * mini-codegen.c: Remove support for CEE_ opcodes which cannot occur in
1031         MonoInst's.
1033 Mon Feb 1 16:29:10 CET 2010 Paolo Molaro <lupus@ximian.com>
1035         * genmdesc.pl: remove dependency on external cpp.
1037 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1039         * method-to-ir.c (mini_emit_ldelema_1_ins): Avoid emitting an OP_SEXT_I4 when
1040         using LLVM, its not needed, and abcrem can't handle it.
1042 Mon Feb 1 14:29:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1044         * genmdesc.c, genmdesc.pl, cpu-x86.md: introduced templates to make
1045         it easier to group instructions and reduce duplication.
1047 2010-02-01  Zoltan Varga  <vargaz@gmail.com>
1049         * decompose.c: Move the array/soft float decompose routines here from
1050         method-to-ir.c.
1052         * method-to-ir.c: Export a few functions so they can be used from decompose.c.
1054 2010-01-31  Zoltan Varga  <vargaz@gmail.com>
1056         * mini-llvm.c (mono_llvm_emit_method): Add a call to llvm.invariant.start
1057         to tell LLVM that the got is constant, not used yet.
1059         * aot-compiler.c: Pass more optimization flags to llvm's 'opt'.
1061 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1063         * mini-ppc.c (mono_arch_emit_prolog): Fix full aot support for native to
1064         managed wrappers.
1066 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1068         * aot-compiler.c (add_wrappers): Commit the hack which generates
1069         native-to-managed wrappers for methods decorated with the MonoPInvokeCallback
1070         custom attribute.
1072 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1074         * mini.h (MONO_INST_FAULT): New instruction flag for loads which can cause
1075         a fault, only used by the LLVM backend.
1077         * ir-emit.h: Add _FAULT variants of the LOAD_MEMBASE macros. Mark
1078         OP_CHECK_THIS with OP_IMPLICIT_EXCEPTION.
1080         * method-to-ir.c: Use the new LOAD_MEMBASE_FAULT opcodes, get rid of the
1081         calls to MONO_EMIT_NULL_CHECK which is automatically done by the new macros.
1083         * mini-llvm.c: Only generate volatile loads from load instructions which have
1084         the MONO_INST_FAULT flag set.
1086 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1088         * unwind.c (mono_unwind_decode_fde): Fix the decoding of the LSDA offset on
1089         64 bit platforms.
1091 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1093         * mini.c (mono_save_seq_point_info): Fix the handling of bblocks without
1094         sequence points. Fixes #571236.
1096 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1098         * debugger-agent.c (mono_debugger_agent_init): Call appdomain_unload at the
1099         end of the appdomain unload process, after assemblies have been unloaded.
1100         Fixes #574842.
1102 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1104         * abcremoval.c (process_block): Fix the if (region) check so abcrem actually
1105         works.
1107         * mini-amd64.c: Make the soft debugger work on platforms without MAP_32BIT.
1108         Fixes #573988.
1110 2010-01-26  Zoltan Varga  <vargaz@gmail.com>
1112         * dwarfwriter.c (emit_type): Treat MONO_TYPE_PTR as 'I' not 'I4'.
1114 2010-01-26  Geoff Norton  <gnorton@novell.com>
1116         * aot-compiler.c: Fix a logic error introduced when guarding against enums
1117         with struct marshalability.
1119 2010-01-24  Zoltan Varga  <vargaz@gmail.com>
1121         * mini.c (mini_method_compile): Improve the processing MONO_VERBOSE_METHOD so
1122         it supports class names as well.
1124         * mini.h (MonoCompile): Add a few flags to control JIT behavior which are
1125         needed by the GC map code.
1127         * mini.c (mini_method_compile): Call a function in mini-gc.c to set the new
1128         flags if needed.
1130         * method-to-ir.c (mono_method_to_ir): Emit initialization code for ref variables
1131         if cfg->init_ref_vars is set.
1133         * liveness.c (optimize_initlocals): Disable the initlocals opt for ref vars if
1134         cfg->disable_initlocals_op_refs is set.
1136         * method-to-ir.c (mono_spill_global_vars): Compute more precise live ranges
1137         using liveness info if cfg->compute_precise_live_ranges is set.
1139         * mini-gc.c: Ongoing work. Improve logging and debugging support. Handle
1140         volatile variables correctly. Add comments about the live ranges. Not enabled
1141         yet.
1143 2010-01-24  Zoltan Varga  <vargaz@gmail.com>
1145         * mini.h (MonoDebugOptions): Add an option to init stack frames by writing
1146         0x2a into them in method prologs.
1148         * mini-amd64.c (mono_arch_emit_prolog): Implement it.
1150 2010-01-22  Zoltan Varga  <vargaz@gmail.com>
1152         * mini-llvm-cpp.cpp: Remove uses of dynamic_cast, it no longer works with llvm
1153         classes, since llvm is compiled with -fno-rtti.
1155         * mini.h (COMPILE_SOFT_FLOAT): New macro, similar to COMPILE_LLVM.
1157         * method-to-ir.c ir-emit.h: Use if (COMPILE_SOFT_FLOAT) in a few places since
1158         llvm does not require it.
1160         * aot-runtime.c (load_method): Print the full name of the last aot method.
1162 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
1164         * exceptions-amd64.c (mono_arch_notify_pending_exc): Avoid a crash if the
1165         thread has not fully started yet.
1167 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
1169         * aot-compiler.c (can_marshal_struct): Allow marshalling enums.
1171 2010-01-21  Miguel de Icaza  <miguel@novell.com>
1173         * driver.c: Do not abort if LLVM is not supported, print a
1174         warning and add the information to the Mono JIT information.
1176 2010-01-21  Zoltan Varga  <vargaz@gmail.com>
1178         * ir-emit.h (MONO_EMIT_NULL_CHECK): Don't emit an OP_IMPLICIT_EXCEPTION when
1179         using explicit null checks.
1181 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1183         * xdebug.c: New file extracted from aot-compiler.c, containing the XDEBUG
1184         related code.
1186         * aot-compiler.c (encode_method_ref): Use mono_marshal_wrapper_info_from_wrapper
1187         () in one place.
1188         (mono_aot_wrapper_name): Remove the special handling of delegate invoke wrappers,
1189         its no longer needed.
1191         * method-to-ir.c (mono_method_to_ir): Fix a warning.
1193         * exceptions-<ARCH>.c: Introduce a MONO_ARCH_HAVE_THROW_EXCEPTION_BY_NAME
1194         define for platforms still using it (s390). Get rid of the
1195         mono_arch_get_throw_exception_by_name () routines on all other platforms.
1197         * exceptions-x86.c: Rework the throw trampolines so there is only one function
1198         which can generate throw/rethrow/corlib trampolines for llvm/not llvm code.
1200         * exceptions-x86.c: Add LLVM specific throw trampolines which doesn't assume
1201         the caller pushed the arguments.
1203         * mini-llvm.c: Enable throwing exceptions on x86.
1205         * mini-posix.c (SIG_HANDLER_SIGNATURE): Avoid
1206         "Thread (nil) may have been prematurely finalized" messages if this is called
1207         on a thread not registered with the runtime.
1209         * mini-exceptions.c (mono_handle_native_sigsegv): Ditto.
1211 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1213         * jit-icalls.c (mono_array_new_3): New jit icall.
1215         * aot-compiler.c aot-runtime.c: Add support for ElementAddr wrappers.
1217         * arrays.cs: Add a test for 3 dimensional arrays.
1219 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1221         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Emit xdebug info.
1222         (mono_arch_find_jit_info_ext): Disable the popping of arguments when LLVM is
1223         used.
1225         * mini-llvm.c (emit_cond_system_exception): Abort when an implicit exception is
1226         thrown on x86.
1228         * unwind.c (mono_unwind_decode_fde): Fix an assert on x86.
1230         * mini-x86.h (MONO_CONTEXT_SET_LLVM_EXC_REG): Define this for x86.
1232         * mini-llvm.c: Disable OP_THROW on x86, it doesn't work yet.
1234 2010-01-18  Bill Holmes  <billholmes54@gmail.com>
1236         * debugger-agent.c : Changing the PLATFORM_WIN32 preprocessor check to
1237           HOST_WIN32.  Also including winsock2. to define struct in_addr.
1239         * mini-amd64.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
1241         * mini-x86.h : Changing the PLATFORM_WIN32 preprocessor check to HOST_WIN32.
1243         Code is contributed under MIT/X11 license.
1245 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1247         * mini.h (MonoCompile): Add 'disable_out_of_line_bblocks' flag.
1249         * branch-opts.c (mono_optimize_branches): Honor the new flag.
1251         * mini.c (mini_method_compile): Set the new flag when running under the
1252         debugger.
1254 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1256         * mini-gc.c: Change the GC map to use a ref/noref/pin value instead of just
1257         a ref/noref value + a global pin flag, so parts of stack frames can still be
1258         precisely marked even if they include stuff which needs pinning. Improve logging.
1259         Fix many bugs. Not enabled yet.
1261         * gc-test.cs: Add a few tests.
1263         * liveness.c (mono_analyze_liveness): Make the debug output controllable by
1264         the normal -v options. Avoid propagating liveness information through bblocks
1265         which end with a NOT_REACHED opcode.
1267         * mini.c (mono_jit_compile_method_inner): Avoid reading cfg->prof_options
1268         after cfg has been freed.
1270 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1272         * branch-opts.c (mono_branch_optimize_exception_target): Stop the optimization
1273         if a clause is skipped because it uses the exception object, since it could
1274         have caught the exception.
1276         * exceptions.cs: Add a test.
1278 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1280        * mini-trampolines.c (mono_create_static_rgctx_trampoline): Add an assert.
1282         * aot-runtime.c (mono_aot_get_method): Handle ftnptr's correctly for the
1283         ICollection<T> wrappers.
1285 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1287         * debugger-agent.c (decode_value): Fix the decoding of I/U/PTR.
1289 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1291         * mini-amd64.c (emit_call_body): Always use near calls when AOTing even if
1292         NOMAP32BIT or optimize_for_xen is set.
1294 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1296         * aot-compiler.c aot-runtime.c: Get rid of mono_aot_str_hash (), use
1297         mono_metadata_str_hash () instead.
1299 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1301         * ir-emit.h (MONO_EMIT_NEW_ICOMPARE_IMM): Use sizeof (mgreg_t) instead of
1302         sizeof (void*).
1304         * unwind.c (mono_unwind_frame): Use mgreg_t instead of gssize.
1306 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1308         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): Emit an explicit null check if the
1309         flag is set.
1311         * mini-ppc.c (mono_arch_emit_exceptions): Compute the size of the exception
1312         throwing code correctly.
1314         * mini.h (MONO_AOT_FILE_VERSION): Bump this because of the IMT hashing changes.
1316 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1318         * aot-runtime.c (mono_aot_plt_resolve): Reenable the previous assert for
1319         ftnptrs created by us, handle RGCTX_FETCH correctly.
1320         (mono_aot_get_lazy_fetch_trampoline): Add an ftnptr.
1322         * mini-trampolines.c (mono_create_generic_class_init_trampoline): Remove the
1323         ftnptr added by mono_aot_get_named_code ().
1325 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1327         * mini-arm.c: Fix a few LLVM problems.
1329         * mini-llvm.c (simd_class_to_llvm_type): Fix compilation on !x86/amd64.
1331 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1333         * method-to-ir.c (mini_emit_stobj): Use EMIT_NEW_CLASSCONST when
1334         AOT compiling.
1336 Wed Jan 13 15:54:53 CET 2010 Paolo Molaro <lupus@ximian.com>
1338         * jit.h, method-to-ir.c: added ability to set the policy for
1339         inserting breakpoints from the break IL instruction or the
1340         Debugger.Break () API call.
1342 2010-01-13  Zoltan Varga  <vargaz@gmail.com>
1344         * aot-runtime.c (load_aot_module): Add more comments to explain why referenced
1345         assemblies need to be eagerly loaded.
1347 2010-01-12  Zoltan Varga  <vargaz@gmail.com>
1349         * dwarfwriter.c (emit_line_number_info): Fix the eglib case so it doesn't crash.
1351 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1353         * debugger-agent.c (mono_debugger_agent_parse_options): Allow onthrow without
1354         an argument which matches any exception.
1356 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
1358         * method-to-ir.c (mono_emit_method_call_full): Avoid the virt->nonvirt
1359         optimization if the called method is gshared and marshalbyref, since gshared
1360         methods can' have wrappers. Fixes #569390.
1362         * generics.cs: Add a test.
1364 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
1366         * mini-exceptions.c (mono_print_thread_dump_from_ctx): New helper function
1367         callable from gdb.
1369 2010-01-10  Zoltan Varga  <vargaz@gmail.com>
1371         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
1373 2010-01-09  Zoltan Varga  <vargaz@gmail.com>
1375         * debugger-agent.c (transport_connect): comment out freeaddrinfo calls under win32,
1376         since it is not supported in win2000.
1378 2010-01-08  Zoltan Varga  <vargaz@gmail.com>
1380         * aot-runtime.c (load_image): Add a SET_ERROR argument to set the loader
1381         error if loading an assembly fails.
1382         (mono_aot_plt_resolve): Return NULL instead of asserting if loading fails.
1384         * mini-trampolines.c (mono_aot_plt_trampoline): Throw a pending loader error
1385         if exists.
1387         * aot-runtime.c (decode_exception_debug_info): Set jinfo->from_llvm for LLVM
1388         compiled methods.
1390         * mini-llvm-cpp.cpp: Remove the unused ctx variable.
1392         * mini-llvm.c (mono_llvm_emit_method): Add some comments about why aot+clauses
1393         is not supported yet.
1395         * unwind.c (DW_EH_PE_absptr): Add more DW_EH_PE_ constants.
1397 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1399         * method-to-ir.c: All types with variant arguments must fallback to the
1400         slow path. This makes cast of variant delegates work.
1402         * mini-trampolines.c (mono_get_vcall_slot_addr): Add new variance_used out
1403         argument that is set to TRUE is the returned vtable slot is for a variant
1404         interface. Changed a g_print + g_assert_not_reached to a g_error.
1406         * mini-trampilines.c (common_call_trampoline): Handle variant interfaces in
1407         a similar fashion of generic virtual methods.
1409 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1411         * helpers.c (mono_disassemble_code): Fix a g_hash_table warning
1412         when cfg is null.
1414         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Convert a given
1415         method using a variance aware function.
1417         * mini-x86.c: Add support for dumping IMT thunks if DEBUG_IMT is defined.
1419 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1421         * method-to-ir.c (mono_method_to_ir): Casts to variant interfaces
1422         do an icall for now.
1424 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
1426         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add an ugly hack to fix #564695.
1427         If LLVM decides to set the code model to Large, reset it to Default.
1429 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
1431         * aot-compiler.c (mono_xdebug_flush): Export it so it is present in
1432         stripped binaries as well.
1434 2010-01-07  Zoltan Varga  <vargaz@gmail.com>
1436         * mini-trampolines.c (common_call_trampoline): Add an rgctx trampoline if a shared
1437         method is called from LLVM compiled code, as that code can't pass an rgctx arg.
1439         * mini-llvm.c (mono_llvm_emit_method): Enable calls to methods needing an rgctx
1440         reg.
1442 2010-01-06  Zoltan Varga  <vargaz@gmail.com>
1444         * mini.c (mini_method_compile): Extract the JIT info creation code into a
1445         separate function.
1447         * mini-llvm.c (mono_llvm_emit_method): Pass the info in MonoExceptionClause
1448         as the type info to llvm.eh.selector.
1449         (exception_cb): Use the type info for filling out some fields of
1450         MonoJitExceptionInfo like the flags and the exception class. This is needed
1451         because the LLVM produced exception handling clauses might not match the original
1452         IL clauses, i.e. there might be more than one LLVM clause for one IL clause.
1454         * unwind.c (mono_unwind_decode_fde): Extract the LSDA decoding code into a
1455         separate function. Add an extra argument which returns the type infos
1456         corresponding to the exception clauses.
1458         * mini.c (mini_method_compile): Enable LLVM compilation of methods having
1459         exception handling clauses.
1461 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1463         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
1464         mono_method_get_vtable_slot () instead of accessing imt_method->slot directly,
1465         to fix an AOT case.
1467 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1469         * mini.c (mono_compile_is_broken): Skip methods from serialization's
1470         internal assembly.
1472 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1474         * mini.c (mini_method_compile): Fix a few memory leaks introduced by the
1475         llvm code.
1477 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1479         * mini.c (mini_method_compile): Verify the method before calling
1480         mono_compile_create_vars as this might crash since it uses method
1481         information.
1483         Fixes #560196.
1485 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1487         * method-to-ir.c (mono_method_to_ir): Avoid calling mono_class_vtable () in
1488         one case if AOTing, since the class might not be a concrete class.
1490 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1492         * mini-codegen.c abcremoval.c: Remove the duplicate g_slist_append_mempool
1493         functions which are now defined in mempool-internals.h.
1495         * mini.c (mini_free_jit_domain_info): Free the seq point hash tables.
1497         * mini-llvm.c (mono_llvm_emit_method): Handle OP_ABS.
1499 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1501         * mini.c:
1502         * method-to.ir.c:
1503         * mini-*.c: Properly handle generic enums.
1505         Fixes #566294
1507 2009-12-28  Zoltan Varga  <vargaz@gmail.com>
1509         * method-to-ir.c (mono_method_to_ir): Handle the failure of mono_class_vtable ()
1510         in a few more places.
1512 2009-12-27  Zoltan Varga  <vargaz@gmail.com>
1514         * aot-compiler.c (add_wrappers): Don't use dyn runtime invoke for methods with
1515         nullable parameters. Fixes #567351.
1517 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1519         * mini-trampolines.c (common_call_trampoline): Add assert for NULL resolved generic method.
1521 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1523         * mini-trampolines.c: Use mono_arch_get_this_arg_from_call () to avoid the slow
1524         mono_get_generic_context_from_code () call.
1526         * mini-<ARCH>.c: Get rid of mono_arch_find_this_arg (), it is no longer used.
1528 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
1530         * aot-runtime.c (decode_klass_ref): Don't call mono_class_init (), its not
1531         needed.
1533 2009-12-24  Sebastien Pouliot  <sebastien@ximian.com>
1535         * method-to-ir.c (mono_method_to_ir): Avoid SIGSEGV when
1536         mono_method_get_signature returns NULL. Fix #567084
1538 2009-12-25  Zoltan Varga  <vargaz@gmail.com>
1540         * aot-runtime.c (find_extra_method): Call mono_aot_wrapper_name only once,
1541         instead of once for each module.
1543 2009-12-22  Zoltan Varga  <vargaz@gmail.com>
1545         * debugger-agent.c (ss_start): Implement step over for the last sequence
1546         point in methods.
1548         * mini.c (mono_save_seq_point_info): Don't link sequence points which don't
1549         have the STEP_LOC flag set.
1551         * aot-runtime.c (decode_klass_ref): Avoid a crash if a decode_klass_ref () call
1552         fails. Fixes #566689.
1554 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
1556         * mini.c (mono_add_seq_point): New helper function.
1557         (mono_save_seq_point_info): New function to save sequence point info, extracted
1558         from mini_method_compile ().
1560         * mini-<ARCH>.c: Call mono_add_seq_point to remember sequence points.
1562         * mini.h (MonoSeqPointInfo): New structure containing information about
1563         the sequence points of a JITted method.
1564         (MonoBasicBlock): Add 'seq_points' and 'last_seq_point' fields. Remove unused
1565         'bucket' field.
1567         * mini.c debugger-agent.c aot-compiler.c aot-runtime.c: Change the way sequence
1568         point information is stored, use a MonoSeqPointInfo structure instead of a
1569         GPtrArray. For each seq point, compute a list of successor seq points.
1571         * debugger-agent.c: Use the successor list to implement step-over more
1572         efficiently: instead of single stepping until a different line/IL offset is
1573         reached, place breakpoints into all successor seq points.
1575         * mini.h: Bump AOT file format version.
1577 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
1579         * Makefile.am (AM_CFLAGS): Include LLVM_CFLAGS.
1581         * mini-llvm.c: Avoid defining the __STDC_... macros if already defined.
1583 2009-12-21  Zoltan Varga  <vargaz@gmail.com>
1585         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): Fix the cross-compiler
1586         build.
1588 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1590         * mini-x86.c (mono_arch_get_argument_info): Allocate memory for CallInfo using
1591         alloca as g_malloc is not signal safe.
1593 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1595         * tramp-x86.c (mono_arch_patch_callsite): Fix the call to
1596         VALGRIND_DISCARD_TRANSLATIONS.
1598         * *.c: Include mono/utils/memcheck.h, and remove #ifdef HAVE_VALGRIND_MEMCHECK_H
1599         checks, they are no longer needed.
1601         * exceptions-ppc.c (mono_ppc_set_func_into_sigctx): New helper function to set
1602         a function into a sigctx which can handle function pointers.
1604         * mini-ppc.c: Implement soft debugger support on ppc64.
1606         * mini-ppc.c: Implement soft debugger support.
1608 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1610         * mini-llvm.c: Handle OP_LADD_OVF_UN. Place all alloca's into the entry bb.
1612 2009-12-17  Marek Habersack  <mhabersack@novell.com>
1614         * mini.c (mono_get_runtime_build_info): include Mono version in
1615         the returned value.
1617         * driver.c (mono_main): VERSION is now included in the string
1618         returned from mono_get_runtime_build_info()
1620 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1622         * method-to-ir.c (mono_method_to_ir): Add support for CALLI with unmanaged
1623         signatures. Fixes #565143.
1625         * jit-icalls.c (mono_get_native_calli_wrapper): New JIT icall.
1627 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1629         * aot-compiler.c (arch_emit_autoreg): Align code to 4 in the ppc case.
1631 2009-12-16 Rodrigo Kumpera  <rkumpera@novell.com>
1633         * mini-x86.h: Forgot to add a 0x to MONO_ARCH_MAX_FRAME_SIZE define
1634         making max stack 10x smaller.
1636 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1638         * mini.c (mono_resolve_patch_target): Comment out an assert which could be hit.
1640 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
1642         * method-to-ir.c (mini_emit_memcpy): Assert if size is too big.
1644 2009-12-15 Rodrigo Kumpera  <rkumpera@novell.com>
1646         * mini-x86.c (mono_arch_allocate_vars): Fail compilation if the frame size is
1647         bigger than MONO_ARCH_MAX_FRAME_SIZE.
1649         * mini-x86.c (mono_arch_emit_prolog): Handle huge frames.
1651         * mini-x86.h: Define MONO_ARCH_MAX_FRAME_SIZE to be 1Mb.
1653         * mini-amd64.c / mini-amd64.h: Same fixes as of above.
1655         * mini.c (mini_method_compile): Check if mono_arch_allocate_vars failed
1656         the compilation.
1658 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1660         * method-to-ir.c (mono_method_to_ir): CEE_UNUSUED opcodes now
1661         raise an invalid program exception.   
1663         For other opcodes that we might not handle use a g_warning and
1664         raise the exception.   Beats termination.
1666         Fixes #561724
1668 2009-12-14  Zoltan Varga  <vargaz@gmail.com>
1670         * method-to-ir.c (mono_emit_rgctx_method_call_full): Fix a warning.
1672         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix the LLVM support
1673         by merging the LLVM and !MAP_32BIT cases.
1675 2009-12-13 Jonathan Chambers <joncham@gmail.com>
1677         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Handle a NULL
1678         sigctx being passed in, as we have no CONTEXT available in the APC.
1680         (mono_debugger_agent_cleanup): Use explicit cond wait implementation
1681         for now.
1683         Code contributed under MIT/X11 license.
1685 2009-12-13  Zoltan Varga  <vargaz@gmail.com>
1687         * method-to-ir.c mini-llvm.c: Fix support for monitor enter/exit trampolines
1688         in the LLVM backend on AMD64.
1690         * aot-runtime.c (decode_eh_frame): Initialize the clauses from the info in the
1691         FDE.
1693         * unwind.c (mono_unwind_decode_fde): Implement decoding of a couple more formats.
1695         * mini-llvm.c: Export mono_personality for AOT.
1697         * mini.c (mini_method_compile): Fix some problems with llvm+aot+clauses.
1699         * mini-ops.h (OP_IMPLICIT_EXCEPTION): New opcode marking the place where an
1700         implicit exception can occur.
1702         * ir-emit.h (MONO_EMIT_NEW_IMPLICIT_EXCEPTION): New macro to emit an
1703         OP_IMPLICIT_EXCEPTION instruction.
1705         * ir-emit.h (MONO_EMIT_NEW_CHECK_THIS): New macro.
1707         * method-to-ir.c: Use MONO_EMIT_NEW_CHECK_THIS in a few places.
1709         * mini-llvm.c: Handle OP_IMPLICIT_EXCEPTION by disabling llvm if it occurs
1710         inside a protected block.
1712         * mini-llvm.c: Revert the last change, the signature of monitor entry/exit
1713         trampolines doesn't include the argument.
1715         * mini-llvm.c (mono_llvm_emit_method): Enable calls to monitor entry/exit
1716         trampolines on amd64.
1718         * mini-amd64.h (MONO_ARCH_MONITOR_OBJECT_REG): Use MONO_AMD64_ARG_REG1 instead
1719         of RDI.
1721         * mini.c (mini_method_compile): Add some comments as to why LLVM is currently
1722         disabled for methods with clauses.
1724         * mini-llvm.c: Enable support for catch clauses.
1726         * mini-exceptions.c (mono_resume_unwind): New function to resume unwinding at the
1727         end of an LLVM compiled finally clause.
1728         (mono_handle_exception_internal): Save the exception handling state in TLS
1729         before calling an LLVM compiled finally clause, so mono_resume_unwind () can
1730         resume unwinding from that point.
1732         * unwind.c (mono_unwind_get_ops_from_fde): Rename this to
1733         mono_unwind_decode_fde, decode the Language Specific Data Area (LSDA) too,
1734         to obtain the addresses of the exception handling regions.
1736         * mini-llvm.c: Add beginnings of support for exception handling, currently only
1737         finally clauses are supported.
1739         * mini.c (mini_method_compile): Add support for LLVM code with exception
1740         handlers.
1742 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
1744         * mini-llvm.c (mono_llvm_emit_method): Allocate the 'pindexes' array with the
1745         proper size.
1747 2009-12-12  Zoltan Varga  <vargaz@gmail.com>
1749         * debugger-agent.c: Encode the this argument of vtype methods as a struct, not
1750         as a primitive type.
1752 2009-12-11  Zoltan Varga  <vargaz@gmail.com>
1754         * driver.c: Applied patch from Matt McClellan (matt@mc-c.net). Add a check
1755         for 2 parameter sched_setaffinity in older glibc versions. Fixes
1756         #564000.
1758 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1760         * method-to-ir.c (mini_redirect_call): do not redirect the
1761         InternalAllocateStr internal call if string profiling is enabled.
1763 2009-12-10  Zoltan Varga  <vargaz@gmail.com>
1765         * aot-compiler.c (add_wrappers): Avoid generating synchronized wrappers for
1766         generic methods.
1768         * unwind.h: Rename this to mini-unwind.h to avoid conflicts with the gcc
1769         unwind.h header file.
1771         * tramp-x86.c (mono_arch_patch_callsite): Patch the code when using valgrind,
1772         newer valgrind versions seems to handle this fine.
1774 2009-12-09  Zoltan Varga  <vargaz@gmail.com>
1776         * debugger-agent.c (start_runtime_invoke): Fix a crash if this is called
1777         on the debugger thread.
1779 2009-12-08  Zoltan Varga  <vargaz@gmail.com>
1781         * mini-llvm.c (mono_llvm_emit_method): Add more SIMD opcodes.
1783         * mini.c (mono_print_method_from_ip): Fix the lookup of trampolines.
1785         * mini-codegen.c (mono_local_regalloc): Allow non-call opcodes with cloc:c.
1787         * cpu-<ARCH>.md: Make call_handler clob:c.
1789         * mini.c: Reenable SSA for methods with clauses.
1791         * mini.c (mini_method_compile): Disable SSA for now for methods with clauses,
1792         as it causes failures on x86.
1794 2009-12-08  Sebastien Pouliot  <sebastien@ximian.com>
1796         * driver.c: Fail gracefully with --compile-all if mono_method_signature
1797         returns NULL (e.g. a bad assembly).
1799 2009-12-08  Geoff Norton  <gnorton@novell.com>
1801         * debugger-agent.c:  Refactor the mono_runtime_invoke guarding against
1802         stepping out into native code.  There were issues with nested invokes
1803         like .cctors.
1805 2009-12-07  Zoltan Varga  <vargaz@gmail.com>
1807         * mini.c (mini_method_compile): Do the disable_llvm checks early
1808         and avoid the LLVM compile pass if the checks fail.
1810         * mini.c ssa.c abcremoval.c: Enable SSA for methods with exception clauses.
1812         * mini-llvm.c: Put our methods/globals into the 'llvm.used' array, so the
1813         LLVM optimizations don't try to remove them.
1815         * aot-compiler.c (emit_llvm_file): Save the result of opt into a
1816         different file so the original remains.
1818 2009-12-06  Zoltan Varga  <vargaz@gmail.com>
1820         * mini-llvm.c mini.c: Fix alignment issues with SIMD vars.
1822         * aot-runtime.c (decode_arm_exidx): Handle most descriptors created by gas.
1824         * aot-runtime.c (decode_arm_exidx): Refactor this into two functions, add
1825         support for non-inline unwind descriptors.
1827 2009-12-07  Geoff Norton  <gnorton@novell.com>
1829         * debugger-agent.c:  Darwin can colesce signals, so we need to handle
1830         the interrupt_count slightly differently.  Native threads were never
1831         marked as resumed.
1833 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1835         * aot-runtime.c (decode_arm_exidx): New function to initialize a MonoJitInfo
1836         based on the contents of the ARM .exidx section. Not yet used since llvm doesn't
1837         yet generate this info.
1839         * mini-llvm.c: Fix the conversion of call results if they are unsigned.
1841         * debugger-agent.c (buffer_add_value): Treat I/U as a valuetype, so the
1842         client can distinguish between intptrs and longs.
1844 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1846         * aot-compiler.c (emit_trampoline): Emit the trampoline info into the global
1847         blob.
1849         * aot-runtime.c (load_function): Update after the change above.
1851         * mini.h: Bump AOT file format version.
1853         * method-to-ir.c (mono_method_to_ir): Disallow the delegate optimization
1854         if the delegate class is dynamic.
1856         * method-to-ir.c (handle_delegate_ctor): Allow the method_code optimization
1857         in gshared code too using the new rgctx info type
1858         MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1860 2009-12-04  Geoff Norton  <gnorton@novell.com>
1862         * debugger-agent.c: When doing a func-eval invoke on a suspended runtime,
1863         we need to track the original suspend count so the thread properly
1864         wakes up in resume_thread.
1866 2009-12-04  Zoltan Varga  <vargaz@gmail.com>
1868         * method-to-ir.c (handle_delegate_ctor): Add support for using this from gshared
1869         code.
1871         * generics.cs: Add a test.
1873         * method-to-ir.c (emit_get_rgctx_method): Make this work even if context_used
1874         is 0. Simplify a lot of code using this.
1876         * mini-trampolines.c (mono_delegate_trampoline): Call
1877         mono_create_static_rgctx_trampoline () before saving the final address in
1878         delegate->method_code, to avoid calling it each time a delegate is first called.
1880         * method-to-ir.c (mono_method_to_ir): Allow fast delegate creation for methods
1881         which need static rgctx trampolines.
1883         * mini-trampolines.c (mono_create_static_rgctx_trampoline): Use a cache
1884         keyed on the method+addr pair, since addr could be either the method addr or
1885         an unbox trampoline in the AOT case. Fixes #560246.
1887 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
1889         * mini.c (mini_method_compile): Call handle_exception_clauses () in the same
1890         place it was called before too.
1892 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
1894         * mini.c (mono_jit_runtime_invoke): Avoid the call to mono_class_setup_vtable ()
1895         if no security manager is present, to speed up the AOT case. Call
1896         mono_class_vtable () full with raise_on_error == TRUE instead.
1898 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
1900         * mini.c (mini_method_compile): Call handle_exception_clauses earlier so
1901         the local optimization passes can take its result into account. Fixes
1902         #559876.
1904         * exceptions.cs: Add a test.
1906 2009-01-24  Steven Munroe  <munroesj@us.ibm.com>
1908         This patch is contributed under the terms of the MIT/X11 license
1910         * cpu-ppc64.md (load_memindex): Add loadi8_memindex.
1912 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
1914         * mini.h (MonoInst): Remove unused 'ssa_op' field.
1916         * debugger-agent.c: Rework the handling of stack traces of running threads to
1917         avoid crashes if compute_frames () tries to walk the stack of running thread.
1919         * mini.c (mono_print_method_from_ip): Use mini_jit_info_table_find.
1921         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): Set frame->lmf.
1923         * mini.h (StackFrameInfo): Add an 'lmf' field.
1925 2009-12-02  Zoltan Varga  <vargaz@gmail.com>
1927         * debugger-agent.c (suspend_current): Always set really_suspended.
1929         * debugger-agent.c (clear_event_request): Clear method entry/exit requests too.
1931         * exceptions-x86.c (mono_arch_get_restore_context): Restore EAX too.
1933 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
1935         * debugger-agent.c (vm_commands): Don't allow invokes on threads which are not
1936         really suspended.
1938 2009-12-01  Zoltan Varga  <vargaz@gmail.com>
1940         * cpu-ppc64.md (store_memindex): Add storei8_memindex.
1942 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
1944         * mini-trampolines.c: Fix MSVC build.
1946 2009-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
1948         * mini-trampolines.c: Check for mono_method_get_vtable_slot failures.
1950 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
1952         * mini-arm.c (mono_arch_lowering_pass): Fix an assert which is hit when
1953         the instruction following an OP_FCOMPARE is optimized away.
1955 2009-11-30  Zoltan Varga  <vargaz@gmail.com>
1957         * aot-compiler.c (arch_emit_autoreg): Extract the auto-registration code from
1958         emit_autoreg () into this arch-specific function.
1960         * aot-compiler.c (emit_exception_debug_info): Don't emit the length of the
1961         code, it is no longer needed.
1963         * aot-runtime.c (decode_exception_debug_info): Don't read the code length.
1965         * mini.h: Bump AOT file format version.
1967         * aot-runtime.c (mono_aot_find_jit_info): Compute the length of the method
1968         using the sorted_code_offsets array, instead of reading it from the
1969         exception debug info.
1970         (load_method): Call mono_aot_find_jit_info instead of
1971         decode_exception_debug_info ().
1973         * aot-compiler.c (emit_exception_debug_info): Emit whenever the method was
1974         LLVM compiled as a flag.
1976 2009-11-29  Zoltan Varga  <vargaz@gmail.com>
1978         * debugger-agent.c (resume_thread): Fix a warning.
1980         * aot-compiler.c: Add an option to set the number of static rgctx trampolines
1981         generated.
1983 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1985         * aot-compiler.c aot-runtime.c: Get rid of a few global symbols, move their
1986         contents to MonoAotFileInfo.
1988 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1990         * aot-compiler.c aot-runtime.c: Reorganize the AOT file format once again.
1991         Put all binary data into a giant blob, similarly to the way .net assemblies
1992         store binary data. Emit offset tables in a compact form to reduce their size.
1994         * mini.h: Bump AOT file format version.
1996         * aot-compiler.c (emit_globals_table): Use temp_prefix instead of .L in a few
1997         places.
1999         * aot-compiler.c (emit_globals_table): Emit a hash table for the globals, to
2000         avoid linear searches at runtime.
2002         * aot-runtime.c (find_symbol): Update this to use the hash.
2004         * mini.h: Bump AOT file format version.
2006 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2008         * aot-compiler.c (emit_klass_info): Save whenever the class has a generic
2009         container.
2011         * aot-runtime.c (decode_cached_class_info): Set the is_generic_container field
2012         too.
2014         * aot-compiler.c (mono_compile_assembly): Add a 'stats' option to print out
2015         the distribution of got slot types.
2017         * mini.h (MonoDebugOptions): Add 'explicit_null_checks' option.
2019         * method-to-ir.c: Add support for generating explicit null checks.
2021 2009-11-25  Zoltan Varga  <vargaz@gmail.com>
2023         * debugger-agent.c (vm_commands): Implement EXIT by invoking Environment.Exit ()
2024         on a random thread if possible.
2026         * aot-runtime.c (mono_aot_plt_resolve): Clean up the handling of function
2027         descriptors a bit, add comments, handle RGCTX_FETCH/GENERIC_CLASS_INIT_TRAMPOLINE
2028         correctly.
2030         * exceptions-ppc.c (mono_arch_find_jit_info_ext): Use mgreg_t as the type of
2031         regs. Pass the real size of the regs array to mono_unwind_frame ().
2033         * unwind.c (mono_unwind_frame): Remove an incorrect assert, add more correct
2034         ones instead.
2036 2009-11-24  Geoff Norton  <gnorton@novell.com>
2038         * mini-darwin.c: Work around apple bug rdar://7209349  See
2039         http://openradar.appspot.com/7209349 for details.  Synopsis,
2040         CoreFoundation SIGTRAP's if you dlopen it off the main thread if its
2041         never been initialized before.
2043 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2045         * tramp-arm.c: Use blx instead of mov pc, reg to improve support for thumb.
2047         * mini-arm.c (mono_arm_thumb_supported): New helper function.
2049 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2051         * cfold.c (mono_constant_fold_ins): Fix a problem in the previous change,
2052         OP_SHL_IMM is not 32 bit.
2054 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2056         * aot-compiler.c (encode_patch): Fix the encoding of R8 on big-endian systems.
2058 2009-11-24  Zoltan Varga  <vargaz@gmail.com>
2060         * aot-compiler.c: Avoid infinite recursion when generic virtual recursion is
2061         encountered.
2063         * debugger-agent.c (resume_vm): Signal the suspend_cond even if suspend_count
2064         > 0 since some threads can resume if their resume_count is > 0.
2065         (invoke_method): Avoid reading freed memory.
2067         * debugger-agent.c (process_suspend): Extract the suspend code from
2068         process_single_step_inner () to a separate function. Rework the code to prevent
2069         races between this function and thread interrupts.
2071         * debugger-agent.c (suspend_current): Check the resume_count field instead
2072         of resume_one so suspends+resumes during single threaded invokes work
2073         correctly.
2075 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2077         * aot-compiler.c (emit_llvm_file): Enable some llvm optimizations which seem
2078         to make the generated code smaller.
2080         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Add a code
2081         sequence generated by recent LLVM versions.
2083         * mini-llvm.c: Add support for a few simple cases which weren't supported
2084         before.
2086         * mini-trampolines.c (mono_magic_trampoline): Don't call
2087         mono_arch_get_vcall_slot () when llvm is enabled.
2089         * aot-compiler.c (emit_llvm_file): Add code to run the 'opt' llvm tool.
2091         * mini-trampolines.c (mono_magic_trampoline): Extract the bulk of this function
2092         into a new function called common_call_trampoline () which is used by the
2093         llvm vcall trampoline as well.
2095         * debugger-agent.c: Implement single threaded invokes.
2097         * debugger-agent.c: Revert change which broke the agent on linux.
2099         * method-to-ir.c (inline_method): Prevent infinite recursion. Fixes
2100         #557606.
2102         * generics.cs: Add a test.
2104 2009-11-22  Zoltan Varga  <vargaz@gmail.com>
2106         * debugger-agent.c: Fix the cygwin build.
2108 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
2110         * cprop.c: Remove this unused file.
2112 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
2114         * cfold.c (mono_constant_fold_ins): Fix constant folding of shr_imm. Fixes
2115         #557262.
2117         * basic.cs: Add a test.
2119 2009-11-21  Zoltan Varga  <vargaz@gmail.com>
2121         * method-to-ir.c (mono_method_to_ir): Use mono_use_llvm instead of ENABLE_LLVM
2122         in one more place.
2124 2009-11-20  Zoltan Varga  <vargaz@gmail.com>
2126         * mini.c mini-trampolines.c driver.c: Add a 'mono_use_llvm' flag to control
2127         whenever the runtime uses LLVM code. Add a '--llvm' command line option to set
2128         it. Use this flag to control llvm related code paths instead of #ifdef
2129         ENABLE_LLVM, so a runtime configured without --enable-llvm can use LLVM compiled
2130         AOT code.
2132         * aot-runtime.c aot-compiler.c: Add a 'flag' field to MonoAotFileInfo.
2134         * mini.h: Bump AOT file format version.
2136         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline_full): These
2137         receive their argument in MONO_ARCH_VTABLE_REG, not in the first argument reg.
2139         * debugger-agent.c (create_event_list): Fix a crash if an empty assembly list
2140         was used as an assembly filter.
2142 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
2144         * unwind.c: Fix support for ppc.
2146         * exceptions-ppc.c (mono_arch_find_jit_info): Change this to use dwarf frame
2147         unwind info. Change to the mono_arch_find_jit_info_ext () interface.
2149 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
2151         * mini-ppc.c (mono_arch_emit_prolog): Fix a copy-paste error to fix the ppc64
2152         port.
2153         (mono_arch_cpu_init): Don't set cpu_hw_flags to 0 at the end, this was somehow
2154         added by the ps3 changes.
2156 2009-11-19  Zoltan Varga  <vargaz@gmail.com>
2158         * mini-gc.c: Resurrect this, so at least it compiles.
2160         * debugger-agent.c (assembly_commands): Implement GET_NAME command.
2162 2009-11-18  Zoltan Varga  <vargaz@gmail.com>
2164         * debugger-agent.c (mono_debugger_agent_handle_exception): Pass a MonoJitInfo to
2165         create_event_list () so assembly filters can be used.
2167         * exceptions-ppc.c (mono_arch_find_jit_info): Fix the restoration of registers
2168         from the LMF.
2170 2009-11-17  Zoltan Varga  <vargaz@gmail.com>
2172         * debugger-agent.c (mono_debugger_agent_breakpoint_hit): Fix a warning.
2173         (mono_debugger_agent_thread_interrupt): Make this return FALSE if the agent
2174         is disabled.
2176         * aot-compiler.c (add_generic_instances): Emit instances of common generic
2177         classes for char/bool too.
2179         * debugger-agent.c (DebuggerTlsData): Honor the DISABLE_SOFT_DEBUG option.
2181         * debugger-agent.c (DebuggerTlsData): Add a 'really_suspended' flag, not yet
2182         used.
2184         * debugger-agent.c: Add some definitions to make backporting to 2.6 easier.
2185         Fix warnings.
2187 2009-11-15  Andreas Faerber  <andreas.faerber@web.de>
2189         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Signature fix.
2190         
2191         Code contributed under MIT/X11 license.
2193 2009-11-14  Zoltan Varga  <vargaz@gmail.com>
2195         (mono_debugger_agent_thread_interrupt): Save the context so stacktraces for
2196         threads in native code work.
2198         * debugger-agent.c: Pass the 'flags' argument to VM_INVOKE_METHOD earlier in
2199         the parameter list, so it can be acted upon by vm_commands (). Bump protocol
2200         version.
2202 2009-11-13 Jonathan Chambers <joncham@gmail.com>
2204         * debugger-agent.c: Implementation for Windows platform.
2206         * mini-x86.c: Add support for Windows. Use mono-* synchronization
2207         primitives. Use SEH to implement breakpoints and single stepping.
2209         * mini-x86.h: Enable soft debugger on Windows.
2211         Code contributed under MIT/X11 license.
2213 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
2215         * mini-amd64.c (emit_call_body): Disable usage of near calls when running
2216         under XEN. Fixes #522894.
2218         * patch-info.h: Add LLVM_IMT_TRAMPOLINE.
2220         * mini-llvm.c aot-compiler.c aot-runtime.c mini.c: Add support for making
2221         interface calls in LLVM AOT code.
2223         * aot-compiler.c mini-llvm.c: Abort llvm compilation if a non-encodable patch
2224         is found.
2226         * mini-llvm.c: Add support for OP_VPHI.
2228         * objects.cs: Add a test.
2230 2009-11-13  Zoltan Varga  <vargaz@gmail.com>
2232         * debugger-agent.c (mono_debugger_agent_single_step_event): Avoid a crash if
2233         this is called on the debugger thread.
2235 2009-11-12  Zoltan Varga  <vargaz@gmail.com>
2237         * mini-llvm.c: Add soft-float support.
2239         * method-to-ir.c (mono_decompose_soft_float): Restart after decomposing an
2240         FCALL which returns an R4.
2242         * driver.c (mono_main): Add a missing '\n'.
2244         * mini-trampolines.c (mono_create_llvm_imt_trampoline): Fix the build on
2245         platforms which doesn't support the LLVM IMT trampoline.
2247 2009-11-11  Zoltan Varga  <vargaz@gmail.com>
2249         * mini-llvm.c (mono_llvm_emit_method): Fix LOCALLOC.
2251         * mini-llvm-cpp.cpp: Update to latest LLVM SVN.
2253         * mini-llvm.c (mono_llvm_emit_method): Avoid creating plt entries for
2254         virtual calls.
2256         * aot-runtime.c: Don't define HAVE_DL_ITERATE_PHDR, configure now does that.
2258 2009-11-10  Zoltan Varga  <vargaz@gmail.com>
2260         * aot-compiler.c aot-runtime.c: Change how mono_arch_find_jit_info () works.
2261         Instead of emitting a method_order table, sort the contents of the code_offsets
2262         table and do a binary search in the sorted table. The previous approach doesn't
2263         work with LLVM which emits methods in a arbitrary order.
2265         * aot-runtime.c: Add support for creating MonoJitInfo structures by searching
2266         in the .eh_frame section in ELF files.
2268         * mini.h: Bump corlib file format version.
2270         * mini-llvm.c aot-compiler.c: Add support for AOT to the LLVM back end.
2272         * exceptions-arm.c (mono_arch_get_call_filter_full): Update after the
2273         LDMIA->LDM macro name change.
2275 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2277         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Fix and enable this for
2278         x86.
2280         * mini-llvm-cpp.cpp (JITMemoryManager): Fix compilation with LLVM 2.7
2281         SVN.
2283         * aot-compiler.c: Ditto.
2285         * mini-arm.c (mono_arch_allocate_vars): Fix the previous change by passing
2286         &align to mini_type_stack_size_full ().
2288         * mini-arm.c (mono_arch_emit_prolog): Implement support for varargs.
2290         * mini-ops.h: Add documentation for the OP_ARGLIST opcode.
2292 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
2294         * mini-arm.c: Compute the stack space used by arguments using
2295         mini_type_stack_size_full ().
2297 2009-11-08  Zoltan Varga  <vargaz@gmail.com>
2299         * optflags-def.h: Remove dead TREEPROP optimization.
2301 2009-11-08  Rodrigo Kumpera  <rkumpera@novell.com>
2303         * mini-ppc.h: Make mono compiler under FreeBSD/ppc64. 
2305         Patch by Justin Hibbits <chmeeedalf@gmail.com>.
2307 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
2309         * driver.c (mono_jit_parse_options): New public API function to parse options
2310         as done by the runtime executable.
2312         * debugger-agent.c (buffer_add_cattrs): Fix reading an uninitialized variable
2313         when handling named arguments.
2315 2009-11-07  Zoltan Varga  <vargaz@gmail.com>
2317         * mini-arm.c: Implement support for returning vtypes in registers, fix support
2318         for passing small vtypes in registers, make the CallInfo structures more
2319         similar to the code on the other platforms.
2321         * mini-arm.c (mono_arch_allocate_vars): Align small vtypes to 4 bytes too since
2322         the code in the prolog requires it.
2324 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
2326         * mini-arm.c debugger-agent.c: Android changes from Koushik K. Dutta
2327         (koush@koushikdutta.com).
2329         * mini-arm.c (handle_thunk): Add a domain argument to control the domain
2330         where the thunk memory should be allocated from. Fixes appdomain unloading
2331         on arm.
2333 2009-11-06  Zoltan Varga  <vargaz@gmail.com>
2335         * mini-arm.c exceptions-arm.c: Make ctx->regs map directly to the 16 hardware
2336         registers, instead of r4..r11,ip,lr. Make restore_context () restore r0..r3 too.
2338 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2340         * mini-amd64.c (mono_arch_output_basic_block): Don't allow OP_SEQ_POINT in
2341         AOT, as it is not implemented yet.
2343         * mini-x86.c (mono_arch_output_basic_block): Ditto.
2345 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2347         * debugger-agent.c: Fix windows build.
2349 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2351         * debugger-agent.c (debugger_thread): Call mono_set_is_debugger_attached ()
2352         after the client connects/disconnects.
2354         * debugger-agent.c: Add an 'onthrow' option to start the debugger agent
2355         when an exception of a given type is thrown.
2357         * debugger-agent.c: Add a 'onuncaught' option to start the debugger agent
2358         only on an uncaught exception.
2360         * mini-exceptions.c: Notify the debugger agent on an uncaught exception.
2362         * debugger-agent.c: Add a 'launch' option.
2364 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2366         * debugger-agent.c: Add a 'timeout' option.
2368 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2370         * debugger-agent.c: Implement the 'server' and 'suspend' options supported by
2371         the JDWP agent.
2373 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2375         * debugger-agent.c (set_breakpoint): Emit a log message.
2377 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2379         * mini-arm.c: Fix the arm build.
2381 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2383         * aot-compiler.c: don't leak the value returned from
2384         mono_type_full_name().
2386 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2388         * debugger-agent.c: defer including mono-mutex.h until we know the
2389         agent is supported.
2391 2009-11-04 Jonathan Chambers <joncham@gmail.com>
2393         * debugger-agent.c: Changes to build on windows. Use mono-mutex instead
2394         of pthreads directly.
2396         * mini.c (mono_sigfpe_signal_handler): Changed signature of Windows
2397         exception handlers. Pass info argument.
2399         * mini.h: Adjust signatures of soft debugger functions to pass void*
2400         instead of siginfo_t. Adjust SIG_HANDLER_SIGNATURE on Windows.
2402         * mini-amd64.c (mono_arch_is_single_step_event): Adjust signature to pass void*
2403         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2404         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
2405         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2407         * mini-amd64.h: Adjust MonoW32ExceptionHandler signature.
2409         * mini-x86.c (mono_arch_is_single_step_event): Adjust signature to pass void*
2410         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2411         (mono_arch_is_breakpoint_event): Adjust signature to pass void*
2412         instead of siginfo_t. Value is EXCEPTION_RECORD on Windows.
2414         * mini-x86.h: Adjust MonoW32ExceptionHandler signature.
2416         * exceptions-x86.c: Adjust W32_SEH_HANDLE_EX for new signature.
2418         * exceptions-amd64.c: Adjust W32_SEH_HANDLE_EX for new signature.
2420         * mono-semaphore.h: Skeleton implementation for Windows.
2422         Code contributed under MIT/X11 license.
2424 2009-11-04 Jonathan Chambers <joncham@gmail.com>
2426         * simd-intrinsics.c (simd_intrinsic_emit_setter): Unfix my fix.
2428         Code contributed under MIT/X11 license.
2430 2009-11-04 Jonathan Chambers <joncham@gmail.com>
2432         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix windows build.
2434         Code contributed under MIT/X11 license.
2436 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2438         * aot-compiler.c (mono_save_xdebug_info): Bump the threshold for flushing
2439         debug info to 100 because 10 still slows down gdb too much.
2441         * method-to-ir.c (mono_method_to_ir): Avoid rethrowing thread abort exceptions
2442         inside runtime invoke wrappers. This avoids the need to call ResetAbort () on
2443         them in the wrappers.
2445 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2447         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
2449         * simd-intrinsics.c (simd_intrinsic_emit_setter): Fix a warning.
2451         * aot-runtime.c (mono_aot_get_method): Refactor some code into a new helper
2452         function mono_aot_get_array_helper_from_wrapper ().
2454         * aot-compiler.c (add_generic_class): Refactor the code a bit, really emit
2455         array helper methods.
2457 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2459         * simd-intrinsics.c (load_simd_vreg): Add extra argument to signal if
2460         the value was loaded from memory.
2462         * simd-intrinsics.c (simd_intrinsic_emit_setter): Store back to memory if
2463         the value was loader from there.
2465         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Fail correctly for Shuffle
2466         without constant swizzle.
2468 2009-11-02 Jonathan Chambers <joncham@gmail.com>
2470         * mini-amd64.c: Put soft debugger functions behind a
2471         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
2473         * mini-amd64.h: disable the soft debugger in windows.
2475         Code contributed under MIT/X11 license.
2477 2009-11-02 Jonathan Chambers <joncham@gmail.com>
2479         * mini-x86.c: Put soft debugger functions behind a
2480         #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED.
2482         Code contributed under MIT/X11 license.
2484 2009-11-02 Jonathan Chambers <joncham@gmail.com>
2486         * exceptions-x86.c (win32_handle_stack_overflow): Fix parameters
2487         to mono_arch_find_jit_info_ext.
2489         Code contributed under MIT/X11 license.
2491 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2493         * debugger-agent.c: Include netinet/in.h to fix the bsd build.
2495         * debugger-agent.c: Add support for filtering events by assemblies.
2497         * debugger-agent.c (mono_debugger_agent_thread_interrupt): Return false if
2498         the agent is not enabled.
2500 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2502         * exceptions-x86.c: hopefully last change to fix the windows build.
2503         This one courtesy of Jonathan Chambers.
2505 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2507         * debugger-agent.c: remove unused function.
2509 2009-11-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2511         * debugger-agent.c: add #ifdefs for a few header files.
2512         * mini-x86.h: disable the soft debugger in windows.
2513         Step 1 of 2 to make this compile on windows with gcc.
2515 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2517         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Comment this out for now
2518         as it breaks the build.
2520 2009-07-01  Zoltan Varga  <vargaz@gmail.com>
2522         Merge the soft debugger branch.
2524         * debugger-agent.h debugger-agent.c: New files containing the soft
2525         mode debugger module.
2527         * method-to-ir.c (mono_method_to_ir): Generate OP_SEQ_POINT opcodes
2528         at the appropriate locations.
2530         * mini-<ARCH>.c (mono_arch_output_basic_block): Handle OP_SEQ_POINT
2531         opcode.
2533         * mini-<ARCH>.c: Add new arch-specific functions to set/clear breakpoints,
2534         enable/disable single stepping.
2536         * exceptions-<ARCH>.c (mono_arch_find_jit_info_ext): New stack unwinding api
2537         which returns all information in a StackFrameInfo structure, and can handle the
2538         LMF frames added by the debugger.
2540         * mini-<ARCH>.h (MonoLMFExt): New structure containing additional information
2541         about an LMF frame.
2543         * mini-exceptions.c (mono_jit_walk_stack_from_ctx_in_thread): New stack
2544         walker function which works on a specific thread and passes a StackFrameInfo
2545         structure to its callback.
2547         * mini.c (mini_init): Initialize the debugger agent.
2549         * aot-compiler.c aot-runtime.c: Add soft-debug support.
2551         * mini-ops.h: Add OP_SEQ_POINT opcode.
2553         * driver.c (mono_main): Add new '--debugger-agent' option for passing
2554         arguments to the debugger agent.
2556 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2558         * mini.c (mini_method_compile): Disable llvm for methods with an lmf here to
2559         speed things up.
2561         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOCALLOC.
2563         * tramp-x86.c (mono_arch_get_llvm_imt_trampoline): Implement this for x86.
2565         * mini.c (mini_init): Avoid using the IMT trampoline in the LLVM case.
2567         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add a static rgctx trampoline
2568         if needed.
2569         (mono_create_llvm_imt_trampoline): New function to create a trampoline which
2570         sets the IMT argument and makes a virtual call.
2572         * mini-llvm.c: Enable interface calls using the llvm imt trampoline.
2574 2009-11-01  Zoltan Varga  <vargaz@gmail.com>
2576         * Makefile.am (llvm_sources): Enable the llvm option since it no longer breaks
2577         the windows build.
2579 2009-10-30  Zoltan Varga  <vargaz@gmail.com>
2581         * mini.c (mini_cleanup): Call profiler shutdown before shutting down the
2582         runtime. Fixes #551228.
2584 2009-10-29  Zoltan Varga  <vargaz@gmail.com>
2586         * mini-x86.c (mono_arch_output_basic_block): Fix % 1. Fixes #550970.
2588         * basic.cs: Add a test.
2590         * method-to-ir.c (mono_method_to_ir): Use EMIT_NEW_LOAD_MEMBASE_TYPE to
2591         load vtypes instead if OP_LOADV_MEMBASE in the implementation of
2592         CONSTRAINED. Fixes #550964.
2594         * generics.cs: Add a test.
2596 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2598         * mini-posix.c (add_signal_handler): Use
2599         mono_gc_get_suspend_signal() instead of GC_get_suspend_signal().
2601 2009-10-28 Jerry Maine <crashfourit@gmail.com>
2603         Contributed under the terms of the MIT/X11 license by
2604         Jerry Maine <crashfourit@gail.com>.
2606         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
2607         sse4a for simd intrinsics.
2609         * mini-amd64.c (mono_arch_cpu_enumerate_simd_versions): Added code to detect
2610         sse4a for simd intrinsics.
2612 2009-10-27  Zoltan Varga  <vargaz@gmail.com>
2614         * ir-emit.h method-to-ir.c: Change a few _IMM macros to assign to inst_imm
2615         instead of inst_p1 which is not the same on ILP32 platforms.
2617 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2619         * mini-ppc.c (mono_arch_emit_prolog): Load the current got address,
2620         not the mscorlib one before calling mono_get_lmf_addr.
2622         * tramp-ppc.c (mono_arch_create_trampoline_code_full): Fix the storing
2623         of the ip to the LMF.
2625         * method-to-ir.c (mono_method_to_ir): Fix the handling of the
2626         immediate in the op->op_imm optimization.
2628         * mini-ppc.c: Add a 'vtregs' field to ArgInfo to make the code easier to
2629         understand. VTypes now work, but are not abi compliant, as they are
2630         split into 4 byte parts instead of 8.
2631         (emit_memcpy): Fix the unrolled case to work on the PS3.
2633         * mini-ppc.c (get_delegate_invoke_impl): Fix this for the PS3.
2635         * aot-compiler.c (mono_compile_assembly): Make the autoreg option
2636         the default when static linking.
2638         * mini-ppc.c (mono_arch_emit_prolog): Fix handling of I8 arguments.
2640         * aot-compiler.c: Add an autoreg option to automatically register
2641         statically linked aot modules using ELF .ctors.
2643         * genmdesc.pl: Add __ppc64__ to allowed defines.
2645 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2647         * mini-posix.c (add_signal_handler): Delay the GC suspend signal while
2648         executing a SIGSEGV handler on an altstack, since libgc can't handle that.
2650 2009-10-24  Mark Probst  <mark.probst@gmail.com>
2652         * exceptions-x86.c (mono_arch_find_jit_info): Fix build.
2654 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2656         * mini-exceptions.c (mini_jit_info_table_find): Add an 'out_domain' argument
2657         which will contain the domain where the method was found.
2659         * exceptions-<ARCH>.c mini-exceptions.c: Update callers of
2660         mini_jit_info_table_find ().
2662         * aot-compiler.c (xdebug_end_emit): Remove so stray debug code.
2664         * branch-opts.c (mono_if_conversion): Avoid running deadce if it is disabled.
2666 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2668         * mini-x86.c (mono_arch_emit_prolog): Disable aot for methods with save_lmf
2669         set, its not supported yet.
2671 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2673         * aot-runtime.c (mono_aot_get_method): Avoid asserting if a array generic
2674         iface wrapper is not found.
2675         (mono_aot_get_method): Ditto for GetGenericValueImpl.
2677 2009-10-21  Zoltan Varga  <vargaz@gmail.com>
2679         * aot-runtime.c (mono_aot_get_method): Fix support for the IList<T> wrappers,
2680         which have a different name.
2682         * aot-runtime.c (mono_aot_get_method): Special case the array generic iface
2683         wrappers and Array.GetGenericValueImpl ().
2685         * aot-compiler.c: Avoid emitting some wrappers which are not needed anymore
2686         because of the change above.
2688         * generics.cs: Add a test for full aot + generic array ifaces.
2690 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2692         * aot-compiler.c (emit_plt): Remove duplicate 'debug_sym' variable 
2693         that hides the previous one.
2695 2009-10-18  Zoltan Varga  <vargaz@gmail.com>
2697         * aot-compiler.c (can_marshal_struct): Allow some System.dll structs to be
2698         marshalled. Fixes #541623.
2700 2009-10-16  Zoltan Varga  <vargaz@gmail.com>
2702         * aot-compiler.c (emit_extra_methods): Remove some asserts which are not needed.
2704 2009-10-15  Zoltan Varga  <vargaz@gmail.com>
2706         * mini.c (mono_op_imm_to_op): Handle OP_AND/OR/XOR_IMM.
2708 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2710         * mini-posix.c (sigprof_signal_handler):
2711         Implemented support for building stat call chans in different ways.
2713 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2715         * mini-exceptions.c (mono_find_jit_info):
2716         Also check that a jit info has been found (fixes a profiler crash).
2718 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2720         * mini.c (mono_codegen):
2721         Call mono_profiler_code_buffer_new with correct code address.
2723 2009-10-14  Zoltan Varga  <vargaz@gmail.com>
2725         * driver.c (mono_main): Change the date in the copyright.
2727 2009-10-14  Mark Probst  <mark.probst@gmail.com>
2729         * method-to-ir.c (mono_method_to_ir): Don't use a managed array
2730         allocator in shared generic code for open classes, because we
2731         can't get those classes' vtables.  We need to make managed
2732         allocators not depend on the vtable at compile-time to solve this.
2734 2009-10-13  Martin Baulig  <martin@ximian.com>
2736         * debug-mini.c (mono_debugger_trampoline_compiled): Add
2737         `const guint8 *trampoline' argument; send both the old and the new
2738         notification.
2740 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
2742         * aot-compiler.c (add_wrappers): Add a runtime invoke wrapper which is used by
2743         mono_runtime_capture_context () without calling mono_runtime_invoke ().
2744         (can_marshal_struct): Skip structures with auto layout.
2746         * tramp-arm.c (GEN_TRAMP_SIZE): Increase this by 4.
2748 2009-10-02  Zoltan Varga  <vargaz@gmail.com>
2750         * mini-sparc.c (mono_arch_emit_setret): Emit long return values using OP_LMOVE.
2751         (mono_arch_create_vars): Instead of allocating a stack slot by hand, allocate
2752         a variable to hold the stack slot used by the int<->float conversion opcodes.
2754         * mini-sparc.c (mono_arch_build_imt_thunk): Implement support for fail_tramp.
2756 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2758         * aot-compiler.c (add_generic_class): Only add GetGenericValueImpl wrappers
2759         when using full-aot.
2761 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
2763         * aot-compiler.c (add_generic_class): Add an instance of GenericComparer<T> for
2764         each instance of Comparer<T>.
2766         * generics.cs: Add a new test.
2768 2009-10-09  Zoltan Varga  <vargaz@gmail.com>
2770         * driver.c (parse_debug_options): Add a 'gdb' option.
2772         * mini.c (mini_parse_debug_options): Add a 'gdb' option.
2774         * image-writer.c: Add support for emitting the image into a memory buffer.
2776         * dwarfwriter.c: Add support for sharing one IL file between multiple images.
2778         * aot-compiler.c: Add support for registering debug info with GDB using the
2779         new JIT debugging interface in GDB 7.0. It can be turned on by setting
2780         MONO_XDEBUG to 'gdb'.
2782 2009-10-10  Zoltan Varga  <vargaz@gmail.com>
2784         * aot-compiler.c (mono_save_trampoline_xdebug_info): Implement this for the
2785         gdb mode.
2787 2009-10-11  Zoltan Varga  <vargaz@gmail.com>
2789         * aot-compiler.c (mono_save_xdebug_info): Emit a symbol for the method which
2790         can be used to set breakpoints in gdb.
2792         * image-writer.c (bin_writer_emit_writeout): Add support for setting the text
2793         segment to an absolute address.
2795 2009-10-13  Mark Probst  <mark.probst@gmail.com>
2797         * method-to-ir.c: Use the managed array allocator method if
2798         available.
2800 2009-10-13  Bill Holmes  <billholmes54@gmail.com>
2802         * aot-compiler.c : Fix the MSVC builds
2804         Code is contributed under MIT/X11 license.
2806 2009-10-13  Zoltan Varga  <vargaz@gmail.com>
2808         * aot-compiler.c (mono_save_xdebug_info): Group methods into groups of 10 to
2809         avoid registering 1 symbol file per method with gdb.
2811 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
2813         * mini-sparc.c: Fix the handling of enums with base type long.
2815         * mini-sparc.c (mono_arch_output_basic_block): Fix IREM_UN_IMM.
2817         * mini-sparc.c (mono_arch_allocate_vars): Use mono_class_from_mono_type ()
2818         instead of using type->data.klass as the later doesn't work with generics.
2820 2009-09-25  Mark Probst  <mark.probst@gmail.com>
2822         * method-to-ir.c, mini.h, mini-alpha.c, mini-amd64.c, mini-arm.c,
2823         mini-hppa.c, mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c,
2824         mini-s390x.c, mini-sparc.c, mini-x86.c: Thread.get_CurrentThread
2825         works differently now and we don't handle it in the JIT anymore.
2827         * mini.c, mini-exceptions.c, mini-posix.c, debug-debugger.c,
2828         debug-mini.c, tramp-amd64.c, tramp-x86.c: Changes resulting from
2829         the Thread class split.
2831 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
2833         * driver.c: Don't run tests with the obsolete treeprop optimization.
2835         * mini-sparc.c (mono_arch_create_vars): Make the component vars of a long ret
2836         variable volatile. Fixes #541577.
2838         * basic-calls.cs: Add a new test.
2840         * basic-long.cs: Remove tests which are now in basic-calls.cs.
2842 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
2844         * dwarfwriter.c (emit_debug_info_end): Disable this as it doesn't seem to
2845         work/required with recent iphone sdk versions.
2847         * aot-compiler.c (add_wrappers): Generate PtrToStructure wrappers for more
2848         structures.
2850         * decompose.c (mono_decompose_vtype_opts): Avoid reading uninitialized memory
2851         in the VCALL decomposition code.
2853 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
2855         * mini-ia64.c (mono_arch_output_basic_block): Fix ISHR/ISHR_IMM.
2857         * basic.cs: Add a test.
2859         * mini-ia64.c (mono_arch_build_imt_thunk): Implement support the virtual
2860         generic invokes.
2862         * mini-exceptions.c (mini_jit_info_table_find): New helper function which
2863         searches all the domains of the current thread.
2865         * exceptions-<ARCH>.c: Use it. Fixes #539394.
2867 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
2869         * exceptions-arm.c (mono_arm_throw_exception): Set ctx->ebp to fp instead of sp
2870         so catching exceptions thrown in the same method works. Fixes exception17.exe.
2872         * tramp-arm.c (mono_arch_create_trampoline_code_full): Store NULL into lmf->method
2873         for non-jit trampolines.
2875         * mini.c (mono_jit_runtime_invoke): Allow string ctors with dyn runtime invoke.
2877         * aot-compiler.c (add_wrappers): Ditto.
2879         * mini-arm.c: Implement support for passing vtypes and floats, and increase
2880         the size of the param area used by dyn_call to 6 which covers the majority of
2881         methods.
2883         * mini.c aot-compiler.c: Allow dyn_call for string methods except ctors.
2885         * mini-arm.c: Implement support for passing/receiving
2886         longs and receiving floats in the dyn_call code.
2888         * mini-amd64.c: Implement support for receiving vtypes in registers in
2889         the dyn_call code.
2891         * mini.c mini-amd64.c: Implement partial support for passing vtypes in
2892         the dyn_call code.
2894 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
2896         * mini-arm.c (get_call_info): Return more precise information in
2897         ArgInfo->regtype.
2898         (dyn_call_supported): Use the information in CallInfo.
2900         * mini-arm.c: Enable support for returning vtypes in the dyn_call code.
2902         * mini.c mini-amd64.c: Enable support for returning vtypes in the dyn_call
2903         code.
2905         * mini-arm.c: Update after the dyn_call api changes.
2907         * mini.c (mini_create_jit_domain_info): Register a destructor function
2908         for the runtime_invoke_hash.
2910         * mini-amd64.c (mono_arch_get_dyn_call_args): Rename this to
2911         'mono_arch_dyn_call_start'. Pass the pointer to the return value buffer to
2912         this function.
2913         (mono_arch_get_dyn_call_ret): Rename this to 'mono_arch_dyn_call_finish'.
2914         (dyn_call_supported): Simplify this by using get_call_info ().
2915         (mono_arch_dyn_call_free): New destructor function.
2917         * generics.cs: Remove a printf.
2919         * method-to-ir.c (mono_method_to_ir): Allocate some param area for DYN_CALL.
2921         * mini-arm.c: Add support for enum return values and passing a few arguments
2922         on the stack.
2923         
2924         * mini.c (mono_jit_runtime_invoke): Add support for enum return values to
2925         dyn invoke.
2927         * mini-amd64.c (mono_arch_get_dyn_call_ret): Ditto.
2929         * aot-compiler.c (add_wrappers): Add a few restrictions for the use of
2930         the dynamic invoke wrappers.
2932         * mini-arm.c: Implement OP_DYN_CALL for arm.
2934         * aot-compiler.c (add_wrappers): Avoid aot-ing runtime invoke wrappers
2935         supported by the dynamic runtime invoke wrapper.
2937         * aot-compiler.c aot-runtime.c: Add support for encoding the dynamic
2938         runtime invoke wrapper.
2940         * mini.c (mono_jit_runtime_invoke): Use the dynamic runtime invoke wrappers
2941         if possible when running with full-aot.
2943         * mini-ops.h: Add OP_DYN_CALL opcode.
2945         * mini-amd64.c method-to-ir.c: Add infrastructure for making method calls
2946         with dynamic arguments lists similar to libffi.
2948 2009-09-19  Zoltan Varga  <vargaz@gmail.com>
2950         * method-to-ir.c: Fix the previous change on 64 bit platforms.
2951         
2952         * method-to-ir.c: Applied patch from Rodrigo Kumpera. Allow an i8 argument
2953         to NEWARR.
2955         * iltests.il.in: Add a new test.
2956         
2957 2009-09-18  Zoltan Varga  <vargaz@gmail.com>
2959         * aot-compiler.c (add_generic_instances): Add more instances of
2960         GenericEqualityComparer.
2962 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
2964         * mini.c: Add asserts for mono_class_vtable calls that are not meant to fail.
2966 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
2968         * method-to-ir.c: Handle failures from mono_class_vtable. Added some
2969         comments on some functions that now can fail.
2971 2009-09-17  Andrew Jorgensen  <ajorgensen@novell.com>
2973         * Makefile.am: Add Info.plist to EXTRA_DIST
2975 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
2977         * method-to-ir.c (mono_method_to_ir): Allow AOT for CEE_LDTOKEN in
2978         static synchronized wrappers. Fixes #539500.
2980 2009-09-14  Rodrigo Kumpera  <rkumpera@novell.com>
2982         * jit-icalls.c (mono_class_static_field_address): handle vtable failure
2983         properly.
2985 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
2987         * mini-exceptions.c (mono_handle_exception_internal): Store the computed
2988         lmf before calling filter clauses as well. Fixes #539550.
2990         * exceptions.cs: Add a test.
2991         
2992 2009-09-14  Zoltan Varga  <vargaz@gmail.com>
2994         * aot-compiler.c (add_generic_class): Add instances of
2995         Array.GetGenericValueImpl as well.
2997         * Makefile.am (fullaotcheck): Copy and aot more assemblies so linq
2998         can be tested too.
3000         * generics.cs: Add a fullaot linq test.
3002 2009-09-10  Zoltan Varga  <vargaz@gmail.com>
3004         * aot-compiler.c (arch_emit_static_rgctx_trampoline): Don't clobber argument
3005         reg r1 on arm.
3007 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3009         * mini-trampolines.c (mono_delegate_trampoline) : Call
3010           mono_cominterop_get_invoke if the delegate target object
3011           is a COM object.
3013         Code is contributed under MIT/X11 license.
3015 2009-09-09  Sebastien Pouliot  <sebastien@ximian.com>
3017         * method-to-ir.c: For CoreCLR throw a SecurityException if an 
3018         internal call is defined outside platform code. Reduce code 
3019         duplication with existing [Method|Field]AccessException
3021 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3023         * mini-x86.c (mono_arch_emit_call): Don't reduce stack usage by 4
3024         if the return value is a small struct passed on regs.
3026 2009-09-09  Zoltan Varga  <vargaz@gmail.com>
3028         * cpu-arm.md mini-arm.c: Remove unused opcodes.
3030         * mini-codegen.c: Enable the cpu description validation for arm.
3032 2009-09-08  Zoltan Varga  <vargaz@gmail.com>
3034         * basic-calls.cs: Move the test_0_float_load_and_store_with_big_offset ()
3035         test which depends on structs to objects.cs.
3036         
3037         * basic-calls.cs: Remove calls to Console.WriteLine and throws, since those
3038         require object model related stuff working.
3040         * cpu-x86.md mini-x86.c: Remove more unused opcodes.
3042         * mini-ops.h: Fix OP_BIGMUL instruction descriptions.
3044         * mini-codegen.c (mono_local_regalloc): Validate the cpu description 
3045         against the instruction metadata in mini-ops.h. amd64 only for now.
3047         * mini-ops.h: Fix some instruction descriptions.
3049         * mini-ops.h mini-x86.c mini-amd64.c cpu-<ARCH>.md: Remove some
3050         unused instructions.
3052 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
3054         * exceptions.cs: Add a new test.
3056 2009-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
3058         * mini-x86.c (needs_stack_frame): OSX requires full frames to keep proper alignment.
3060 2009-09-06  Zoltan Varga  <vargaz@gmail.com>
3062         * mini-llvm.c (mono_llvm_emit_method): Add a few more missing casts,
3063         skip empty phi opcodes.
3064         
3065         * mini-llvm.c (mono_llvm_emit_method): Handle unsigned volatile variables
3066         correctly by zero extending after loads. Skip methods containing calls
3067         to the monitor enter/exit trampolines.
3069         * tramp-x86.c (mono_arch_create_trampoline_code): Align the stack
3070         when calling mono_thread_force_interruption_checkpoint ().
3072         * mini.c (mini_method_compile): Disable llvm when AOT compiling.
3074         * tramp-amd64.c (mono_arch_patch_callsite): Add support for 32 bit ->
3075         64 bit thunks.
3076         (mono_arch_nullify_class_init_trampoline): Read 'buf' instead of 'code'.
3078         * mini-llvm.c (mono_llvm_emit_method): Add a few missing conversions so a 
3079         bootstrap could run.
3081 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3083         * mini.c (mini_init): Set callbacks.get_runtime_build_info ().
3085 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3087         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass the start
3088         of the method to
3089         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
3090         LLVM might be very short.
3092         * mini-x86.c (mono_arch_output_basic_block): Maintain stack alignment
3093         in OP_THROW/RETHROW.
3095         * exceptions-x86.c: Rewrite the throw trampolines so they maintain stack
3096         alignment on osx.
3098 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3100         * mini-amd64.c (mono_arch_get_vcall_slot): Pass the start of the method to
3101         mono_breakpoint_clean_code () when using LLVM as the prologues generated by
3102         LLVM might be very short.
3104 2009-09-01  Zoltan Varga  <vargaz@gmail.com>
3106         * exceptions-x86.c (throw_exception): Fix the previous change by substracting
3107         the alignment for the value of sp.
3109 2009-09-01  Geoff Norton  <gnorton@novell.com>
3111         * mini.c (mono_get_lmf_addr): Fix jit_thread_attach for native to 
3112         managed wrappers in full aot.
3114 2009-08-31  Zoltan Varga  <vargaz@gmail.com>
3116         * exceptions-x86.c (get_throw_exception): Align the stack on osx.
3118 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3120         * mini-llvm-cpp.cpp mini-llvm.c: Update to latest llvm api.
3122 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
3124         * aot-compiler.c (emit_exception_debug_info): Emit ei->flags too.
3126         * aot-runtime.c (decode_exception_debug_info): Decode ei->flags from the
3127         saved info.
3129         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
3131         * aot-runtime.c aot-compiler.c: Emit exception causes fully so we don't
3132         depend on the info MonoMethodHeader which could be missing in IL stripped
3133         assemblies.
3135 2009-08-25  Zoltan Varga  <vargaz@gmail.com>
3137         * mini-arm.c (add_general): Fix the passing of 64 bit values on darwin, where
3138         they are only 4 byte aligned.
3140 2009-08-21  Zoltan Varga  <vargaz@gmail.com>
3142         * mini-arm.c (mono_arch_allocate_vars): Use FP as the frame pointer as
3143         was done previously, since using SP causes too many problems.
3145         * exceptions-arm.c: Fix the handling of sp/fp so unwinding through
3146         frames without a frame pointer works.
3148         * mini-arm.c (mono_arch_get_global_int_regs): Avoid using V5 as a
3149         global register in methods with calls, since the calls can go through
3150         a static rgctx trampoline which doesn't save it.
3152 2009-08-19  Zoltan Varga  <vargaz@gmail.com>
3154         * mini-arm.c (mono_arch_context_get_int_reg): Handle SP as well.
3156 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3158         * aot-compiler.c (add_generic_instances): Fix the net 1.1 build.
3160 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3162         * method-to-ir.c: Fix warnings for uninitialized variables.
3164 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3166         * mini-exceptions.c:
3167         * aot-compiler.c: Fix printf warnings.
3169 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3171         * aot-compiler.c (add_generic_instances): Add string[] wrapper methods.
3172         Add GetGenericValueImpl<string>.
3173         
3174         * aot-compiler.c (add_generic_instances): Add instances of
3175         GenericEqualityComparer<T> for primitive types. Only emit the array
3176         wrappers into the mscorlib image.
3178 2009-08-15  Zoltan Varga  <vargaz@gmail.com>
3180         * aot-runtime.c (load_method): Rename 'aot_module' -> 'amodule'. Allocate
3181         the methods_loaded array using amodule->info->nmethods.
3183         * mini.h (MonoAotFileInfo): Add an 'nmethods' field.
3184         (MONO_AOT_FILE_VERSION): Bump this.
3186         * aot-compiler.c: Emit more generic instances allowing some parts of linq
3187         to work.
3189         * aot-runtime.c (mono_aot_get_unwind_info): Handle the case when the
3190         MonoJitInfo doesn't belong to its methods aot image.
3192 2009-08-14  Zoltan Varga  <vargaz@gmail.com>
3194         * mini-arm.c (mono_arch_allocate_vars): Use SP as the default frame reg.
3196         * mini-arm.c: Fix warnings.
3197         
3198         * mini-arm.c (mono_arm_emit_load_imm): Only emit a movt if needed.
3200         * mini-arm.c (mono_arm_emit_load_imm): Use movt/movw if the cpu
3201         supports it.
3203 2009-08-12  Zoltan Varga  <vargaz@gmail.com>
3205         * aot-compiler.c (arch_emit_imt_thunk): Rework the arm code to
3206         avoid clobbering IP.
3208         * mini-trampolines.c (mono_magic_trampoline): Allocate a local to
3209         hold the trampoline argument, so its initial value is available during
3210         debugging.
3212 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3214         * exceptions-arm.c:
3215         * exceptions-hppa.c:
3216         * mini.c:
3217         * exceptions-s390x.c:
3218         * exceptions-mips.c:
3219         * exceptions-ppc.c:
3220         * exceptions-sparc.c:
3221         * exceptions-alpha.c:
3222         * aot-runtime.c:
3223         * mini-trampolines.c:
3224         * exceptions-x86.c:
3225         * exceptions-s390.c: add and use #define's instead of sizeof()
3226         for MonoJitInfo and MonoJitInfoTable.
3228 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3230         * tramp-arm.c:
3231         * tramp-amd64.c:
3232         * tramp-ppc.c:
3233         * tramp-x86.c: use a #define instead of sizeof() for a few
3234         structures that use a zero-length array.
3236 2009-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
3238         * method-to-ir.c (mono_method_to_ir/CEE_CONSTRAINED_): Handle the
3239         case when the method is dynamic. Fixes #529238.
3241 2009-08-06  Zoltan Varga  <vargaz@gmail.com>
3243         * mini.c (mono_jit_compile_method_inner): Throw an exception instead
3244         of asserting when a method is JIT compiled in full-aot mode.
3246 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
3247         
3248         Contributed under the terms of the MIT/X11 license by
3249         Jerry Maine <crashfourit@gail.com>.
3250         
3251         * fixed wrong dates in changelog.
3253 2009-08-03  Jerry Maine  <crashfourit@gmail.com>
3254         
3255         Contributed under the terms of the MIT/X11 license by
3256         Jerry Maine <crashfourit@gail.com>.
3258         * basic-simd.cs: added test for packed double square root.
3259         * cpu-amd64.md: added opcode info for packed double square root.
3260         * cpu-x86.md: added opcode info for packed double square root.
3261         * mini-ops.h: added IR opcode for packed double square root.
3262         * mini-x86.c: added IR to native translation code for packed double square root.
3263         * mini-amd64.c: removed todo for packed double square root.
3264         * simd-intrinsics.c: added method to IR opcode converstion for
3265         packed double square root.
3267 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3269         Contributed under the terms of the MIT/X11 license by
3270         Jerry Maine <crashfourit@gail.com>.
3272         * mini-amd64.c: Added a change to help tell the difference as 
3273         to what perpose the xmm register is being used--mainly to help
3274         with debuging.
3275         * mini-amd64.h: Changed callee regs to use 15 out of 16 
3276         (one used for special cases) xmm registers for both fp
3277         and simd ops. Added define to turn on new feature in the regalloc
3278         that allows fp and simd ops to share the xmm regs happily.
3279         * codegen.c: Added code to detect for which perpose an xmm reg is
3280         being used (fp or simd) and to translate back and forth to the
3281         correct logical reg bank (fp or simd) for 'spill load's.
3283 2009-08-03 Jerry Maine <crashfourit@gmail.com>
3285         Contributed under the terms of the MIT/X11 license by
3286         Jerry Maine <crashfourit@gail.com>.
3288         * basic-simd.cs: Added tests for stressing the regalloc when running with
3289         16 simd regs and when simd and fp ops share the same reg bank.
3291 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3293         * method-to-ir.c (mini_emit_stobj): If we call mono_value_copy()
3294         in shared generic code, we might have to look up the class in the
3295         RGCTX.  If we use the class directly, compute its GC descriptor.
3297 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3299         * mini.c (mono_jit_runtime_invoke): Fix a warning.
3301 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3303         * mini.c (mono_jit_runtime_invoke): Initialize the class and
3304         check for errors. Fixed the case when the class with the Main
3305         method is broken.
3307 2009-07-31 Jerry Maine <crashfourit@gmail.com>
3309         Contributed under the terms of the MIT/X11 license by
3310         Jerry Maine <crashfourit@gail.com>.
3312         * cpu-amd64.md: Fixed simple bug in machine discrition file.
3314 2009-07-31  Zoltan Varga  <vargaz@gmail.com>
3316         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_IREM_UN_IMM.
3318 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
3320         * method-to-ir.c: Fix naming of stelem and ldelem.
3322 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
3324         * driver.c (main_thread_handler): Check that the assembly loaded
3325         matches the filename when doing AOT.
3327 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3329         * mini.c: get_ip_from_sigctx installer has been removed, so don't
3330         call it anymore.
3332         * mini-x86.h, mini-amd64.h, mini-ppc.h: UCONTEXT macros moved (to
3333         utils/mono-sigcontext.h).
3335         * exceptions-amd64.c: Use the UCONTEXT_GREGS macro instead of an
3336         #ifdef.
3338 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
3340         * mini.c (mono_codegen):
3341         Call profiler hook to keep track of method code buffers.
3343 2009-07-27  Mark Probst  <mark.probst@gmail.com>
3345         * method-to-ir.c: Invoke write barriers for the
3346         Interlocked.(Compare)Exchange JIT intrinsics.
3348 2009-07-26  Raja R Harinath  <harinath@hurrynot.org>
3350         * Makefile.am (version.h): Fix issues when built out of tree.
3351         Remove some redundant 'grep's piped through 'sed's.
3353 Fri Jul 24 17:28:37 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
3355         This patch is contributed under the terms of the MIT/X11 license
3357         * mini-ppc.c (mono_arch_output_basic_block):
3358         (OP_STOREI1_MEMBASE_REG): Handle 32-bit offsets combining addis
3359         for bits 32-47 with signed load/store diplacements for bits
3360         48-63.  Use prefered base/offset order for indexed form.
3361         (OP_STOREI2_MEMBASE_REG, OP_STORE_MEMBASE_REG): Same.
3362         (OP_LOAD_MEMBASE, OP_LOADI4_MEMBASE, OP_LOADU4_MEMBASE,
3363         OP_LOADI1_MEMBASE, OP_LOADU1_MEMBASE, OP_LOADU2_MEMBASE,
3364         OP_LOADI2_MEMBASE): Same.
3365         (OP_STORER8_MEMBASE_REG, OP_LOADR8_MEMBASE,
3366         OP_STORER4_MEMBASE_REG, OP_LOADR4_MEMBASE): Same.
3367         (OP_STOREI1_MEMINDEX): Use prefered base/offset order for
3368         indexed form.
3369         (OP_STOREI2_MEMINDEX, OP_STORE_MEMINDEX): Same.
3370         (OP_LOAD_MEMINDEX, OP_LOADI4_MEMINDEX, OP_LOADU4_MEMINDEX,
3371         OP_LOADU2_MEMINDEX, OP_LOADI2_MEMINDEX, OP_LOADU1_MEMINDEX,
3372         OP_LOADI1_MEMINDEX): Same
3373         (OP_LOADR4_MEMINDEX, OP_LOADR8_MEMINDEX, OP_STORER4_MEMINDEX,
3374         OP_STORER8_MEMINDEX): Same
3375         (OP_JMP): Use addis/addi sequence for int cfg->stack_usage
3376         computations.
3377         (mono_arch_emit_prolog): Handle 32-bit offsets combining addis
3378         for bits 32-47 with signed load/store diplacements for bits
3379         48-63.  Use prefered base/offset order for indexed form.
3381 Fri Jul 24 16:57:12 CEST 2009 Steven Munroe  <munroesj@us.ibm.com>
3383 This patch is contributed under the terms of the MIT/X11 license
3385         * mini-ppc.c: Define PPC_MOVE_FPR_GPR and PPC_ISA_64.
3386         (mono_arch_get_vcall_slot): Fx pointer to int cast warning.
3387         (mono_arch_decompose_opts): Make OP_ICONV_TO_R4 and
3388         OP_ICONV_TO_R8 decompose conditional on !PPC_ISA_64.
3389         (mono_arch_output_basic_block) [OP_JMP]: Use ppc_load32 for
3390         cfg->stack_usage to avoid size warnings.
3391         (mono_arch_output_basic_block) [__mono_ppc64__]: Replace
3392         store/load sequence with mffgpr if PPC_MOVE_FPR_GPR is true.
3393         (mono_arch_output_basic_block) [!__mono_ppc64__]: For
3394         OP_ICONV_TO_R4 or OP_ICONV_TO_R8 and PPC_ISA_64 use fcfid
3395         to convert.
3396         (mono_arch_emit_prolog): Move mono_emit_unwind_op_def_cfa 
3397         after code varible is initialized.
3398         Add g_assert ppc_is_imm16 for ainfo->offset. Handle
3399         ainfo->size == 8 when ainfo->offset !ppc_is_imm16.
3400         (mono_arch_emit_epilog): 
3401         Move Use ppc_load32 for cfg->stack_usage to avoid size
3402         warnings.
3404 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3406         * method-to-ir.c: The write barrier doesn't do the store anymore,
3407         so we have always to emit it.  Also, emit the wbarrier after the
3408         store.
3410 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
3412         * mini-arm.c (mono_arch_get_delegate_invoke_impls): Add a trampoline
3413         for argument count 3 too.
3415 2009-07-23  Zoltan Varga  <vargaz@gmail.com>
3417         * mini.c (mono_jit_compile_method_with_opt): Add an 'ex' argument to let
3418         the caller handle the exceptions.
3419         (mono_jit_runtime_invoke): Handle exceptions thrown while compiling the
3420         method. Fixes #524498.
3422 2009-07-22  Geoff Norton  <gnorton@novell.com>
3424         * mini-exceptions.c: Fix build on ia64.
3426 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3428         * mini-exceptions.c (ves_icall_get_frame_info): Use write
3429         barriers.
3431 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
3433         * mini-arm.c (mono_arch_emit_prolog): Fix thread attaching in aot
3434         code.
3436 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
3438         * basic-simd.cs (Main): Pass args to the test driver.
3440 2009-07-20  Geoff Norton  <gnorton@novell.com>
3442         * mini-x86.h: Fix the x86 version guards to use Apple's
3443         properly defined macros.
3445 2009-07-20  Geoff Norton  <gnorton@novell.com>
3447         * mini-x86.c: Fix --trace on darwin-x86 and other systems which require
3448         aligned access.
3450 2009-07-20  Zoltan Varga  <vargaz@gmail.com>
3452         * mini.c (mono_jit_runtime_invoke): Speed this up by adding a hash to
3453         MonoJitDomainInfo which maps MonoMethod's to a structure containing all
3454         the information which is needed for invokes, so only one locking+hash table
3455         lookup is needed.
3457         * aot-compiler.c: Add a 'tool-prefix' option to be used when cross-compiling.
3458         
3459         * aot-compiler.c (add_generic_instances): Emit instances of 
3460         GenericComparer<T> for primitive types.
3462 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
3464         * mini-posix.c: Fix linux build.
3466 2009-07-19  Geoff Norton  <gnorton@novell.com>
3468         * mini.h: Add prototypes for mono_runtime_syscall_fork and
3469         mono_gdb_render_native_backtraces
3470         * mini-darwin.c: Apple's syscall(SYS_fork) is very weird on x86,
3471         so we implement the sane semantics to the runtime here
3472         (mono_gdb_render_native_backtraces).  Apple also uses an ancient gdb
3473         so we need to call it differently (mono_gdb_render_native_backtraces)
3474         * mini-posix.c: Move the old semantics from mini.c to the prototypes
3475         here for default implementations.
3476         * mini.c: Refactor mono_handle_native_sigsegv so that we can properly
3477         support Apple's weird syscall (SYS_fork) implementation and not busy
3478         loop in abort() on native crashes on OSX anymore.
3480 2009-07-18  Zoltan Varga  <vargaz@gmail.com>
3482         * aot-runtime.c (load_method): Change the handling of the
3483         MONO_LASTAOT env variable so MONO_LASTAOT=0 means that no aot methods
3484         are used.
3486         * mini.c (mono_patch_info_equal): Really fix the handling of RGCTX_FETCH.
3488 2009-07-17  Zoltan Varga  <vargaz@gmail.com>
3490         * mini.c (mono_patch_info_equal): Revert the last change for now as it
3491         seems to break the aot tests.
3492         
3493         * mini.c (mono_patch_info_equal): Fix the handling of 
3494         MONO_PATCH_INFO_RGCTX_FETCH.
3496 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
3498         * unwind.c: Use TARGET_AMD64 instead of __x86_64__.
3500         * mini.c (mono_patch_info_hash): Fix the handling of 
3501         MONO_PATCH_INFO_INTERNAL_METHOD.
3502         (mono_patch_info_equal): Ditto.
3504 2009-07-16  Zoltan Varga  <vargaz@gmail.com>
3506         * mini-llvm.c (mono_llvm_emit_method): Use module instead of ctx->module
3507         in a few places.
3508         
3509         * mini-llvm.c: Add some infrastructure for AOT support.
3511 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
3513         * mini-llvm-cpp.c: Update to the latest llvm api.
3514         
3515         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Set the EnablePrettyStackTrace
3516         option to false to prevent llvm from installing signal handlers which
3517         trip up the gc.
3518         
3519 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3521         * cpu-x86.md:
3522         * cpu-amd64.md: Revert previous change as those instructions
3523         take 2 separate arguments. Remember to read the arch docs more
3524         carefully next time.
3526 2009-07-15  Zoltan Varga  <vargaz@gmail.com>
3528         * mini-llvm-cpp.cpp (mono_llvm_build_alloca): Update to latest llvm api.
3530 Wed Jul 15 17:20:27 CEST 2009 Paolo Molaro <lupus@ximian.com>
3532         * mini-ppc.c: exploit multiple load/store units if available (rest of
3533         the change from Steven Munroe (<munroesj@us.ibm.com>) first patch at 
3534         http://bugzilla.novell.com/show_bug.cgi?id=487846).
3536 Wed Jul 15 16:24:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3538         * mini-ppc.c: integrate most of Steven Munroe (<munroesj@us.ibm.com>)
3539         first patch at http://bugzilla.novell.com/show_bug.cgi?id=487846.
3541 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3543         * cpu-x86.md: Fix missing clobbering from trancendental simd
3544         ops.
3546         * cpu-amd64.md: Same.
3548 2009-07-14 Jerry Maine <crashfourit@gmail.com>
3550         Contributed under the terms of the MIT/X11 license by
3551         Jerry Maine <crashfourit@gail.com>.
3553         * basic-simd.cs: Added tests for single and doulble indexers.
3555         * cpu-amd64.md: Added simd opcode information.
3557         * mini-amd64.c: Added IR to native simd generation code.
3558         Added simd register names and function that returns them.
3560         * mini-amd64.h: Added marcos to turn on simd code compilation in
3561         amd64. Added max simd register count marco. Added caller/callee
3562         register mask marcos. Added marcos to use simd register bank.
3564         * mini.h: Added helper marco for shufling dwords and simple
3565         floats.
3567 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3569         * mini-llvm-cpp.cpp: Update to latest llvm SVN api.
3571         * Makefile.am (mono_LDADD): Pass LLVM_LDFLAGS to the linked.
3573         * unwind.c (mono_unwind_get_ops_from_fde): Make this return
3574         the length of the native code as well.
3576         * basic-simd.cs: Add a test for #521662.
3578 Mon Jul 13 17:58:50 CEST 2009 Paolo Molaro <lupus@ximian.com>
3580         * mini-ppc.c: fixed bug introduced by Steven's TLS changes.
3582 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3584         * mini.c: Register function for getting the IP from a signal
3585         context with metadata.
3587 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3589         * method-to-ir.c (mono_method_to_ir): When calling a gshared method,
3590         call a generic class init trampoline if needed. Fixes #519336.
3592         * generics.cs: Add a test.
3593         
3594 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3596         * method-to-ir.c: When doing a call which might be remote from
3597         shared generic code to other shared code with open type arguments,
3598         get the remoting invoke wrapper from the RGCTX and do an indirect
3599         call to it.
3601 2009-07-03  Zoltan Varga  <vargaz@gmail.com>
3603         * mini-trampolines.c (get_unbox_trampoline): Add an rgctx trampoline
3604         after the unbox trampoline in the full-aot case.
3606 2009-07-02  jonas echterhoff <jonas@unity3d.com>
3607         
3608         * mini.c: Move initialization of jit_mutex before debugger initialization
3609         
3610         to avoid crashes.
3611         
3612         
3613         * Info.plist: added Info.plist and link flag to enable the mono executable
3614         to access other processes. Requires codesigning of the executable to work.
3615         
3616         * mdb-debug-info32-darwin.s: The same as mdb-debug-info32.s, changed to 
3617         
3618         compile on OS X.
3619         
3621 2009-06-30  Zoltan Varga  <vargaz@gmail.com>
3623         * driver.c (mini_regression): Handle loading errors. Fixes #508869.
3625 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3627         * mini-exceptions.c (get_generic_context_from_stack_frame): Fix the case
3628         when the generic instance is an instantiation of a subclass of the
3629         methods class. Fixes #517166.
3631 2009-06-26  Zoltan Varga  <vargaz@gmail.com>
3633         * mini-amd64.c (mono_arch_emit_prolog): Fix thread attaching in AOTed
3634         code.
3636         * mini.c (mono_jit_thread_attach): Allow domain to be NULL for calls from
3637         AOTed code.
3639         * CMakeLists.txt: Add minimal support for installation.
3641 2009-06-25  Zoltan Varga  <vargaz@gmail.com>
3643         * aot-compiler.c (emit_and_reloc_code): Factor out the code to
3644         determine whenever a method is directly callable to a separate function.
3646         * mini-<ARCH>.c tramp-<ARCH>.c: Remove needless casts and add new
3647         needed ones as a result of the previous change.
3649         * mini-<ARCH>.c tramp-<ARCH>.c: Use mgreg_t* as the
3650         type of register arrays.
3652         * mini-trampolines.c tramp-<ARCH>.c aot-runtime.c: Use mgreg_t* as the
3653         type of register arrays.
3655 2009-06-24  Jerry Maine  <crashfourit@gmail.com>
3656         
3657         Contributed under the terms of the MIT/X11 license by
3658         Jerry Maine <crashfourit@gail.com>.
3660         * mini-amd64.c: Added code to convert simd IR to native amd64 sse.
3662 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3664         * aot-compiler.c (emit_plt): Define debug labels for most plt entries.
3666 2009-06-24  Neale Ferguson <neale@sinenomine.net>
3668         * mini-s390x.c: Correct LCONV_TO_Ix and ICONV_TO_Ix routines. Fix leave_method
3669         dump of structure return value. Fix some formatting.
3670         * cpu-s390x.md: Fix lengths of instruction sequences.
3671         * mini-s390.c: Minor formatting changes.
3673 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3675         * mini-x86.h: Applied patch from Romain Tartiere (romain@blogreen.org).
3676         Use sigaction on freebsd as well.
3678 2009-06-23  Zoltan Varga  <vargaz@gmail.com>
3680         * mini.h: Don't define MONO_ARCH_HAVE_TLS_GET to 0, as some code
3681         uses #ifdef on it.
3682         
3683         * mini.c (mini_init): Revert a change which breaks cross-compilation.
3685 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3687         * mini-ppc.c, cpu-ppc.md: Enable TLS on Darwin/G4.
3689 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3691         * mini.c, mini.h: Tell the runtime whether we support MONO_TLS.
3693 2009-06-20  Martin Baulig  <martin@ximian.com>
3695         * debug-mini.c
3696         (MonoDebuggerThreadFlags): New enum typedef.
3697         (MonoDebuggerThreadInfo): Added `guint32 thread_flags'.
3698         (mono_debugger_thread_created): Added `gpointer func' argument;
3699         initialize the new `thread_flags' field.
3701 2009-06-18  Martin Baulig  <martin@ximian.com>
3703         * debug-debugger.h (MonoDebuggerRuntimeFlags): New enum typedef.
3704         (MonoDebuggerInfo): Renamed the `dummy' field info `runtime_info'.
3706         * debug-debugger.c
3707         (mini_debugger_set_attach_ok): New function; sets the attach-ok
3708         flag in `MONO_DEBUGGER__info.runtime_info'.
3710         * driver.c
3711         (mono_main): Call mini_debugger_set_attach_ok() if generics
3712         sharing is disabled.
3714 2009-06-22  Zoltan Varga  <vargaz@gmail.com>
3716         * aot-compiler.c (add_wrappers): Fix a warning.
3718         * mini-ppc.c tramp-ppc.c exceptions-ppc.c aot-compiler.c: Update after
3719         the ppc load/store macro changes.
3721 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3723         * tramp-ppc.c (mono_arch_patch_plt_entry): Implement this.
3725         * aot-compiler.c (mono_compile_assembly): Sanitize the plt symbol too,
3726         not just the got symbol.
3728         * mini-ppc.c aot-compiler.c unwind.c: Implement generation of unwind info
3729         on ppc.
3731         * aot-compiler.c unwind.c: Add infrastructure for unwind support on
3732         ppc.
3733         
3734         * aot-compiler.c: Remove some fixmes.
3736         * driver.c (mono_main): Print a helpful message when cross-compiling.
3738         * mini.c (mini_init): Disable signal handlers when cross-compiling.
3740         * method-to-ir.c (initialize_array_data): Do the optimization if the
3741         target byte order is little endian, instead of the host byte order.
3743         * aot-compiler.c: Emit sizes for most symbols, only emit runtime-invoke
3744         wrappers into the mscorlib image, Emit a unique plt symbol for each
3745         image, emit symbols for plt entries.
3747         * image-writer.c (img_writer_emit_symbol_size): New function to emit
3748         a .size directive.
3749         
3750 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
3752         * aot-compiler.c (add_wrappers): Avoid calling 
3753         mono_marshal_get_type_info () since it can assert for some types.
3755         * method-to-ir.c (mono_method_to_ir): Disable aot when some forms of 
3756         ldtoken are used inside wrappers.
3758         * helpers.c: Add support for prefixing tools with the arch name.
3760         * mini.h (OP_LOADR_MEMBASE): New opcodes to load/store pointer sized
3761         quantities when using ilp32.
3763         * mini-codegen.c: Use OP_LOADR_MEMBASE/OP_STORER_MEMBASE for loading/storing
3764         spill slots. Use sizeof(mgreg_t) for the spill slot size.
3766         * image-writer.c: Use .long on ilp32.
3768         * aot-compiler.c: Use 32 bit loads on ilp32.
3769         
3770 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3772         * tramp-ppc.c (mono_arch_create_trampoline_code): Fix the ppc build.
3774         * mini-ops.h: Use TARGET_POWERPC define for consistency.
3776         * patch-info.h: Add 'MSCORLIB_GOT_ADDR' patch type.
3778         * aot-compiler.c aot-runtime.c: Put the mscorlib got address into the 
3779         second got slot of every aot image.
3780         
3781         * aot-compiler.c aot-runtime.c mini-trampolines.c: Add support for
3782         aot on platforms with function pointers.
3784         * mini-ppc.h mini-ppp.c cpu-ppc.md exceptions-ppc.c tramp-ppc.c: Add
3785         support for aot/full aot on ppc/ppc64.
3786         
3787         * tramp-<ARCH>.c (mono_arch_patch_plt_entry): Add 'got' and 'regs'
3788         arguments which are needed on ppc.
3790         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Add 'regs'
3791         argument.
3793         * mini-trampolines.c aot-runtime.c: Update after the above changes.
3794         
3795         * liveness.c (BITS_PER_CHUNK): Use MONO_BITSET_BITS_PER_CHUNK.
3797         * regalloc2.c (BITS_PER_CHUNK): Ditto.  
3799         * aot-compiler.c (emit_got_info): Fix reading unused memory.
3801         * ir-emit.h (alloc_dreg): Add a 'return -1' to quiet some compilers.
3803 2009-06-17  Geoff Norton  <gnorton@novell.com>
3805         * aot-compiler.c: Ensure we dont try to close a null dwarf writer.
3807 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3809         * dwarfwriter.c (mono_dwarf_writer_create): Add an 'appending' parameter
3810         to control whenever the dwarf writer is in xdebug or aot mode.
3811         (emit_class_dwarf_info): Use a separate abbrev for structures without
3812         children.
3814         * aot-compiler.c: Pass the appending parameter to 
3815         mono_dwarf_writer_create ().
3817         * branch-opts.c (mono_merge_basic_blocks): Fix the case when bbn
3818         falls through to its next bblock. Fixes #513931.
3820         * iltests.il: Add a test.
3822         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Emit some line number
3823         infor even if emit_line is FALSE, as the apple linker seems to require it.
3825         * image-writer.c (asm_writer_emit_symbol_diff): Call get_label ().
3827         * dwarfwriter.c (emit_cie): Emit a separate symbol for the cie start, as
3828         gcc does.
3829         (emit_fde): Ditto.
3831 2009-06-15  Zoltan Varga  <vargaz@gmail.com>
3833         * exceptions-mips.c (mono_arch_get_throw_exception_by_name): Fix the
3834         mips build.
3836 2009-06-13  Zoltan Varga  <vargaz@gmail.com>
3838         * mini.h (struct MonoBasicBlock): Add 'has_jump_table' and 
3839         'has_call_handler' fields.
3841         * method-to-ir.c (mono_method_to_ir): Set them if needed.
3843         * branch-opts.c (mono_merge_basic_blocks): Avoid iterating through the
3844         first bblock if not needed. Fixes #512790.
3845         
3846 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3848         * aot-compiler.c (mono_compile_assembly): Fix a warning.
3849         
3850         * aot-compiler.c (add_wrappers): Don't emit remoting-invoke-with-check
3851         wrappers.
3853         * aot-runtime.c (mono_aot_get_method): Use the original method's code for
3854         remoting-invoke-with-check wrappers, which are not needed when running with
3855         full-aot, since it doesn't support remoting.
3856         
3857 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3859         * aot-compiler.c (emit_got_info): Don't emit offsets for the plt got entries.
3861         * aot-compiler.c aot-runtime.c: Don't emit the first got offset in the
3862         method info, it is not used anymore.
3864         * mini.h: Bump AOT file format version.
3865         
3866         * aot-compiler.c (arch_emit_plt_entry): Make the arm plt entries one
3867         word smaller.
3869         * aot-runtime.c (mono_aot_get_plt_info_offset): Update after the
3870         change above.
3871         
3872         * tramp-arm.c (mono_arch_patch_plt_entry): Ditto.
3874         * mini.h: Bump AOT file format version.
3875         
3876 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3878         * image-writer.c (asm_writer_emit_symbol_diff): Disable the 
3879         TARGET_ASM_APPLE stuff for now, as it doesn't seem to work on the
3880         iphone.
3882         * mini-arm.c (mono_arch_output_basic_block): Fix the implementation
3883         of CKFINITE and FBGE for VFP.
3885 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3887         * aot-compiler.c: Don't align code to 16 bytes on arm.
3888         
3889         * aot-compiler.c (emit_method_code): Emit the unbox trampolines right
3890         before the methods they belong to.
3892         * aot-runtime.c (mono_aot_plt_resolve): Avoid creating trampolines in
3893         the full-aot case if possible, since the trampoline will be called right 
3894         away.
3896         * aot-compiler.c (mono_compile_assembly): Decrease the number of full aot
3897         trampolines to 1024 after the change above.
3899         * aot-compiler.c (arch_emit_specific_trampoline): Rework the arm
3900         trampoline to save 8 bytes per trampoline.
3902         * tramp-arm.c (mono_arch_create_trampoline_code_full): Update after the
3903         change above.
3905 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
3907         * aot-compiler.c: Use acfg->temp_prefix instead of .L to prefix labels.
3909 2009-06-08  Martin Baulig  <martin@ximian.com>
3911         * debug-mini.c
3912         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
3913         (_mono_debugger_throw_exception): Don't make this static.
3914         (_mono_debugger_unhandled_exception): Likewise.
3915         (mono_debugger_handle_exception): Moved to mini-exceptions.c
3917         * debug-mini.c
3918         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
3919         (_mono_debugger_throw_exception): Add function prototype.
3920         (_mono_debugger_unhandled_exception): Likewise.
3922         * mini-exceptions.c
3923         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
3924         arg; return the first exception handler if the exception is caught
3925         and we're running inside the debugger.
3926         (mono_debugger_handle_exception): Moved here from debug-mini.c;
3927         improve exception handle inside runtime-invoke, check whether the
3928         exception is actually caught in the method being invoked and not
3929         by the runtime-invoke-wrapper.
3931 2009-06-08  Zoltan Varga  <vargaz@gmail.com>
3933         * image-writer.c: Improve support for the osx assembler.
3935         * dwarfwriter.c: Avoid the usage of subsections if the assembler doesn't
3936         support them.
3938 2009-06-08  Martin Baulig  <martin@ximian.com>
3940         * debug-mini.c
3941         (MonoDebuggerExceptionAction): Moved into debug-mini.h.
3942         (_mono_debugger_throw_exception): Don't make this static.
3943         (_mono_debugger_unhandled_exception): Likewise.
3944         (mono_debugger_handle_exception): Moved to mini-exceptions.c
3946         * debug-mini.c
3947         (MonoDebuggerExceptionAction): Moved here from debug-mini.c.
3948         (_mono_debugger_throw_exception): Add function prototype.
3949         (_mono_debugger_unhandled_exception): Likewise.
3951         * mini-exceptions.c
3952         (mono_handle_exception_internal): Added `MonoJitInfo **out_ji'
3953         arg; return the first exception handler if the exception is caught
3954         and we're running inside the debugger.
3955         (mono_debugger_handle_exception): Moved here from debug-mini.c;
3956         improve exception handle inside runtime-invoke, check whether the
3957         exception is actually caught in the method being invoked and not
3958         by the runtime-invoke-wrapper.
3960 2009-06-07  Zoltan Varga  <vargaz@gmail.com>
3962         * image-writer.c (append_subsection): Don't align subsections of the
3963         debug_line section as a workaround.
3965         * dwarfwriter.c: Emit line number info in the AOT case as well.
3967 2009-06-06  Steven Munroe  <munroesj@us.ibm.com>
3969         This patch is contributed under the terms of the MIT/X11 license
3971        * mini-ppc.c (mono_arch_emit_exceptions): Change assert to
3972        code_len <= code_size
3974 2009-06-06  Zoltan Varga  <vargaz@gmail.com>
3976         * mini-mips.c (mips_emit_exc_by_name): Fix the mips build.
3978 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3980         * aot-compiler.c aot-runtime.c: Delete references to static rgctx
3981         invoke wrappers, we now use trampolines instead.
3983 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3985         * mini-darwin.c: The exception thread must not be registered with
3986         the GC.
3988 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3990         * mini-gc.c: Disable the code because it makes SGen crash.
3992 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3994         * aot-compiler.c (mono_compile_assembly): Handle file open errors gracefully
3995         instead of asserting.
3997 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3999         * aot-compiler.c (mono_compile_assembly): Move the creation of the
4000         output file after the code has been compiled.
4002 2009-05-30  Zoltan Varga  <vargaz@gmail.com>
4004         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Fix 64 bit support.
4006 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4008         * aot-compiler.c aot-runtime.c: Get rid of the shared/non-shared got
4009         entries distinction to simplify the code.
4011         * mini.h: Bump AOT file format version.
4012         
4013 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4015         * objects.cs: Fix the signature of one of the tests.
4017         * mini.c (mini_create_ftnptr): New helper function, moved here from
4018         object.c.
4019         (mini_get_addr_from_ftnptr): Ditto.
4020         (mini_init): Install the new helpers.
4022 2009-05-28  Martin Baulig  <martin@ximian.com>
4024         Correctly initialize the debugger when embedding Mono.
4026         * mdb-debug-info32.s, mdb-debug-info64.s: Add a global variable
4027         `MONO_DEBUGGER__using_debugger' to the `.mdb_debug_info' section;
4028         see documentation in mini_debug_running_inside_mdb().
4030         * debug-debugger.c
4031         (mini_debug_running_inside_mdb): New function to check whether
4032         we're running inside mdb.
4034         * mini.c (mini_init): Call mini_debugger_init() if we're running
4035         inside the debugger.
4037         * driver.c (mono_main): Moved the call to mini_debugger_init()
4038         into mini_init() to make this work when embedding Mono.
4040         * debug-debugger.c (mini_debugger_init): Warn about duplicate
4041         calls to mini_debugger_init().
4043         * mini.h: Rename mono_debugger_init() -> mini_debugger_init(),
4044         mono_debugger_main() -> mini_debugger_main() and put them inside a
4045         `MONO_DEBUGGER_SUPPORTED' conditional.
4047 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
4049         * mini-trampolines.c: Kill mono_find_delegate_trampoline_by_addr as
4050         this is no longer in use.
4051         * mini.h: Same.
4053 2009-05-26  Zoltan Varga  <vargaz@gmail.com>
4055         * mini-sparc.c (add_outarg_load): Fix the sparc build.
4057         * aot-compiler.c (emit_method_code): Always write out C style symbols for
4058         methods.
4060 2009-05-27  Martin Baulig  <martin@ximian.com>
4062 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4064         * mini-x86.c (mono_arch_output_basic_block): Fix the precision of
4065         long_conv_to_r_un to 64 bits.
4067         * cpu-x86.md: Increase the instruction size due to the changes.
4069         * iltests.il.in: Add regression test.
4071         Fixes #467201.
4073 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4075         * objects.cs: Move the previous test from basic.cs to here.
4077 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4079         * basic.cs: Add regression test for #506915.
4081 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4083         * method-to-ir.c (mono_method_to_ir): When doing the ldobj+stobj
4084         optimization we must check the bb of the first byte of stobj as
4085         it's the only one set in cil_offset_to_bb.
4087         Fixes #506915.  
4089 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
4091         * image-writer.c: Fix pointer directive on ppc64.
4093 2009-05-24  Zoltan Varga  <vargaz@gmail.com>
4095         * image-writer.c (asm_writer_emit_section_change): Avoid using
4096         .bss subsections on ppc too.
4098 2009-05-23  Zoltan Varga  <vargaz@gmail.com>
4100         * image-writer.c: Fix the definition of TARGET_ASM_....
4101         
4102         * image-writer.c: Fix the emission of assembler directives in the last
4103         change.
4105         * mini-ppc.c (mono_arch_emit_exceptions): Increase the size of the
4106         exception throwing code to accomodate ppc64.
4108         * tramp-ppc.c (mono_arch_get_nullified_class_init_trampoline): Increase the
4109         size to work on ppc64 too.
4111         * mini-ppc.h (MonoCompileArch): Enable static rgctx trampolines on ppc64
4112         too.
4114         * image-writer.c: Clean up the #ifdef hell a bit by adding defines for
4115         the assembler dialect instead of using platform specific defines.
4117 2009-05-22  Geoff Norton  <gnorton@novell.com>
4119         * mini-arm.c (get_call_info): If a structure is split between the stack
4120         and argument registers, we should not advance the stack pointer by the entire
4121         native size, but just by the amount that spilled.
4123 2009-05-22  Zoltan Varga  <vargaz@gmail.com>
4125         * mini-arm.c (get_call_info): Handle structures with alignment requirements
4126         correctly.
4128 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4130         * aot-compiler.c (emit_extra_methods): Encode direct runtime invoke
4131         wrappers normally.
4132         
4133         * aot-compiler.c (add_extra_method): Fix up the collection of extra
4134         methods so wrapper don't get added twice.
4135         (add_generic_instances): Don't add methods of arrays.
4137         * generics.cs: Mark one test as !FULLAOT.
4139 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
4141         * mini-x86.c (emit_move_return_value): Remove unused vars.
4143 2009-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
4145         * mini-x86.c (mono_arch_emit_call): The decompose code now supports
4146         decomposing 8 bytes structs into a LCALL.
4148         * mini-x86.c (emit_move_return_value): We no longer push the vtype
4149         pointer for where to store the returned regs.
4151         * decompose.c (mono_decompose_vtype_opts): Fix the comment to properly
4152         state the concern.
4154         Fixes #471747, #471751 and #4734530 (in fact, it's a bunch of dups).
4156 2009-05-20  Miguel de Icaza  <miguel@novell.com>
4158         * aot-runtime.c (mono_aot_init): Use g_getenv to work on systems
4159         without getenv.
4161 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4163         * aot-compiler.c (add_wrappers): Add StructureToPtr/PtrToStructure wrappers.
4165         * basic.cs: Move the test_2_cprop_bug () test to generics.cs as it involves
4166         generics.
4168 2009-05-20 Rodrigo Kumpera  <rkumpera@novell.com>
4170         * local-propagation.c (mono_local_cprop): Avoid local propagation
4171         across paired add/sub if the first instruction dest reg is it's
4172         source reg. For example:
4174         int_add_imm R12 <- R12 [1] clobbers: 1
4175         int_sub_imm R42 <- R12 [1] clobbers: 1
4177         The cprop pass would wrongly const prop + 1 to int_sub_imm which doesn't
4178         maintain the math identify.
4180         Fixes #505375.
4182 2009-05-20  Andreia Gaita  <avidigal@novell.com>
4184         * Makefile.am: avoid going on the network just to get the revision,
4185         use git log instead
4187 2009-05-19  Massimiliano Mantione  <massi@ximian.com>
4189         Fixed estimate for short branches on amd64 (they were off mark, and
4190         enabling call prolog-epilog instrumentations caused assertions).
4191         * mini.h (struct MonoBasicBlock): added max_length field to hold the
4192         estimate for the maximum length of this basic block.
4193         * mini-amd64.c:
4194         - mono_arch_emit_prolog: compute max_length for each basic block
4195           (instead of max_offset), and inflate size estimate also for entry bb
4196           in case of code instrumentation.
4197         - mono_arch_output_basic_block: get rid of "cpos" (the current
4198           estimated "position" in the code), and always use "offset" instead,
4199           which is accurate; at the beginning of the function quickly recompute
4200           max_offset for all the remaining blocks, starting from the current
4201           cfg->code_len (which is correct, and not estimated) and using the
4202           estimated block lengths computed previously.
4204 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
4206         * exceptions-ppc.c: Remove the caching from the trampoline creation 
4207         functions, it is already done in the caller.
4209         * mini-trampolines.c (mono_llvm_vcall_trampoline): Fix the llvm build.
4211         * mini-ppc.h mini-arm.h mini-x86.h mini-amd64.h: Add 
4212         MONO_ARCH_GSHARED_SUPPORTED define.
4214         * mini.c (mini_init): Use the MONO_ARCH_GSHARED_SUPPORTED define.
4216         * mini-arm.c mini.c: Get rid of the unused mono_arch_fixup_jinfo ()
4217         function.
4219 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
4221         * jit-icalls.c (mono_helper_compile_generic_method): Get rid of the 
4222         call to mono_marshal_get_rgctx_invoke ().
4224         * mini.c method-to-ir.c mini-trampolines.c: Get rid of the usage of
4225         mono_marshal_get_static_rgctx_invoke (), all platforms which support
4226         gshared use the static rgctx trampolines now.
4227         
4228         * mini.c (mini_init): Call mono_set_generic_sharing_supported () if the
4229         platform supports it.
4231 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4233         * mini-arm.c (mono_arch_allocate_vars): Correctly save R5 when using AOT.
4235         * aot-compiler.c (emit_method_code): Avoid duplicate labels for methods.
4237 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4239         * mini-ppc.c (mono_arch_emit_exceptions): Nullify the processed patches.
4241         * tramp-ppc.c (mono_arch_nullify_class_init_trampoline): Implement this
4242         for ppc.
4244 2009-05-15  Massimiliano Mantione  <massi@ximian.com>
4246         Made it possible for mono_arch_instrument_epilog to preserve
4247         argument registers, otherwise instrumenting the "epilogue" before
4248         a tail call would clobber them.
4249         * mini.h: Added "mono_arch_instrument_epilog_full" prototype, which
4250         if like mono_arch_instrument_epilog but with an additional parameter
4251         that states if argument registers must be preserved.
4252         * mini.c: implemented mono_arch_instrument_epilog as a call to
4253         mono_arch_instrument_epilog_full without asking to preserve argument
4254         registers (this makes the existing code work as usual).
4255         * mini-amd64.c:
4256         - mono_arch_instrument_epilog: add parameter to transform it into
4257         mono_arch_instrument_epilog_full, and preserve argument registers
4258         when required.
4259         - mono_arch_output_basic_block, OP_TAILCALL case: call
4260         mono_arch_instrument_epilog_full.
4261         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
4262         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-x86.c:
4263         only transformed mono_arch_instrument_epilog into
4264         mono_arch_instrument_epilog_full.
4266 2009-05-15  Geoff Norton  <gnorton@novell.com>
4268         * mini-darwin.c: This works on arm now.
4270 2009-05-14  Geoff Norton  <gnorton@novell.com>
4272         * jit.h, driver.c: Allow full-aot to be decided programatically by the
4273         embedding api.
4275 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4277         * aot-compiler.c (emit_method_code): Skip a few more characters in the debug
4278         label names.
4280         * mini-trampolines.c (mono_magic_trampoline): Handle static rgctx invoke
4281         wrappers during full aot mode correctly.
4283         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle shared generic
4284         methods correctly.
4286         * aot-compiler.c (mono_aot_method_hash): Use our internal version of
4287         mono_metadata_type_hash ().
4289 2009-05-14  Massimiliano Mantione  <massi@ximian.com>
4291         * mini.h, mini-codegen.c, mini-alpha.c, mini-amd64.c, mini-arm.c,
4292         mini-hppa.h, mini-hppa.c, mini-ia64.c, mini-mips.h, mini-mips.c,
4293         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c, mini-886.c:
4294         Removed MONO_INST_BRLABEL from the instruction flags, and the
4295         remaining code that used it, because we do not support branches inside
4296         basic blocks (and branch target labels) anymore.
4297         * Makefile.am: As part of the above cleanup, remove reference to
4298         BURG files which don't exist anymore.
4300 2009-05-14  Zoltan Varga  <vargaz@gmail.com>
4302         * image-writer.c (asm_writer_emit_local_symbol): Make this a nop on
4303         osx.
4305         * mini-mips.c mini-mips.h exceptions-mips.c: Transition the mips backend
4306         to use mono_arch_throw_corlib_exception.
4308         * mini-ppc.c mini-ppc.h exceptions-ppc.c: Use 
4309         mono_arch_throw_corlib_exception for throwing corlib exceptions.
4311         * aot-runtime.c (decode_patch): Allocate the data for R4/R8 from the
4312         domain mempool.
4314         * mini.c (mono_patch_info_dup_mp): Copy the table of switch targets too.
4316         * aot-compiler.c: Emit a local symbol prefixed with the assembly name 
4317         for the got to make debugging easier and to avoid confusing it with the
4318         system got.
4319         
4320         * aot-compiler.c (emit_method_code): Emit a C style symbol for each
4321         method so a breakpoint can be set when using gdb.
4323 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
4325         * aot-compiler.c (mono_aot_method_hash): Implement this properly based
4326         on mono_method_get_imt_slot ().
4328         * aot-runtime.c (find_extra_method_in_amodule): Get rid of the
4329         num_decodes variables.
4331         * aot-compiler.c (mono_aot_method_hash): Revert part of the last
4332         change as it doesn't seem to work.
4333         
4334         * aot-compiler.c (mono_aot_method_hash): Improve the hashing of
4335         wrappers.
4337 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4339         * aot-compiler.c mini.c mini-amd64.h mini-arm.h: Kill 
4340         MONO_ARCH_FULL_AOT_IMT_SUPPORTED define, both platforms now support imt.
4342         * mini.c (mini_init): Install mono_aot_get_imt_thunk as the IMT thunk
4343         builder when using full aot.
4345         * mini-amd64.c (mono_arch_build_imt_thunk): Don't handle the full-aot case
4346         here, it is already handled.
4347         
4348         * mini-arm.c (mono_arch_emit_imt_argument): Pass the dynamic imt arg
4349         correctly for IMT.
4351         * aot-compiler.c (arch_emit_imt_thunk): Implement this for ARM.
4353         * mini-arm.h: Enable IMT for full aot.
4354         
4355         * aot-compiler.c (mono_compile_assembly): Don't emit imt thunk if the
4356         arch doesn't support it.
4358         * mini.c (mini_init): Don't disable IMT for full aot if the
4359         architecture supports it.
4361         * mini.h (MonoAotTrampoline): New enum containing the different types
4362         of 'numerous' trampolines.
4363         (MONO_AOT_FILE_VERSION): Bump this.
4365         * aot-compiler.c aot-runtime.c: Unify the handling of specific and
4366         static rgctx trampolines. Add support for full-aot IMT thunks.
4368         * mini-amd64.h: Enable IMT for full aot.
4370         * TestDriver.cs: Add a CategoryAttribute class and an --exclude option
4371         to exclude tests belonging to a category.
4373         * generics.cs: Mark some tests with a !FULLAOT category.
4375         * Makefile.am (fullaotcheck): Run tests with --exclude !FULLAOT. Include
4376         generics tests.
4378 2009-05-11  Zoltan Varga  <vargaz@gmail.com>
4380         * aot-compiler.c (emit_and_reloc_code): Move the implementation of
4381         MONO_PATCH_INFO_GOT_OFFSET to a separate arch-specific function.
4382         (emit_plt): Fix a warning.
4384 2009-05-10  Zoltan Varga  <vargaz@gmail.com>
4386         * aot-compiler.c aot-runtime.c: Fix the build by moving is_shared_got_patch
4387         back into aot-compiler.c to a place where the other functions shared by
4388         the runtime and aot compiler are.
4389         
4390         * aot-compiler.c aot-runtime.c: Emit the got addr using a separate symbol,
4391         as done previously, instead of in MonoAotFileInfo, since pointers might have
4392         alignment requirements.
4394         * mini.h: Bump AOT file format version.
4396 2009-05-10  Miguel de Icaza  <miguel@novell.com>
4398         * aot-runtime.c (mono_aot_is_shared_got_patch): Move this routine
4399         that is used at runtime from the aot-compiler.c, this makes it
4400         work on setups that remove the AOT compiler from the output
4401         image. 
4403 2009-05-09  Zoltan Varga  <vargaz@gmail.com>
4405         * tramp-ppc.c (mono_arch_get_static_rgctx_trampoline): Implement this for
4406         PPC.
4408         * mini-ppc.h: Enable static rgctx trampolines for ppc.
4410         * mini-<ARCH>.h: Kill the MONO_ARCH_ENABLE_EMIT_STATE_OPT define.
4412         * decompose.c (mono_decompose_long_opts): Move the ppc/sparc specific 
4413         stuff to mono_arch_decompose_long_opts ().
4414         (mono_decompose_opcode): Remove some dead code.
4416 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
4418         * method-to-ir.c (mono_method_to_ir): Fix boostrap of non amd64 builds
4419         cmethod can be null for quite a some reasons.
4421 2009-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
4423         * method-to-ir.c (mono_method_to_ir): Fix non amd64 builds.
4425 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4427         * aot-compiler.c (arch_emit_got_access): Fix the aot-not-supported build.
4429 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4431         * method-to-ir.c (mono_emit_call_args): Add a 'tail' flag argument.
4432         (mono_method_to_ir): Use MONO_ARCH_USE_OP_TAIL_CALL macro to determine
4433         whenever to make tail calls using OP_TAIL_CALL. Enable support for tail
4434         calls returning structures by addr on amd64.
4436         * mini-amd64.h (MONO_ARCH_USE_OP_TAIL_CALL): New arch-specific macro.
4438         * iltests.il.in: Restructure the tail call tests a bit.
4439         
4440 2009-05-07  Zoltan Varga  <vargaz@gmail.com>
4442         * aot-compiler.c (add_wrappers): Add remoting-invoke-with-check wrappers
4443         for virtual methods too.
4445 2009-05-06  Raja R Harinath  <harinath@hurrynot.org>
4447         * method-to-ir.c (mono_method_to_ir): Revert change of 2009-05-02
4448         due to regression in verifying System.dll.
4450 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4452         * debug-mini.c (mono_debugger_method_has_breakpoint): Allow breakpoints
4453         in dynamic methods.
4455         * dwarfwriter.c (emit_class_dwarf_info): Add support for generic
4456         instances.
4458         * aot-compiler.c aot-runtime.c: Use our own hash function instead of
4459         g_str_hash () which can change.
4461         * driver.c (mini_regression): Disable optimizations not supported by
4462         the cpu. Fixes #500019.
4464         * aot-runtime.c (mono_aot_get_unwind_info): Fix the --enable-minimal=aot
4465         build.
4467 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4469         * mini-llvm.c (mono_llvm_emit_method): Update the OP_TLS_GET implementation
4470         to the latest LLVM code.
4472 2009-05-05  Zoltan Varga  <vargaz@gmail.com>
4474         * genmdesc.pl (load_opcodes): Fix this after the TARGET_... changes.
4476 2009-05-04  Zoltan Varga  <vargaz@gmail.com>
4478         * mini-llvm.c (mono_llvm_emit_method): Implement TLS support on 
4479         x86/amd64.
4481         * aot-compiler.c (encode_patch_list): Simplify this considerably as we are
4482         no longer saving offsets, so just save the patch types along with the other
4483         info.
4484         * aot-runtime.c (load_patch_info): Update after the changes to 
4485         encode_patch_list ().
4486         (decode_got_entry): Removed, merged into load_patch_info ().
4487         (is_shared_got_patch): Removed, call the same function from
4488         aot-compiler.c.
4490         * mini.h: Bump aot file format version.
4491         
4492         * aot-compiler.c aot-runtime.c: Resurrect static linking support. Kill the
4493         half-finished no-dlsym code.
4495         * aot-runtime.c (load_method): Kill the old and bit-rotten use_loaded_code
4496         option.
4498         * mini-<ARCH>.h mini-trampolines.c aot-runtime.c: Kill the 
4499         MONO_ARCH_HAVE_CREATE_TRAMPOLINE_FROM_TOKEN define.
4501 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4503         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Increase the
4504         buffer length to work with AOT code.
4506         * method-to-ir.c (mono_method_to_ir): Handle loading errors in the
4507         ldfld/stfld opcodes.
4509         * exceptions-x86.c (mono_arch_get_throw_exception_by_name): Simplify this
4510         as it is not used.
4512         * mini-llvm.c mini-x86.c: Implement 32 bit and x86 support.
4514         * ssa.c (mono_ssa_compute): Don't skip I8 values when using LLVM.
4516         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Update to the latest
4517         LLVM API.
4519         * mini.c (mini_method_compile): Set the from_llvm flag in MonoJitInfo
4520         if needed. Don't decompose long operations when using llvm.
4522 2009-05-01  Zoltan Varga  <vargaz@gmail.com>
4524         * aot-compiler.c aot-runtime.c: Use mono_pagesize () instead of the
4525         PAGESIZE constant.
4527         * aot-runtime.c (load_aot_module): Get rid of another mprotect call.
4529 2009-05-03  Martin Baulig  <martin@ximian.com>
4531         * debug-debugger.c (debugger_insert_source_breakpoint): Don't call
4532         mono_debugger_insert_method_breakpoint() since the class init
4533         handler we're inserting at the top of the method already gives us
4534         a notification.
4536 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4538         * decompose.c (mono_decompose_long_opts): Move the implementation of LNEG
4539         to mono_arch_decompose_long_opts () for x86 and arm.
4541 2009-04-29  Zoltan Varga  <vargaz@gmail.com>
4543         * mini-codegen.c (mono_regstate_alloc_int): Use __x86_64__ instead of
4544         TARGET_AMD64 here.
4546 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4548         * *.h *.c: Use TARGET_<ARCH> defines instead of __<arch>__ defines in the
4549         JIT code.
4551 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
4553         * aot-runtime.c (mono_aot_create_specific_trampoline): Add a stat for the
4554         number of trampolines used in full-aot mode.
4556         * aot-compiler.c: Add an ntrampolines option to set the number of 
4557         trampolines emitted in full-aot mode.
4559 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4561         * mini-llvm.c (mono_llvm_emit_method): Implement OP_CHECK_THIS using
4562         a volatile load. Get rid of get_tempname (), llvm assigns names
4563         automatically.
4565         * mini-llvm-cpp.cpp (mono_llvm_build_volatile_load): New instruction
4566         builder function.
4568         * mini-llvm.c (mono_llvm_emit_method): Don't call LLVMGetParam on
4569         a value.
4571         * abcremoval.c (REPORT_ABC_REMOVAL): Don't output messages at verbose
4572         level 1.
4574         * mini-codegen.c (mono_local_regalloc): Prevent sreg1/dreg to be allocated
4575         to the same register as a fixed sreg2. Fixes #497271.
4577         * iltests.il.in: Add a new test.
4579 2009-04-26  Zoltan Varga  <vargaz@gmail.com>
4581         * mini-amd64.c: Use moves instead of pushes for passing arguments on the
4582         stack, since pushes complicate exception handling.
4584         * exceptions-amd64.c (mono_arch_find_jit_info): Don't pop the arguments of
4585         the stack if they are passed using moves.
4587         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add an assert.
4589         * method-to-ir.c (mono_method_to_ir): Disable fast virtual generic methods
4590         when using llvm.
4592         * mini-llvm.c (mono_llvm_emit_method): Call jit icall wrappers, not the 
4593         icalls themselves. Convert arguments of FCOMPARE. Convert the destination
4594         of FMOVE if it is an R4.
4596 2009-04-25  Zoltan Varga  <vargaz@gmail.com>
4598         * mini-ops.h: Add OP_LLVM_OUTARG_VT opcode.
4600         * mini.h (LLVMCallInfo): New structure to store calling convention 
4601         information for the LLVM back end similar to the CallInfo structures in 
4602         the back-ends.
4604         * mini-amd64.c (mono_arch_get_llvm_call_info): New arch function to return
4605         call information in a format usable by LLVM.
4606         (mono_arch_emit_call): Move the LLVM handling code to mono_llvm_emit_call ().
4608         * method-to-ir.c (mono_emit_call_args): Emit calls using 
4609         mono_llvm_emit_call () when compiling using LLVM.
4611         * mini-llvm.c: Implement support for passing/receiving valuetypes. Add
4612         comments to all functions. Fix memory leaks. Add a public init/cleanup
4613         function.
4615         * mini.c: Call the llvm init/cleanup functions in mini_init()/cleanup().
4617         * method-to-ir.c (handle_array_new): Disable llvm when calling the vararg
4618         mono_array_new_va () jit icall.
4619         
4620 Fri Apr 24 16:44:08 CEST 2009 Paolo Molaro <lupus@ximian.com>
4622         * Makefile.am, genmdesc.c, genmdesc.pl: tiny refactor to allow
4623         multiple machine description files to be specified.
4624         * mini-ops.h: fixes for cross-compilation.
4626 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4628         * aot-runtime.c (make_writable): Use mono_mprotect to simplify
4629         some porting work.
4631 2009-04-22  Zoltan Varga  <vargaz@gmail.com>
4633         * method-to-ir.c (mono_method_to_ir): Force init_locals to be TRUE
4634         to prevent asserts in various passes. Fixes #497220.
4636 2009-04-21  Zoltan Varga  <vargaz@gmail.com>
4638         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove
4639         a racy assert.
4641         * aot-compiler.c aot-runtime.c: Emit the unwind info into a separate
4642         table to avoid duplicates.
4644         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
4645         
4646         * aot-compiler.c (emit_method_code): Avoid writing symbols if the nodebug
4647         option is used.
4649 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4651         * mini.c (mini_method_verify): Fail fulltrust code if the exception
4652         is for method or field access.
4654 2009-04-20  Zoltan Varga  <vargaz@gmail.com>
4656         * mini-llvm-cpp.cpp (mono_llvm_dump_value): New helper function to print
4657         a Value to stdout.
4659         * mini-llvm.c (mono_llvm_emit_method): Use it.
4660         
4661         * mini-llvm.c (type_to_llvm_type): Fix the mapping of enums.
4662         (mono_llvm_emit_method): Add support for CAS. Fix handling of CSET opcodes
4663         on volatile values.
4665         * mini-trampolines.c (mono_llvm_vcall_trampoline): Add support for 
4666         synchronized methods.
4668         * mini.c (mini_method_compile): Disable LLVM for dynamic methods.
4670         * mini.c (mini_method_compile): Enable ABCREM when running with LLVM.
4672         * mini-llvm.c (mono_llvm_emit_method): Add support for OP_LOADI4_MEM/
4673         OP_LOADI8_MEM.
4675         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Add a MONO_LLVM env variable
4676         allowing some options to be set dynamically.
4678 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4680         * mini-llvm.c (mono_llvm_emit_method): Handle compares followed by an
4681         unconditional branch.
4683         * mini.h (MonoTrampolineType): Add new trampoline type 
4684         'MONO_TRAMPOLINE_LLVM_VCALL' which handles virtual calls made from LLVM
4685         compiled code.
4687         * mini-trampolines.c (mono_llvm_vcall_trampoline): New C trampoline 
4688         function.
4690         * mini-trampolines.c (mono_create_llvm_vcall_trampoline): New trampoline
4691         creation function.
4693         * mini.c (mini_init): Avoid using the common vtable trampoline when LLVM
4694         is enabled. Instead, use the llvm vcall trampoline.
4695         
4696         * mini-trampolines.c (mono_get_vcall_slot_addr): New helper function.
4698         * mini-trampolines.c tramp-amd64.c tramp-x86.c: Use it.
4699         
4700         * mini-<ARCH>.c: Get rid of the identical mono_arch_get_vcall_slot_addr ()
4701         functions.
4703         * mini-<ARCH>.h mini-trampolines.c mini.c: Get rid of 
4704         MONO_ARCH_COMMON_VTABLE_TRAMPOLINE, it is supported by all archs.
4706         * mini-ia64.c (mono_arch_lowering_pass): Null out the sregs of the
4707         OP_IA64_CSET opcode.
4709         * mini.c: Fix a warning.
4711         * mini-llvm.c (mono_llvm_emit_method): Convert arguments of SWITCH and
4712         THROW to the appropriate llvm type.
4714 2009-04-18  Zoltan Varga  <vargaz@gmail.com>
4716         * mini.c (mini_method_compile): Add statistics for methods JITted
4717         with/without LLVM.
4719 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
4721         * method-to-ir.c: Fix the computation of ins_sreg_counts for ia64
4722         OP_IA64_CMP_<cond>_IMM opcodes.
4724 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
4726         * mini-llvm.c (emit_cond_system_exception): Implement throwing of
4727         corlib exceptions.
4729         * dwarfwriter.c (mono_dwarf_writer_emit_method): Handle --regression
4730         correctly.
4732         * mini-llvm.c (type_to_llvm_type): Avoid accessing t->data.klass for
4733         GENERICINST.
4735 2009-04-17  Atsushi Enomoto  <atsushi@ximian.com>
4737         * mini-exceptions.c : add thread id to EXCEPTION trace message.
4739 2009-04-17  Zoltan Varga  <vargaz@gmail.com>
4741         * tramp-amd64.c (mono_arch_get_static_rgctx_trampoline): Fix AOT
4742         support.
4744         * tramp-x86.c (mono_arch_get_unbox_trampoline): Implement static
4745         rgctx invoke trampolines for x86.
4747         * mini-x86.c (mono_arch_output_basic_block): Add a few nops before
4748         indirect calls to simplify get_vcall_slot_addr (). Fixes #494567.
4749         (mono_arch_get_vcall_slot): Simplify this.
4751 2009-04-16  Zoltan Varga  <vargaz@gmail.com>
4753         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Move the calls to
4754         mono_debug_add_delegate_trampoline () to get_delegate_invoke_impl ().
4756 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4758         * aot-compiler.c tramp-arm.c mini-arm.c: Implement static rgctx 
4759         trampolines for ARM. Add full-aot support for delegate invokes for ARM.
4761         * mini-trampolines.c (mono_magic_trampoline): Fix the build.
4763         * liveness.c (visit_bb): Remove a needless assert.
4765 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4767         * mini-trampolines.c (mono_create_delegate_trampoline): Delegate the
4768         full aot support to the arch specific code.
4770         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Add full-aot support.
4772         * aot-compiler.c (emit_trampolines): Emit delegate invoke impl trampolines.
4774         * aot-compiler.c (emit_named_code): Rename this to 'emit_trampoline'.
4775         
4776         * mini-amd64.c (mono_arch_get_delegate_invoke_impls): New function to
4777         collect information about the delegate invoke impl trampolines.
4779         * mini.h (MonoAotTrampInfo): New structure collecting the information needed
4780         to save trampolines during full-aot mode.
4782         * mini-trampolines.c (mono_create_static_rgctx_trampoline): New trampoline
4783         creation function which returns a trampoline which sets the rgctx
4784         argument.
4785         (mono_magic_trampoline): Use the rgctx trampoline instead of an rgctx
4786         wrapper if possible.
4787         (mono_delegate_trampoline): Ditto.
4789         * mini.c (mono_jit_runtime_invoke): Ditto.
4791         * tramp-amd64.c: Add an implemention of static rgctx trampolines for AMD64.
4792         
4793         * aot-compiler.c aot-runtime.c: Add support for static rgctx trampolines.
4795         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
4796         
4797 2009-04-12  Zoltan Varga  <vargaz@gmail.com>
4799         * mini-ia64.c (mono_arch_lowering_pass): Use NULLIFY_INS instead of
4800         just setting the opcode to OP_NOP.
4802 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4804         * mini.c (mini_method_compile): Put the last change inside an 
4805         #ifdef MONO_ARCH_HAVE_LIVERANGE_OPS.
4806         
4807         * mini.c (mini_method_compile): Disable sharing of stack slots/registers
4808         and extend live ranges to cover the whole method when using xdb.
4810         * jit-icalls.c (ldvirtfn_internal): Avoid creating rgctx wrappers here,
4811         do it in the trampolines.
4813         * mini-trampolines.c (mono_magic_trampoline): Add an rgctx wrapper if
4814         needed.
4816         * mini-trampolines.c (mono_delegate_trampoline): Ditto.
4817         
4818         * method-to-ir.c (mono_method_to_ir): Avoid using the fast virtual method
4819         call code in full-aot mode since IMT is disabled there.
4820         (mono_method_to_ir): Inline ldfld wrappers which return structures too, the
4821         new JIT no longer has that restriction.
4823         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
4825         * aot-compiler.c (emit_extra_methods): Emit the wrapper method names in
4826         a more compact format.
4827         (mono_aot_wrapper_name): New function to return a unique name for a
4828         wrapper method, also used by the AOT runtime.
4830         * aot-runtime.c (find_extra_method_in_amodule): Update after the changes to
4831         aot-compiler.c.
4833         * aot-compiler.c (add_generic_class): Add the helper methods from T[]
4834         when a ICollection<T> etc is encountered.
4835         (add_generic_instances): Process method arguments/locals too.
4836         (emit_trampolines): Emit unbox trampolines for extra methods too. Shorten
4837         trampoline names.
4839         * aot-runtime.c (mono_aot_get_unbox_trampoline): Handle extra methods too.
4840         
4841 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
4843         * aot-compiler.c: Disable the AOT compiler if the JIT is disabled.
4845         * dwarfwriter.c (emit_type): Emit byref to reference types as 'int' for now.
4847         * decompose.c (mono_decompose_opcode): Make this return a MonoInst*
4848         representing the result of the decomposition. Nullify instructions
4849         instead of setting them to OP_NOP since nops can't have registers
4850         set.
4852 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4854         * aot-compiler.c (mono_compile_assembly): Split this huge function into
4855         smaller parts. Add 'nodebug' option to prevent generation of DWARF debug
4856         info. Strip 'mapping symbols' on ARM.
4858         * iltests.il.in (test_0_fconv_to_i): Disable this on ARM too.
4859         
4860         * genmdesc.pl: Applied patch by Martin Fuzzey (mfuzzey@parkeon.com). Sync
4861         this with the native genmdesc.
4863 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4865         * aot-runtime.c:  Fixing the MSVC build.
4867         Code is contributed under MIT/X11 license.
4869 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
4871         * mini-llvm.c (mono_llvm_emit_method): Pass i1/i2 arguments as i4 since 
4872         JITted code depends on it.
4874 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4876         * aot-compiler.c: Use new MonoGenericParam accessors.
4878 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4880         Reduce memory usage and improve correctness wrt MonoGenericParam
4881         * aot-runtime.c (decode_klass_ref): Simplify generic parameter
4882         handing.  Avoid allocating MonoGenericParams, but use the ones in
4883         the container itself.
4885 2009-04-07  Miguel de Icaza  <miguel@novell.com>
4887         * tasklets.c: Return exceptions in the out argument.
4889 2009-04-08  Zoltan Varga  <vargaz@gmail.com>
4891         * mini-llvm.c (mono_llvm_emit_method): Fix alignment in the LOCALLOC_IMM
4892         opcode. Use pointer types in more places instead of casting them to 
4893         integers.
4895         * mini-llvm-cpp.cpp (mono_llvm_create_ee): Create a pass manager to run
4896         optimizations.
4897         (mono_llvm_optimize_method): New helper function to optimize a method.
4899         * method-to-ir.c (mono_emit_widen_call_res): Extract the call result 
4900         widening code so it could be called from more places.
4901         (mono_method_to_ir): Call mono_emit_widne_call_res () in several more
4902         code paths in the call opcodes.
4904 Mon Apr 6 14:19:54 CEST 2009 Paolo Molaro <lupus@ximian.com>
4906         * exceptions-amd64.c, mini-amd64.h: amd64 support code for continuations.
4908 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4910         * dwarfwriter.c: Use _ to separate class name 
4911         components as gdb can't handle '.'. Represent reference variables
4912         as 'class <NAME>&'.
4913         
4914         * mini.h (MonoCompile): Add locals_min_stack_offset/locals_max_stack_offset.
4916         * mini-amd64.c (mono_arch_allocate_vars): Save min/max stack offset.
4917         
4918         * mini-gc.c: New file, contains the SGEN GC related parts of the JIT.
4920         * gc-test.cs: New file with GC stack marking tests.
4921         
4922         * mini-arm.c (mono_arch_output_basic_block): Fix int->float conversion of
4923         negative numbers for vfp.
4925         * basic-float.cs: Add a test.
4926         
4927 Mon Apr 6 14:12:10 CEST 2009 Paolo Molaro <lupus@ximian.com>
4929         * exceptions-x86.c, mini-x86.h: x86 support code for continuations.
4931 Mon Apr 6 14:09:53 CEST 2009 Paolo Molaro <lupus@ximian.com>
4933         * tasklets.h, tasklets.c, mini.h, mini.c, Makefile.am: arch-indep
4934         part of tasklet/continuation support.
4936 2009-04-05  Zoltan Varga  <vargaz@gmail.com>
4938         * mini-llvm.c (mono_llvm_emit_method): Move the handling of
4939         amd64 opcodes inside an ifdef.
4941         * dwarfwriter.c: Emit inheritance information for classes, emit fields
4942         of complex types.
4943         
4944         * dwarfwriter.c (emit_type): Emit the class info for classes.
4946 2009-04-04  Zoltan Varga  <vargaz@gmail.com>
4948         * Makefile.am (AM_CXXFLAGS): Add GLIB_CFLAGS to this.
4950         * mini-llvm-cpp.h: New header file for mini-llvm-cpp.cpp.
4952         * mini-llvm.c: Remove unused fields from EmitContext, fix memory leaks.
4954         * ssa.c (mono_ssa_compute): Fix some memory leaks.
4956 2009-04-03  Zoltan Varga  <vargaz@gmail.com>
4958         * mini.c mini-amd64.c method-to-ir.c: Use COMPILE_LLVM in a few more places.
4960         * mini-llvm.c: Update comments.
4962         * mini.h (COMPILE_LLVM): New macro.
4964         * decompose.c (mono_decompose_opcode): Use the COMPILE_LLVM macro.
4966         * ssa.c (mono_ssa_compute): Ditto.
4967         
4968         * unwind.c (mono_unwind_get_ops_from_fde): New helper function to extract
4969         the unwind ops from a DWARF FDE.
4971         * mini-llvm.c: Implement generation of unwind info for LLVM compiled
4972         methods by extracting the dwarf unwind ops from the unwind info generated
4973         by LLVM.
4974         
4975         * mini-llvm.c (mono_llvm_emit_method): Enable support for non-IMT virtual
4976         calls.
4978         * mini-amd64.c (mono_arch_get_vcall_slot): Handle more kinds of the SIB
4979         addressing modes.
4981 2009-04-02  Zoltan Varga  <vargaz@gmail.com>
4983         * Makefile.am (llvm_sources): Enable this.
4985         * mini.c (mini_method_compile): Add support for compiling with LLVM, 
4986         failing back to the JIT if something cannot be handled.
4988         * mini-amd64.c (mono_arch_emit_call): Emit the arguments more simple when
4989         compiling with LLVM.
4991         * decompose.c (mono_decompose_opcode): Avoid decomposing some opcodes when
4992         compiling with LLVM.
4994         * method-to-ir.c (mono_method_to_ir): Avoid decomposing SWITCH when 
4995         compiling with LLVM.
4997         * mini-ops.h: Add a few opcodes needed by LLVM.
4999         * dwarfwriter.c (mono_dwarf_writer_emit_method): Avoid crashes if the method
5000         has no unwind info.
5002         * mini-llvm.c mini-llvm-cpp.cpp: New files containing the experimental llvm
5003         backend.
5005         * mini-arm.c (mono_arch_output_basic_block): Fix the ARM_FPU_NONE build.
5007         * mini-arm.h mini-arm.c cpu-arm.md: Finish VFP support.
5009 2009-04-01  Mark Probst  <mark.probst@gmail.com>
5011         * regalloc.h, mini-codegen.c: Make vassign members gint32 to fix
5012         ridiculously large methods.
5014 2009-03-31  Martin Baulig  <martin@ximian.com>
5016         * debug-debugger.c (debugger_remove_breakpoint): Call
5017         mono_debugger_remove_class_init_callback ().
5019 2009-03-31  Zoltan Varga  <vargaz@gmail.com>
5021         * aot-compiler.c (mono_compile_assembly): Call img_writer_emit_start ()
5022         right before emitting code, not at the start.
5024         * mini.c (mono_postprocess_patches): Extract this into a separate function
5025         from mono_codegen ().
5027         * ssa.c (mono_ssa_compute): Set ins->klass for every PHI node, handle
5028         byref types correctly.
5030 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
5032         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix a crash introduced
5033         by the last change.
5035 2009-03-29  Zoltan Varga  <vargaz@gmail.com>
5037         * mini-amd64.c (mono_arch_output_basic_block): Emit a few nops before 
5038         indirect calls, this avoids problems where get_vcall_slot () would get
5039         confused by the native code for the instruction preceeding the call.
5040         (mono_arch_get_vcall_slot): Simplify this.
5041         (mono_arch_emit_imt_argument): Remove this, it is no longer needed.
5043         * mini-ops.h: Fix the definitions of the OP_IA64 opcodes, since the local
5044         register allocator now seems to depend on them instead of the data in
5045         cpu-<ARCH>.md.
5047         * mini.c (mini_method_compile): Throw the correct type of exception if
5048         mono_method_get_header () fails because of a loading error.
5050 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
5052         * mini.c (mini_method_compile): Clear the loader error if the method
5053         header cannot be decoded.
5055         * mini-trampolines.c (mono_magic_trampoline): Handle generic virtual 
5056         interface methods on proxies correctly.
5058         * dwarfwriter.c (mono_dwarf_writer_emit_method): Fix handling of the
5059         this argument for vtype methods. Add precise liveness info for arguments.
5061         * mini-codegen.c (mono_print_ins_index): Print the vreg of the
5062         LIVERANGE_START/END opcodes.
5064         * method-to-ir.c (mono_spill_global_vars): Fix liverange calculation
5065         for arguments and values in registers.
5067 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
5069         * method-to-ir.c (mono_method_to_ir): Disable tail calls for calls which
5070         return a valuetype. Fixes #487518.
5072         * iltests.il: Add a test.
5073         
5074         * aot-compiler.c: Use mono_thread_create () to create helper threads.
5076         * mini-trampolines.c (mono_delegate_trampoline): Handle static delegates
5077         closed over a null reference correctly.
5079 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5081         * method-to-ir.c (mono_handle_global_vregs): Fix support for ternary ops.
5083 2009-03-25  Mark Probst  <mark.probst@gmail.com>
5085         * mini-codegen.c (mono_local_regalloc): Don't let sregs get
5086         allocated to the same registers as fixed sregs.
5088 2009-03-24  Mark Probst  <mark.probst@gmail.com>
5090         * mini-ops.h: New ternary ATOMIC_CAS ops replace the old
5091         ATOMIC_CAS_IMM ops.
5093         * method-to-ir.c: Handle more cases for
5094         Interlocked.CompareExchange.
5096         * cpu-x86.md, mini-x86.c, mini-x86.h, cpu-amd64.md, mini-amd64.c,
5097         mini-amd64.h, cpu-ppc.md, cpu-ppc64.md, mini-ppc.c, mini-ppc.h:
5098         ATOMIC_CAS implementations for x86, AMD64, PPC and PPC64.
5100 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5102         * aot-runtime.c (decode_method_ref): Fix a warning.
5104         * unwind.c (mono_unwind_frame): Ditto.  
5106 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
5108         * aot-compiler.c (arch_emit_unbox_trampoline): Fix the binary writer support.
5109         (mono_compile_assembly): Enable the binary writer for full-aot as well.
5111         * image-writer.c (do_reloc): Add support for the JUMP24 relocation,
5112         fix the handling of large values in the ALU_PC_G0_NC relocation.
5114 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
5116         * local-propagation.c method-to-ir.c local-propagation.c: Fix warnings.
5118 2009-03-22  Mark Probst  <mark.probst@gmail.com>
5120         * method-to-ir.c (mono_spill_global_vars): Support for ternary
5121         ops.
5123 2009-03-22  Mark Probst  <mark.probst@gmail.com>
5125         * method-to-ir.c: MINI_OP3 needs a comma.
5127         * method-to-ir.c, mini.h, mini.c: Remove
5128         mono_init_op_sreg_counts ().
5130 2009-03-22  Zoltan Varga  <vargaz@gmail.com>
5132         * mini-arm.c (mono_arch_output_basic_block): Fix aot support in
5133         OP_JMP.
5134         
5135         * mini-arm.c (mono_arch_build_imt_thunk): Disable the !fail_tramp
5136         assertion.
5138         * mini-ops.h: Fix arguments of the MEMINDEX opcodes.
5140         * mini-amd64.c (mono_arch_build_imt_thunk): Simplify the fail handling
5141         code somewhat.
5143 2009-03-21  Mark Probst  <mark.probst@gmail.com>
5145         * cfold.c, cprop.c, decompose.c, genmdesc.c, helpers.c, ir-emit.h,
5146         liveness.c, local-propagation.c, method-to-ir.c, mini-codegen.c,
5147         mini.c, mini.h, simd-intrinsics.c, ssa.c: Support for ternary IR
5148         operations.
5150 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5152         * driver.c: Change location of gc_wrapper.h.
5154         * method-to-ir.c (mono_find_block_region): Handle try clauses nested
5155         inside finally clauses correctly. Fixes #485721.
5157         * mini.c (mono_find_spvar_for_region): This needs to handle try regions
5158         after the change above.
5160         * exceptions.cs: Add a test.
5161         
5162 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5164         * unwind.c (mono_unwind_ops_encode): Increase the size of the encode buffer.
5166         * mini-amd64.c (mono_arch_emit_epilog): Remove the encoding of stack size
5167         into cfg->used_int_regs, it is not needed with the dwarf unwinder.
5168         (mono_arch_compute_omit_fp): Remove the emit_epilog () workaround.
5170         * mini-amd64.c (mono_arch_compute_omit_fp): Add another check to avoid hitting
5171         the stack_alloc_size < (1 << 16) assertion in emit_prolog ().
5173 2009-03-19  Sebastien Pouliot  <sebastien@ximian.com>
5175         * method-to-ir.c: Allow CoreCLR to throw FieldAccessException. 
5176         Simplify logic for ensure_method_is_allowed_to_call_method. 
5177         Handle wrappers on callers.
5179 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5181         * Makefile.am (fullaotcheck): Don't run the generics tests, some of
5182         them don't run yet.
5184         * basic-simd.cs: Fix the names of some test methods.
5186 2009-03-18  Geoff Norton  <gnorton@novell.com>
5188         * mini.c: Only chain sigfpe if it wasn't generated in mangaed code.
5190 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5192         * dwarfwriter.c (token_handler): Fix a crash caused by the last change.
5194 2009-03-17  Jb Evain  <jbevain@novell.com>
5196         * driver.c: remove now uneeded call to mono_gc_base_init before
5197         mono_profiler_load.
5199 2009-03-17  Jb Evain  <jbevain@novell.com>
5201         * dwarfwriter.c (token_handler): handle more cases.
5203 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com> 
5205         * method-to-ir.c: Remove more dead code (that was required only
5206         because of method_is_safe). Fix compiler warnings.
5208 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5210         * method-to-ir.c: Remove unneeded/useless method_is_safe
5211         http://lists.ximian.com/archives/public/mono-devel-list/2009-March/031404.html
5213 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5215         * mini.c (mini_method_compile): Print the method been compiled with
5216         verbose level 1 instead of 3 as this helps a lot debugging JIT crashes
5217         for people not familiar with the runtime.
5219 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5221         * mini-exceptions.c (get_generic_info_from_stack_frame): Avoid returning
5222         a managed object which is later put into a GList. Return its class instead.
5224         * mini.c (mono_allocate_stack_slots_full): Avoid sharing ref and non-ref
5225         stack slots when using sgen.
5227 2009-03-16  Zoltan Varga  <vargaz@gmail.com>
5229         * dwarfwriter.c (emit_line_number_info): Really fix the eglib build.
5231 2009-03-14  Zoltan Varga  <vargaz@gmail.com>
5233         * local-propagation.c (reg_is_softreg_no_fpstack): Use >= instead of
5234         > so it works on the first vreg as well.
5236 2009-03-13  Zoltan Varga  <vargaz@gmail.com>
5238         * dwarfwriter.c (emit_line_number_info): Disable an assert which seems to
5239         trigger randomly.
5241         * aot-compiler.c: Get rid of xdebug_lock (), use the loader lock instead.
5242         
5243         * dwarfwriter.c (emit_line_number_info): Fix eglib build as eglib doesn't
5244         implement GArray.
5246 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5248         * dwarfwriter.c (emit_line_number_info): Optimize the computation of the
5249         native->IL offset mapping.
5251 2009-03-11  Zoltan Varga  <vargaz@gmail.com>
5253         * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
5255         * basic.cs: Add a test.
5257 2009-03-11  Mark Probst  <mark.probst@gmail.com>
5259         * mini-x86.c (mono_arch_output_basic_block): Use different
5260         registers in case the ones we want to overwrite are used by the
5261         other operand.  Fixes regression in #480807.
5263 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5265         * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
5267         * dwarfwriter.c (emit_line_number_info): The line number info for
5268         IL code was off by one. Fix that.
5270         * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
5271         stack.
5273 2009-03-09  Mark Probst  <mark.probst@gmail.com>
5275         Contributed under the terms of the MIT/X11 license by Steven
5276         Munroe <munroesj@us.ibm.com>.
5278         * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
5279         Fixes #483462.
5281 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5283         * dwarfwriter.c (token_handler): Decode method references in non-wrappers
5284         as well.
5286 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5288         * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
5289         the delegate ctor handling code. Fixes #482638.
5290         
5291         * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
5292         #481458.
5294         * iltests.il.in: Add a test.
5295         
5296         * mini-darwin.c (mono_chain_signal): Remove this, it is already in
5297         mini-posix.c.
5299 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5301         * mini-trampolines.c (mono_create_jump_trampoline): If the method
5302         is shared generic code, return the trampoline, even if the method
5303         has already been compiled.  Fixes #479763.
5305         * mini.c, mini.h: New function
5306         mono_jit_find_compiled_method_with_jit_info() which is the same as
5307         mono_jit_find_compiled_method() but also returns the jit info.
5309 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5311         * method-to-ir.c (mono_method_to_ir): Only force the vtable var
5312         for methods which actually have one.  For all other methods, make
5313         sure the this argument var is live the whole method.
5315         * mini.c (mini_method_compile): Every shared method has a
5316         this/vtable/mrgctx info.  Fixes #480807.
5318 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5320         * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
5321         generic/imt thunks where some entries branch through the vtable,
5322         while other entries branch directly.
5324 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5326         * mini-darwin.c (mono_chain_signal): Define this to fix the build.
5328         * mini-windows.c: Ditto.
5329         
5330         * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
5331         ctors.
5333 2009-03-04  Zoltan Varga  <vargaz@gmail.com>
5335         * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
5336         down an assert.
5338 2009-03-04  Mark Probst  <mark.probst@gmail.com>
5340         * method-to-ir.c: Don't inline methods that use JMP.  Fixes
5341         #481403.
5343 2009-03-04  Mark Probst  <mark.probst@gmail.com>
5345         * exceptions-x86.c: Include debug-mini.h - fixes build.
5347 2009-03-04  Martin Baulig  <martin@ximian.com>
5349         * debug-mini.c: Clean up the exception API and add documentation.
5350         (mono_debugger_handle_exception): New public method; this is
5351         called when throwing an exception or encountering an unhandled one.
5352         (mono_debugger_call_exception_handler): Formerly known as
5353         mono_debugger_handle_exception(); this is used to tell the
5354         debugger that we're about to invoke an exception handler.
5356 2009-03-04  Martin Baulig  <martin@ximian.com>
5358         * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
5359         ../metadata/mono-debug-debugger.c; save and reset exception state.
5361 2009-03-02  Martin Baulig  <martin@ximian.com>
5363         * debug-mini.c: Moved the debugger exception handling here from
5364         ../metadata/mono-debug-debugger.c.
5366         * debug-mini.h
5367         (MonoDebuggerExceptionAction): New exception typedef.
5369         * debug-mini.c
5370         (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
5372         * exceptions-amd64.c
5373         (mono_amd64_throw_exception): Use the new debugger exception
5374         handling code.
5376         * mini-exceptions.c
5377         (mono_handle_exception_internal): Don't call
5378         mono_debugger_unhandled_exception() here.
5380 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5382         * mini.c aot-compiler.c: Update after the changes to 
5383         mono_marshal_get_runtime_invoke ().
5385         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): 
5386         Virtual generic methods might not have method->slot set, work around
5387         that.
5389         * generics.cs: Add a test.
5391 2009-03-02  Geoff Norton  <gnorton@novell.com>
5393         * mini.c:
5394         * driver.c: Allow signal chaining of SIGFPE as well.
5396 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5398         * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
5399         this since it now receives the method not its generic context in the
5400         IMT reg.
5402         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
5403         generic/imt thunks where some entries branch through the vtable, while
5404         other entries branch directly.
5406         * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
5408         * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call 
5409         support for interface methods as well.
5411         * mini-trampolines.c: Add support for virtual generic methods in interfaces
5412         using the normal IMT thunks.
5414         generics.cs: Add new tests.
5415         
5416         * method-to-ir.c (mono_method_to_ir): Pass the method instead of
5417         the generic inst to the generic imt thunks. This fixes AOT support, 
5418         improves consistency with the normal IMT thunks, and makes it easier to
5419         add support for interface generic virtual methods later.
5421         * mini-trampolines.c (mono_magic_trampoline): Ditto.    
5422         
5423 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
5425         * driver.c (mono_set_signal_chaining): New public API function to enable
5426         signal chaining on POSIX platforms.
5428         * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland 
5429         (si@lindenlab.com) to implement signal chaining. The original patch was
5430         contributed under the MIT X/11 license:
5431         https://bugzilla.novell.com/show_bug.cgi?id=318894
5433 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5435         * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
5436         too until it can be made to run on amd64.
5438 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5440         * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
5441         to  get_generic_context_from_code () + get_call_info () if possible.
5443 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5445         * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
5446         suspend-on-sigsegv functionality.
5448         * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
5449         to suspend when a native SIGSEGV is received. This is useful for debugging
5450         crashes which don't happen under gdb, since a live process contains more
5451         information than a core file.
5453         * mini-exceptions.c (mono_print_thread_dump): Use 
5454         MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
5456         * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
5458         * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
5459         
5460         * basic-float.cs: Disable the tests which currently fail on amd64.
5462         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null 
5463         value to mono_arch_patch_callsite () to fix crashes.
5464         
5465         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
5467 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5469         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
5470         nop code by patching the call address to point to the nullified class init
5471         trampoline, as the former does not seem to be safe on SMP machines.
5473 2009-02-23  Mark Probst  <mark.probst@gmail.com>
5475         * mini-ops.h: Fix the argument types for a few x86 opcodes where
5476         they were wrong.
5478 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5480         * basic-float.cs basic-calls.cs: Fix warnings.
5482 2009-02-22  Mark Probst  <mark.probst@gmail.com>
5484         * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
5485         correct frame pointer in the LMF.  Should fix #478394.
5487 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5489         * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
5491         * image-writer.c: Make the binary writer less verbose.
5493 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5495         * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
5496         are called from runtime invoke wrappers.
5498 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5500         * cpu-ppc.md (store_memindex): Increase the size of this.
5502 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
5504         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
5506         * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
5508         * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
5509         OP_LCONV_TO_R_UN.
5511         Last fix for of #467201.
5514 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
5516         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
5518         * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
5519         and long_conv_to_r8_2:
5521         Fixed part of #467201.
5523 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
5525         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
5527         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
5528         conversion to 32 bits.
5530         * cpu-x86.md: Increase the size of int_conv_to_r4.
5532         * basic-float.cs: Add a test for this.
5534         Fixed part of #467201.
5536 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
5538         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
5540         * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
5541         conversion to 64 bits.
5543         * basic-float.cs: Add a test for this.
5545         Fixed part of #467201.
5547 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
5549         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
5551         * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
5552         This behavior is compatible with MS.
5554         * iltest.il.in: Add a test for this.
5556         Fixed part of #467201.
5558 2009-02-20 Rodrigo Kumpera  <rkumpera@novell.com>
5560         Extracted from a patch by Kornel Pal <kornelpal@gmail.com>.
5562         * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
5563         change the precision of the value.
5565         * cpu-x86.md: Define len for float_conv_to_r4.
5567         * basic-float.cs: Add a test for this.
5569         Fixed part of #467201.
5571 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5573         * mini.c: Adjust locking order to the new semantics where the loader lock
5574         comes first.
5576 2009-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
5578         * aot-runtime.c:
5579         * mini-amd64.c:
5580         * mini-arm.c:
5581         * mini-ia64.c:
5582         * mini-mips.c:
5583         * mini-ppc.c:
5584         * mini-sparc.c:
5585         * mini-trampolines.c:
5586         * mini-x86.c:
5587         * mini.c:
5588         * tramp-alpha.c:
5589         * tramp-amd64.c:
5590         * tramp-arm.c:
5591         * tramp-hppa.c:
5592         * tramp-ia64.c:
5593         * tramp-mips.c:
5594         * tramp-ppc.c:
5595         * tramp-s390.c:
5596         * tramp-s390x.c:
5597         * tramp-sparc.c:
5598         * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
5600 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5602         * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
5603         as it is incorrect.
5605 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5607         * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
5608         for cctors if needed.
5610 2009-02-17  Mark Probst  <mark.probst@gmail.com>
5612         * mini-ppc.c: Fix build on Darwin.
5614 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5616         * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
5617         version instead of 3 as valgrind doesn't like version 3.
5619         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
5621         * aot-compiler.c (mono_aot_method_hash): New function to return a hash
5622         usable for hashing methods.
5623         (emit_extra_methods): Use the new hash to avoid putting every method in the
5624         same hash bucket.
5626         * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
5628         * aot-runtime.c (can_method_ref_match_method): New function to quickly check
5629         whenever a method ref could match a method.
5630         
5631         * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
5632         test to fail.
5633         
5634         * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded 
5635         methods refs.
5637         * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
5639         * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
5640         the encoding buffer.
5642         * method-to-ir.c (mono_method_check_inlining): Avoid calling 
5643         mono_method_get_header () on inflated methods as an optimization.
5645 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5647         * ssa.c (fold_ins): Fix another crash if the instruction following the
5648         switch was optimized away.
5650 2009-02-16  Mark Probst  <mark.probst@gmail.com>
5652         Contributed under the terms of the MIT/X11 license by Steven
5653         Munroe <munroesj@us.ibm.com>.
5655         * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
5657 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5659         * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
5660         around the mono_domain_alloc calls, it is now done by the functions
5661         themselves.
5663         * aot-compiler.c (compile_method): Only add wrappers referenced by
5664         the method if compiling with full AOT.
5665         (mono_compile_assembly): Error out if --aot=full is specified on
5666         a platform where it is not supported.
5668         * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
5669         on ARM too.
5671         * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
5672         AOT support.
5674         * aot-runtime.c (load_named_code): Handle 
5675         mono_arm_throw_exception_by_token.
5677         * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
5679         * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
5680         unaligned.
5682         * Makefile.am (fullaotcheck): Exit if a test fails.
5684         * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
5685         on ARM.
5686         (mono_compile_assembly): Handle the assembler failing.
5688         * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
5689         accepting subsections of .bss.
5691         * ssa.c (visit_inst): Fix a crash if the instruction following a switch
5692         was optimized away.
5694         * aot-compiler.c: Remove some unused includes.
5695         
5696         * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
5697         now in MonoImageWriter.
5699         * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
5700         code sequence which matches a non-virtual call. Fixes #472654.
5702 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5704         * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
5705         xdebug code.
5706         
5707         * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
5708         use the image/dwarf writers directly.
5710         * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
5711         field.
5713         * aot-compiler.c (MonoAotCompile): Remove fields which are now in
5714         MonoDwarfWriter.
5716         * image-writer.h: Fix some typos.
5718         * dwarfwriter.h dwarfwriter.c: New files.
5719         
5720         * aot-compiler.c: Extract the DWARF info writing functionality into a 
5721         separate module.
5723         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
5724         argument to return unwind info.
5726         * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
5728         * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
5729         
5730         * aot-runtime.c (decode_method_ref): Add a case for 
5731         MONO_AOT_METHODREF_WRAPPER_NAME.
5733         * mini.h: Add constants for the magic numbers used in encode_method_ref ()
5734         for AOT.
5736         * aot-compiler.c (encode_method_ref): Use the new constants.
5738         * aot-runtime.c (decode_method_ref): Ditto.
5740         * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
5741         be compiled, not the icall itself.
5743 2009-02-14  Zoltan Varga  <vargaz@gmail.com>
5745         * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
5746         using decode_method_ref ().
5748         * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
5749         convert it to an in32. Fixes #475859.
5751         * arrays.cs: Add a test.
5753 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
5755         * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in 
5756         OP_LCONV_TO_U2.
5758         * basic-long.cs: Add a test.
5760 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5762         * mini-x86.c, mini-x86.h: Very simple frame pointer removal.  We
5763         remove the frame pointer in leaf methods which don't receive any
5764         arguments, don't throw exceptions and don't do dynamic stack
5765         allocations.
5767 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
5769         * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
5770         the fail_tramp changes. Hopefully fixes #475132.
5772 2009-02-12  Rodrigo Kumpera  <rkumpera@novell.com>
5774         * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
5775         instead of mono_metadata_signature_dup_full.
5777 2009-02-12  Zoltan Varga  <vargaz@gmail.com>
5779         * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
5780         for processing jump tables. Fixes #473787.
5782 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5784         * mini-generic-sharing.c: mini_method_get_context() just calls
5785         mono_method_get_context_general() now.
5787         * mini.c, mini.h: Moved get_object_generic_inst(),
5788         construct_object_context_for_method() and
5789         mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
5791 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5793         * branch-opts.c (mono_if_conversion): Handle the case where the merged 
5794         basic block fell through to its successor bblock without a branch. Fixes
5795         #474718.
5797         * iltests.il.in: Add a test.
5798         
5799         * aot-compiler.c (encode_method_ref): Encode methods of array types.
5800         (can_encode_patch): We can now handle arrays of generic parameters and
5801         array methods.
5803         * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
5805         * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
5806         the AOT file to avoid some #ifdefs in aot-runtime.c
5808         * mini.h: Bump AOT file format version.
5810 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5812         * Makefile.am (fullaotcheck): Make this run the tests.
5814         * aot-compiler.c: Make the printing of skipped methods runtime configurable.
5816 2009-02-10  Mark Probst  <mark.probst@gmail.com>
5818         * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
5819         individually.  Fixes #473482.
5821 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5823         * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
5825 2009-02-09  Jeffrey Stedfast  <fejj@novell.com>
5827         * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
5828         (mono_compile_assembly): Hush compile warnings about
5829         uninitialized [tmp_]outfile_name variables in the !use_bin_writer
5830         code path.
5832 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5834         * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
5836         * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
5838         * aot-compiler.c: Fix arm support.
5840         * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
5841         img_writer_emit_unset_mode () function.
5843         * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
5844         (mono_unwind_get_dwarf_pc_reg): Ditto.
5846         * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
5847         Move almost all platform specific code to a set of arch_ functions, 
5848         and document them to ease porting.
5849         
5850         * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
5852         * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
5854         * aot-compiler.c: Extract the image writing functionality into a separate
5855         module to reduce the size of this file.
5857 2009-02-09  Geoff Norton  <gnorton@novell.com>
5859         * mini-s390.c: Fix the signature of emit_sig_cookie.
5861 2009-02-09  Zoltan Varga  <vargaz@gmail.com>
5863         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
5865         * aot-runtime.c (is_shared_got_patch): Ditto.
5867         * aot-runtime.c (load_named_code): Cope with the fact that 
5868         decode_got_entry () won't decode the patch fully if its corresponding got
5869         entry is already filled.
5870         
5871         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): 
5872         Initialize *ji.
5873         (mono_arch_create_monitor_exit_trampoline_full): Ditto.
5875         * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
5876         as the moving pointer instead of 'buf' for consistency with the rest of the
5877         codebase.
5878         (mono_arch_create_monitor_exit_trampoline): Ditto.
5880         * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
5881         generic_class_init trampolines.
5882         (add_generic_class): Extract some code from add_generic_instances () into a
5883         separate function so it can be called from other places too.
5884         (compile_method): Call add_generic_class () for the classes of inflated methods
5885         referenced by the method.
5886         (can_encode_patch): Allow references to generic parameters.
5888         * aot-runtime.c: Add support the patches required by the new trampolines.
5889         
5890         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
5891         support.
5893         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
5894         full-aot support.
5896         * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
5897         this from get_throw_pending_exception, make the signature full aot compatible.
5899         * Makefile.am (fullaotcheck): New target to run full-aot tests.
5901         * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
5903         * exceptions.cs: Add a test.
5905 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5907         * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
5908         use the DWARF_DATA_ALIGN constant instead.
5910         * exception-<ARCH>.c: Update after the above change.
5912         * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
5913         dwarf unwinder.
5915         * mini-arm.c: Enable the dwarf unwinder.
5917         * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
5918         instead of mono_class_setup_vtable ().
5920 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5922         * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
5923         dwarf unwinder.
5925         * mini-x86.h: Enable the dwarf unwinder.
5927 2009-02-06  Raja R Harinath  <harinath@hurrynot.org>
5929         Fix mcs/tests/test-7.cs
5930         * mini-amd64.c (mono_arch_allocate_vars): Revert change from
5931         2009-02-03.
5933 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5935         * mini.c (print_jit_stats): Remove some unused statistics.
5937 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5939         * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
5941 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5943         * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
5944         the method we get from mono_object_get_virtual_method() because
5945         that function does it properly, now.
5947 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5949         * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
5950         opcodes. Fixes #472775.
5952 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5954         * mini-exceptions.c (ves_icall_get_frame_info): Account for the
5955         fact that mono_find_jit_info() sometimes returns the context
5956         corresponding to the jit info in new_ctx.  Fixes #472600.
5958 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5960         * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
5961         mini-s390.c: Use mono_class_enum_basetype () instead of accessing
5962         klass->enum_basetype directly.
5964         * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
5965         enum subtypes.
5967         * unwind.c: Avoid 0 sized arrays.
5969 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5971         * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
5972         size on systems with 64k pages. Fixes #471389.
5974 2009-02-04  Mark Probst  <mark.probst@gmail.com>
5976         Contributed under the terms of the MIT/X11 license by Steven
5977         Munroe <munroesj@us.ibm.com>.
5979         * mini-ppc.c (mono_arch_output_basic_block): Generate better code
5980         for LOADI4_MEMBASE.  Use addi instead of addic if it's not
5981         necessary.
5983 2009-02-04  Mark Probst  <mark.probst@gmail.com>
5985         Contributed under the terms of the MIT/X11 license by Steven
5986         Munroe <munroesj@us.ibm.com>.
5988         * exceptions-ppc.c (mono_arch_get_restore_context): Code size
5989         comparison fix.
5991         * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
5992         The trampoline can be longer on PPC64.
5994 2009-02-04  Mark Probst  <mark.probst@gmail.com>
5996         Contributed under the terms of the MIT/X11 license by Steven
5997         Munroe <munroesj@us.ibm.com>.
5999         * mini-ppc.c: Compiler warning fixes and trivial code
6000         simplifications.
6002 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6004         * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
6005         ins->dreg which could be a hardware register, not a vreg.
6007         * aot-compiler.c (emit_method_dwarf_info): Ditto.
6008         
6009         * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
6010         (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
6012         * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
6013         
6014         * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
6015         ->dreg, that is not the vreg we are looking for.
6017         * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
6019         * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
6020         LIVERANGE_END.
6022         * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
6023         strange crashes.
6025 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6027         * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
6029         * aot-compiler.c (emit_line_number_info): Fix line number emission when
6030         the line diff is 0.
6032         * aot-compiler.c: Add xdebug support on x86.
6034         * unwind.c: Add x86 support.
6035         
6036         * aot-compiler.c (emit_exception_debug_info): Control the emission of
6037         unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
6039         * mini.c (mini_method_compile): Ditto.
6040         
6041         * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
6042         the variable index.
6044         * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
6045         which mimic .push_section/.pop_section in GAS.
6046         
6047         * aot-compiler.c: Emit precise live range information for variables.
6049         * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
6051         * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
6052         the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
6053         them.
6055         * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
6056         the live ranges of variables.
6058         * mini.h (struct MonoMethodVar): Add two fields containing the live range
6059         of the variable in terms of native offsets.
6061 2009-02-03  Rodrigo Kumpera  <rkumpera@novell.com>
6063         * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
6064         
6065 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6067         Contributed under the terms of the MIT/X11 license by Steven
6068         Munroe <munroesj@us.ibm.com>.
6070         * exceptions-ppc.c (restore_regs_from_context): Correct operand
6071         order (offset then base reg) for ppc_load_multiple_regs.
6072         (emit_save_saved_regs) Correct operand order for
6073         ppc_store_multiple_regs.
6074         (mono_arch_get_call_filter): Correct operand order for
6075         ppc_load_multiple_regs.
6077         * mini-ppc.c (emit_memcpy): Fix operand order for
6078         ppc_load_reg_update and ppc_store_reg_update.
6079         (mono_arch_output_basic_block): Correct operand order for ppc_lha.
6080         (mono_arch_emit_epilog): Correct operand order for
6081         ppc_load_multiple_regs.
6083         * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
6084         order for ppc_store_multiple_regs and ppc_load_multiple_regs.
6086 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6088         * cpu-ppc64.md: Fixed storer4_memindex length.
6090 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6092         * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
6093         line number info.
6094         
6095         * aot-compiler.c (emit_line_number_info): Optimize this.
6097 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6099         * aot-compiler.c: Disassemble tokens in the IL disassembly.
6100         
6101         * aot-compiler.c: Add debug info for methods without debug info by
6102         emitting an IL file and having the line number info referencing that file.
6104         * aot-compiler.c: Optimize the size of the generated line number info.
6106         * aot-compiler.c: Emit line number info in xdebug mode.
6108         * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
6109         million arguments.
6111 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6113         * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
6115         * driver.c (mono_main): Enable debugging support automatically if XDEBUG
6116         is used.
6118 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
6120         * basic-calls.cs: Test for the weird crash found on arm.
6121         
6122 2009-01-31  Rodrigo Kumpera  <rkumpera@novell.com>
6124         * cpu-arm.md: Increase the size of storer8_membase_reg and
6125         loadr8_membase_reg to 24 bytes to accomodate the extra add.
6127         * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
6128         OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
6129         reg to LR otherwise we'll be loading/storing from just the offset.
6131 2009-01-30  Miguel de Icaza  <miguel@novell.com>
6133         Question: if we are storing gint32's inside the "*native_offset",
6134         should we change the signature to "gint32 *native_offset" to
6135         ensure that we do not have type definition problems?
6136         
6137         * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
6138         an int * as this is what the other function expects, causes
6139         problems with Freescale's compiler that defined int32_t to be a
6140         long and makes int incompatible 
6142 2009-01-30  Miguel de Icaza  <miguel@novell.com>
6144         * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
6145         filename conflict with bjam.
6147 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6149         * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
6150         as it might use decomposed ops.
6152 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6154         * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
6156         * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
6157         is defined.
6159         * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
6161         * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
6162         offsets.
6164         * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
6165         way registers are stored in MonoContext on arm.
6167         * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
6168         instead of locking so mono_get_cached_unwind_info () becomes signal safe.
6170         * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
6172         * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
6174         * mini.c (mini_init): Register mono_isfinite.
6176         * jit-icalls.c (mono_isfinite): New jit icall.
6178         * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
6179         
6180         * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
6181         set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
6182         the parent frame.
6184 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6186         * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
6187         separate frame and stack pointers, so we must use FP to find the register
6188         spill area.
6189         The FP reg is retrieved from the MonoContext::regs array.
6191 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6193         * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
6194         as FPA requires it.
6196 2009-01-30  Rodrigo Kumpera  <rkumpera@novell.com>
6198         * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
6199         return R4 and R8 when not running under softfloat.
6201         Fixes basic-calls.exe
6203 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6205         * mini-arm.c: Implement some overflow opcodes.
6207 2009-01-29  Miguel de Icaza  <miguel@novell.com>
6209         * ssa.c: handle another alloca.h
6211         * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
6212         PLATFORM_WIN32 for detecting if we have sigaction.   Instead use
6213         MONO_ARCH_USE_SIGACTION. 
6215         * aot-runtime.c, mini-exceptions.c: Replace platform define with
6216         capability defines.
6218         * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
6220         * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
6221         PPC targets as sigaction does not exist on all platforms, define
6222         this on a per-platform basis.
6224         Instead of erroring out if the platform is not defined, include
6225         mini-ppc-os.h, and expect that the OS specific setting provides
6226         the required information.   
6228 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6230         * aot-compiler.c: Fix --enable-minimal=aot.
6232 2009-01-30  Zoltan Varga  <vargaz@gmail.com>
6234         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
6235         previous change.
6237 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6239         * exceptions-arm.c: Fix warnings.
6241         * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
6242         ARM.
6244         * mini-x86.c: Fix --enable-minimal=jit build.
6246         * mini.c: Really fix --enable-minimal=jit build.
6247         
6248         * mini.c (construct_object_context_for_method): Move this outside
6249         the DISABLE_JIT block to fix the --enable-minimal=jit build.
6251         "Backported" of r124984 from 2.0 branch.
6252         
6253         * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
6255         "Backport" of r124977 + r124978 from 2.0 branch.
6256         
6257         * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
6258         to avoid calling mono_exception_from_token () from the throw trampoline.
6259         (mono_arch_get_throw_exception_generic): call throw_exception_by_token
6260         for throwing corlib exceptions, this fixes full-aot support for corlib
6261         exceptions.
6263         * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
6265 2009-01-29  Miguel de Icaza  <miguel@novell.com>
6267         * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
6268         part of the changes to split the code in mini into operating
6269         system specific files.
6271         This patch was done by copying mini.c to the respective files to
6272         preserve SVN history.
6274 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6276         * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
6278 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6280         * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
6281         remoting-invoke-with-check wrappers of shared methods.
6283         * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
6285 2009-01-27  Mark Probst  <mark.probst@gmail.com>
6287         * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
6288         optimization if the top of stack is the last instruction in the
6289         bblock.  Otherwise it might have been used after its definition.
6290         Fixes #469742.
6292 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6294         * mini-trampolines.c (mono_magic_trampoline): Print out the caller
6295         method as well when get_vcall_slot () fails to match a code sequence.
6297         * mini-arm.c: Fix the android build, which doesn't have
6298         __aeabi_read_tp.
6300 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6302         * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
6303         the s390x build.
6305 2009-01-26  Rodrigo Kumpera  <rkumpera@novell.com>
6307         * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
6309 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6311         * mini.c (mini_method_compile): Save the unwind info generated by the JIT
6312         and put its id into jinfo->used_regs. This is only used on amd64,
6313         which is currently the only platform generating unwind info.
6315         * exceptions-amd64.c: Instead of unwinding based on a register mask, use
6316         the dwarf unwinder. This is required to correctly handle async exceptions
6317         like thread abort and stack overflows, which can happen while a method
6318         is in the middle of its prolog or epilog.
6319         
6320         * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
6321         the unwind info belonging to an AOTed method.
6323         * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
6324         into cfg->unwind_ops.
6325         
6326         * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
6328         * mini.c (mini_init): Call mono_unwind_init ().
6329         (mini_cleanup): Call mono_unwind_cleanup ().
6331         * unwind.c: Add functions for managing a set of unwind info entries, allowing
6332         unwind info to be shared between methods.
6334         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
6335         saved in the LMF.
6337         * exceptions-amd64.c (mono_arch_exceptions_init): Call 
6338         get_throw_pending_exception () to avoid initialization races.
6340         * mini-exceptions.c (mono_exceptions_init): Call an arch specific
6341         mono_arch_exceptions_init () function.
6343         * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
6345 2009-01-25  Zoltan Varga  <vargaz@gmail.com>
6347         * mini.c (mono_get_domain_intrinsic): New helper function.
6348         (mono_get_thread_intrinsic): Ditto.
6350         * mini-arm.c mini-ia64.c: Use the new helper functions.
6351         
6352         * method-to-ir.c (mono_method_to_ir): Fix the comment for
6353         the last constrained_call change, since it is needed in the non-AOT
6354         case as well.
6356         * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
6357         
6358         * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of 
6359         mono_get_lmf_addr () on arm eabi linux.
6361 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
6363         * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
6364         code sequence which matches a non-virtual call.
6366 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6368         * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
6369         stack pointer (r1).
6371 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6373         * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
6374         runtime-invoke wrappers, since they are also shared based on signature.
6376 2009-01-22  Mark Probst  <mark.probst@gmail.com>
6378         * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
6379         info from the (correct) context.
6381 2009-01-22  Zoltan Varga  <vargaz@gmail.com>
6383         * unwind.c (mono_unwind_frame): Remove a stray g_free ().
6384         
6385         * unwind.c (mono_unwind_frame): New function to unwind through a frame
6386         using dwarf unwinding info. Not yet used.
6388         * mini.c (mini_init): When using xdebug, disable freeing of domains.
6390 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6392         * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
6393         descriptors.
6395         * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
6396         special case and handle mono_arch_delegate_invoke_impl() returning
6397         function descriptors.
6399         * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
6400         trampolines return function descriptors, too.
6402 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6404         * method-to-ir.c (handle_alloc): Avoid generic instances in the
6405         out_of_line optimization.
6407 2009-01-21  Martin Baulig  <martin@ximian.com>
6409         * mini.h
6410         (MonoCompile): Added `disable_deadce_vars' to disable removing
6411         unused variables.
6413         * mini.c
6414         (mini_method_compile): Set `cfg->disable_deadce_vars' when running
6415         inside the debugger.
6417         * liveness.c (mono_analyze_liveness): Don't remove any unused
6418         variables if `cfg->disable_deadce_vars' is set.
6420 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6422         * method-to-ir.c: Only apply exception constructor optimization if
6423         the the method actually belongs to an exception class.  Fixes
6424         #467456.
6426 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6428         * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
6429         change inside a #ifdef __mono_ppc64__.
6431         * aot-compiler.c (compile_method): Remove the previous limitation.
6433         * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
6434         on type variables in AOTed code.
6435         
6436         * aot-compiler.c (compile_method): Skip generic methods having type 
6437         constraints on their generic parameters.
6439         * aot-compiler.c (compile_method): Check for methods which cannot be
6440         encoded inside RGCTX_FETCH patches as well.
6442         * mini-exceptions.c (mono_print_thread_dump): Fix the windows
6443         build.
6445 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6447         * method-to-ir.c: Force the vtable variable in shared generic code
6448         for the case that they might show up on a stack trace where they
6449         are needed.
6451         * mini-exceptions.c: Save and use generic sharing info as well as
6452         IP in stack traces to resolve shared generic instantiations.
6454 2009-01-20  Zoltan Varga  <vargaz@gmail.com>
6456         * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
6457         added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
6459 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6461         * method-to-ir.c: Do generic sharing for array constructors.
6463 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
6465         * mini-exceptions.c (mono_print_thread_dump): Add information
6466         about the thread state using wapi_current_thread_desc.
6468 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
6470         * basic-simd.cs: Tests for the new constructors. 
6472 2009-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
6474         * mini-ops.h: Added OP_EXPAND_*
6476         * cpu-x86.md: Same.
6478         * mini-x86.c (mono_arch_output_basic_block): Same.
6479         
6480         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
6482 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6484         * iltests.il.in: Add a test for #467385.
6486 2009-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
6488         * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
6489         thread been cleaned up is not the same currently in execution.
6491         Fixes appdomain-unload crashes on windows, osx and linux variants
6492         without the __thread keyword.
6494 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6496         * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
6497         (koush@koushikdutta.com). Implement this for android.
6499         * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
6500         begins with a digit.
6502         * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
6503         mono_marshal_get_write_barrier ().
6505 2009-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
6507         * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
6508         of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
6509         that pass them on a register pair.
6511         This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
6512         test was crashing due to that.
6514 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
6516         * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
6517         trampoline code. Include ucontext.h only if available.
6519 2009-01-15  Mark Probst  <mark.probst@gmail.com>
6521         * mini.c: mono_domain_lookup_shared_generic() takes an open method
6522         and doesn't check whether it's sharable, like it was before
6523         removing the shared generics hash.  This brings IronPython
6524         performance back to what it was before that change.
6526 2009-01-14  Mark Probst  <mark.probst@gmail.com>
6528         * method-to-ir.c: Handle delegate invocation optimization earlier,
6529         otherwise it would be handled (much more slowly) by the
6530         final/sealed optimization.
6532 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6534         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
6535         domain is not set. Fixes #465864.
6537 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6539         * method-to-ir.c: Don't stop sharing of generic methods with catch
6540         clauses - we already handle those.
6542 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6544         * mini.c, mini.h: lookup_generic_method() is now
6545         mono_domain_lookup_shared_generic() and uses the jit_code_hash,
6546         making the shared_generics_hash obsolete.
6548 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6550         * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
6551         use the red zone.  Make room on the stack first and then use it,
6552         not the other way around.
6554 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6556         * mini.c (mini_init): Call mono_xdebug_init ().
6558         * aot-compiler.c (mono_xdebug_init): Make this non-static.
6560 2009-01-11  Zoltan Varga  <vargaz@gmail.com>
6562         * TestDriver.cs: Add an --iter argument to run tests multiple times.
6564         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
6565         trampolines.
6567         * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
6568         debug+unwind info for trampolines.
6570         * mini.c (mono_create_unwind_op): New helper function.
6572         * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
6574 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6576         * aot-compiler.c: Fix the build.
6578 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6580         * Makefile.am: Update dtrace-prelink.sh location.
6582 2009-01-08  Zoltan Varga  <vargaz@gmail.com>
6584         * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr 
6585         optimization. Fixes #464520.
6587 2009-01-07  Bill Holmes  <billholmes54@gmail.com>
6589         * mini-amd64.c : Adding code to save/restore non-volatile registers
6590            on Winx64.
6592         * exceptions-amd64.c : Adding code to save/restore non-volatile 
6593           registers on Winx64.
6595         Contributed under MIT/X11 license.
6597 2009-01-07  Zoltan Varga  <vargaz@gmail.com>
6599         * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
6600         __GNUC_MINOR__ which can break when the major version changes.
6602 2009-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
6604         * basic-simd.cs: Add tests for usage of the sizeof opcode.
6606 2009-01-07  Geoff Norton  <gnorton@novell.com>
6608         * helpers.c:  Allow mono -v -v -v to work on darwin.
6610 2009-01-05  Bill Holmes  <billholmes54@gmail.com>
6612         * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
6613           pattern. 
6615         Contributed under MIT/X11 license.
6617 2009-01-05  Zoltan Varga  <vargaz@gmail.com>
6619         * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
6620         instead of directly accessing type->data.klass. Fixes #462016.
6621         (mono_allocate_stack_slots_full): Ditto.
6623         * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio 
6624         <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
6626         * aot-compiler.c (emit_plt): Fix ARM build.
6628 2009-01-04  Zoltan Varga  <vargaz@gmail.com>
6630         * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
6631         
6632         * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
6633         change.
6635         * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
6636         instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
6637         #463357.
6639         * iltests.il.in: Add a regression test.
6641 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
6643         * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
6645 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
6647         * basic-simd.cs: Add a regression test for #462457.
6649 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
6651         * mini-ops.h: Add a definition of XPHI.
6653         * mini.h (MONO_IS_PHI): Make is aware of simd instrincs. 
6655         * ssa.c (op_phi_to_move): Handle XPHI.
6657         * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
6659         Fixes #462457
6661 2009-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
6663         * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
6665 2008-12-31  Geoff Norton  <gnorton@novell.com>
6667         * mini-ppc.c: The prolog size allocated can be too small for darwin
6668         ppc32 under certain circumstances.  Also fix a small logic bug.
6670 2008-12-29  Zoltan Varga  <vargaz@gmail.com>
6672         * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
6673         while loading AOT methods.
6675         * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
6676         since only the former is nulled out after a successful cast. This prevents
6677         crashes with rethrown exceptions when using --debug=casts.
6679 2008-12-24  Mark Probst  <mark.probst@gmail.com>
6681         * mini.h: New macro for checking whether a method is final,
6682         i.e. whether the method or its class is marked final.
6684         * method-to-ir.c: Use the new macro for all final-checks
6685         consistently.  Fixes the crash in the System.ServiceModel tests.
6687 2008-12-23  Mark Probst  <mark.probst@gmail.com>
6689         * mini-exceptions.c (get_exception_catch_class): Corrected another
6690         overly strict assertion.
6692 2008-12-23  Mark Probst  <mark.probst@gmail.com>
6694         * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
6695         Clobbering it is not allowed because the caller might use it as
6696         the vtable register in the interface call.
6698 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6700         * mini-exceptions.c (get_exception_catch_class): Corrected an
6701         overly strict assertion.
6703 2008-12-18  Mark Mason  <mmason@upwardaccess.com>
6704         
6705         * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
6707         * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
6709         * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
6711         * cpu-mips.md: correct lengths for certain long_ opcodes.
6713         * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
6715         * 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().
6716         
6717 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
6719         * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
6720         
6721 2008-12-17  Mark Mason  <mmason@upwardaccess.com>
6722         
6723         * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
6724         
6725 2008-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
6727         * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
6728         next basic block.
6729         
6730 2008-12-16  Mark Mason  <mmason@upwardaccess.com>
6732         * 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
6734         * 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)
6735         
6736 2008-12-15  Mark Mason  <mmason@upwardaccess.com>
6737         
6738         * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
6739         
6740 2008-12-14  Zoltan Varga  <vargaz@gmail.com>
6742         * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
6743         gshared code. Fixes #458947.
6745         * generics.cs: Add a test.
6747 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
6748         
6749         * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6750         
6751         * mini-mips.c: first pass n32 code generation.
6753         * mini-mips.h: datatypes and defines for n32 support.
6755         * exceptions-mips.c: first pass n32 code generation.
6756         
6757         * tramp-mips.c: first pass n32 code generation.
6758         
6759         * cpu-mips.md: add long_ opcodes.
6760         
6761 2008-12-12  Mark Mason  <mmason@upwardaccess.com>
6763         * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6765         * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6766         
6767         * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6768         
6769         * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6771         * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6773         * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6775         * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6777         * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
6779         * helpers.c: for mips/n32, don't pass -mips32 to objdump
6781 2008-12-12  Zoltan Varga  <vargaz@gmail.com>
6783         * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
6785 2008-12-12  Andres G. Aragoneses  <aaragoneses@novell.com>
6787         * driver.c: Sync --help-trace with man page (EXPR,EXPR).
6789 2008-12-12  Mark Probst  <mark.probst@gmail.com>
6791         * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
6792         descriptors for helper functions directly in front of the code.
6794 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6796         * method-to-ir.c: Removed an unnecessary assertion.
6798 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6800         * method-to-ir.c: Merge SGEN changes from the old JIT.
6802 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6804         * driver.c (compile_all_methods_thread_main): Handle failure of
6805         mono_get_method ().
6807 2008-12-10  Mark Probst  <mark.probst@gmail.com>
6809         * mini-ppc.c: Merged with mini-ppc64.c.
6811         * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
6813         * Makefile.am: Use the same sources for PPC and PPC64.
6815         * mini-ppc64.c: Removed.
6817 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
6819         * branch-opts.c (remove_block_if_useless): Extract fall through detection
6820         code to mono_bb_is_fall_through.
6821         
6822         * branch-opts.c (mono_remove_critical_edges): Same.
6824 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
6826         * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
6827         expect that an OP_BR_REG will be there.
6829 2008-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
6831         * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
6832         for the many branch ops. The original check miss OP_BR_REG.
6834         Fixes #457574.
6835         
6836 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
6838         * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
6840 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6842         * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
6843         while holding the aot lock.
6845 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
6847         * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
6848         
6849 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6851         * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws 
6852           to release all runtime callable wrappers held by the runtime.
6854         Contributed under MIT/X11 license.
6856 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6858         * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
6859           for Winx64.
6861         Contributed under MIT/X11 license.
6863 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6865         * aot-runtime.c (decode_exception_debug_info): Acquire the domain
6866         lock when calling mono_domain_alloc (). Hopefully fixes #415608.
6868 2008-12-09  Mark Mason   <mmason@upwardaccess.com>
6870         * cpu-mips.md: fix ckfinite length
6872         * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
6873         (mono_arch_lowering_pass): cleanup, rearrange for clarity
6874         (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
6875         
6876 2008-12-08  Mark Mason   <mmason@upwardaccess.com>
6878         * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
6879         
6880 2008-12-08  Geoff Norton  <gnorton@novell.com>
6882         * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
6883         size by 8 bytes as well.
6885 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6887         * basic-simd.cs: Fix method names for Vector16b.
6888         
6889 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6891         * basic-simd.cs: Fix method names for Vector16sb.
6893 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6895         * basic-simd.cs: Fix method names for Vector8us.
6896         
6897 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6899         * basic-simd.cs: Fix method names for Vector8s.
6900         
6901 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6903         * basic-simd.cs: Fix method names for Vector4ui.
6905 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6907         * basic-simd.cs: Fix method names for Vector2l.
6909 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6911         * basic-simd.cs: Fix method names for Vector2d.
6913 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6915         * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
6916         that are extension methods.
6918 2008-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
6920         * basic-simd.cs: Fix method names for Vector4f.
6922 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
6924         * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
6925         as such. Fixes #456669.
6927 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
6929         * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
6930         
6931 2008-12-07  Mark Mason   <mmason@upwardaccess.com>
6933         * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
6934         (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
6935         (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
6936         (mips_adjust_stackframe): handle FP spills
6937                 
6938         * mini-ops.h: add mips_mtc1_s2
6939         
6940         * cpu-mips.md: add mips_mtc1_s2
6941         
6942 2008-12-07  Zoltan Varga  <vargaz@gmail.com>
6944         * unwind.c: New file, move the unwind info encoding functions here from
6945         aot-compiler.c, so they could be used at runtime too.
6947 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
6949         * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
6950         (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
6951         
6952 2008-12-05  Mark Mason   <mmason@upwardaccess.com>
6954         * mini-mips.c: cleanup warnings
6955         (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
6956         (mips_adjust_stackframe): handle case of taking the address of stack locals
6957         
6958 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
6960         * aot-compiler.c: Implement a few functions missing from the asm writer.
6961         (emit_method_code): Only write symbols for methods when using the bin
6962         writer, since the assembler can't deal with the characters in our method
6963         names.
6965         * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
6967         * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
6968         call.
6970         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
6971         a bit to also restore %rax.
6973 2008-12-05  Mark Probst  <mark.probst@gmail.com>
6975         * mini-ppc.c: Some simple merges from mini-ppc64.c.
6977 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
6979         * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
6980         arguments.
6982 2008-12-05  Mark Probst  <mark.probst@gmail.com>
6984         * exceptions-ppc.c: Merged with exceptions-ppc64.c.
6986         * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
6987         MONO_ARCH_FRAME_ALIGNMENT.  Struct for PPC64 function descriptors.
6989         * exceptions-ppc64.c: Removed.
6991         * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
6993 2008-12-05  Mark Probst  <mark.probst@gmail.com>
6995         * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
6996         tramp-ppc64.c.
6998         * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
7000         * tramp-ppc64.c: Removed.
7002 2008-12-05  Zoltan Varga  <vargaz@gmail.com>
7004         * aot-compiler.c (add_generic_instances): Skip non-generic classes in
7005         the TYPESPEC table.
7007 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7009         * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
7011         * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
7012         mini-ppc.h instead of mini-ppc64.h.
7014         * mini-ppc64.h: Removed.
7016 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7018         * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
7019         
7020         * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
7021         
7022 2008-12-05  Mark Probst  <mark.probst@gmail.com>
7024         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
7025         Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
7026         code easier.
7028 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7030         * basic-simd.cs: Tests for operator == and != on  Vector8us and Vector16b.
7032 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7034         * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
7036 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7038         * basic-simd.cs: Tests for operator == and != on Vector4f.
7040 2008-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
7042         * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
7044         * simd-intrinsics.c: Kill useless enum.
7046 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7048         * cpu-mips.md: add long_conv_to_ovf_i4_2
7049         * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
7051 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7053         * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
7054         
7055         * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
7057 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7059         * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
7060         
7061 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
7063         * basic-simd.cs: Add tests for new methods.
7065 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
7067         * simd-intrinsics.c: Add support for operator == and !=
7068         on Vector4(u)i.
7070         * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
7072 2008-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
7074         * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
7076 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
7078         * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
7080         * mini.c (mono_resolve_patch_target): Allow pinvoke methods in 
7081         MONO_PATCH_INFO_ICALL_ADDR.
7083         * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
7085         * aot-compiler.c: Resurrect full-aot support.
7087 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7089         * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
7090         
7091 2008-12-04  Mark Mason   <mmason@upwardaccess.com>
7093         * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
7094         
7095 2008-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
7097         * basic-simd.cs: Fix tests to work under ppc.
7098         Remove tests for methods that will be removed.
7100 2008-12-03  Mark Probst  <mark.probst@gmail.com>
7102         * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
7103         generic type (via a typedef or typeref) correctly.
7105 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
7107         * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
7108         diagnose an assertion failure.
7110 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7112         * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
7113         Fix trampoline size.
7115         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
7116         conversion opcodes are implemented natively instead via emulation.
7118 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
7120         * cpu-mips.md: remove mips_xori
7122         * mini-ops.h:  remove mips_xori
7124         * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
7126         * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
7127         
7128         * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
7129         
7130 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
7132         * cpu-mips.md: fix instruction lengths.
7134         * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
7136         * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
7138         * mini-ops.h: fix slti / sltiu op profiles.
7139         
7140 2008-12-02  Martin Baulig  <martin@ximian.com>
7142         * method-to-ir.c (mono_method_to_ir): Disable debugging
7143         information for the init locals block to make the debugger stop
7144         after all locals have been initalized.
7146 2008-12-02  Martin Baulig  <martin@ximian.com>
7148         * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
7149         running inside the debugger.
7151 2008-12-01  Zoltan Varga  <vargaz@gmail.com>
7153         * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
7154         is enabled.
7156         * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the 
7157         alu->alu imm optimization which only shows if deadce is disabled.
7159         * aot-compiler.c: Rename the function names for the binary and asm writers
7160         so they can coexist in the same process. Rework the xdebug code to use the
7161         asm writer. This avoids the need to call into the runtime to dump the
7162         debugging info. Add more debugging info for types.
7164         * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
7166         * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
7167         cpu description tables, they can't occur in cpu-<ARCH>.md.
7169         * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
7170         the stack in CEE_LDFLDA. Fixes #450542.
7172         * generics.cs: Add a new test.
7174 2008-12-01  Mark Mason   <mmason@upwardaccess.com>
7176         * mini-ops.h: updated MIPS opcodes
7177         * mini-mips.c: decompose long opts
7178         * mini-mips.h: decompose long opts
7179         
7180 2008-11-29  Mark Mason   <mmason@upwardaccess.com>
7182         * cpu-mips.md: fix length on int_rem_un
7183         * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
7184         
7185 2008-11-29  Zoltan Varga  <vargaz@gmail.com>
7187         * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
7189         * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
7191 2008-11-29  Martin Baulig  <martin@ximian.com>
7193         * mini-exceptions.c (mono_handle_native_sigsegv): Check
7194         mono_debug_using_mono_debugger() in addition to the
7195         `no_gdb_backtrace' flag in the `MonoDebugOptions'.
7197 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
7199         * mini-ops.h: updated more MIPS opcodes
7200         * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
7201         * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
7202         
7203 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7205         * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
7207 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
7209         * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
7210         * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
7211         * mini-ops.h: correct selected mips opcode entries
7212         
7213 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7215         * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
7216         make them work.
7218 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7220         * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
7222 2008-11-28  Mark Mason   <mmason@upwardaccess.com>
7224         * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
7225         * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
7226         * mini-mips.h: disable IMT
7227         * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
7228         
7229 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7231         * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
7233 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7235         * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
7237 2008-11-28  Zoltan Varga  <vargaz@gmail.com>
7239         * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
7240         consistency.
7242 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
7244         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
7245         for Set/GetVector aligned versions.
7247 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
7249         * basic-simd.cs: Add tests for Get/SetVector.
7251 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7253         * mini.c: Removed g_slist_append_mempool().  Now in
7254         metadata/mempool.c.
7256 2008-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
7258         * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
7259         size properly and make the bounds check optional.
7261         * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
7262         for SetVector and IsAligned.
7264 2008-11-27  Zoltan Varga  <vargaz@gmail.com>
7266         * mini.c: Remove unused mono_normalize_opcodes () function.
7268 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7270         * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
7271         using the new atomic add ops now.
7273         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
7274         add.
7276 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7278         * mini-ppc64.c: Several fixes.
7280 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7282         * cpu-mips.md: added jump_table
7283         * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.             
7285 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7287         * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
7289 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7291         * mini-ops.h: corrected a handful of MIPS opcodes.
7293 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7295         * aot-compiler.c: MIPS to use ELF writer
7297 2008-11-25  Mark Mason   <mmason@upwardaccess.com>
7299         * mini-codegen.c: remove MIPS specific assert.
7301 2008-11-25  Mark Probst  <mark.probst@gmail.com>
7303         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
7304         fixes.  PPC64 now passes most of the runtime regressions.
7306 2008-11-24  Zoltan Varga  <vargaz@gmail.com>
7308         * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
7309         volatile intervals a bit.
7311 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7313         * basic-long.cs: New test case.
7315 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
7317         * mini.c (mini_method_compile): Disable globalra for large methods for 
7318         now.
7320         * regalloc2.c (order_moves): Add fp support.
7322         * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
7323         source bblock ends with an OP_BR_REG.
7325         * ratests.cs: Add a new test.
7327 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7329         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
7330         sharing.  PPC64 now passes generics.exe.
7332 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7334         * mini-ppc64.c: Several fixes.  PPC64 now runs iltests.exe.
7336 2008-11-23  Zoltan Varga  <vargaz@gmail.com>
7338         * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
7339         memory when mono_jit_info_table_find () can't find the method in the
7340         LMF case.
7342         * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
7343         AOTed code too.
7344         
7345         * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
7346         writer too.
7348 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7350         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
7351         Several fixes.  PPC64 now runs exceptions.exe and
7352         devirtualization.exe.
7354 2008-11-22  Mark Probst  <mark.probst@gmail.com>
7356         * mini-ppc64.c, tramp-ppc64.c: Small fixes.  PPC64 now runs
7357         arrays.exe and basic-math.exe.
7359 2008-11-22  Mark Probst  <mark.probst@gmail.com>
7361         * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
7362         cpu-ppc64.md: Several fixes.  PPC64 now runs objects.exe.
7364 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
7366         * simd-intrinsics.c: Add support ArrayExtension intrinsics.
7368 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
7370         * method-to-ir.c: Move bounds checking macros to ir-emit.h
7372         * ir-emit.h: Move macros from method-to-ir.c to here.
7374 2008-11-21  Rodrigo Kumpera  <rkumpera@novell.com>
7376         * mini-ops.h: Correct the long simd ops to use LREG.
7378 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
7380         * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
7381         
7382         * mini-ops.h: Correct the dreg type of a few long opcodes.
7384         * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
7385         Add netbsd support.
7387 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
7389         * mini-ppc.c: remove negative stack references in epilog
7390         for platforms that don't support the red zone.
7392 2008-11-21  Mark Probst  <mark.probst@gmail.com>
7394         * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
7395         point regs.  Now PPC64 passes basic-calls.exe.
7397 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7399         * basic-simd.cs: Add tests for accessors of Vector2l.
7401 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7403         * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
7405         * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
7406         
7407         * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
7409 2008-11-21  Mark Probst  <mark.probst@gmail.com>
7411         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes.  Now
7412         PPC64 passes basic-long.exe.
7414 2008-11-20  Mark Probst  <mark.probst@gmail.com>
7416         * decompose.c: Decompose carry and overflow add on PPC64 like on
7417         other 64 bit archs.  Don't decompose sub at all on PPC64.
7419         * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
7420         Several fixes and new opcodes.  Now PPC64 runs (but doesn't pass)
7421         basic-long.exe.
7423 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7425         * basic-simd.cs: Add tests for accessors of Vector2d.
7427 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7429         * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
7431         * cpu-x86.md: Same.
7433         * mini-x86.c (mono_arch_output_basic_block): Same.
7434         
7435         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
7437 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7439         * basic-simd.cs: Add tests for accessors of Vector4f.
7441 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7443         * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
7445         * cpu-x86.md: Same.
7447         * mini-x86.c (mono_arch_output_basic_block): Same.
7448         
7449         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
7451 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7453         * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
7455 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7457         * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
7459         * cpu-x86.md: Same.
7461         * mini-x86.c (mono_arch_output_basic_block): Same.
7462         
7463         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
7465 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7467         * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
7469 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7471         * simd-intrinsics.c: Enable setters for Vector16sb.
7473 2008-11-20  Rodrigo Kumpera  <rkumpera@novell.com>
7475         * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
7477         * cpu-x86.md: Same.
7479         * mini-x86.c (mono_arch_output_basic_block): Same.
7480         
7481         * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
7483 2008-11-19  Rodrigo Kumpera  <rkumpera@novell.com>
7485         * simd-intrinsics.c: Implement setter for Vector8us.
7487 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
7489         * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
7490         for dead variables.
7492 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7494         * mini-ppc.c: remove references to the red zone in the prolog
7495         (for systems that don't support it).
7497 2008-11-19  Mark Probst  <mark.probst@gmail.com>
7499         * cpu-ppc64.md: Fixed a few instruction lengths.
7501         * mini-ppc64.c: Don't emit SETLRET.  PPC64 passes basic-float.exe,
7502         now.
7504 2008-11-19  Mark Probst  <mark.probst@gmail.com>
7506         * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes.  PPC64 passes
7507         basic.exe now.
7509 2008-11-19  Zoltan Varga  <vargaz@gmail.com>
7511         * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
7513 2008-11-18  Rodrigo Kumpera  <rkumpera@novell.com>
7515         * mini-ops.h: Added OP_INSERT_I2.
7517         * cpu-x86.md: Same.
7519         * mini-x86.c (mono_arch_output_basic_block): Same.
7520         
7521         * simd-intrinsics.c: Implement setter for Vector8s.
7523         * simd-methods.h: Add the names of get setters of Vector8s.
7525 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7527         * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
7528         
7529         * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
7530         parameters.
7532         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
7534 2008-11-18  Mark Probst  <mark.probst@gmail.com>
7536         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
7537         for PPC64.  An empty program runs now.
7539 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7541         * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
7543         * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
7544         a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
7545         info for JITted code is emitted into a shared library, loadable into gdb.
7547 2008-11-18  Mark Probst  <mark.probst@gmail.com>
7549         * Makefile.am: Changes to build PPC64.
7551         * mini-arch.h: Include mini-ppc64.h on PPC64.
7553 2008-11-18  Mark Probst  <mark.probst@gmail.com>
7555         * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
7556         in PPC code up to r119147.
7558 2008-11-18  Mark Probst  <mark.probst@gmail.com>
7560         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
7561         cpu-ppc64.md: Changes for PPC64.
7563         Based on code submitted by andreas.faerber@web.de at
7564         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
7565         X11/MIT license.
7567 2008-11-18  Mark Probst  <mark.probst@gmail.com>
7569         * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
7570         cpu-ppc64.md: Copied from the corresponding PPC files from
7571         r118846.
7573 2008-11-18  Scott Peterson  <lunchtimemama@novell.com>
7575         * mini-ops.h: Added OP_ROUND.
7577         * cpu-x86.md: Added round.
7579         * mini-x86.c: Added support for intrinsicing Math.Round (double).
7581         * basic-math.cs: Added test_0_round to test rounding.
7583         Contributed under MIT/X11 license.
7585 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7587         * aot-compiler.c : Fix the Winx64 build.
7589         Contributed under MIT/X11 license.
7591 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
7593         * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
7594         in OP_EXTRACT_R8 to avoid possible stack corruption.
7596 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
7598         * mini-ops.h: Added OP_EXTRACT_R8/I8.
7600         * cpu-x86.md: Added extract_r8.
7602         * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
7603         
7604         * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
7605         a couple of OP_EXTRACT_I4.
7607         * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
7609         * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
7611 2008-11-17  Rodrigo Kumpera  <rkumpera@novell.com>
7613         * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
7614         and not 4.1. 
7616 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
7618         * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
7619         trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
7621         * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
7622         are not needed any more.
7624         * mini.h: Remove the unused INS_LIST macros.
7626         * mini.c (mini_method_compile): Remove a disable globalra case which is no
7627         longer needed.
7629         * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
7630         ir-emit.h.
7632         * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
7633         mono_alloc_ireg () instead.
7635         * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
7636         macros.
7638         * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
7639         on amd64.
7641         * aot-runtime.c (load_aot_module): Disable AOT when running under
7642         CAS.
7644         * mini-amd64.h: Change the monitor fastpath defines to check for
7645         !PLATFORM_WIN32 so they work on *bsd too.
7647         * mini.h mini.c mini-hhpa.c: Remove more unused code.
7649         * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
7651         * mini.h (MonoCompile): Remove new_ir flag.
7653         * regalloc.h regalloc.c: Remove unused code.
7655         * cpu-*.md: Remove more unused opcodes.
7657         * simple-cee-ops.h simple-mini-ops.h: Removed.
7659         * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
7660         
7661 2008-11-17  Zoltan Varga  <vargaz@gmail.com>
7663         * aliasing.h: Removed.
7665         * *.c: Remove references to aliasing.h and inssel.h.
7667         * mini.c: Remove additional unused functions.
7669         * mini-ops.h cpu-*.md: Remove unused opcodes.
7671 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
7673         Remove the old JIT code.
7675         * inssel*.brg: Removed.
7677         * ssa.c abcremoval.c aliasing.c: Removed.
7679         * ssa2.c: Renamed to ssa.c.
7681         * abcremoval2.c: Renamed to abcremoval.c.
7683         * *.c: Removed all !cfg->new_ir code.
7685         * mini-<ARCH>.c: Removed mono_arch_call_opcode (), 
7686         mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
7688         * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
7689         
7690 2008-11-16  Zoltan Varga  <vargaz@gmail.com>
7692         * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
7693         to simplify the code and cut back on the number of global symbols in the AOT
7694         file.
7695         
7696         * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
7698 2008-11-15  Zoltan Varga  <vargaz@gmail.com>
7700         * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
7701         with the got/got_info tables.
7703         * mini.h: Bump AOT file format version.
7704         
7705         * unwind.h: New file, contains definitions for stack unwinding.
7707         * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
7708         to cfg->unwind_ops.
7709         
7710         * aot-compiler.c: Generalize the emitting of unwind information to use the
7711         information in cfg->unwind_ops.
7713         * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
7715         * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
7716         AOT method frames. Enable writing symbols for methods by default.
7718 2008-11-14  Rodrigo Kumpera  <rkumpera@novell.com>
7720         * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
7721         and make it work with vectors of element sizes 1, 2 and 4.
7723         * simd-intrinsics.c: Enable getter for all vectors with element size
7724         1, 2 or 4.
7726         * simd-methods.h: Add the names of other getters.
7728         * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
7730         * cpu-x86.md: Same.
7732         * mini-x86.c: Same.
7734 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
7736         * mini-ppc.h: portability fix.
7738 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
7740         * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
7741         buggy and will overwrite it.
7743 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7745         * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
7746         Use it to emit local symbols for all methods so AOTed methods show up with
7747         their full name in gdb/valgrind output.
7749 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
7751         * mini-ppc.c: portability fixes.
7753 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7755         * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
7756         entries out of the if (!generic_shared...) code so it is always done.
7757         (mono_class_init_trampoline): Do the patching when running under valgrind
7758         too, newer versions of valgrind have no problems with it.
7760 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
7762         * aot-compiler.c (emit_writeout): Rework this to make it easier to add
7763         further sections.
7765 2008-11-13  Mark Probst  <mark.probst@gmail.com>
7767         * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
7768         filters.
7770 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
7772         * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui. 
7774 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
7776         * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
7778         * cpu-x86.md: Same.
7780         * mini-x86.c: Same.
7782         * simd-intrinsics.c: Same.
7784 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
7786         * simd-intrinsics.c: Enable constructor intrinsics for all types.
7788 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
7790         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
7791         to work with more Vector types.
7793 2008-11-13  Rodrigo Kumpera  <rkumpera@novell.com>
7795         * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
7796         store the elemens directly instead of using and intermediate.
7798 2008-11-13  Zoltan Varga  <vargaz@gmail.com>
7800         * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
7802         * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
7803         to preserve %eax for aot plt trampolines.
7805         * aot-compiler.c (compile_method): Don't skip synchronized methods.
7806         (encode_method_ref): Flag synchronized methods so they won't go through
7807         the AOT trampoline.
7809         * aot-compiler.c: Additional work to support AOTing synchronized methods/
7810         wrappers.
7812         * cpu-ia64.md (jmp): Increase max length.
7814 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
7816         * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
7817         open generic classes.
7819         * aot-compiler.c: Enable the ELF writer on ELF platforms.
7821         * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
7822         box+brtrue optimization since it causes test failures on x86.
7824 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
7826         * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
7828         * cpu-x86.md: Same.
7830         * mini-x86.c: Same.
7832         * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
7833         for simd ctor values. 
7835         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
7836         instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
7838 2008-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
7840         * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
7841         LogicalRightShift.
7843         * simd-instrincs.c: Same.
7845         * basic-simd.cs: Same.
7847 2008-11-12  Zoltan Varga  <vargaz@gmail.com>
7849         * ratests.cs: Add more tests.
7851         * regalloc2.c (add_spill_code): Handle more corner cases.
7853 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
7855         * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
7856         (update_liveness): Avoid holes in the liveness ranges of hregs if they are
7857         both the source an destination of an instruction.
7859 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
7861         * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
7862         wapihandles.c: more portability changes.
7864 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
7866         * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
7867         * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
7868         safe to execute in a signal handler and the kernel provides better
7869         the info in /proc/self/smaps. Avoid the assert on sigaction during
7870         cleanup.
7872 2008-11-11  Zoltan Varga  <vargaz@gmail.com>
7874         * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
7875         do the bblock linking hack if it is actually needed.
7877         * Makefile.am (patch-libtool): New helper target to patch libtool to speed
7878         up linking.
7880         * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
7881         crash problem is fixed.
7883         * branch-opts.c (mono_remove_critical_edges): Link up newly added
7884         bblocks.
7886         * mini.c (mini_method_compile): Compute unreachable bblocks properly even
7887         for catch clauses.
7888         (mini_method_compile): Set the starting value of next_vreg to 
7889         MAX_IREGS + MAX_FREGS when using globalra.
7891         * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
7892         filter clauses with BB_EXCEPTION_HANDLER.
7894         * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
7896 2008-11-10  Mark Probst  <mark.probst@gmail.com>
7898         * mini-x86.c (mono_arch_get_argument_info): Don't align argument
7899         space for stdcall.  Fixes regressions on Win32.
7901 2008-11-10  Zoltan Varga  <vargaz@gmail.com>
7903         * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
7904         bblocks.
7905         (linear_scan): Remove an assert which doesn't seem to be needed.
7907         * local-propagation.c (mono_local_deadce): Avoid a call to
7908         MONO_DELETE_INS which would screw up the instruction linking.
7910         * mini.c (mono_decompose_op_imm): Make this work with globalra.
7912         * regalloc2.c: Upgrade to work the current JIT code.
7914 2008-11-09  Zoltan Varga  <vargaz@gmail.com>
7916         * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
7917         case.
7919         * aot-runtime.c: Remove some dead code.
7921         * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
7922         consistency.
7923         (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
7925         * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
7926         trampolines using sscanf since atoi doesn't work on large unsigned values.
7928         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): 
7929         Initialize code_size.
7931 2008-11-08  Mark Probst  <mark.probst@gmail.com>
7933         * method-to-ir.c (mini_emit_inst_for_method): Make
7934         Interlocked.CompareExchange work for Int arguments on 32 bit
7935         archs, as well.
7937 2008-11-07  Mark Probst  <mark.probst@gmail.com>
7939         * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
7941 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
7943         * main.c Fix MSVC build.
7945         Contributed under MIT/X11 license.
7947 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7949         * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
7950         alignment larger than 8 bytes are aligned correctly, too.
7952         * mini.c: Honor the min_align field of MonoClass when laying out
7953         the stack.
7955 2008-11-06  Zoltan Varga  <vargaz@gmail.com>
7957         * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
7959         * aot-compiler.c (emit_plt): Fix a warning.
7960         
7961         * aot-compiler.c: Implement ARM support in the binary writer.
7963 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
7965         * basic-simd.cs: Add test for getter with byref arg.
7966         Fix the naming of a few tests.
7967         Add missing checks to a test.
7969 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
7971         * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
7973         * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
7974         most of the full-aot support for monitor enter/exit trampolines.
7976         * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
7977         enter/exit trampoline creation functions.
7979         * Makefile.am: Fix the generation of buildver.h so it is not invoked during
7980         make dist.
7982 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
7984         * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
7985         incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
7986         implement the needed functionality without adding crap to the runtime.
7988 2008-11-05  Zoltan Varga  <vargaz@gmail.com>
7990         * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
7991         non-x86 builds.
7993         * mini.c (mono_build_date): New global version holding the build date in
7994         string format.
7995         
7996         * Makefile.am (buildver.c): Generate a file containing the build date.
7998         * main.c: Set the build date from the generated file.
8000         * mini.c (mono_get_runtime_build_info): New helper function returning build
8001         information in a string format.
8002         
8003         * driver.c (mono_main): Print the build date in --version.
8005         * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
8006         file when the bind-to-runtime-version option is used.
8008 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8010         * simd-intrinsics.c: Fix bug when using getters and byref args. 
8012 2008-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
8014         * simd-methods.h: Rename prefetch methods.
8016         * simd-intrinsics.c: Same.      
8018 2008-11-05  Mark Probst  <mark.probst@gmail.com>
8020         * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
8021         sizes.
8023 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8025         * aot-compiler.c: Use the bundled elf header files instead of depending on
8026         the system one.
8027         
8028         * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
8029         mempool.
8031         * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
8032         on every call.
8034 2008-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
8036         * cpu-x86.md: Add store nta ops.
8038         * mini-ops.h: Same.
8040         * mini-x86.c: Same.
8042         * mini.h: Add an enum for simd prefetch modes.
8044         * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
8045         of store. Use the changed code to support store nta.
8047         * simd-intrinsics.c: Add prefetch ops for all vector types.
8049 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8051         * aot-compiler.c: Add an option for JIT compiling the methods by multiple 
8052         threads.
8053         
8054         * aot-compiler.c: Use statically allocated buffers for constructing symbol 
8055         names.
8057         * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
8058         trampolines.
8060 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8062         * mini-x86.c: Fixed commit.
8064 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8066         * aot-compiler.c (emit_plt): Align the plt section only on x86.
8068 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8070         * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
8071         and MONITOR_EXIT, for the ASM fastpaths.
8073         * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
8074         available.
8076         * mini.c, patch-info.h: Signature and patch infos for
8077         Monitor.Enter/Exit trampolines.
8079         * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
8081         * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
8082         Monitor.Enter/Exit ASM fastpath for Linux.
8084 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8086         * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
8088         * objects.cs: Add a new test.
8089         
8090         * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
8092         * aot-runtime.c (load_method): Run class initialization in the PLT case even
8093         if MONO_LOG_LEVEL is set.
8095         * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
8097         * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
8099         * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
8100         
8101         * aot-compiler.c: Change the relocation code to use virtual addresses instead
8102         of file offsets. Align the sections belonging to the data segment to 
8103         PAGESIZE.
8105 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
8107         * aot-compiler.c: Simplify the elf writer by depending on the definitions in
8108         elf.h. Port it to amd64.
8110 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
8112         * driver.c: Enable SIMD by default.
8114 2008-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
8116         * cpu-x86.md: Add prefetch op.
8118         * mini-ops.h: Same.
8120         * mini-x86.c: Same.
8122         * mini.h: Add an enum for simd prefetch modes.
8124         * simd-methods.h: Add prefetch function names.
8126         * simd-intrinsics.c: Add prefetch ops for all vector types.
8128 2008-11-03  Zoltan Varga  <vargaz@gmail.com>
8130         * aot-compiler.c (emit_bytes): Speed this up a little.
8132 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8134         * aot-compiler.c: Add JIT time etc. statistics.
8135         
8136         * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
8138         * mini.h (MonoCompile): Add 'got_offset' field.
8140         * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
8141         method_got_offsets array.
8143         * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
8144         wrappers.
8146         * aot-compiler.c (compile_method): Add generic method instances referenced
8147         by the method to the list of methods to be compiled, this is required so if
8148         A<T> references B<T>, and another assembly references A<int>, then it will
8149         also get a copy of B<int>.
8151         * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
8152         when checking for monitor enter/exit.
8154 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8156         * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
8157         for Monitor.Enter and Monitor.Exit if enabled.
8159         * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
8160         Solaris.
8162 2008-10-30  Zoltan Varga  <vargaz@gmail.com>
8164         * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
8165         of an OP_MOVE. Fixes #440046.
8167         * basic-long.cs: Add a new test.
8169 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
8171         * mini.h: Add synchronization note for the managed counter-part.
8173         * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
8174         returns the simd caps of the current cpu.
8176 2008-10-29  Rodrigo Kumpera  <rkumpera@novell.com>
8178         * basic-simd.cs: Remove Console.WriteLine.
8180 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8182         * basic-simd.cs: New tests for Vector2ul.
8184 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8186         * simd-intrinsics.c: Add new vector type Vector2ul.
8188 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8190         * basic-simd.cs: New tests for Vector2l.
8192 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8194         * cpu-x86.md: Add long version of most packed int ops.
8196         * mini-ops.h: Same.
8198         * mini-x86.h: Same.
8200         * simd-intrinsics.c: Add new vector type Vector2l.
8202 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8204         * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
8206         * simd-methods.h: Remove SN_op_BitwiseXor.
8208 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
8210         * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
8211         alignment.
8213 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8215         * basic-simd.cs: Test for Vector2d.
8217         * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
8218         value.
8220 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8222         * cpu-x86.md: Add double version of all packed float ops.
8224         * mini-ops.h: Same.
8226         * mini-x86.h: Same.
8228         * simd-intrinsics.c: Add new vector type Vector2d.
8230         * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
8232         * simd-methods.h: Add Duplicate.
8234 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8236         * basic-simd.cs: Test for packing with signed saturation.
8238 2008-10-28  Zoltan Varga  <vargaz@gmail.com>
8240         * aot-compiler.c (add_generic_instances): Add all methods of generic instances
8241         found in the TYPESPEC table.
8243 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8245         * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
8246         too.
8248         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
8250         * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
8251         instead of the RVA, since the RVA can be changed by tools like the cil 
8252         stripper.
8254         * method-to-ir.c (mono_method_to_ir2): Ditto.
8256         * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
8257         (deserialize_variable): Ditto.
8259 2008-10-25  Martin Baulig  <martin@ximian.com>
8261         * debug-mini.c (write_variable): Use
8262         `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
8264 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8266         * cpu-x86.md: Add unsigned variants of packd and packw.
8268         * mini-ops.h: Same.
8270         * mini-x86.h: Emit the right instruction for packd and packw.
8271         Add unsigned variants of packd and packw.
8273         * simd-intrinsics.c: Packd and packw were used in place of their
8274         unsigned variants. Change that.
8275         Add intrinsics for (Signed)PackWithSignedSaturation.
8277         * simd-methods.h: Add (Signed)PackWithSignedSaturation.
8279 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8281         * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
8283 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8285         * mini-ops.h: Remove dword packed add/sub with saturation ops.
8287         * cpu-x86.md: Remove dword packed add/sub with saturation ops.
8289         * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
8290         sse instructions.
8292         * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
8294 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8296         * method-to-ir.c, mini.c: Special casing for the synchronized
8297         wrapper for the ldtoken+GetTypeFromHandle case.
8299 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
8301         * mini.c (mono_replace_ins): Move this to branch-opts.c.
8303         * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
8304         created/split bblocks.
8306 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8308         * mini-ops.h: Add packed signed mul high.
8309         
8310         * cpu-x86.md: Same.
8312         * mini-x86.c (mono_arch_output_basic_block): Same.
8314         * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
8316         * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
8318 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8320         * basic-simd.cs: Tests for Vector16sb.
8322 2008-10-24  Zoltan Varga  <vargaz@gmail.com>
8324         * inssel.brg (stmt): Fix OP_HARD_NOP rule.
8326 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8328         * mini-ops.h: Add packed signed min, max and compare greater.
8329         
8330         * cpu-x86.md: Same.
8332         * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
8333         saturation.
8335         * simd-methods.h: Add CompareGreaterThan.
8337         * simd-methods.h: Remove CompareEquals.
8339         * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
8341         * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
8343         * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
8344         CompareEqual.
8346 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8348         * basic-simd.cs: Fix tests due to change in the API.
8350 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8352         * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
8354 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8356         * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
8358         * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
8359         inst_offset as this has invalid values for LDADDR.
8361 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8363         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
8365         * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
8367 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8369         * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
8370         for accessing field->data.
8372 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8374         * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
8376 2008-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
8378         * simd-methods.h: Add SignedPackWithUnsignedSaturation.
8380         * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
8382 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8384         * dominators.c (mono_compute_natural_loops): Allocate GList enties
8385         from the cfg mempool.
8387 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
8389         * basic-simd.cs: Tests for new methods in Vector8us.
8391 2008-10-20  Rodrigo Kumpera  <rkumpera@novell.com>
8393         * mini-ops.h: Add multiply and store high.
8394         
8395         * cpu-x86.md: Same.
8397         * mini-x86.c (mono_arch_output_basic_block): Same.
8399         * simd-methods.h: Same.
8401         * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
8402         and CompareEqual.
8404 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8406         * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
8407         mono_class_setup_vtable ().
8409         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
8410         mono_class_get_vtable_entry () for accessing klass->vtable.
8412         * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
8414         * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
8415         found.
8417         * method-to-ir.c (mono_save_token_info): Don't save references made from
8418         wrappers.
8420         * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
8421         of generic instances.
8423         * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
8425 2008-10-19  Mark Probst  <mark.probst@gmail.com>
8427         * cpu-ppc.md, mini-ppc.c: The length of the code generated for
8428         OP_JMP depends on the method signature.  Calculate it properly.
8430 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8431         
8432         * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
8433         called directly.
8435         * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
8436         instances.
8437         (emit_extra_methods): Add another table mapping method indexes to 
8438         offsets in the extra_method_info table.
8440         * mini.h: Bump AOT file format version.
8441         
8442         * aot-runtime.c: Merge most of the code from mono_aot_get_method
8443         and mono_aot_get_method_from_token () into one function.
8445 2008-10-19  Mark Probst  <mark.probst@gmail.com>
8447         * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
8448         separate counter.
8450 2008-10-18  Zoltan Varga  <vargaz@gmail.com>
8452         * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
8453         methods.
8455         * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
8456         disable_aot.
8458         * mini.c (mono_patch_info_equal): Compare the generic context as well.
8460         * mini.h: Bump aot file format version.
8462         * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
8463         AOT file can contain native code for methods which are not in the METHOD
8464         table. Generate code for non-sharable generic instances of generic methods
8465         found in the METHODSPEC table.
8466         
8467         * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
8468         encoding generic type handles.
8470         * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
8471         (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
8473         * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
8474         macros + MONO_ADD_INS.
8476         * mini.c (mono_jump_info_token_new2): New function which takes a generic
8477         context as well.
8479         * mini.h (MonoJumpInfoToken): Include fields for a generic context.
8481         * mini.h: Bump aot file format version.
8483         * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
8485 2008-10-17  Mark Probst  <mark.probst@gmail.com>
8487         * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
8488         platforms, with definable stack alignment value.  Set to 16 now
8489         for all platforms.
8491         * mini.c, mini.h, driver.c: Command line option for disabling
8492         stack alignment.
8494 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
8496         * basic-simd.cs: Tests for new methods in Vector4ui.
8498 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
8500         * mini-ops.h: Add packed int shuffle.
8501         
8502         * cpu-x86.md: Same.
8504         * mini-x86.c (mono_arch_output_basic_block): Same.
8506         * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
8507         extract mask, max, min, shuffle.
8509         * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
8511 2008-10-17  Rodrigo Kumpera  <rkumpera@novell.com>
8513         * basic-simd.cs: Tests for new methods in Vector8us.
8515 2008-10-17  Mark Probst  <mark.probst@gmail.com>
8517         * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
8518         RuntimeTypeHandle, not a TypedReference.
8520 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
8522         * simd-intrinsics.c: remove relocations.
8524 2008-10-17  Zoltan Varga  <vargaz@gmail.com>
8526         * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM 
8527         optimizations from the x86 backend.
8529 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
8531         * simd-methods.h, simd-intrinsics.c: debloat method names and
8532         prepare for no relocations.
8534 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
8536         * mini-ops.h: Add packed min/equal and sum of absolute differences.
8537         
8538         * cpu-x86.md: Same.
8540         * mini-x86.c (mono_arch_output_basic_block): Same.
8542         * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
8543         extract mask, max, min and sum of absolute differences.
8545         * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
8546         method name.
8548 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
8550         * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
8551         Renamed one test for consistency.
8553 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
8555         * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
8556         fix to the code that deal with other blocks.
8558 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
8560         * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
8562 2008-10-16  Rodrigo Kumpera  <rkumpera@novell.com>
8564         * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
8565         that deals with vreg interference. Explicitly check for OP_LDADDR to be
8566         able to process the source reg.
8568 2008-10-16  Martin Baulig  <martin@ximian.com>
8570         * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
8572         * inssel.brg: Add `OP_HARD_NOP'.
8574         * mini.h (MonoCompile): Added `keep_cil_nops' flag.
8576         * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
8577         `OP_HARD_NOP' instruction when running inside the debugger.
8579         * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
8580         `OP_HARD_NOP' instruction when running inside the debugger.
8582 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
8584         * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
8585         now works. The issue with the regalloc tripping up no longer
8586         happens.
8588         * simd-intrinsics.c (load_simd_vreg): Same.
8590 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
8591         
8592         * basic-simd.cs: Tests for new Vector8ui methods.
8594 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
8596         * simd-intrinsics.c (get_simd_vreg): Simplify code and test
8597         only for type. This fixes crashes where MonoInst::klass is checked
8598         for ops of type != VTYPE or OBJ.
8600         * simd-intrinsics.c (load_simd_vreg): Same.
8602 2008-10-15  Rodrigo Kumpera  <rkumpera@novell.com>
8604         * mini-ops.h: Add ops for packed shuffle/max/avg and
8605         extract mask.
8606         
8607         * cpu-x86.md: Same.
8609         * mini-x86.c (mono_arch_output_basic_block): Same.
8611         * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
8612         extract mask.
8614         * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
8615         to emit extract mask op.
8617         * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
8618         to emit word shuffles.
8620 2008-10-15  Mark Probst  <mark.probst@gmail.com>
8622         * mini.c (mono_allocate_stack_slots_full): Align stack frame to
8623         the largest alignment needed by a variable, but at least
8624         sizeof(gpointer).
8626 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
8628         * basic-simd.cs: Tests for the fixes in the last commit.
8630 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
8632         * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
8633         no longer handles STACK_PTR input.
8635         * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
8637         * simd-intrinsics.c (load_simd_vreg): New function that works like 
8638         get_simd_vreg   but handles STACK_PTR input.
8640         * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
8641         as the input can be an arbitrary pointer.
8643         * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
8644         LDADDR local optimization directly otherwise use a store op.
8646 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
8648         * basic-simd.cs: Tests for dup low and dup high.
8650 2008-10-14  Rodrigo Kumpera  <rkumpera@novell.com>
8652         * mini-ops.h: Add dup low and dup high ops.
8653         
8654         * cpu-x86.md: Same.
8656         * mini-x86.c (mono_arch_output_basic_block): Same.
8658         * simd-intrinsics.c (vector4f_intrinsics): Same.
8660 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
8662         * basic-simd.cs: Tests for recently added functionality.
8664 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
8666         * mini-ops.h: Add remaining sse1 fp ops.
8667         
8668         * cpu-x86.md: Add remaining sse1 fp ops.
8670         * mini-x86.c (mono_arch_output_basic_block): Same.
8672         * mini.h: Add enum for simd FP compare conditions.
8674         * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
8676         * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
8677         so the backed can generate the appropriate op.
8679 2008-10-13  Rodrigo Kumpera  <rkumpera@novell.com>
8680         This patch squeese one more byte from the SimdIntrinsc struct.
8682         * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
8683         a a shift amount intead of simply or'ing it.
8685         * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
8687         * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
8688         byte so we can have an aditional flags field without increasing struct size.
8690         * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
8691         against the simd_supported_versions bitmask.
8693         * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
8695 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
8697         * mini.c: remove rawbuffer code (the only use here is unsafe because
8698         it takes locks during signal handling and the kernel now provides much
8699         better info in proc/pid/smaps these days).
8701 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8703         * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
8704         OP_X86_PUSH_OBJ. Fixes #434620.
8706         * objects.cs: Add a test.
8707         
8708 2008-10-12  Rodrigo Kumpera  <rkumpera@novell.com>
8710         * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
8711         that the packuswb/packusdw don't work with unsigned numbers for what
8712         would be negative numbers in signed format.
8714         * cpu-x86.md: Add doubleword forms of many ops and packing ones.
8715         Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
8717         * mini-ops.h: Add doubleword forms of many ops and packing ones.
8719         * mini-x86.c: Emit doubleword forms of many ops and packing ones.
8721         * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
8723         * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
8725         * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
8726         add more ops.
8728         * simd-intrinsics.c (simd_version_name): New function, returns the name of the
8729         version as the enum in mini.h.
8731         * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
8732         for sse3 ops, check the simd_version field if present. This way the code
8733         works with all versions of sse.
8735 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8737         * simd-intrinsics.c: Fixed intrinsic name typo.
8739         * mini.h: Added missing simd exported function.
8741         * basic-simd.cs: Added tests for Vector4ui.
8742         Fixed broken test for Vector16b.
8744 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8746         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
8747         the max length to 64.
8749 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8751         * method-to-ir.c: Only do the fast virtual generic method call for
8752         non-wrapper methods.
8754         * mini.h, mini-trampolines.c: The new generic virtual remoting
8755         trampoline handles virtual method calls via the vtable (as done by
8756         the fast virtual generic method calls) to remoting proxies.
8758         * mini.c (mono_jit_create_remoting_trampoline): For generic
8759         methods reate a generic virtual remoting trampoline.
8761         * mini-amd64.h: Enable fast virtual generic method calls again.
8763 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8765         * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
8766         restore registers when doing tail calls.
8768 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8770         * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
8771         Vector4ui.
8773 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8775         * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
8777 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8779         * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
8781 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8783         * basic-simd.cs: Retrofit for API changes.
8785 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8787         * mini-ppc.c: Handle integer stack arguments for tail calls.
8789 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8791         * optflags-def.h: Removed sse3 optimization.
8793         * driver.c: Same.
8795         * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
8796         sse3.
8798         * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
8800         * mini.h: Added enumeration with simd versions.
8802         * simd-intrinsics.c (emit_intrinsics): Use the new static var
8803         for detecting SSE3.
8805         * simd-intrinsics.c: Added mono_simd_intrinsics_init.
8807         * mini.c (mini_init): Call mono_simd_intrinsics_init.
8809 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8811         * basic-simd.cs: Added tests for Vector8u and Vector16u.
8813         * basic-simd.cs: Fixed test naming.
8815 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8817         * mini-ops.h: Added ops for packed and saturated math, shifts
8818         and packing/unpacking.
8820         * cpu-x86.md: Added descriptors for the above ops.
8822         * mini-x86.c: Added code to emmit the above ops.
8824         * simd-intrinsics.c: Added support for Vector16u and Vector8u.
8826 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
8828         * aot-compiler.c (compile_method): Enable AOT for generic code.
8830         * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
8832 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
8834         * mini.c: add a workaround for a common screwup that ends up blamed
8835         to mono (other processes blocking signal delivery).
8837 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
8839         * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
8840         in the LDFLD/STFLD opcodes. Fixes #432673.
8842         * iltests.il.in: Add a new test.
8844 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
8846         * mini-arm.c: attach the thread in unmanaged->managed transitions
8847         using delegates (bug #433148).
8849 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
8851        * basic-simd.cs: Use new ShuffleSel constants.
8853 2008-10-07  Rodrigo Kumpera  <rkumpera@novell.com>
8855         * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
8857         * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
8858         only disable simd intrinsics if no sse2 is detected.
8860         * optflags-def.h: Added sse3.
8862         * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
8863         is disabled.
8865 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
8867         * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
8868         when adding delegate-invoke wrappers.
8870 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
8872         * Makefile.am: Reenable the simd tests.
8874 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8876         * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
8877           add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
8878           other vreg is allocated to that hreg.
8880         Contributed under MIT/X11 license.
8882 2008-10-07  Zoltan Varga  <vargaz@gmail.com>
8884         * Makefile.am: Disable the simd tests for now as Mono.Simd is not
8885         yet checked in.
8887 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
8889         * basic-simd.cs: New test suite for SIMD intrinsics.
8891         * Makefile.am: Added new tests.
8893 2008-10-06  Rodrigo Kumpera  <rkumpera@novell.com>
8895         * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
8897         * mini-ops.h: Same.
8899         * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
8901         * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
8902         using SSE2 aware opcodes.
8904         * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
8905         is enabled, this code path is only reachable if conversion ops are emmited after
8906         mono_method_to_ir.
8908         * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
8910         This optimization saves 6 bytes per conversion against the old version.
8912 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8914         * aot-compiler.c (compile_method): Don't skip methods referencing 
8915         generic methods without a corresponding entry in token_info_hash, since
8916         encode_method_ref () can handle all generic methods now.
8918         * method-to-ir.c (mono_save_token_info): Don't save the token info if a 
8919         generic context is set.
8920         
8921         * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
8922         generic sharing of LDTOKEN.
8924 2008-10-06  Mark Probst  <mark.probst@gmail.com>
8926         * mini-amd64.h: Temporarily disabled fast virtual generic method
8927         calls because it breaks the System.Runtime.Remoting tests.
8929 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8931         * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
8933         * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
8934         so inlining actually works.
8935         (check_inline_caller_method_name_limit): Ditto.
8937 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
8939         * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
8940         64 bit safety (from Olaf Hering and Andreas Farber).
8942 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8943         
8944         * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
8945         mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
8946         unused virtual call support code.
8948         * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
8949         
8950         * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
8951         which can't use aot trampolines.
8952         (decode_patch): Don't create aot trampolines for methods which can't use
8953         them.
8955         * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
8956         use aot trampolines.
8958         * mini.h: Bump AOT image format version.
8959         
8960 2008-10-05  Zoltan Varga  <vargaz@gmail.com>
8962         * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
8963         to save_token_info () since cmethod is inflated for constrained calls.
8965         * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
8967 2008-10-04  Andreas Farber  <andreas.faerber@web.de>
8969         * Makefile.am: Add build rules for ppc64.
8970         This avoids the build failing at pedump with unresolved symbols
8971         due to lack of arch_sources. Instead it will now fail earlier
8972         due to lack of cpu-ppc64.md.
8974         Contributed under MIT/X11 license.
8976 2008-10-04  Mark Probst  <mark.probst@gmail.com>
8978         * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
8979         tail calls.
8981         * iltests.il.in: Add test case for tail call with many arguments.
8983 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
8985         * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
8986         to the fast virtual generic method code until the aot case is fixed.
8988 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8990         * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
8992 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8994         * mini-amd64.c, mini-amd64.h: Implement generic virtual method
8995         thunks.
8997 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
8998         
8999         * simd-intrinsics.c: Forgot to add this one.
9001         * mini-codegen.c: Fix macro in case SIMD is not supported.
9003 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9004         
9005         This patch land initial JIT support for simd intrinsics.
9007         * mini-x86.h: Added new define to make --enable_minimal work on x86.
9009         * Makefile.am: Added simd-intrinsics.c
9011         * simd-intrinsics.c: New file with simd instrinsic related
9012         code.
9014         * cfold.c (mono_constant_fold_ins2): Fold XZERO.
9016         * cpu-x86.md: Add simd related instructions.
9018         * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
9020         * driver.c: Added two new --regression variants.
9022         * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
9024         * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
9026         * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
9027         extract some complicated logic to helper functions.
9029         * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
9031         * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
9033         * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
9034         the specialized simplification pass.
9036         * method-to-ir.c (mono_spill_global_vars): Use new macro.
9038         * mini-codegen.c: Added SIMD constants to all regbanks arrays.
9040         * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
9041         table.
9043         * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
9044         if MONO_ARCH_NEED_SIMD_BANK is defined.
9046         * mini-ops.h: Added the new simd ops.
9048         * mini-x86.c: Added mono_arch_xregname.
9050         * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
9052         * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
9054         * mini-x86.h: Define simd related MONO_ARCH macros.
9056         * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
9058         * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
9060         * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
9061         MONO_CLASS_IS_SIMD to deal with simd related IR.
9063         * mini.h (MonoInst): Added spill_var to the backend union.
9065         * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
9067         * mini.h: Added forward declarations of the new simd fuctions.
9069         * optflags-def.h: Added new optimization names SIMD.
9071         * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
9073         * regalloc.h: Added support for working with 3 register banks.
9075         * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
9077         * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
9079 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
9081         * mini-exceptions.c: remove 64 bit related ifdef clutter.
9083 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9085         * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
9086         instead of one on 64 bit systems.
9088         * method-to-ir.c: Remove unused includes.
9090 2008-10-02  Zoltan Varga  <vargaz@gmail.com>
9092         * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
9093         cfg->used_int_regs, since the two are different on arm.
9095 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9097         * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
9098         mono_method_get_vtable_index() to get the vtable index.
9100 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9102         * method-to-ir.c (mono_method_to_ir2): Don't create native
9103         wrappers for array methods, because they're never called (and if
9104         they were called they wouldn't work).
9106 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9108         * method-to-ir.c (mono_method_to_ir2): Array methods are
9109         special-cased and must not be invoked indirectly via the (M)RGCTX
9110         when generic sharing is turned on.  Fixes #431413.
9112 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9114         * method-to-ir.c: When generic sharing is active, call
9115         non-interface virtual generic methods via the standard trampoline.
9117         * mini-trampolines.c: Handle virtual generic shared methods.
9119         * mini.h, mini-x86.c, mini-x86.h: New argument for
9120         mono_arch_build_imt_thunk() which is non-NULL for virtual generic
9121         method thunks and which is the trampoline to call if the lookup
9122         fails.  Enable the virtual generic method thunk for x86.
9124         * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
9125         mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
9126         argument but assert that it's NULL, because these archs don't yet
9127         implement the virtual generic method thunk.  Changes in the IMT
9128         thunk data structures.
9130 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9132         * aot-compiler.c (emit_globals): Avoid invalid characters in
9133         the static linking symbol.
9135         * objects.cs: Add a test for the range check optimization. Fix warnings.
9137         * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
9138         optimization from the current JIT.
9140         * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
9141         later in decompose_array_access_opts () to allow more optimizations.
9143         * method-to-ir.c (mono_handle_soft_float): Rename this to 
9144         mono_decompose_soft_float () for consistency.
9146         * mini-ops.h: Fix arguments of OP_STRLEN.
9148         * method-to-ir.c (save_cast_details): Extract the cast details saving code
9149         into a separate function.
9150         (reset_cast_details): Ditto.
9151         (handle_unbox): Save cast details. Fixes #431254.
9153         * method-to-ir.c: Remove some obsolete FIXMEs.
9155 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9157         * ir-emit.h (alloc_dreg): Write a warning before crashing.
9159 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9161         * mini-codegen.c: More work on macros to make them
9162         ready for multiple regbanks.
9164 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9166         * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
9168         * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
9170 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9172         * mini-codegen.c (mono_spillvar_offset): Proper support for
9173         multiple regbanks.
9175 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
9177         * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
9178         the stack overflow changes.
9180 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9182         * mini-codegen.c: Make all bank macros depend on reg_bank.
9184         * mini-codegen.c (mono_local_regalloc): Make free mask
9185         initialization regbank aware.
9187 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9189         * mini-codegen.c (mono_local_regalloc): Extract callee
9190         mask selection to a function and make it regbank aware.
9192 2008-09-30  Rodrigo Kumpera  <rkumpera@novell.com>
9194         * mini-codegen.c (mono_local_regalloc): Changed the cloberring
9195         code to deal with many regbanks.
9197 2008-09-30  Zoltan Varga  <vargaz@gmail.com>
9199         * mini-codegen.c: More fp->regbank changes.
9201 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
9203         * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
9204         of a hardcoded constant.
9206 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
9208         * method-to-ir.c (type_from_stack_type): Fix typo.
9210 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9212         * mini-ia64.c (emit_move_return_value): Convert float return values to
9213         double.
9215         * objects.cs: Add a new test.
9216         
9217         * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
9218         VARARG methods to fix an assert later.
9220         * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
9221         end so it at least compiles.
9223 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
9225         * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
9227 2008-09-28  Rodrigo Kumpera  <rkumpera@novell.com>
9229         * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
9230         optimization to a new function (emit_optimized_ldloca_ir) and enable
9231         it for both ldloca and ldloca_s.
9233 2008-09-28  Zoltan Varga  <vargaz@gmail.com>
9235         * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
9236         gshared CASTCLASS code.
9238         * driver.c (mono_main): Add a workaround for shutdown crashes seen on
9239         amd64, where the libc stack unwinder encounters stack frames referring to
9240         native code in unmapped memory.
9242         * method-to-ir.c (mini_emit_check_array_type): Add support for generic
9243         sharing.
9245         * generics.cs: Add new test.
9247 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9249         * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
9250         add a check that one of the ARM_FPU_ constants is defined.
9252         * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
9253         
9254         * mini-exceptions.c: Fix build on non-altstack platforms.
9256         * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
9257         sharing of vtypes.
9259         * ir-emit.h: Add a comment to NEW_PCONST.
9261         * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
9263         * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
9265         * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
9266         after the changes to MonoJitDomainInfo.
9268 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9270         * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
9272 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9274         * mini-ppc.c: Compiler warning fixes.
9276 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9278         * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
9279         for pinvokes.
9281 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9283         * exceptions-ppc.c, mini-ppc.h: Compile
9284         mono_arch_handle_altstack_exception() on Darwin, too.
9286 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9288         * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
9289         work on archs which don't have generic sharing implemented, only
9290         without the vtable_arg.
9292 2008-09-26  Mark Probst  <mark.probst@gmail.com>
9294         * mini.c: Added comment explaining why delegate ctor icall
9295         wrappers are compiled.
9297 2008-09-26  Mark Probst  <mark.probst@gmail.com>
9299         * mini.c: Don't produce trampolines to delegate ctor icall
9300         wrappers but compile them upfront.
9302 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9304         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
9305         runtime-set function when going back to managed code. Currently this
9306         is used to set back the protection on the soft ovf pages and/or to
9307         throw the stack overflow exception that happened in unmanaged code.
9309 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9311         * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
9312         runtime-set function when going back to managed code. Currently this
9313         is used to set back the protection on the soft ovf pages and/or to
9314         throw the stack overflow exception that happened in unmanaged code.
9316 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
9318         * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
9319         the support code for restoring stack protection after stack overflows
9320         that happen in unmanaged code. Don't set the exec permission on the
9321         soft overflow area.
9323 2008-09-26  Zoltan Varga  <vargaz@gmail.com>
9325         * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
9326         delegate->method_ptr is set. Fixes #428054.
9328 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9330         * tests.cs: Rename to ratests.cs.
9332         * method-to-ir.c: Merge the emit_get_rgctx () calls into the 
9333         emit_get_rgctx_... functions.
9335 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9337         * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
9339 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9341         * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
9342         before asserting that method is sharable.
9344 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9346         * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
9347         whether method needs a static RGCTX wrapper used instead of
9348         complex conditions.
9350         * generic-sharing.c, mini.h: A few functions moved to
9351         metadata/generic-sharing.c.
9353 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9355         * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
9356         Generic code sharing for value types, which essentially means
9357         treating value type methods like static methods.  The RGCTX is
9358         passed in the same way.
9360 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9362         * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
9363         opcode when creating multi-dimensional arrays of open types.
9365         * generic-sharing.c (mono_method_check_context_used): Handle arrays of
9366         open generic types.
9368         * generics.cs: Add a test.
9370         * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
9372 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9374         * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
9376         * mini.c (mini_method_compile): Set it when running under the debugger. 
9378         * method-to-ir.c (mono_handle_global_vregs): Disable global->local
9379         vreg optimization if the flag is set.
9381         * driver.c (mono_main): Add --attach= option to pass options to
9382         the attach agent.
9384         * mini.c (sigquit_signal_handler): Start the attach agent.
9386         * ssapre.c: Disable this to save space since it is not yet ported to
9387         linear IR.
9389         * regalloc2.c: Disable this to save space.
9391         * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
9393 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9395         * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
9396         the -v option useful again.
9398 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9400         * mini-amd64.c (mono_arch_output_basic_block): Add support for
9401         --break-at-bb.
9403         * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
9404         arrays of arrays. Fixes #428406.
9406         * method-to-ir.c (mini_emit_castclass): Ditto.
9408         * objects.cs: Add new test.
9409         
9410 2008-09-23  Rodrigo Kumpera  <rkumpera@novell.com>
9412         * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
9413         was wrong at it choked against target_type_is_incompatible for byref types.
9415 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
9417         * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most 
9418         places.
9420 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
9422         * mini-exceptions.c: update a few more exceptions-related counters.
9424 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9426         * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
9427         new functions to allocate from persistent mempools.
9429 2008-09-23  Zoltan Varga  <vargaz@gmail.com>
9431         * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow 
9432         multiple register banks in the future.
9434         * mini-codegen.c (mono_local_regalloc): Fix a warning.
9436 2008-09-22  Rodrigo Kumpera  <rkumpera@novell.com>
9438         * mini.c (type_to_eval_stack_type): Remove duplicated function.
9440         * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
9442         * mini.h: Export type_to_eval_stack_type.
9444         This function was nearly duplicated in method-to-ir.c and mini.c. The difference
9445         is only ins->klass of byref types.
9447 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9449         * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
9450         (mini_emit_memcpy2): Ditto.
9452         * mini-amd64.c: Fix a warning.
9454 2008-09-21  Mark Probst  <mark.probst@gmail.com>
9456         * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
9457         linking.
9459 2008-09-19  Rodrigo Kumpera  <rkumpera@novell.com>
9461         * method-to-ir.c: Extract stloc micro-optimization to a
9462         function and apply it to all cases.
9464 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9466         * method-to-ir.c: Don't fail generic code sharing in cases we
9467         already support.
9469 2008-09-18  Mark Probst  <mark.probst@gmail.com>
9471         * mini-ppc.c: Handle structs in tailcalls on Darwin.
9473 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9475         * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
9476         implementation.
9478 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
9480         * trace.c: make tracing more useful and correct, with per-thread
9481         id and indent info.
9483 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9485         * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
9486         doing a method call and the argument is an R4.
9488 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
9490         * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
9491         generic methods.
9493 2008-09-13  Mark Probst  <mark.probst@gmail.com>
9495         * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
9497 2008-09-12  Zoltan Varga  <vargaz@gmail.com>
9499         * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
9500         (MONO_JUMP_TABLE_FROM_INS): Ditto.
9502 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
9504         * driver.c: Add a --agent argument (not supported yet) to load managed
9505         agent assemblies before loading the main assembly, similarly to how the
9506         Java VM handles agents.
9508 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9510         * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
9511         function to do stack layout of local variables.
9513 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9515         * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
9516         calculation.
9518 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
9520         * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
9521         abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
9522         JIT if DISABLE_JIT is defined.
9524         * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
9525         defined.
9527 2008-09-10  Mark Probst  <mark.probst@gmail.com>
9529         * iltests.il.in: Disable the fconv test on PPC (the result is
9530         undefined according to ECMA).
9532 2008-09-10  Mark Probst  <mark.probst@gmail.com>
9534         * iltests.il.in: Enable tail call tests for PPC.
9536         * mini.h: Add variable for storing incoming valuetype argument
9537         addresses for tail calls.
9539         * mini-ppc.c: Implement valuetype arguments and return values for
9540         tailcalls on Linux.
9542 2008-09-09  Mark Probst  <mark.probst@gmail.com>
9544         * mini-ppc.c: Partially implement tail calls (struct arguments and
9545         return values not supported).
9547         * method-to-ir.c: Enable tail calls on PPC.
9549 2008-09-08  Zoltan Varga  <vargaz@gmail.com>
9551         * aot-compiler.c (emit_wrapper_info): Omit the klass name from
9552         runtime-invoke wrappers to work around the problem of them getting
9553         assigned to a random class.
9555         * aot-runtime.c (mono_aot_get_method): Ditto.
9556         
9557 2008-09-07  Zoltan Varga  <vargaz@gmail.com>
9559         * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
9560         the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
9562 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9564         * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
9565         until they're implemented properly.
9567         * exceptions-ppc.c: Use arch-independent exception-handling code
9568         instead of custom one.
9570         * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
9571         for Linear IR.
9573         * tramp-ppc.c, mini-ppc.c: Fixed warnings.
9575         * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
9576         applies when __powerpc__ is defined.
9578 2008-09-06  Zoltan Varga  <vargaz@gmail.com>
9580         * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
9581         methods to their code to avoid computing the full name of wrappers and
9582         doing a lookup in a string hash table.
9584 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
9586         * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
9587         we identify bblocks before method_to_ir () is ran.
9589         * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
9590         Also avoid optimizing branches pointing to themselves.
9592         * mini.c (mini_method_compile): Ditto. Fixes #422947.
9594 2008-09-05  Rodrigo Kumpera  <rkumpera@novell.com>
9596         * driver.c (mono_main): Enable the new verifier under core-clr and cas.
9598 2008-09-05  Zoltan Varga  <vargaz@gmail.com>
9600         * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
9601         (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
9602         (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
9603         'buf'.
9605         * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all 
9606         jumped to the same entry in plt_jump_table.
9608 2008-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
9610         * method-to-ir.c (initialize_array_data): Handle field with RVA from
9611         dynamic images.
9613 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9615         * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
9616         other assignment can be if converted. Saves 1.5% on corlib size and fixes
9617         #421807.
9619 2008-08-29  Geoff Norton  <gnorton@novell.com>
9621         * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
9622         segment, and doesn't properly handle .space as .text.  Fixes
9623         AOT Mach/ARM
9625 2008-08-29  Geoff Norton  <gnorton@novell.com>
9627         * mini.c: Disable the mach exception handler when running on 
9628         ARM
9630 2008-08-29  Geoff Norton  <gnorton@novell.com>
9632         * aot-compiler.c: Patch from Renaldas Zioma to properly register 
9633         globals on Darwin/ARM
9635 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9637         * mini.c: Avoid not initializing the runtime when doing AOT compilation, 
9638         since too many things depend on it. Instead, call 
9639         mono_runtime_set_no_exec ().
9640         
9641         * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
9642         the new JIT.
9644         * aot-compiler.c: Add an 'asm-only' AOT option.
9646         * mini.c: Avoid initializing the runtime when doing AOT compilation.
9647                 
9648         * aot-compiler.c (compile_method): Disable gshared support for now as it
9649         doesn't yet work.
9651 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
9653         * mini-amd64.h : Fix a compiler warning.
9655         * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
9656           Changed to use a callback function to retrieve the unwind info.
9657           This avoids problems observed when code blocks were removed by
9658           unloading an app domain.
9660         * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole 
9661           and branch excludes for Winx64.  The fix in exceptions-amd64.c allows them
9662           to work properly.
9664         Contributed under MIT/X11 license.
9666 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
9668         * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
9669           case to keep the stack aligned to 8.
9671         Contributed under MIT/X11 license.
9673 2008-08-26  Zoltan Varga  <vargaz@gmail.com>
9675         * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
9676         avoid repeated linear searches.
9678 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9680         * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
9681         methods it can't handle.
9682         
9683         * aot-compiler.c (add_method): Avoid adding a method twice.
9684         (add_wrappers): Add runtime invoke wrappers for all methods.
9686         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
9687         function to create an aot-compatible version of this trampoline.
9689         * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
9691 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9693         * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
9695         * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
9696         with a generic sharing failure.
9698         * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
9700         * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
9701         CEE_RETHROW. Fixes #419634.
9703         * mini.c (mono_method_to_ir): Ditto.
9705         * exceptions.cs: Add a new test.
9706         
9707         * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
9708         to mono_type_stack_size_internal () since some callers might not pass in
9709         an rgctx.
9711         * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
9712         instrument_prolog. Fixes #419878.
9714         * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
9715         doubles in soft float mode volatile.
9717 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9719         * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
9721         * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
9722         to handle soft float correctly.
9724         * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
9725         the fast path.
9727         * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
9729         * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
9730         to sp, since the generics catch code requires it.
9732         * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
9733         copying.
9735         * method-to-ir.c (emit_imt_argument): Pass imt_arg to 
9736         mono_arch_emit_imt_argument ().
9738         * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
9740         * mini-arm.c tramp-arm.c: Generic sharing updates.
9742 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9744         * mini-arm.c: Fix the arm build.
9746         * generic-sharing.c (mini_type_get_underlying_type): New helper function
9747         handling enums, generic instances and generic sharing.
9748         (mini_type_stack_size_full): Ditto.
9750         * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
9751         
9752         * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
9754         * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
9756         * tramp-arm.c: Implement the rgctx fetch and the generic class init 
9757         trampolines.
9759         * mini-arm.c: Various small generic sharing changes.
9761         * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
9762         this for x86.
9763         (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
9764         custom code.
9766         * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
9767         helper function to return a generic class init trampoline.
9769         * method-to-ir.c mini.c: Use it.
9770         
9771         * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
9772         arch-specfic function to return a generic class init trampoline.
9774         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
9775         the GENERIC_CLASS_INIT custom code.
9777         * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
9778         a fatal error, not a sharing failure.
9780         * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
9781         needed.
9783         * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
9784         trampoline argument from MONO_ARCH_VTABLE_REG.
9786         * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
9787         order of the arguments to the C trampoline: pass 'slot' as the trampoline
9788         argument, and pass the vtable in VTABLE_REG.
9790         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
9791         order of the arguments to the C trampoline: pass 'slot' as the trampoline
9792         argument, and pass the vtable in VTABLE_REG.
9793         (mono_arch_create_trampoline_code_full): Remove some special casing for
9794         the rgctx fetch trampoline.
9796         * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
9797         Fixes #419273.
9799         * iltests.il: Add a test for it.
9801 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9803         * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
9805         * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
9806         no longer needed.
9808         * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
9809         use mono_jit_info_table_find () to avoid recursion.
9810         (mono_delegate_trampoline): Add a sync wrapper here.
9812         * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
9813         here.
9815         * mini.c (mono_method_to_ir): Ditto.
9816         
9817         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
9818         add_sync_wrapper argument. Don't add a sync wrapper here.
9819         (mono_create_jump_trampoline): Don't add a sync wrapper here.
9821         * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
9822         
9823 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9825         * exceptions-amd64.c (seh_handler):  For Winx64 adding missing copy 
9826           of nonvolatile registers back from MonoContext to CONTEXT.
9828         Contributed under MIT/X11 license.
9830 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9832         * mini-amd64.c (mono_arch_get_delegate_invoke_impl):  When shifting the
9833           arguments on Winx64 there are only 4 argument registers.  For this
9834           logic to work the last argument must be pulled from the stack.  
9836         Contributed under MIT/X11 license.
9838 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9840         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
9842         * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
9843         MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
9844         encode/decode_method_ref ().
9846         * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
9848         * aot-runtime.c (decode_patch): Ditto.  
9850         * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
9851         MONO_PATCH_INFO_METHOD.
9853         * aot-runtime.c (decode_exception_debug_info): Decode the contents of
9854         MonoGenericJitInfo.
9856         * aot-compiler.c (emit_exception_debug_info): Emit the contents of
9857         MonoGenericJitInfo.
9859         * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
9861         * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
9862         one from the caller.
9864         * aot-runtime.c (decode_generic_inst): New function to decode and
9865         return a interned generic inst.
9866         (decode_klass_ref): Use it.
9867         (decode_method_ref): Ditto.
9869         * aot-compiler.c (emit_exception_debug_info): Save 
9870         jinfo->has_generic_jit_info too.
9872 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
9874         * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
9876         * iltests.il.in: Add a test for fconv_to_i.
9878         * liveness.c: Disable the liveness2 pass for now to save space.
9880         * regalloc2.c: Include mempool-internals.h to fix warnings.
9882         * aot-compiler.c (encode_method_ref): Encode the context of generic
9883         instance methods.
9885         * aot-runtime.c (decode_method_ref): Inflate generic methods using
9886         the context saved in the aot file.
9888         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
9890         * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
9892         * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
9893         volatile so they won't be optimized away.
9895 2008-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
9897         * ssa.c:
9898         * ssa2.c:
9899         * mini.c:
9900         * regalloc2.c:
9901         * dominators.c: Remove duplicated functions that now are in
9902         mempool-internals.h.
9904 2008-08-19  Zoltan Varga  <vargaz@gmail.com>
9906         * aot-compiler.c: Fix warnings.
9908         * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
9910         * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
9912         * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
9913         as the patch type.
9915         * mini.c (mono_resolve_patch_target): Ditto.
9916         
9917         * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
9918         (encode_klass_ref): Add support for encoding VARs/MVARs.
9920         * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
9922         * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
9923         the handling of the got entries into a separate 'decode_got_entry' function.
9924         Add support for RGCTX_FETCH.
9926         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
9927         clobbered by the trampoline code.
9929         * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
9930         not clobbered by the indirect calling code.
9932 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
9934         * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
9935         to fix the build.
9937 2008-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
9939         * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
9940         signature using the compilation mempool otherwise we would leak it.
9942 2008-08-18  Zoltan Varga  <vargaz@gmail.com>
9944         * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
9945         mono_emit_abs_call ().
9947         * patch-info.h: Add GENERIC_CLASS_INIT.
9949         * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
9951         * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
9952         as their target as a near call.
9954         * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
9955         ABS handling code.
9956         (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
9958         * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
9959         call to a runtime function described by a patch.
9961         * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
9962         mono_emit_abs_call, this has the advantage that the ABS handling code in
9963         mono_codegen () can handle them both, and can handle other stuff in the
9964         future without additional code.
9966         * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
9967         entry.
9968         (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
9969         abs addresses.
9971         * mini.h: Add missing bblock related prototypes.
9973         * mini.h (MonoCompile): Remove unused reverse_inst_list and
9974         reverse_inst_list_len fields.
9976         * mini.c: Refactor this file a bit by moving branch optimizations to 
9977         branch-opts.c.
9979         * method-to-ir.c: Merge generic sharing changes missed earlier.
9981         * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
9983         * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
9984         shared patches. Process METHODCONST as a shared patch.
9986         * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
9987         as it crashes on the 2.0 mscorlib.
9989         * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
9990         to cause crashes.
9991         
9992         * aot-compiler.c: Use is_plt_patch () in a few additional places.
9993         (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
9994         by IMT.
9996         * aot-compiler.c: Reorganize the got handling code to be a bit more
9997         understandable.
9999 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
10001         * aot-compiler.c: Make the patch_to_plt_offset hash table use 
10002         mono_patch_info_equals/hash, and use it to massively simplify
10003         get_plt_index ().
10005         * mini.c (mono_patch_info_hash): Simplify this and add support for
10006         more patch types.
10008         * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
10010         * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
10011         handling code, since an offset is not enough to identify a trampoline.
10013         * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
10015 2008-08-17  Mark Probst  <mark.probst@gmail.com>
10017         * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
10019         * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
10021         * mini-ops.h: Argument and result types for OVF_CARRY ops.
10023         * decompose.c: PPC decompositions for various ops.
10025         * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
10027 2008-08-17  Zoltan Varga  <vargaz@gmail.com>
10029         * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
10030         call the generic trampoline code using a call, instead of a jump, to
10031         remove some special casing from the generic trampoline code.
10033         * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
10034         (mono_codegen): Ditto.
10036         * aot-compiler.c aot-runtime.c: Ditto.
10038         * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
10040         * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
10041         helper function to find the offset corresponding to a lazy fetch trampoline.
10043         * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
10044         when doing generic sharing.
10046         * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
10047         places.
10048         
10049         * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
10050         mini-trampolines.c to be with the other trampoline creation functions.
10052         * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
10053         as it is equal to method->signature in most cases, add a 
10054         mono_emit_method_call_full variant which takes a signature and an imt
10055         argument as well.
10057 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10059         * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
10060         to this function, since it could be computed easily from the method 
10061         argument.
10062         (mono_helper_compile_generic_method_wo_context): Removed, not needed any
10063         more.
10065         * method-to-ir.c mini.c: Remove references to 
10066         compile_generic_method_wo_context.
10068         * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
10069         generic method calls.
10070         
10071         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
10072         dimensional non-szarrays.
10074         * mini.c (mini_init): Register mono_array_new_1.
10076         * jit-icalls.c (mono_array_new_1): New jit icall.
10078         * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
10079         pointing to the method.
10081         * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
10082         method addresses belonging to METHOD_JUMP patches in the 
10083         jump_target_got_slot_hash.
10084         (mono_aot_load_method): Ditto.
10086         * aot-compiler.c (compile_method): Allow AOT compilation of methods with
10087         METHOD_JUMP patches.
10089         * mini.c (mini_create_jit_domain_info): New helper function which 
10090         initializes/frees domain->runtime_info.
10091         (mini_free_jit_domain_info): Ditto.
10092         (mini_init): Install the domain hook functions with the runtime.
10094         * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
10095         information maintained by the JIT.
10097         * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
10098         insertion into jump_table_hash into mono_codegen (), also implement proper
10099         locking.
10101         * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
10102         tail calls, it is already done by the aot code.
10103         
10104         * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
10105         mechanism on amd64.
10107         * iltests.il.in: Make the jmp test a bit more complex.
10109         * aot-compiler.c (encode_method_ref): Handle references to normal methods of
10110         generic instances which doesn't have a token.
10112         * aot-runtime.c (decode_method_ref): Ditto.
10113         
10114         * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
10115         can handle this case now.
10116         (handle_box): Ditto.
10118 2008-08-15  Geoff Norton  <gnorton@novell.com>
10120         * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
10121         debugging check.
10123 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10125         * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
10126         calling generic methods.
10128         * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
10130         * aot-runtime.c (decode_patch_info): Ditto.
10132         * mini.c (mono_resolve_patch_target): Ditto.
10133         
10134         * patch-info.h: Add METHOD_RGCTX.
10136         * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
10138 2008-08-14  Zoltan Varga  <vargaz@gmail.com>
10140         * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
10141         arguments in registers.
10143         * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
10144         OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
10146         * mini.c (mini_method_compile): Abort aot compilation for generic
10147         methods if generic sharing is disabled.
10148         
10149         * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
10150         an mrgctx.
10152         * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls 
10153         requiring an mrgctx.
10155         * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
10156         store instructions when converting a vcall to a normal call.
10158         * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
10159         mono_arch_find_jit_info.
10161 2008-08-13  Zoltan Varga  <vargaz@gmail.com>
10163         * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
10164         avoid calling mono_method_full_name () for every method even if the
10165         env var is not set.
10166         (check_inline_caller_method_name_limit): Ditto.
10168 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10170         * driver.c (main_thread_handler): Allow AOT compilation of multiple 
10171         assemblies in one run.
10173         * aot-compiler.c (mono_compile_assembly): Only print out a count of
10174         skipped methods if it is not 0.
10176         * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
10178 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
10180         * mini.c (mono_codegen):  Changing a preprocessor check from WIN64 to
10181           MONO_ARCH_HAVE_UNWIND_TABLE.
10183         Contributed under MIT/X11 license.
10185 2008-08-12  Bill Holmes  <billholmes54@gmail.com>
10187         * mini-amd64.c (mono_arch_cpu_optimizazions):  Remove peephole and branch
10188           from default optimizaton list on Winx64.
10190         * mini-amd64.c (emit_tls_get):  Added Winx64 specific implementation for GetTLS.
10192         * mini-amd64.c (mono_arch_emit_prolog):  Adding an offset on Winx64 to get
10193           the LMF from the MonoJitTlsData structure.
10195         * mini-amd64.c (mono_arch_setup_jit_tls_data):  Added Winx64 implementation.
10197         Contributed under MIT/X11 license.
10199 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10201         * mini.c (sigsegv_signal_handler): Fix the build.
10203         * mini-amd64.c (emit_call_body): Use image->aot_module instead of 
10204         assembly->aot_module.
10206         * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
10207         hash table. This simplifies and speeds up a lot of code, and fixes support
10208         for .netmodules.
10210         * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
10211         with the runtime.
10213         * mini-exceptions.c: Ditto.
10214         
10215         * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
10216         'native_offset' argument, since these are computed in the 
10217         mono_find_jit_info () function.
10219         * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
10220         is used by exceptions-ppc.c.
10222         * exceptions-ppc.c: Call mono_find_jit_info () instead of 
10223         mono_arch_find_jit_info ().
10224         
10225         * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
10226         mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
10227         generic code in mini-exceptions.c.
10229 2008-08-11  Zoltan Varga  <vargaz@gmail.com>
10231         * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
10233         * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
10234         
10235         * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
10236         the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
10237         called while holding the loader lock. Fixes #415608.
10238         (mono_aot_get_method_from_token_inner): Ditto.
10240 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
10242         * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
10243         to reduce differences between this and the generic implementation in
10244         mini-exceptions.c.
10245         (ves_icall_get_frame_info): Ditto.
10247         * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
10249         * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
10250         longer neccesarry.
10252         * exceptions-ppc.c (arch_get_call_filter): Rename this to 
10253         mono_arch_get_call_filter () and make it non-static, for consistency with the
10254         other architectures.
10256 2008-08-09  Rodrigo Kumpera  <rkumpera@novell.com>
10258         * mini.c:
10259         * local-propagation.c:
10260         * mini-x86.c: Correct the name of arch defines.
10262 2008-08-09  Zoltan Varga  <vargaz@gmail.com>
10264         * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
10265         NO_EMULATE_LONG_SHIFT_OPS define.
10267 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10269         * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
10270         now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
10272         * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
10273         MACH fixes. Merged from the 2.0 branch.
10275         * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
10277         * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
10278         (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
10280         * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
10282         * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
10283         mono_marshal_get_native_wrapper () signature changes.
10285 2008-08-07  Rodrigo Kumpera  <rkumpera@novell.com>
10287         * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
10288         conversion bug under arm.
10290 2008-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
10292         * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
10294         * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
10295         with overflow checking.
10297 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10299         * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
10300         to the genmdesc.pl file
10302 2008-08-05  Zoltan Varga  <vargaz@gmail.com>
10304         * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
10305         arg_array in the soft-float versions of the LOAD/STORE macros.
10307         * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
10308         implementation.
10310         * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
10312 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
10314         * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
10315         a float HFA. Fixes #413621.
10317 2008-08-02  Gert Driesen  <drieseng@users.sourceforge.net>
10319         * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
10320         frame_size to args_size. Fixes build.
10322 2008-08-02  Zoltan Varga  <vargaz@gmail.com>
10324         * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
10325         and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
10327         * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
10328         the stack are not unaligned. Fixes #413247.
10329         
10330 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
10332         * mini.c: update jitted methods performance counters.
10334 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
10336         * mini-exceptions.c: increase the exceptions thrown performance
10337         counter in mono_handle_exception ().
10339 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10341         * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
10342         can work with netmodules.
10344 2008-07-28  Geoff Norton  <gnorton@novell.com>
10346         * mini-x86.h: Correct the frame alignment on OSX.  Fixes the jit 
10347         regression tests.
10349 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
10351         * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
10352         correct place.
10354 2008-07-28  Bill Holmes  <billholmes54@gmail.com>
10356         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
10357           The float param registers and other param registers must be the 
10358           same index on Windows x64.
10360         * mini-amd64.c (mono_arch_allocate_vars) : Implementing the 
10361           ArgValuetypeAddrInIReg argument case.  Setting the argument
10362           op to OP_VTARG_ADDR (OP_REGOFFSET)).
10364         * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix.  Use the size
10365           variable computed above as the copy length for arguments of storage
10366           type ArgValuetypeAddrInIReg.
10368         * mini-amd64.c (mono_arch_emit_call) :  Implementing the 
10369           ArgValuetypeAddrInIReg argument case.  This case will rely on
10370           mono_arch_emit_outarg_vt to emit the correct code later in the process.
10372         * mini-amd64.c (mono_arch_emit_call) :  On Winx64 there always needs to be
10373           a 32 byte stack allocation for all calls.  We will omit the adjustment for
10374           jump and tail call instructoins as they do not follow the typical call behavior.
10376         * mini-amd64.c (mono_arch_emit_outarg_vt) :  Implementing the case for
10377           ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
10378           local variable and pass the local variable by reference to the called method.
10380         * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
10381           Implementing the ArgValuetypeAddrInIReg argument case.  When the address
10382           of a struct is passed in a register it must be saved with the other
10383           volatile argument on the stack.
10385         * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix.  When omitting the
10386           frame pointer the stack adjustment value must be saved to the unwind 
10387           info structure.
10389         Contributed under MIT/X11 license.
10391 2008-07-28  Zoltan Varga  <vargaz@gmail.com>
10393         * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
10394         which got lost in the merge.
10396 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10398         * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
10399         build.
10401         * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
10402         
10403         * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
10404         icalls, since they won't be patched.
10406         * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
10407         different code sequence when running under valgrind to prevent some valgrind
10408         errors.
10410         * iltests.il.in: Add new regression test.
10412         * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
10413         end with a throw.
10415         * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
10416         accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
10418         * iltests.il.in: Add new test.
10420         * aot-compiler.c: Fix some warnings.
10422         * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
10423         Fixes #412494.
10425 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10427         * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
10428         (mini_usage_jitdeveloper): Add a missing --wapi option.
10430 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
10432         * mini-codegen.c: Simplify the is_fp macros.
10433         (free_up_ireg): Remove, use free_up_reg instead.
10434         (free_up_reg): Fix the fp case.
10436 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
10438         * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
10439         lowered earlier.
10441         * exceptions-x86.c: Merge some changes which seemed to have got lost
10442         in the linear-ir merge.
10444         * liveness.c: Disable the liveness2 pass on 32 bit platforms.
10446         * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
10447         long vreg volatile even if the variable was already created.
10449         * liveness.c (update_liveness2): Avoid eliminating dead definitions of
10450         volatile variables.
10452 2008-07-26  Zoltan Varga  <vargaz@gmail.com>
10454         * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
10456         * mini.c (mono_jit_compile_method_inner): Add support for 
10457         MONO_EXCEPTION_BAD_IMAGE.
10459         * method-to-ir.c (mono_method_to_ir2): Avoid a crash if 
10460         mini_method_get_context () returns NULL. Fixes #356531.
10462         * mini.c (mono_method_to_ir): Ditto.
10463         
10464         * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
10465         accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
10467 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
10469         * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
10470         in the LDFTN implementation.
10472 2008-07-25  Mark Probst  <mark.probst@gmail.com>
10474         * mini-trampolines.c (mono_magic_trampoline): When sharing generic
10475         code, patch calls to icalls, too, even if they're not in the
10476         shared generic code hash.  Fixes #411962.
10478 2008-07-25  Zoltan Varga  <vargaz@gmail.com>
10480         * cpu-x86.md: Increase the length of the fcall opcodes.
10482         * mini-x86.c (emit_move_return_value): Avoid some precision issues for
10483         calls returning floats.
10485         * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
10486         on NEWARR.
10487         
10488         * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
10489         missed earlier.
10491         * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
10492         into the domain->method_code_hash.
10494         * aot-compiler.c: Fix win32 build.
10496         * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
10497         
10498         * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
10499         gshared NEWARR implementation.
10501         * cpu-sparc.md: Remove duplicate localloc_imm opcode.
10503         * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
10504         can be used outside of method_to_ir.
10506         * mini.h (MonoCompile): Add arg_types field.
10508         * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
10509         
10510         * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
10511         the values of the local arg_array and param_types array.
10513 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10515         * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
10516         got accesses might only get generated later when NEWOBJ is decomposed.
10517         
10518         * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
10519         looking up the native code of the target method when a delegate is called
10520         for the first time.
10522         * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
10523         optimization.
10525         * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
10527         * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
10528         AOT work on platforms without a working dlsym implementation.
10530         * mini.h: Bump AOT image format version.
10531         
10532 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10534         * mini-exceptions.c: Free a MonoType with
10535         mono_metadata_free_type() instead of g_free().
10537         * aot-runtime.c: Free a MonoType.
10539 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10541         * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
10542         optimization.
10544         * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
10545         fp stack on x86.
10547 2008-07-23  Massimiliano Mantione  <massi@ximian.com>
10548         * mini.c (sigprof_signal_handler): call the new "runtime initialized"
10549         profiler hook.
10551 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10553         * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
10554         NEWOBJ calls on valuetypes.
10556         * iltests.il.in: Add new test.
10558         * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
10560 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10562         * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
10563         is no longer needed.
10565         * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
10566         non register sized integer arguments.
10567         (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
10568         (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to 
10569         emit_memcpy2 ().
10571         * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
10572         CEE_MONO_RETOBJ.
10573         
10574         * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
10575         two a binop with different sized arguments is emitted.
10577         * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
10578         instruction in the ins==NULL case.
10580 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10582         * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
10584         * mini-x86.c: Fix osx build.
10586         * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
10587         opcodes as well.
10589         * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
10590         instruction for non int sized variables.
10592         * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
10593         implementation.
10595 2008-07-23  Robert Jordan  <robertj@gmx.net>
10597         * method-to-ir.c: Fix MSVC build.
10599 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10601         * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
10602         a non int sized type, widen it to an int since newer versions of gcc seem to
10603         generate code which needs this.
10605         * ssa2.c abcremoval2.c: Fix warnings.
10607         * *: Merge the Linear IR branch.
10609         The original branch is at trunk/branches/vargaz/mini-linear-il, and
10610         the ChangeLog file there describes all the changes done over the years. 
10611         Further documentation can be found at www.mono-project.com/Linear_IL.
10613 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
10615         * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
10616           The float param registers and other param registers must be the 
10617           same index on Windows x64.
10619         Contributed under MIT/X11 license.
10621 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
10623         * mini.c: Make the previous fix GC safe.
10625 2008-07-21  Raja R Harinath  <harinath@hurrynot.org>
10627         * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
10629 2008-07-21  Bill Holmes  <billholmes54@gmail.com>
10631         * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
10632           on Winx64.  This type will not be passed on the stack (ArgOnStack), but 
10633           ArgValuetypeAddrInIReg instead.
10635         Contributed under MIT/X11 license.
10637 2008-07-21  Zoltan Varga  <vargaz@gmail.com>
10639         * mini-codegen.c (get_register_spilling): Fix a warning.
10641 2008-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
10643         * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
10644         for types which the initialization fails. Raises the provided exception
10645         at the right stop after cleanup.
10647 2008-07-16  Zoltan Varga  <vargaz@gmail.com>
10649         * aot-compiler.c: Free most of the memory allocated during compilation.
10651         * mini.c (mini_parse_debug_options): Fix a leak.
10652         
10653         * mini.c (mini_method_compile): Don't add the method to the jit info tables
10654         during aot compilation.
10656 2008-07-14  Zoltan Varga  <vargaz@gmail.com>
10658         * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as 
10659         it has too much register pressure.
10661 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10663         * inssel.brg (CEE_CASTCLASS): Remove some dead code.
10665 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10667         * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
10668         on x86.
10670         * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
10671         on amd64 similar to the way it is done on arm.
10673         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
10675         * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for 
10676         consistency, normalize error messages, avoid loading aot-only modules in
10677         normal mode.
10679         * driver.c (mono_main): Rename --aot-only command line option to --full-aot
10680         for consistency.
10682         * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
10684 2008-07-11  Martin Baulig  <martin@ximian.com>
10686         * debug-debugger.h
10687         (MonoDebuggerInfo): Add `interruption_request'.
10689 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10691         * aot-compiler.c (emit_plt): Remove some dead code.
10693         * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
10695         * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
10696         return the plt info offset belonging to a given plt entry.
10698         * mini-trampolines.c (mono_aot_plt_trampoline): Use 
10699         mono_aot_get_plt_info_offset.
10700         
10701         * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
10702         similar to the amd64 code by makeing jumps through a separate jump table 
10703         instead of embedding the jump addresses into the code.
10705 2008-07-11  Zoltan Varga  <vargaz@gmail.com>
10707         * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
10708         method.
10710 2008-07-10  Martin Baulig  <martin@ximian.com>
10712         * mini.c (mini_method_compile): Disable generics sharing when
10713         running in the debugger.
10715 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
10717         * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
10719         * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
10720         the local register allocator from running out of registers on x86 when 
10721         using aot.
10723 2008-07-10  Bill Holmes  <billholmes54@gmail.com>
10725         * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when 
10726         expressing IntMin for the VS Compiler.  See Compiler Warning (level 2) 
10727         C4146.
10729         Contributed under MIT/X11 license.
10731 2008-07-10  Zoltan Varga  <vargaz@gmail.com>
10733         * aot-compiler.c: Get rid of whitespace in the generated assembly file to
10734         speed up the assembler.
10736 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
10738         * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
10739         support.
10741         * mini.c: Move the soft float handling macros a bit earlier, add 
10742         NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
10743         place.
10745         * mini.h: Add prototype for mono_arch_fixup_jinfo.
10747         * mini.c (mini_init): In aot-only mode, set the root domain code manager to
10748         read-only to help catch code allocation requests.
10749         
10750         * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
10751         and turn it off when using --aot-only or when compiling with --aot=full.
10753         * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
10754         jump table for switches from the normal domain mempool, not the code
10755         manager.
10757         * mini-trampolines.c (get_unbox_trampoline): New function to return an
10758         unbox trampoline which handles aot-only mode too.
10760         * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
10761         an AOTed unbox trampoline.
10763         * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
10765 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
10767         * wapihandles.c: Fixing MSVC builds.  Include statement changed from <> to
10768         ""
10770         Contributed under MIT/X11 license.
10772 2008-07-09  Bill Holmes  <billholmes54@gmail.com>
10774         * mini.c (mono_codegen):  Allocate space at the end of the code block and store
10775           the unwind information for the method at the end of the allocated block.
10776           
10777         * mini-amd64.h: Added declarations for the unwind routines and adding field to 
10778           MonoCompileArch to hold the unwind info for SEH on Winx64
10779         
10780         * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
10781           frame pointer info for the method being compiled.
10782           
10783         * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
10784           the call to mono_exception_from_token.
10785           
10786         * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations.  This code is responsible
10787           storing the method prolog information in a format that the Winx64 SEH can understand.  This
10788           information is stored a the end of the method block because it is all 32-bit offset based.
10790         Contributed under MIT/X11 license.
10792 2008-07-09  Zoltan Varga  <vargaz@gmail.com>
10794         * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
10796         * wapihandles.c: Fix warnings.
10798         * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
10799         mode.
10801         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling 
10802         mono_jit_compile_method in aot-only mode since that calls the type 
10803         initializer.
10804         
10805         * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
10806         get_delegate_invoke_impl in aot-only mode.
10808         * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
10810 2008-07-08  Zoltan Varga  <vargaz@gmail.com>
10812         * trace.c (mono_trace_enter_method): Fix printing of Type instances.
10814         * aot-compiler.c (compile_method): Disable the check for GSHARED since it
10815         is on by default.
10817         * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
10819         * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
10820         init trampoline from the AOT file as well.
10822         * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
10823         mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
10824         code.
10826         * mini.c (mini_init): Move the call to mono_exceptions_init () after 
10827         mono_init.
10829         * exceptions-amd64.c: Add _full variants for the remaining exception code
10830         creation functions as well, allow emission of relocatable code, remove
10831         caching since that is now done by the caller.
10833         * mini-exceptions.c: Add _full variants for the remaining exception code
10834         creation functions as well, add aot-only support.
10836         * aot-compiler.c (compile_method): Allow calls to methods of constructed types
10837         if we can determine a proper token for them.
10838         (add_wrappers): Add a few more wrappers.
10839         (emit_method_code): Remove some dead code.
10840         (emit_trampolines): Emit exception code too.
10842         * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
10844         * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
10845         mono_array_new_va which avoids varargs.
10847         * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
10849         * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
10850         mono_arch_create_specific_trampoline () in all places.
10852         * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
10853         a bit so it can be used for other things as well.
10854         
10855         * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
10856         on demand as well.
10858         * exceptions-amd64.c: Rename the caching from the exception code creation
10859         functions, it is done by the caller instead.
10860         
10861         * exceptions-amd64.c: Change the signature of the exception code creation 
10862         functions to allow the creation of relocatable code later.
10864         * mini-exceptions.c: Add a set of functions to query the various 
10865         runtime-generated exception functions.
10867         * mini.c mini-exceptions.c: Use the newly added functions instead of the
10868         mono_arch_.. () functions.
10869         
10870 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10872         * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
10874         * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
10876         * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
10877         (mini_get_vtable_trampoline): Ditto.
10879         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
10880         code in the AOT case by returning the code size and a list of relocations to
10881         the caller.
10883         * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
10885 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10887         * mini-amd64.c:  On Winx64 the calling convention always requires the caller to 
10888           clean the stack.
10890         Contributed under MIT/X11 license.
10892 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10894         * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
10895         so the buffer size can be computed correctly. Fixes #404735.
10897         * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
10898         normally as cfg->debug_info is already freed.
10900 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10902         * mini-amd64.c: For calls returning vtypes in registers, don't store
10903         the return address on the stack, instead allocate a separate local for
10904         it. Fixes #404729.
10906 2008-07-05  Mark Probst  <mark.probst@gmail.com>
10908         * mini-trampolines.c, mini.h: Add an argument to
10909         mono_create_jit_trampoline_in_domain() for turning off the adding
10910         of the sync wrapper.
10912         * mini.c: Use the JIT trampoline without sync instead of
10913         ldftn_nosync in static RGCTX invoke wrappers so that the call can
10914         be patched.
10916 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10918         * driver.c: Turn on GSHARED optimization by default.
10920 2008-07-04  Zoltan Varga  <vargaz@gmail.com>
10922         * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
10923         to MONO_TRAMPOLINE_JIT since it better reflects what it does.
10925         * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
10926         create a variant of the generic trampoline code callable from AOTed trampolines.
10928         * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
10929         trampoline code callable from AOTed trampolines.
10931         * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
10933 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10935         * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
10936         pass-through manner.
10938         * mini.c: Generic method sharing.  Pass MRGCTX to generic methods
10939         and don't fail sharing for them anymore.
10941         * mini-exceptions.c: Handle exceptions in shared generic methods.
10943         * generic-sharing.c: When checking the context of a generic
10944         method, also check its class's context.  Don't treat wrappers as
10945         sharable.
10947         * mini-trampolines.c: Some code factored out to
10948         metadata/generic-sharing.c.  Handle the MRGCTX case.
10950         * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
10951         we must deal with the method being of another instantiation of the
10952         class.  Add static rgctx invoke wrappers to generic methods.
10954 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10956         * mini.c: Provide all jit infos of generic shared methods with a
10957         generic jit info.
10959         * mini-exceptions.c: Handle the new situation that a generic info
10960         might be available, but not info about the this/vtable/mrgctx
10961         variable.
10963 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10965         * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
10966         generic methods.
10968 2008-07-03  Zoltan Varga  <vargaz@gmail.com>
10970         * dominators.c (check_dominance_frontier): Fix a warning.
10972         * mini.h: Add some missing prototypes.
10974         * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
10976         * driver.c (mono_jit_init_version): Correct the comments since the first
10977         argument should be the name of the root domain, not a filename.
10979         * aot-runtime.c (make_writable): Error out if this is called while running
10980         with --aot-only.
10981         (load_aot_module): Ditto.
10983         * aot-compiler.c: Really fix the computation of method indexes.
10985         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous 
10986         optimizations as this is no longer called frequently.
10988         * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
10989         method and the invoke impl code and pass it to the delegate trampoline instead of
10990         just the delegate class.
10992 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10994         * aot-compiler.c: Fixup the computation of method indexes.
10995         (add_wrappers): Create the base methods of the runtime invoke wrappers using
10996         the method builder infrastructure.
10998         * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
10999         has no header.
11001         * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
11002         mode, load the method right away instead of creating a trampoline.
11004         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
11006         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
11007         some checks a bit.
11009 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
11011         * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
11012         (mono_aot_load_method): Use method_index instead of method->token.
11014         * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
11015         can handle icalls etc. properly.
11017         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
11019         * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
11021         * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
11022         (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
11023         JIT_ICALL_ADDR patch type.
11025         * patch-info.h: Add JIT_ICALL_ADDR patch type.
11027         * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
11028         request flag.
11029         (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
11031         * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
11033 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
11035         * mini.c: Use domain->jit_code_hash_lock for controlling access to
11036         domain->jit_code_hash.
11038 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
11040         * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
11042 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
11044         * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
11045         get_this_arg_from_call, let it compute it when needed.
11047         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
11048         gsctx from code only when needed.
11050         * mini-trampolines.c (get_generic_context): Rename this to 
11051         mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
11052         it can be called by the arch backends.
11054         * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
11056 2008-06-26  Zoltan Varga  <vargaz@gmail.com>
11058         * driver.c (mono_main): Add experimental --aot-only command line option.
11060         * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
11061         set.
11063 2008-06-26  Kornel Pal  <kornelpal@gmail.com>
11065         * driver.c (DllMain): Remove mono_module_handle.
11067         Contributed under MIT/X11 license.
11069 2008-06-25  Zoltan Varga  <vargaz@gmail.com>
11071         * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
11072         for emitting methods which are not in the source assembly. Detect and report
11073         failure of assembling+linking.
11074         
11075         * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
11077         * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
11079 2008-06-24  Rodrigo Kumpera  <rkumpera@novell.com>
11081         * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
11083 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
11085         * mini.h: Remove some obsolete prototypes.
11087         * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
11089 2008-06-24  Mark Probst  <mark.probst@gmail.com>
11091         * mini.c (get_object_generic_inst): Variable-sized arrays are not
11092         supported by Visual Studio, so use alloca().
11094 2008-06-23  Zoltan Varga  <vargaz@gmail.com>
11096         * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
11097         Fixes #402585.
11099 2008-06-23  Mark Probst  <mark.probst@gmail.com>
11101         * mini.c: Fail sharing of a generic method if it contains an open
11102         catch clause (because we don't pass MRGCTXs yet).
11104 2008-06-23  Mark Probst  <mark.probst@gmail.com>
11106         * mini.c: When compiling a method with generic sharing, insert the
11107         method instantiated with an all-Object generic context into the
11108         jit info table, instead of the context of the first instantiation
11109         of the method we happen to compile.
11111 2008-06-18  Martin Baulig  <martin@ximian.com>
11113         * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
11114         `major_version' and `minor_version'.
11116 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11118         * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
11119         mono_method_is_generic_sharable_impl() takes an additional
11120         argument specifying whether to treat type variables as reference
11121         types.
11123 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11125         * mini.h: Removed obsolete prototypes.
11127 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11129         * mini.c: Don't fail generic sharing for initobj and sizeof - we
11130         already handle them.
11132 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11134         * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
11135         tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
11136         tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
11137         tramp-x86.c: Added a MonoGenericContext* argument to
11138         mono_arch_get_unbox_trampoline() so that it can call other
11139         functions which require it.
11141 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11143         * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
11144         mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
11145         mono_arch_get_this_arg_from_call() takes a
11146         MonoGenericSharingContext* as well.
11148 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11150         * mini.c: Factor out code for emitting unbox into emit_unbox() and
11151         implement generic sharing of unbox.
11153 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11155         * mini.c: Don't compute the vtable to determine whether a field is
11156         special static, because it might not work for open types.
11158 2008-06-17  Mark Probst  <mark.probst@gmail.com>
11160         * mini.c: Removed the unused token_type and token_source arguments
11161         from get_runtime_generic_context_ptr().
11163 2008-06-17  Marek Habersack  <mhabersack@novell.com>
11165         * mini.c (ADD_BINOP): fix the build
11167 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
11169         * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
11170         a widening op.
11172 2008-06-16  Mark Probst  <mark.probst@gmail.com>
11174         * mini.h: Removed class relations enum that's not used anymore.
11176 2008-06-16  Mark Probst  <mark.probst@gmail.com>
11178         * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
11180         * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
11181         the lazy fetch trampoline access code.
11183 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
11185         * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
11187 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
11189         * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
11191         * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
11193         * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
11195 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11197         * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
11198         intrinsics.
11200         * mini-ops.h: Add MIN/MAX_UN opcodes.
11202         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
11203         intrinsics.
11205         * basic-math.cs: Add more min/max tests.
11207         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
11209 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11211         * mini.c: Small fix in the prologue of emit_castclass.
11213 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11215         * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
11217         * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
11218         do not work even for unsigned types. Fixes #400014.
11220         * basic-math.cs: Add regression tests for unsigned Min/Max.
11222 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11224         * mini.c: Added additional context_used argument to several
11225         functions, which will be needed for sharing generic methods.  Use
11226         GET_RGCTX macro wherever appropriate.  Declare only one
11227         context_used in mono_method_to_ir().
11229 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11231         * mini.c, generic-sharing.c: Removed generic class relations.
11233         * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
11234         functions due to MRGCTX changes.
11236 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11238         * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
11239         graph.c, local-propagation.c, aliasing.c: New opcodes for calls
11240         with calculated IMT.
11242         * mini.c: Generic sharing of calls via generic interfaces.
11244         * jit-icalls.c, jit-icalls.h: Helper function for compiling a
11245         generic method with non-constant MonoGenericContext*.  Instead,
11246         the context is taken out of the method itself.
11248 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11250         * mini.c: Generic sharing of ldvirtftn.
11252 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11254         * mini.c: Generic sharing of ldftn.
11256 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11258         * mini.c: Do pass VTable/RGCTX argument to static generic methods.
11260 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11262         * mini.c: Generic sharing of the special case of ldtoken followed
11263         by a call to GetTypeFromHandle.
11265 2008-06-13  Mark Probst  <mark.probst@gmail.com>
11267         * mini.c: Generic sharing of box for nullable types.
11269 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
11271         * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
11272         are passed on the stack. Fixes #324807.
11274 2008-06-12  Bill Holmes  <billholmes54@gmail.com>
11276         * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
11277         for the ArgValuetypeAddrInIReg case.
11279         * mini-amd64.c:mono_arch_allocate_vars:  Adding a case for 
11280         ArgValuetypeAddrInIReg to avoid asserts.  Code needs to be added here.
11282         * mini-amd64.c: mono_arch_call_opcode:  Adding Winx64 code for an ArgInfo of 
11283         type ArgValuetypeAddrInIReg.  The code emitted will copy the argument to a 
11284         local variable and pass the local variable by reference to the called method.
11285           
11286         * mini-amd64.c: mono_arch_emit_prolog:  Adjust the stack for calls to
11287         mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
11289         Contributed under MIT/X11 license.
11291 2008-06-10  Rodrigo Kumpera  <rkumpera@novell.com>
11293         * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
11295         * debug-mini.c (mono_debug_print_vars): Release memory after printing
11296         everything.
11298 2008-06-10  Martin Baulig  <martin@ximian.com>
11300         * debug-mini.c
11301         (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
11303 2008-06-09  Kornel Pal  <kornelpal@gmail.com>
11305         * main.c: Add and set argv [argc] to NULL to match C specification that fixes
11306         possible error when no arguments are passed.
11308         Contributed under MIT/X11 license.
11310 2008-06-09  Rodrigo Kumpera  <rkumpera@novell.com>
11312         * mini-exceptions.c (ves_icall_get_trace): Skip source locations
11313         where the file name is NULL.
11315 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11317         * mini.c: Fix s390 build.
11319 2008-06-08  Zoltan Varga  <vargaz@gmail.com>
11321         * trace.c (mono_trace_parse_options): Fix warnings.
11323         * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
11325 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11327         * mini.c (remove_block_if_useless): Avoid printing the method name.
11328         
11329         * mini.c: Remove needless setting of ins->cil_code which is now done by 
11330         MONO_INST_NEW.
11332         * mini-amd64.c: Add some code to avoid saving callee saved registers in the
11333         LMF. Not yet used.
11335         * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
11336         translated code after it has been patched.
11338 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11340         * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
11341         avoid problems during code patching on SMP systems.
11342         (emit_call): Avoid adding a patch info which is already added by 
11343         emit_call_body.
11344         (mono_arch_emit_exceptions): Ditto.
11346 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11348         * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
11349         MONO_TYPE_ISSTRUCT already checks for it.
11351 2008-06-05  Bill Holmes  <billholmes54@gmail.com>
11353         * mini-amd64.c:merge_argument_class_from_type: When marshaling 
11354           structs with floats on Winx64 the float registers are not used.  
11355           The integer registers are always used..
11356         * mini-amd64.c:add_valuetype:  When marshaling structs on Winx64 
11357           only one register will be used and only if the size of the struct 
11358           is 1,2,4, or 8 bytes.
11360         * tramp-amd64.c :  Adjusting size used for mono_global_codeman_reserve
11361           to work for Winx64.
11363         Contributed under MIT/X11 license.
11365 2008-06-05  Martin Baulig  <martin@ximian.com>
11367         * debug-debugger.c (debugger_lookup_class): Also call
11368         mono_class_setup_methods() here; we're only called from RTI.
11370 2008-06-05  Andreas Farber  <andreas.faerber@web.de>
11372         * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
11373         (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
11374         * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
11375         Post-process object files and add dtrace-generated object, if necessary.
11377         Contributed under MIT/X11 license.
11379 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11381         * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
11382         element class.
11384         * mini.c: Generic sharing for unbox.any and castclass.
11386 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11388         * mini.c: Ignore tailcall prefix in shared generic code and when
11389         doing calls which require a vtable/rgctx argument.
11391 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11393         * mini.c: Don't free the JIT info.
11395         * driver.c: Changes in the JIT info table testing code.
11397 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11399         * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread 
11400         interruption. Fix some warnings.
11402         * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
11403         interruption_checkpoint.
11405 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
11407         * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
11408         from embedding applications.
11410 2008-06-02  William Holmes  <billholmes54@gmail.com>
11412         * mini-amd64.c :  Correcting some of the issues for Winx64 dealing with
11413           reserving 32 bytes on the stack when making calls. 
11415         Contributed under MIT/X11 license.
11417 2008-06-01  Zoltan Varga  <vargaz@gmail.com>
11419         * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
11420         the linear IL branch.
11422         * driver.c: Print out more information for --version on arm.
11424 2008-05-30  Zoltan Varga  <vargaz@gmail.com>
11426         * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
11427         bb_exit instead, since out of line bblocks might not actually be emitted
11428         out-of-line.
11429         
11430         * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
11431         maximum epilog size for out of line bblocks if tracing is enabled.
11433         * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
11435 2008-05-28  Rodrigo Kumpera  <rkumpera@novell.com>
11437         * arrays.cs: Regression tests for allocating arrays with negative sizes.
11439 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
11441         * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
11442         CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE 
11443         opcodes.
11445 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11447         * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
11448         the 'value' to store is a constant.
11450         * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
11452         * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
11453         of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
11455 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11457         * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
11458         for accessing method->generic_container.
11460 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11462         * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
11463         
11464         * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
11466         * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
11468         * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
11469         fails.
11471 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11473         * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
11475         * mini.c: Handle the case when mono_class_vtable () fails.
11477 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11478         * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
11479         the stat profiler.
11481 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11483         * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
11484         together with domain sharing.
11486 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11488         * mini.c: Treat callvirts to final methods like non-virtual calls
11489         when doing generic sharing, i.e. look them up in the runtime
11490         generic context.
11492 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11494         * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
11495         with computed types (for generic sharing).
11497         * mini.c: Generic sharing for mkrefany and refanyval.
11499 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11501         * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
11502         possible.
11504         * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
11505         the generic sharing code.
11506         
11507         * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
11508         when needed.
11510 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11512         * mini.h: Remove the declaration of mono_aot_init_vtable ().
11514 2008-05-21  C.J. Adams-collier <cjac@colliertech.org>
11516         * driver.c: updated copyright date
11518 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11520         * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
11521         needed.
11523 2008-05-19  Martin Baulig  <martin@ximian.com>
11525         * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
11526         pointing to the new `_mono_debug_using_mono_debugger' variable.
11528         * driver.c
11529         (mono_main): Check mono_debug_using_mono_debugger() rather than
11530         the `MONO_INSIDE_MDB' environment variable to check whether we're
11531         inside the debugger.
11533 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
11535         * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
11536         argument.
11538 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
11540         * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
11542         * mini.c: Added mini_assembly_can_skip_verification. This
11543         function checks if the assembly requested to skip verification. 
11544         Fixes part of #387274.
11546 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11548         * mini.c (mini_get_method): Disable the check for open generic classes when
11549         using generic sharing.
11551         * generics.cs: Add a test for #387034.
11553         * mini.c (mini_get_method): Check whenever the method class is an open generic
11554         type, and return NULL in that case, causing a verification error. Fixes
11555         #384123.
11557 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
11559         * driver.c (mono_main): Revert r102623. The right
11560         thing to do is to enable the verifier under verifiable
11561         unless a --security flag was passed.
11563         We need this non-trivial behavior for --verify-all otherwise
11564         mcs-compileall won't be able to use it. As it needs everything to
11565         be verified under validil.
11567 2008-05-06  Martin Baulig  <martin@ximian.com>
11569         Fix #383749.
11571         * debug-mini.c (mono_debugger_thread_created): Add proper locking.
11572         (mono_debugger_thread_cleanup): Likewise.
11573         (mono_debugger_extended_notification): Likewise.
11575 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
11577         * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
11578         against both inflated and non-inflated methods. We need to check against the
11579         generic definition for cases where the instantiated method is not visible.
11580         We need to check against the inflated types for cases where the instantiation
11581         changes any super type. This fixes #382986.
11583         Note that this doesn't need to be applied to other parts of mono_method_to_ir
11584         that check for visibiliy as generic params only appears as the type subject
11585         of tokens on call opcodes. Field manipulation and ldftn must always
11586         target an exact type.
11588 2008-05-06  Rodrigo Kumpera  <rkumpera@novell.com>
11590         * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
11591         if no related --security flag is passed.
11593 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
11595         * mini-arch.h: Prepare support for ppc64.
11597         Contributed under MIT/X11 license.
11599 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
11601         * aot-runtime.c: Prepare support for ppc64.
11603         Contributed under MIT/X11 license.
11605 2008-05-05  Andreas Farber  <andreas.faerber@web.de>
11607         * mini-ops.h: Prepare support for ppc64.
11609         Contributed under MIT/X11 license.
11611 2008-05-04  Andreas Farber  <andreas.faerber@web.de>
11613         * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
11615         Contributed under MIT/X11 license.
11617 2008-05-03  Zoltan Varga  <vargaz@gmail.com>
11619         * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
11620         assemblies, since aot_name is not a full path, causing us to load MS.NET 
11621         assemblies on windows.
11623 ?2008-04-28  Kornel Pal  <kornelpal@gmail.com>
11625         * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
11626         for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
11627         * main.c: Use UTF-8 encoded command line instead of Windows default code
11628         page on Windows to support Unicode.
11629         * driver.c (DllMain): New function for mixed-mode assembly support.
11630         * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
11631         export __stdcall functions without decoration.
11633         Contributed under MIT/X11 license.
11635 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11637         * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
11638         saving it very early.
11640 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11642         * mini.h, mini.c: Lots of code for accessing the old RGCTX
11643         deleted.  The only way to access the new RGCTX is via the
11644         trampline.
11646         * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
11647         vtable instead of the RGCTX to static methods.
11649         * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
11650         accessing the new RGCTX.
11652         * generic-sharing.c: There is no separation between self, type
11653         arguments and other types in the RGCTX anymore.
11655 2008-04-25  Jonathan Chambers <joncham@gmail.com>
11657         * mini-amd64.c (add_general): Remove previous stack adjustment.
11658         (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
11659         adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
11660         for 32 bytes of stack space reserved for all calls.
11661         
11662         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
11663         (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack 
11664         adjustment.
11665         
11666         Code contributed under MIT/X11 license.
11668 2008-04-23  Rodrigo Kumpera  <rkumpera@novell.com>
11670         * mini.c (mini_method_verify): Only verify non-inflated methods, check
11671         against the root definition, peeling out method and type instantiations.
11672         Cache verify success results, code that fails verification is still
11673         checked multiple times.
11675 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11677         * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
11679 2008-04-23  Jonathan Chambers <joncham@gmail.com>
11681         * mini-amd64.c (add_general): Always increment stack on Win64.
11682         (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
11683         on Win64.
11684         
11685         * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for 
11686         stack based argument handling on Win64.
11687         
11688         Code contributed under MIT/X11 license.
11690 2008-04-23  Raja R Harinath  <harinath@hurrynot.org>
11692         * Makefile.am (version.h): Add support for git-svn.
11694 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11696         * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
11697         so instead of calling g_spawn_command_line_sync, we do everything by hand, 
11698         avoiding allocations and libc functions which might deadlock.
11699         
11700         * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
11701         'no-gdb-backtrace' option is set.
11703         * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
11705         * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
11707 2008-04-21  Martin Baulig  <martin@ximian.com>
11709         * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
11710         and `get_lmf_addr'; `notification_address' is no longer a pointer.
11712 2008-04-21  Martin Baulig  <martin@ximian.com>
11714         * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
11715         `thread_vtable', `event_handler_ptr' and `event_handler'.
11717 2008-04-21  Martin Baulig  <martin@ximian.com>
11719         * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
11720         allows delayed initialization of the `executable_code_buffer' when
11721         attaching.
11723 2008-04-21  Martin Baulig  <martin@ximian.com>
11725         * mini.h (mono_debugger_create_notification_function): Removed.
11726         * tramp-*.c (mono_debugger_create_notification_function): Removed.
11728         * mdb-debug-info64.s
11729         (MONO_DEBUGGER__notification_function): Added this in the .text section.
11731         * mdb-debug-info32.s
11732         (MONO_DEBUGGER__notification_function): Added this in the .text section.
11734         * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
11735         currently only works on x86 and x86_64, so don't create it on ppc.
11737 2008-04-21  Martin Baulig  <martin@ximian.com>
11739         * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
11741         * mini.c
11742         (mini_method_compile): In the fp elimination check, check
11743         `debug_options.mdb_optimizations' in addition to
11744         mono_debug_using_mono_debugger().       
11746         * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
11747         disable some JIT optimizations which are only disabled when
11748         running inside the debugger.
11749         Added `--help-debug' option to describe the debugging options.
11750         (parse_debug_options): New static function to parse the `--debug'
11751         options, so we can easily add more stuff in future.
11753 2008-04-20  Zoltan Varga  <vargaz@gmail.com>
11755         * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
11756         the method has no body.
11758 2008-04-19  Jonathan Chambers <joncham@gmail.com>
11760         * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
11761         assembly is not allowed in MSVC 64-bit compiler. 
11762         (mono_arch_cpu_init): Don't set floating point precision on MSVC build
11763         as we get floating point exceptions everywhere.
11764         
11765         * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
11766         correctly align arguments for call to throw_exception.
11767         (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
11768         
11769         Code contributed under MIT/X11 license.
11771 2008-04-19  Zoltan Varga  <vargaz@gmail.com>
11773         * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
11775 2008-04-17  Zoltan Varga  <vargaz@gmail.com>
11777         * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
11779         * mini-amd64.c (NEW_INS): Set cil_code.
11781         * mini.c (mini_method_compile): Move the disabling of fp elimination to here
11782         from mini-amd64.c so all debugger related logic is in one place.
11784         * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
11785         later won't have a random ip assigned to them.
11787 2008-04-16  Zoltan Varga  <vargaz@gmail.com>
11789         * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
11790         the arch specific function initializes code_size.
11791         (mono_create_delegate_trampoline): Ditto.
11793         * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
11794         tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
11795         platforms.
11797         * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if 
11798         running under the debugger.
11800         * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
11801         debugger.
11803         * mini.c (mini_method_compile): Set a few flags in cfg if running under the
11804         debugger. Also move the disabling of optimizations here from driver.c.
11805         (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
11806         debugger.
11808         * mini.h (MonoCompile): Add a few new flags.
11810 2008-04-15  Zoltan Varga  <vargaz@gmail.com>
11812         * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
11813         so the cil_code field of created MonoInst's is properly set.
11814         (mini_select_instructions): Ditto.
11816         * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
11817         (MONO_INST_NEW_CALL): Ditto.
11819         * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
11820         in many places so the ins->cil_code field is properly initialized.
11822         * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
11823         place.
11825 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11827         * mini.c (mini_method_compile): Print a different message when compiling a 
11828         shared method.
11829         
11830         * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
11831         > 1.
11833 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
11835         * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
11836         SSE2 instructions.
11838         * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
11839         
11840 2008-04-11  Zoltan Varga  <vargaz@gmail.com>
11842         * mini.c (handle_stack_args): Make this return void since its return value was
11843         never used. Also set cfg->unverifiable for invalid IL instead of calling
11844         G_BREAKPOINT ().
11846 2008-04-10  Mark Probst  <mark.probst@gmail.com>
11848         * mini.c: Make sure "this" is live in catch clauses with type
11849         variables in shared generic code.
11851 2008-04-08  Mark Probst  <mark.probst@gmail.com>
11853         * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
11854         generic_class_is_reference_type() to ensure the proper behaviour
11855         when sharing generic code and the type in question is a type
11856         argument.
11858 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11860         * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
11861         race conditions when printing thread dumps. Fixes #377738.
11863 2008-04-08  Massimiliano Mantione  <massi@ximian.com>
11864         
11865         aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
11866         shows up when both MonoInst arguments can cause aliasig.
11867         There is likely no way in the current JIT to trigger this problem, but
11868         it showed up in the development of generics sharing, when in a new
11869         opcode both args of an OP_GROUP can be aliases (addresses of a local).
11870         When the generics sharing code will be committed, its tests will be
11871         valid also for this bug.
11873 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11875         * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
11876         PATCH_INFO_METHOD.
11878         * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
11879         NULL.
11881 2008-04-07  Zoltan Varga  <vargaz@gmail.com>
11883         * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
11884         use a more detailed exception message for InvalidCastException.
11886         * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
11888         * driver.c (mono_main): Add --debug=casts option to turn on better 
11889         InvalidCastException message details.
11891         * mini.c (mini_get_debug_options): New helper function to return the address of
11892         the debug_options variable.
11894         * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
11895         the jit_tls TLS variable.
11897         * mini.c (mono_jit_tls): New TLS variable.
11899         * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
11900         option is used.
11902 2008-04-07  Rodrigo Kumpera  <rkumpera@novell.com>
11904         * mini.h: Removed verifer related stuff. This code was moved to verify.c
11906         * mini.c: Removed verifer related stuff, code moved to verify.c.
11908         * driver.c: Using code from verify.c instead of mini.c.
11910 2008-04-05  Zoltan Varga  <vargaz@gmail.com>
11912         * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
11913         longer valid.
11915 2008-04-04  Rodrigo Kumpera  <rkumpera@novell.com>
11917         * mini.c (check_for_method_verify): Enabling verification of
11918         corlib if mono_verify_all is set. Bugs in the verifier preventing that
11919         have been fixed.
11921 2008-04-04  Zoltan Varga  <vargaz@gmail.com>
11923         * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
11924         caller saved registers as well.
11925         
11926         * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
11927         saved registers as well.
11929 2008-03-30  Zoltan Varga  <vargaz@gmail.com>
11931         * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
11933         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
11934         code.
11936 2008-03-27  Zoltan Varga  <vargaz@gmail.com>
11938         * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
11939         to get_call_info.
11940         (get_call_info): Take a gsctx argument instead of 'cfg'.
11942 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11944         * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
11945         mono_verify_all is set.
11947         * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
11949         * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
11951 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11953         * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
11954         an exception.
11956         * driver.c mini.c mini.h: Add a --verify-all development option to test the
11957         verifier and the code generated by the compiler.
11959 2008-03-25  Mark Probst  <mark.probst@gmail.com>
11961         * mini.c: Generic sharing of the non-nullable case of the box
11962         instruction.
11964 2008-03-24  Zoltan Varga  <vargaz@gmail.com>
11966         * inssel.brg: Fix the build.
11968         * iltests.il.in: Add a test for lconv.ovf.u8.un.
11970 2008-03-24  Rodrigo Kumpera  <rkumpera@novell.com>
11972         * mini.c (mono_method_to_ir): Implement readonly for ldelema and
11973         Array:Address. Fixes #372410.
11975         * iltests.il.in: New tests for readonly prefix.
11977 2008-03-23  Zoltan Varga  <vargaz@gmail.com>
11979         * mini.h mini.c mini-trampolines.c: Move trampoline related code to 
11980         mini-trampolines.c.
11982         * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to 
11983         mini-exceptions.c.
11985         * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
11986         
11987         * mini.c (mono_decompose_op_imm): New helper function.
11989         * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
11990         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
11991         return value.
11993         * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
11994         mono_arch_output_basic_block. Fix warnings.
11996         * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
11997         for now.
11999 2008-03-22  Zoltan Varga  <vargaz@gmail.com>
12001         * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
12002         since the extra frame is now detected automatically inside the loop.
12004         * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole 
12005         opts which are now in mono_peephole_ins ().
12006         
12007         * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
12009         * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
12010         frames and skip duplicate managed-to-native frames. Fixes #367665.
12012         * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
12013         opts which are now in mono_peephole_ins ().
12014         (mono_arch_peephole_pass_2): Ditto.
12016         * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
12018         * mini-codegen.c (mono_peephole_ins): New helper function containing the
12019         arch independent peephole optimizations.
12021         * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
12022         opts which are now in mono_peephole_ins ().
12024         * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
12025         
12026         * mini-s390.c (mono_arch_output_basic_block): Fix build.
12028         * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
12029         pattern.
12031         * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
12032         CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
12033         opcode. 
12035 2008-03-21  Zoltan Varga  <vargaz@gmail.com>
12037         * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
12038         with the other architectures, add an 'mp' argument, fold 'sz' argument into the
12039         return value.
12041         * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in 
12042         mono_arch_output_basic_block. Fix warnings.
12044 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
12046         * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
12047         conv.ovf.u.un.
12049 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
12051         * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
12052         conv.ovf.u.un.
12054         * iltests.il: Add new tests.
12056 2008-03-20  Kornel Pal  <kornelpal@gmail.com>
12058         * mini.c: Removed Windows version macros.
12060 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12062         * generic-sharing.c: Put reflection types in the extensible part
12063         of the runtime generic context.
12065         * mini.c: Generic sharing of the GetTypeHandle special case of the
12066         ldtoken instruction.
12068 2008-03-20  Zoltan Varga  <vargaz@gmail.com>
12070         * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
12072         * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
12073         
12074         * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for 
12075         consistency with the other version on the linear IR branch.
12077         * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
12079         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
12081         * iltests.il.in: Add new tests.
12083 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
12085         * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
12087         * iltests.il.in: Add new tests.
12089 2008-03-19  Mark Probst  <mark.probst@gmail.com>
12091         * mini.c: Two variables with the same name were declared in
12092         nesting contexts and one wasn't initialized.  Fixed.
12094 2008-03-19  Mark Probst  <mark.probst@gmail.com>
12096         * mini.c: Generic sharing of the initobj instruction.
12098 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12100         * mini.c: make the test to optimize ldtoken from typeof() more
12101         precise.
12103 2008-03-18  Mark Probst  <mark.probst@gmail.com>
12105         * mini.c: Generic sharing of the initobj instruction for reference
12106         types.
12108 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
12110         * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
12111         the mono_breakpoint_clean_code() code to perform bound checks.
12113 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
12115         * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
12116         mono_arch_patch_callsite() to include the start of the managed method
12117         to be able to perform bound checks.
12119 2008-03-17  Mark Probst  <mark.probst@gmail.com>
12121         * mini.c: Generic sharing for the isinst instruction.
12123 2008-03-17  Mark Probst  <mark.probst@gmail.com>
12125         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
12126         inssel-long32-mips.brg: Added opcodes for doing indirect calls
12127         with the runtime generic context argument.
12129         * mini.c: Share calls to several types of unsharable methods by
12130         putting the address of the method code in the runtime generic
12131         context and doing an indirect call.
12133         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
12134         to switches.
12136 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12138         * generic-sharing.c: Change due to a change in the runtime genric
12139         context API.
12141 2008-03-15  Martin Baulig  <martin@ximian.com>
12143         * tramp-x86.c
12144         (mono_arch_nullify_class_init_trampoline): Add call to
12145         mono_breakpoint_clean_code() to make things work when running
12146         inside the debugger.
12148         * tramp-amd64.c
12149         (mono_arch_nullify_class_init_trampoline): Add call to
12150         mono_breakpoint_clean_code() to make things work when running
12151         inside the debugger.
12153 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12155         * inssel-long.brg (reg): Fix 64 bit build.
12157 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12159         * mini.c, mini.h: Share static generic code by passing it an
12160         implicit argument pointing to the runtime generic context.
12162         * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
12163         inssel-long32-mips.brg: New opcodes for calling shared static,
12164         which need to be passed the runtime generic context.
12166         * mini-amd64.c, mini-x86.c: Save the runtime generic context
12167         argument on the stack in the prologue if needed.  New function for
12168         finding the runtime generic context argument from the registers
12169         saved by the trampoline.
12171         * mini-amd64.h, mini-x86.h: Specify which register to use for the
12172         runtime generic context argument.
12174         * tramp-amd64.c: Also restore the register used for the runtime
12175         generic context argument.
12177         * mini-trampoline.c: Resolve shared static calls by consulting the
12178         runtime generic context via the new argument.
12180         * generic-sharing.c: Add an argument to sharability-checking
12181         functions that specifies whether type variables should be treated
12182         as sharable type arguments.
12184         * inssel-x86.brg: Removed a superfluous, buggy rule.
12186         * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
12187         to switches.
12189 2008-03-14  Martin Baulig  <martin@ximian.com>
12191         * debug-debugger.c (main_thread_handler): Call
12192         mono_runtime_run_main() without sending any notifications.
12194         * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
12196 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12198         * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
12200 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12202         * tramp-x86.c: Fixed register restore offsets in the trampoline
12203         code for ECX and EDX.
12205 2008-03-12  Geoff Norton  <gnorton@novell.com>
12207         * mini-arm.h: Add some #defines for locating sp, pc, r4 with
12208         different ucontext_t implementations.
12209         * exceptions-arm.c: Use the above defines to get exceptions working on 
12210         iPhone (based on a patch by Luke Howard lukeh@padl.com)
12211         * mini-arm.c: Implement iPhone icache support (based on a patch by
12212         Luke Howard lukeh@padl.com)
12214 2008-03-12  Mark Probst  <mark.probst@gmail.com>
12216         * mini.c: Enable generic sharing of calls to non-static
12217         non-interface non-generic non-value-type methods.
12219         * mini-trampolines.c: Resolve calls from shared generic code.
12221 2008-03-11  Zoltan Varga  <vargaz@gmail.com>
12223         * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
12225         * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
12227 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
12229         * mini.c: some fixes for the AOT compiler.
12231 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12233         * cpu-amd64.md: Add clob:1 to some float opcodes.
12235 2008-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
12237         * mini.h: Added MiniVerifierMode enumeration.
12239         * mini.c: Added mini_verifier_set_mode to control
12240         the usage of the new verifier.
12242         * mini.c (mono_method): Integrated the new verifier.
12244         * driver.c: Extended --security option with validil and
12245         verifiable options to activate the new verifier.
12247 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12249         * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation 
12250         optimization to ctors taking 0 or 2 arguments too.
12252         * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
12253         a bit.
12255         * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
12257         * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
12259 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12261         * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
12262         non-aot case as well.
12264         * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
12266         * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
12267         changes.
12269         * aot-compiler.c (encode_patch): Ditto.
12271         * mini.h (G_MININT32): Fix the definition of this.
12273 2008-03-05  Zoltan Varga  <vargaz@gmail.com>
12275         * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
12277         * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
12279 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12281         * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for 
12282         methods returning vtypes in registers.
12283         (mono_arch_allocate_vars): Ditto.
12285         * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
12287         * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().    
12289         * generics.cs: Add a test from the linear IR branch.
12291         * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
12293         * mini.c (inline_method): Cache failed inline attempts.
12295 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12297         * mini.c: For shared methods of generic classes put the location
12298         of "this" into the MonoGenericJitInfo.
12300         * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
12301         register out of a MonoContext by register number.  Add the generic
12302         sharing context as an argument to mono_arch_find_this_argument().
12304         * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
12305         mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
12306         for new arch function.
12308         * mini-exception.c: Handle open exception clauses in shared
12309         generic code.
12311         * mini-trampolines.c: Supply additional argument to
12312         mono_arch_find_this_argument().
12314 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12316         * Makefile.am (regtests): Run the bench.exe tests last.
12318 2008-03-03  Zoltan Varga  <vargaz@gmail.com>
12320         * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
12321         a bit.
12323 2008-03-02  Zoltan Varga  <vargaz@gmail.com>
12325         * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
12326         with MS.
12328         * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
12329         
12330         * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
12332         * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
12333         whose class has no cctor.
12335         * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
12337 2008-03-01  Zoltan Varga  <vargaz@gmail.com>
12339         * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
12340         unverified.
12342 2008-02-29  Zoltan Varga  <vargaz@gmail.com>
12344         * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
12345         to be in sync with the code on the linear IR branch.
12347         * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
12349         * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
12351 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12353         * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
12355         * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
12357         * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
12359         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
12361         * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
12362         
12363         * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
12364         body.
12366 2007-11-14  Yoichi NAKAYAMA  <nakayama@pixela.co.jp>
12368         * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
12369         OP_LOADR4_MEMBASE emission.
12371         * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
12372         (mono_spillvar_offset_float): Ditto.
12374         * mini-mips.c (mono_arch_emit_prolog): Ditto.
12376         * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
12377         emission.
12379         * basic-long.cs: Add regression tests for them.
12381         * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
12382         use.
12383         (mono_arch_allocate_vars): Fix representation of single-precision float
12384         argument.
12385         (mono_arch_output_basic_block): Ditto.
12387         * inssel-mips.brg: Ditto, remove duplicate items.
12389         * mini-mips.c (emit_load_volatile_arguments): New function to handle
12390         arguments of tail calls as on other platforms.
12391         (mono_arch_output_basic_block): Handle tail calls.
12393         * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
12394         register.
12396         * objects.cs (test_5_pass_static_struct): Add test for it.
12398         Contributed under MIT/X11 license.
12400 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12402         * Makefile.am: Use gmcs for compiling the regression tests.
12404         * *.2.cs *.2.il: Rename to *.cs and *.il.
12406 2008-02-24  Zoltan Varga  <vargaz@gmail.com>
12408         * regalloc.h: Make the vassign array smaller.
12410         * mini.c (mini_method_compile): Remove an unused field in cfg.
12412         * mini-codegen.c: Add a bunch of micro optimizations.
12414 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12416         * regalloc.h: Remove some unused fields.
12418 2008-02-22  Zoltan Varga  <vargaz@gmail.com>
12420         * mini-amd64.c (mono_arch_patch_code): Fix a warning.
12422         * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
12424 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12426         * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
12428         * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
12429         trampoline: Fetch an entry from the runtime generic context.  If
12430         it's NULL, jump to the actual trampoline to fill the runtime
12431         generic context.  Otherwise, return it.
12433         * mini.c: Call the lazy fetch trampoline to get entries out of the
12434         runtime generic context.
12436         * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
12437         tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
12438         tramp-sparc.c: Stubs for the lazy fetch trampoline.
12440 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12442         * mini.c: Fetch data out of the extensible part of the runtime
12443         generic context instead of calling a helper function.
12445         * generic-sharing.c: Some functions moved into
12446         metadata/generic-sharing.c.  Helper function for fetching other
12447         types now checks and asserts against extensible rgctx (just for
12448         debugging purposes - the helper function isn't called anymore
12449         unless for debugging).
12451 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
12453         * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
12454         for tail calls up to the point that the tests in iltests.exe run. Also add a
12455         dummy CKFINITE implementation.
12456         (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
12457         needed for trampoline LMF frames.
12459         * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for 
12460         trampoline LMF frames.
12462 2008-02-21  Rodrigo Kumpera  <rkumpera@novell.com>
12464         * mini.c (inline_method): clean any pending loader error when inlining fail.
12465         Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
12467 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
12469         * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
12471         * aot-runtime.c (decode_patch_info): Ditto.
12473         * mini.c (mono_resolve_patch_target): Ditto.
12474         
12475         * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
12476         icall wrappers.
12478         * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
12479         
12480         * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
12481         if it references an icall address.
12483 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12485         * cpu-s390x.md: Remove some more unused opcodes.
12486         
12487         * cpu-s390x.md: Remove some unused opcodes.
12489         * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
12490         mono_op_imm_to_op ().
12492         * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
12493         instead of a switch statement.
12494         
12495         * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
12496         the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
12498         * mini-codegen.c: Eliminate rassign macro which is no longer needed.
12499         
12500         * mini-codegen.c: Remove unused mono_regstate2_... functions.
12502         * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
12503         -1.
12505 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12507         * driver.c (mono_main): Improve error reporting when an assembly cannot be
12508         opened. Fixes #362607.
12510         * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
12512         * iltests.il.in: Add a test for static methods in interfaces.
12514 2008-02-18  Zoltan Varga  <vargaz@gmail.com>
12516         * genmdesc.c (build_table): Fix a crash on older glib versions.
12518         * cpu-sparc.md: Remove some unused opcodes.
12519         
12520         * genmdesc.c: Error out if the .md contains CEE_ opcodes if 
12521         MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
12523         * cpu-amd64.md: Remove some unused opcodes.
12525         * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
12526         like the other opcodes.
12528 2008-02-17  Zoltan Varga  <vargaz@gmail.com>
12530         * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
12532         * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
12534         * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
12535         variables 'cfg' instead of 'm' for consistency.
12537         * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
12539         * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
12540         argument holding the vtype return address, to avoid the ambigious use of
12541         cfg->ret for this purpose.
12543         * mini.c (NEW_RETLOADA): Use vret_addr if set.
12545         * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
12546         
12547         * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
12548         new mono_print_ins () function which only takes one argument.
12550 2008-02-15  Zoltan Varga  <vargaz@gmail.com>
12552         * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
12553         macro arguments.
12555 2008-02-14  Zoltan Varga  <vargaz@gmail.com>
12557         * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
12559         * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
12561         * mini-x86.c: Sync with the version on the linear IR branch by adding new 
12562         opcodes and other small changes.
12564         * mini-ops.h: Add some new opcodes from the linear IR branch.
12566         * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
12568         * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
12569         opcodes, use the REG_MEMBASE opcodes instead.
12570         
12571         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
12572         opcodes, use the REG_MEMBASE opcodes instead.
12573         
12574         * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
12575         linear IR branch.
12577         * mini.c (mono_op_imm_to_op): New helper function.
12579         * mini-ops.h: Add some opcodes from linear IR branch.
12581 2008-02-13  Zoltan Varga  <vargaz@gmail.com>
12583         * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov 
12584         <tsv@solvo.ru>.
12586 2008-02-12  Zoltan Varga  <vargaz@gmail.com>
12588         * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to 
12589         OP_ICONV_TO_R4/R8.
12591         * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
12593 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12595         * aot-compiler.c (emit_method_code): Add an assert.
12597         * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
12598         the IMT code so it is AOT friendly. Enable AOT for methods which call interface
12599         methods.
12601 2008-02-08  Zoltan Varga  <vargaz@gmail.com>
12603         * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for 
12604         some load/store opcodes so they are consistent. 
12605         (mono_arch_emit_prolog): Simplify some code.
12607         * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
12609         * objects.cs: Add tests for large argument offsets on ARM.
12611         * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large 
12612         stack offsets. Fixes #359651.
12614         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
12616         * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
12618         * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
12620         * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
12622         * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
12624         * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
12625         rid of CEE_CONV_R_UN.
12627         * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
12629 2008-02-07  Zoltan Varga  <vargaz@gmail.com>
12631         * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
12633         * mini.c (mono_normalize_opcodes): Add some more opcodes.
12635         * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
12637         * cpu-amd64.md: Remove some unused opcodes.
12639         * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
12641         * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
12643         * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make 
12644         arch specific functions for its parts. Call the peephole pass after local
12645         regalloc so the prolog can compute a more accurate max_offset.
12646         
12647         * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
12648         the corresponding OP_I/OP_L opcodes.
12650         * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
12652         * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
12654 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12656         * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
12657         as they are handled in mini.c.
12659         * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
12660         
12661         * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
12662         case since it is handled in mini.c.
12664         * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
12666         * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
12668         * *.c: Use the new opcodes in the IR and back end code.
12670         * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
12672         * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
12674 2008-02-06  Mark Probst  <mark.probst@gmail.com>
12676         * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
12677         an assert because it has a race condition.
12679 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12681         * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
12683         * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
12685         * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
12687         * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
12688         use OP_MOVE/OP_FMOVE/OP_ICONST instead.
12690 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12692         * cpu-amd64.md (move): Correct the maximum size of move.
12694 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12696         * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
12697         the generic class init trampoline to return quickly if the class
12698         is already inited.
12700 2008-02-04  Zoltan Varga  <vargaz@gmail.com>
12702         * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
12703         issues where an 32 bit callsite cannot be patched by a 64 bit address.
12705 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12707         * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
12708         branch.
12710 2008-01-31  Zoltan Varga  <vargaz@gmail.com>
12712         * objects.cs: Add some soft-float tests.
12714         * mini.c: Fix a couple more soft-float issues.
12716         * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
12718         * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
12719         avoid a REX prefix.
12721 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12723         * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
12724         exception happens while compiling a virtual method.
12726 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12728         * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
12729         
12730         * mini-sparc.c: Fix build.
12732         * mini-sparc.c (get_call_info): Add support for generic sharing.
12734         * mini-exceptions.c: Add a FIXME.
12736 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12738         * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
12739         altstack handling code.
12741         * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
12742         
12743         * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
12745         * mini-s390.c: Add support for generic sharing.
12747         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
12748         Fix CAS on s390.
12749         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
12751         * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
12753         * mini-s390x.c: Add support for generic sharing.
12754         
12755         * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): 
12756         Fix CAS on ia64.
12757         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
12759         * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
12760         can be used since it takes a 16 bit signed immediate.
12762         * inssel-s390x.brg: Fix OP_SETRET.
12764         * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
12766         * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
12768         * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
12770         * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
12772         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
12773         in one place.
12775         * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline 
12776         stuff.
12778         * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
12779         of the unused mono_arch_patch_delegate_trampoline stuff.
12781 2008-01-26  Zoltan Varga  <vargaz@gmail.com>
12783         * basic-long.cs: Move the fp related tests to basic-float.cs.
12785         * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
12787         * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
12789         * basic-calls.cs: Add a test for proper float argument passing.
12791         * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
12792         if the context corresponds to an exception received through a signal.
12794         * exceptions.cs: Add a test for nullref handling at the start of a try
12795         clause.
12797         * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
12799         * jit-icalls.c (mono_break): New JIT icall.
12801         * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
12803         * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
12805 2008-01-25  Zoltan Varga  <vargaz@gmail.com>
12807         * cpu-*.md: Get rid of unused opcodes.
12809         * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
12811         * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
12812         by all platforms.
12814         * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
12815         define.
12817         * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
12818         the arch independent trampoline code in mini-trampolines.c.
12820         * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
12822         * mini.c (get_runtime_generic_context_ptr): Fix a warning.
12824         * mini-s390.h: Remove an unused define.
12825         
12826         * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
12827         the arch independent trampoline code in mini-trampolines.c.
12829         * mini-arm.c (mono_arch_emit_prolog): Fix build.
12831 2008-01-24  Zoltan Varga  <vargaz@gmail.com>
12833         * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
12835         * mini-s390.c (mono_arch_emit_prolog): Fix build.
12837         * mini-s390x.c (mono_arch_emit_prolog): Fix build.
12839         * mini-ppc.c (mono_arch_emit_prolog): Fix build.
12841         * cpu-amd64.md: Use smaller sizes for int opcodes.
12843         * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
12845         * *.cs: Add some tests from the linear-ir branch. Move structs tests to 
12846         objects.cs.
12848         * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
12849         debugging.
12851         * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
12852         instead of though a pointer to save an indirection when accessing elements of
12853         the array.
12855         * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
12856         some typos.
12857         (NOT_IMPLEMENTED): New helper macro.
12858         (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
12859         of a bb.
12861         * *.c: Use the new helper macro.
12863 2008-01-21  Zoltan Varga  <vargaz@gmail.com>
12865         * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
12867 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12869         * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
12870         stack slots.
12872 2008-01-18  Zoltan Varga  <vargaz@gmail.com>
12874         * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
12875         profiling is enabled.
12876         
12877         * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
12878         the end.
12879         (mono_arch_emit_prolog): Add more first bblock optimizations.
12881         * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
12882         in order if possible.
12883         (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
12884         bblock, since the arguments are still in their original registers.
12886         * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
12888 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12890         * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
12891         as well.
12893         * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
12894         offset 0.
12896         * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
12898         * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to 
12899         process async exceptions received while in unmanaged code.
12901         * mini.c (mini_init): Install a callback with the runtime which will be called
12902         when a thread receives an async exception while in unmanaged code.
12904         * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
12906         * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
12908 2008-01-16  Wade Berrier  <wberrier@novell.com>
12910         * cpu-g4.md:
12911         * cpu-arm.md:
12912         * cpu-s390x.md:
12913         fix build
12915 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12917         * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
12918         compilation with sun cc.
12920         * cpu-*.md: Fix the build.
12922         * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
12924         * mini-amd64.h: Add some comments to the MonoLMF structure.
12926         * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
12927         
12928         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
12929         in the LMF structure if possible. This saves two instructions in the
12930         managed->native wrappers.
12932         * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
12934 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12936         * generic-sharing.c: New type argument lookup code which uses the
12937         runtime generic context template.
12939 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12941         * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
12943         * mini-arm.c (add_general): Fix arm eabi parameter passing.
12944         (mono_arch_output_basic_block): Fix localloc implementation.
12946         * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
12948         * mini-ia64.c (peephole_pass): Fix ia64 build.
12950         * mini-amd64.c (peephole_pass): Fix a warning.
12951         
12952         * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
12953         at a constant offset from sp/fp.
12955         * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
12956         instead of obtaining it from *lmf in the managed method case.
12958 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12960         * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
12962 Mon Jan 14 12:33:06 CET 2008  David S. Miller  <davem@davemloft.net>
12964         * mini.h (MonoInstList): New type.
12965         (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
12966         __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
12967         MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
12968         __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
12969         MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
12970         MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
12971         MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
12972         MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
12973         MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
12974         MONO_INST_LIST_FOR_EACH_PREV_SAFE,
12975         MONO_INST_LIST_FOR_EACH_ENTRY,
12976         MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
12977         MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
12978         mono_inst_list_first, mono_inst_list_last,
12979         mono_inst_list_next, mono_inst_list_prev): New instruction
12980         list handling interfaces.
12981         (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
12982         list head 'ins_list'.
12983         (MonoInst): Replace next pointer with list head 'node'.
12984         (MonoCallInst): Make 'out_args' a MonoInstList.
12985         (MONO_INST_NEW_CALL): Explicitly init ->out_args.
12986         (MonoCompile): Delete reverse_inst_list and
12987         reverse_inst_list_len.
12988         * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
12989         mono_arch_lowering_pass, mono_arch_local_regalloc,
12990         mono_arch_output_basic_block, mono_arch_emit_prolog):
12991         Convert to new instruction lists.
12992         (insert_after_ins): Delete.
12993         * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
12994         instruction lists.
12995         * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
12996         * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
12997         split_bblock, mono_add_ins_to_end, mono_emit_call_args,
12998         mono_emulate_opcode, mono_emit_load_got_addr,
12999         inline_method, mono_method_to_ir, mono_print_bb_code,
13000         print_dfn, decompose_pass, nullify_basic_block,
13001         replace_out_block_in_code, remove_block_if_useless,
13002         merge_basic_blocks, move_basic_block_to_end,
13003         try_unsigned_compare, optimize_branches, mono_print_code,
13004         mini_select_instructions, remove_critical_edges): Likewise.
13005         * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
13006         peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
13007         mono_arch_output_basic_block, mono_arch_emit_prolog):
13008         Likewise.
13009         * mini-mips.c (mono_arch_call_opcode, peephole_pass,
13010         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13011         mono_arch_output_basic_block): Likewise.
13012         (inst_list_prepend, insert_after_ins): Delete.
13013         * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
13014         MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
13015         instruction lists.
13016         * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
13017         peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
13018         mono_arch_emit_prolog): Likewise.
13019         * cfold.c (mono_constant_fold): Likewise.
13020         * liveness.c (visit_bb, mono_analyze_liveness,
13021         optimize_initlocals): Likewise.
13022         * ssapre.c (dump_code, process_bb, code_motion): Likewise.
13023         * graph.c (mono_draw_code_cfg): Likewise.
13024         * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
13025         mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
13026         mono_ssa_cprop): Likewise.
13027         * abcremoval (get_relations_from_previous_bb, process_block):
13028         Likewise.
13029         * local-propagation (mono_cprop_invalidate_values,
13030         mono_local_cprop_bb): Likewise.
13031         * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
13032         peephole_pass, mono_arch_output_basic_block,
13033         mono_arch_emit_prolog): Likewise.
13034         * mini-arm.c (mono_arch_call_opcode, peephole_pass,
13035         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13036         mono_arch_emit_prolog): Likewise.
13037         (insert_after_ins): Delete.
13038         * aliasing.c (print_code_with_aliasing_information,
13039         mono_build_aliasing_information, mono_aliasing_deadce):
13040         Convert to new instruction lists.
13041         * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
13042         peephole_pass, NEW_INS, mono_arch_lowering_pass,
13043         mono_arch_local_regalloc, mono_arch_output_basic_block):
13044         Likewise.
13045         (insert_after_ins): Delete.
13046         * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
13047         peephole_pass, mono_arch_output_basic_block): Convert to
13048         new instruction lists.
13049         * mini-codegen (InstList, inst_list_prepend,
13050         insert_after_ins): Delete.
13051         (insert_before_ins, get_register_force_spilling,
13052         get_register_spilling, free_up_ireg, free_up_reg,
13053         create_copy_ins, create_spilled_store, alloc_int_reg,
13054         alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
13055         to new instruction lists.
13056         * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
13057         NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
13058         mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
13059         (insert_after_ins): Delete.
13060         * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
13061         mono_arch_local_regalloc, mono_arch_output_basic_block,
13062         mono_arch_call_opcode): Convert to new instruction lists.
13063         (insert_after_ins): Delete.
13064         * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
13065         peephole_pass, mono_arch_output_basic_block,
13066         mono_arch_emit_prolog): Convert to new instruction lists.
13068 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13070         * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
13072         * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
13073         Fixes #353182.
13075         * Makefile.am (version.h): Make this work with non-bash shells.
13077 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13079         * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
13081 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13083         * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in 
13084         the InitializeArray optimization.
13086 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13088         * mini.c driver.c: Don't include os/gc_wrapper.h.
13090 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13092         * mini.c (print_jit_stats): Print GC statistics if available.
13094 2008-01-04  Zoltan Varga  <vargaz@gmail.com>
13096         * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
13098 2007-12-29  Zoltan Varga  <vargaz@gmail.com>
13100         * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
13102 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13104         * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
13105         
13106         * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13108         * driver.c (mono_main): Ditto.
13110 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13112         * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
13114         * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
13115         in the vtable can't be encoded.
13116         (compile_method): Ditto.
13118 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13120         * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
13121         defined.
13123         * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to 
13124         lmf->rbp.
13126         * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
13127         the top LMF entry belongs to the current method.
13129         * mini.c: Update after renaming of mono_thread_get_pending_exception ().
13131 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13133         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
13134         
13135         * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
13137         * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
13139         * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
13141         * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
13143         * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double 
13144         implementation.
13146         * basic-float.cs: Add an ulong->double cast test.
13148 2007-12-15  Zoltan Varga  <vargaz@gmail.com>
13150         * mini.c (mono_method_to_ir): Fix a warning.
13152 2007-12-14  Zoltan Varga  <vargaz@gmail.com>
13154         * mini-ops.h: Add OP_SWITCH.
13156         * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
13157         CEE_SWITCH in back-end code, use OP_SWITCH instead.
13159 2007-12-11  Geoff Norton  <gnorton@novell.com>
13161         * mini-s390x.c: Minor change to the MAX() define to allow
13162         it to compile with other gcc versions.
13164 2007-12-11  Geoff Norton  <gnorton@novell.com>
13166         * cpu-s390x.md:
13167         * mini-s390x.c: Implement sext_i4 to fix the build on s390x
13169 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13171         exceptions-arm.c (mono_arch_get_restore_context): Restore
13172         the frame pointer.
13174         exceptions-arm.c (throw_exception): Save the frame pointer.
13175         This is a partial fix for #323747. Only the client side is
13176         fixed.
13178 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13180         * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
13181         was using an unrelated variable to log the class which
13182         needed the cctor to be called. This was crashing on arm.
13184 2007-12-09  Robert Jordan  <robertj@gmx.net>
13186         * mini-x86.c (mono_arch_emit_epilog):
13187         Consider all kinds of 64-bit types. Fixes #323114.
13189 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
13191         * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
13193 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
13195         * mini-amd64.c (peephole_pass): Add a missing instruction check.
13197 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13199         * mini.c: run type ctor before allocating an object, not only
13200         when running it's constructor method (fixes at least part of bug #342507).
13202 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
13203         
13204         * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
13205         
13206         * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
13207         * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable () 
13208         function.
13210         * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
13211         mono_generic_class_init_trampoline () the same as it is done with the other
13212         trampolines.
13214         * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md 
13215         aot-runtime.c aot-compiler.c: Implement AOT support.    
13217 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13219         * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
13220         build for archs which don't have the vtable trampoline defined
13221         yet.
13223 2007-12-07  Zoltan Varga  <vargaz@gmail.com>
13225         * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
13227         * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
13229         * mini-trampolines.c (mono_get_trampoline_func): New helper function.
13231         * tramp-<ARCH>.c: Use the new helper function.
13233 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13235         * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
13236         trampoline call, which takes a vtable argument.
13238         * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
13239         OP_TRAMPCALL_VTABLEs like other calls.
13241         * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
13242         register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
13243         call.  Implemented a support function which fetches the vtable
13244         from a register set.
13246         * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
13247         Implemented a generic class init trampoline, using the
13248         OP_TRAMPCALL_VTABLE opcode.
13250         * mini.c: Implemented static field access when sharing generic
13251         code.  This implies initing the class using the new
13252         OP_TRAMPCALL_VTABLE call.
13254 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13256         * mini.c: Don't compile methods with sharing enabled if their
13257         classes are disabled for sharing.
13259 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13261         * inssel.brg: Add a missing sign extension to the GETCHR and array access
13262         opcodes. Fixes #346563.
13264         * objects.cs: Add a new test.
13266         * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
13268         * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
13269         HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
13271 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13273         * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
13275 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13277         * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
13278         code stream.
13280 2007-12-02  Zoltan Varga  <vargaz@gmail.com>
13282         * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
13284         * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation 
13285         optimization in the AOT case.
13286         
13287 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13289         * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
13290         
13291         * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
13293         * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
13295         * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
13297         * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
13298         is created by the inlined delegate ctor.
13300         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.  
13302         * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
13304 2007-11-29  Zoltan Varga  <vargaz@gmail.com>
13306         * cpu-x86.md: Fix the length of ckfinite.
13308 2007-11-28  Zoltan Varga  <vargaz@gmail.com>
13310         * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
13311         
13312         * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
13313         (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
13315         * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
13317         * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the 
13318         OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
13320 2007-11-28  Martin Baulig  <martin@ximian.com>
13322         * mini-x86.c
13323         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
13324         after creating the trampoline.
13326 2007-11-27  Zoltan Varga  <vargaz@gmail.com>
13328         * aot-runtime.c (load_aot_module): Check runtime version if needed.
13330         * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
13331         the same version.
13333         * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
13334         instead of the calling method to help AOT.
13336         * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
13338 2007-11-26  Zoltan Varga  <vargaz@gmail.com>
13340         * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
13341         is defined.
13343 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13345         * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
13346         
13347         * aot-compiler.c (compile_method): Correct check for generic method definitions.
13348         (encode_method_ref): No need to handle generic method definitions specially.
13350         * mini.h (MONO_AOT_FILE_VERSION): Bump this.
13352         * aot-runtime.c (decode_klass_ref): Clean this up and rename from 
13353         decode_klass_info.
13355         * aot-compiler.c (encode_klass_ref): Clean this up and rename from
13356         encode_klass_info.
13357         (compile_method): Enable generic sharing.
13359 2007-11-22  Zoltan Varga  <vargaz@gmail.com>
13361         * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
13362         (mini_method_compile): Add preliminary support for AOTing shared generic code.
13364         * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
13365         generic code.
13367         * mini-trampolines.c: Fix a warning.
13369         * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
13370         NEW_PCONST.
13371         (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
13372         (generic_class_is_reference_type): Remove unused function.
13374         * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
13375         in the generic vtable trampoline case.
13377         * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
13378         
13379         * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
13380         return an AOT method based on a vtable slot.
13382         * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
13384         * mini.c (mini_get_vtable_trampoline): Export this.
13386 2007-11-22  Martin Baulig  <martin@ximian.com>
13388         * debug-debugger.h
13389         (MonoDebuggerInfo): Move `debugger_version' up.
13391 2007-11-22  Martin Baulig  <martin@ximian.com>
13393         * mini-amd64.c
13394         (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
13396         * mini-trampolines.c
13397         (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
13398         after compiling the method.
13400 2007-11-20  Martin Baulig  <martin@ximian.com>
13402         * debug-mini.c
13403         (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
13404         (mono_debugger_remove_breakpoint): Likewise.
13405         (mono_debugger_check_breakpoints): Likewise.
13407         * debug-debugger.c: Implement the new breakpoint interface here.
13409 2007-11-18  Zoltan Varga  <vargaz@gmail.com>
13411         * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
13412         CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
13414         * mini-x86.c (mono_arch_output_basic_block): Ditto.     
13416 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13418         * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
13420         * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
13421         mini.c.
13423         * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
13424         mini.c.
13426         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
13427         returning a vtype in a register.
13429         * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
13430         here from the arch specific code.
13432         * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
13433         mini.c.
13435         * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
13436         (mono_arch_emit_prolog): Increment maximum prolog size.
13438         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
13439         START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
13441         * mini-x86.c (get_call_info): Receive a MonoCompile instead of a 
13442         MonoGenericSharingContext.
13444         * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a 
13445         MonoGenericSharingContext. Allocate memory from the cfg mempool.
13447 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13449         * mini.c, mini.h, generic-sharing.c: Functions for producing code
13450         which extract fields out of the runtime generic context.  Full
13451         sharing of the NEWARR opcode.
13453 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13455         * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
13456         --enable-minimal=ssa.
13458 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13460         * mini-trampolines.c (mono_delegate_trampoline): Update after 
13461         mono_marshal_get_delegate_invoke () signature change.
13463 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13465         * mini.c: Removed the shared context in favor of the generic
13466         sharing context.  Allocate the MonoJitInfo structure with room for
13467         the generic sharing context if it's needed.
13469         * mini.h: Remove MonoGenericSharingContext declaration.  It's in
13470         domain-internals.h now.
13472         * mini-x86.c: Pass the generic sharing context to get_call_info ().
13474         * generic-sharing.c: Several changes for working without a shared
13475         context and instead operating on open types instead.
13477 2007-11-12  David S. Miller  <davem@davemloft.net>
13479        * inssel-sparc.brg: Fix double instruction emit.
13481 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13483         * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array 
13484         Get/Set/Address methods.
13485         
13486         * mini.c debug-debugger.c mini-trampolines.c: Update after 
13487         mono_marshal_get_delegate_invoke signature change.
13489 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
13491         * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
13492         This can happens with dynamic methods. Fixes the other bug in #322722.
13494 2007-11-12  Rodrigo Kumpera  <rkumpera@novell.com>
13496         * tramp-arm.c (mono_arch_patch_callsite): Support patching
13497         BX call sequence.
13499         * mini-arm.c (arm_patch): Implement patching of BX call
13500         sequence. Fixes one of the bugs in #322722.
13502 2007-11-03  David S. Miller  <davem@huronp11.davemloft.net>
13504        * mini-sparc.c (mono_arch_flush_icache): Make more efficient
13505        under Linux.  We only need to flush every 32-byte cache line.    
13507 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13509         * mini.c:
13510         move_basic_block_to_end: Add branches when needed, eventually creating
13511         a new BB.
13512         optimize_branches: added a parameter that tells if it's ok to create
13513         new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
13514         and avoid calling move_basic_block_to_end when it's not ok.
13515         Fixes bug 318677.
13517 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13519         * mini.c: Abort inlining call to InitializeArray if something
13520         looks wrong.  Let the icall handle it, which now has proper safety
13521         checks.
13523 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
13525         * mini.c (mono_spill_call): add support for soft-float.
13527         * mini.c (mono_method_to_ir): add support for soft-float
13528         to inlined functions that return float.
13530         * mini.c (mono_method_to_ir): add support for soft-float
13531         to cee_stsfld opcode on float fields.
13533 2007-11-05  Geoff Norton  <gnorton@novell.com>
13535         * mini-x86.h: Fix the structure access for X86 Leopard.
13538 2007-11-05  Martin Baulig  <martin@ximian.com>
13540         * mini-trampolines.c
13541         (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
13542         after compiling the method to notify the debugger.
13544 2007-11-05  Martin Baulig  <martin@ximian.com>
13546         * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
13548 2007-11-02  Zoltan Varga  <vargaz@gmail.com>
13550         * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
13551         David Miller <davem@davemloft.net>. Allow larger offsets in branches.
13553 2007-11-01  Zoltan Varga  <vargaz@gmail.com>
13555         * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
13556         native-to-managed wrappers.
13557         
13558 2007-11-01  Geoff Norton  <gnorton@novell.com>
13560         * mini-ppc.h, mini-x86.h:  Handle Leopards renaming of some structure 
13561         members.
13563 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
13565         * mini.c, mini-x86.c: when getting back from unmanaged code
13566         to managed via a marshaled delegate we also need to set the
13567         right domain.
13569 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
13571         * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
13572         for amd64.
13574 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13576         * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
13577         let the debugger or other external agents to tell the JIT when
13578         a sw breakpoint has been inserted in the code that the JIT needs
13579         to be able to inspect.
13581 2007-10-31  Martin Baulig  <martin@ximian.com>
13583         * debug-debugger.h
13584         (MonoDebuggerInfo): Remove `runtime_class_init'.
13586 2007-10-30  Martin Baulig  <martin@ximian.com>
13588         * debug-mini.h
13589         (mono_debugger_thread_created): Added `MonoThread *' argument.
13590         (mono_debugger_extended_notification): New public method.
13591         (mono_debugger_trampoline_compiled): New public method.
13593         * debug-mini.c
13594         (MonoDebuggerThreadInfo): Added `thread' and
13595         `extended_notifications' fields.
13597         * debug-debugger.c
13598         (debugger_executable_code_buffer): New static variable.
13600         * debug-debugger.h
13601         (MonoDebuggerInfo): Added `executable_code_buffer',
13602         `executable_code_buffer_size', `breakpoint_info_area',
13603         `breakpoint_table' and `breakpoint_table_size'.
13605 2007-10-26  Rodrigo Kumpera  <rkumpera@novell.com>
13607         * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
13608         that IP  either is an unused value or the vtable pointer. IMT 
13609         calls use vtable + offset now. Reduced by almost half the size
13610         of IMT entries.
13612 2007-10-26  Jonathan Chambers <joncham@gmail.com>
13614         * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
13615         defines to access param registers. Replace long usage with
13616         gsize as sizeof(long) != sizeof(void*) on Win64.
13618         * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
13619         on Win64. Fix intrinsic, use _AddressOfReturnAddress
13620         instead of non-existant _GetAddressOfReturnAddress.
13622         * tramp-amd64.c: Use AMD64_ARG_REG#     defines to access 
13623         param registers. Save/restore %rdi and %rsi in MonoLMF.
13625         * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access 
13626         param registers. Modify (throw_exception) signature to take 
13627         %rdi and %rsi on Win64. 
13629         Code is contributed under MIT/X11 license.
13631 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13633         * helpers.c: unlink debugging output files.
13635 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13637         * mini.c: Move mono_create_ftnptr () to object.c.
13639 2007-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
13641         * helpers.c (mono_disassemble_code): MonoCompile parameter is now
13642         optional. This function can now be used to disassemble code generated
13643         outside the JIT such as trampolines and IMT thunks.
13645         * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
13647         * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
13648         vtable pointer from a ldr instruction.
13650         * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
13651         new IMT call sequence.
13653         * mini-arm.c (mono_arch_output_basic_block): emit the IMT
13654         call sequence for interface invocations.
13656         * mini-arm.c (mono_arch_emit_imt_argument): added, required
13657         for imt support. This function is empty since IMT on ARM requires no
13658         special handling on the IR side.
13660         * mini-arm.c (mono_arch_find_imt_method): added, required for
13661         imt support.
13663         * mini-arm.c (mono_arch_find_this_argument): added, required
13664         for imt support.
13666         * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
13667         a ldr instruction to load a value stored in the code stream.
13669         * mini-arm.c (mono_arch_build_imt_thunk):added, required
13670         for imt support.
13673 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13675         * mini.c (mini_init): Install the jump trampoline callback.
13677 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
13679         * mini-trampolines.c: handle synchronized methods with the common
13680         vtable trampoline (bug #335601).
13682 2007-10-17  Zoltan Varga  <vargaz@gmail.com>
13684         * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
13686         * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
13687         64 bit platforms.
13689         * mini-ia64.h mini-ia64.c: Add support for IMT.
13691         * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
13692         prolog. Fixes #331958.
13694 2007-10-15  Zoltan Varga  <vargaz@gmail.com>
13696         * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
13698 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
13700         * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
13701         trampoline.
13703 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
13705         * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
13706         trampoline.
13708 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
13710         * mini-x86.c, mini-x86.h: x86 support for the common vtable
13711         trampoline.
13713 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13715         * mini-trampolines.c: changed the magic rampoline to understand
13716         the common vtable trampoline method: the method to invoke is
13717         determined by the vtable displacement of the call.
13719 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13721         * mini.c, mini.h: register the common vtable trampoline if the
13722         architecture supports it.
13724 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
13726         * cpu-amd64.md: use the correct max length for tls_get.
13728 2007-10-14  Zoltan Varga  <vargaz@gmail.com>
13730         * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
13731         CEE_STELEM_ANY. Fixes #333696.
13733 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
13735         * exceptions-x86.c: provide more graceful handling of the case where
13736         we followed a bogus function pointer from managed code (bug #332866).
13738 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13740         * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
13741         replaces the generic_shared flag and will carry more information
13742         in the future.
13744         * generic-sharing.c: Added mini_type_stack_size() which allows
13745         allows open types if given a generic sharing context.
13746         mini_get_basic_type_from_generic() takes a
13747         MonoGenericSharingContext* instead of a MonoCompile* now.
13749         * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
13750         mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
13751         mini-sparc.c, mini-x86.c: Trivial changes required by the two
13752         changes above.  Just passing arguments through to the right
13753         places.
13755 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13757         * mini-arm.c: unify the call emission to emit_code_seq().
13759 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
13761         * tramp-arm.c: reduced the trampoline size.
13763 2007-10-10  Mark Probst  <mark.probst@gmail.com>
13765         * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
13766         variable handling out of arch-specific code.
13768 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
13770         * mini-arm.c: implemented fast delegate dispatch.
13772 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
13774         * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
13775         that fp elimination is turned off if the space required by locals is too
13776         big. Fixes #331958.
13778 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
13780         * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
13781         ARM to the new style trampoline.
13783 2007-10-09  Zoltan Varga  <vargaz@gmail.com>
13785         * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
13787         * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
13789 2007-10-09  Martin Baulig  <martin@ximian.com>
13791         * debug-debugger.h
13792         (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
13793         `field_info_offset_offset'.     
13795 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13797         * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
13798         removed more internal usage of the r11 register and made it available
13799         to the register allocator.
13801 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13803         * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
13804         when sharing generics and treat type variables as references.
13806 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13808         * mini-ppc.c: started removing the internal uses of register r11
13809         to eventually allow the register allocator to manage it as an
13810         additional available register.
13812 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13814         * tramp-amd64.c: fixed memory corruption in the trampoline generation.
13816 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13818         * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
13819         specific trampolines as they are not performance critical as a jump
13820         target (maybe align as before only for AOT code?). This saves about
13821         200 KB of native code on x86 for monodevelop startup.
13823 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13825         * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
13826         monodevelop startup.
13828 2007-10-06  Zoltan Varga  <vargaz@gmail.com>
13830         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
13832         * mini-sparc.h mini-sparc.c: Implement IMT support.
13834         * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
13835         its smaller and doesn't clobber sparc_g1.
13837         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
13839 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13841         * mini-ppc.c: optimized the size of the IMT thunks a bit.
13843 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
13845         * mini-ppc.c: implemented fast delegate invocation.
13847 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13849         * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
13851 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13853         * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
13854         code to the new style trampoline in preparation for IMT support.
13856 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13858         * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
13859         systems already. This also reduces the specific trampiline sizes and
13860         prepares for the use of r12 as the IMT identifier register.
13862 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
13864         * mini-mips.h: endianess fix (simplified from a patch by
13865         Thomas Kunze <thommy@tabao.de>, bug #323737).
13867 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13869         * exceptions-ppc.c, mini-ppc.h: refactor to use macros
13870         to access ucontext fields and enable netbsd support
13871         (partially from Magnus Henoch <mange@freemail.hu>).
13873 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
13875         * genmdesc.pl: patch from Henryk Plotz <henryk@openmoko.org> to
13876         use the preprocessor from the CPP env var if it is set.
13878 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13880         * mini-trampolines.c: fixed an assertion and moved it earlier in the
13881         code, before interface_offset gets used.
13883 2007-10-02  Zoltan Varga  <vargaz@gmail.com>
13885         * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call 
13886         mono_class_setup_vtable () before accessing klass->vtable.
13888 2007-10-01  Zoltan Varga  <vargaz@gmail.com>
13890         * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
13891         hackish.
13893 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
13895         * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
13896         IMT slots (this saves hundreds of KB of memory in programs like
13897         IronPython and Monodevelop).
13899 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13901         * mini.c: print the delegate counter.
13903 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
13905         * mini-x86.c: make it easier to enable the debugging code for IMT
13906         slots.
13908 2007-09-28  Martin Baulig  <martin@ximian.com>
13910         * debug-debugger.h
13911         (MonoDebuggerMetadataInfo): Add `klass_image_offset',
13912         `mono_method_klass_offset' and `mono_method_token_offset'.
13914 2007-09-20  Mark Probst  <mark.probst@gmail.com>
13916         * mini.c: First generics sharing implementation.  Can only share
13917         in very simple cases.  If sharing doesn't work it falls back to
13918         dedicated compilation.
13920         * mini.h: Flag in MonoCompile to specify whether generic
13921         compilation is shared.  Flags enum for marking which generic inst
13922         of a context is used.  Prototypes for helper functions.
13924         * generic-sharing.c: Helper functions for generic method sharing.
13926         * optflags-def.h: Optimization flag (gshared) for enabling generic
13927         method sharing added.
13929         * Makefile.am: generic-sharing.c added.
13931 2007-09-19 Daniel Nauck <dna@mono-project.de>
13933         * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
13935 2007-09-19  Massimiliano Mantione  <massi@ximian.com>
13936         * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
13937         fixes bug 325507.
13939 2007-09-19  Martin Baulig  <martin@ximian.com>
13941         * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
13942         mono_debug_cleanup() is now part of mono_cleanup().
13944 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13946         * driver.c (mono_main): Fix a warning.
13948 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13950         * aot-compiler.c: Optimize various parts when processing large assemblies.
13951         Fixes ##325568.
13953         * mini.c (mono_patch_info_hash): Improve hash function.
13955 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13957         * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
13958         
13959         Code is contributed under MIT/X11 license.
13961 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13963         * mini.c (mini_init): Fix a leak.
13965         * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
13967 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
13969         * mini.c: redirect string.InternalAllocStr() to the managed allocator.
13971 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13973         * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
13975 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13977         * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
13978         variance tests.
13980         * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
13982         * mini.c (handle_alloc): Enable managed allocators in AOT code.
13984         * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
13986         * aot-runtime.c (decode_patch_info): Ditto.
13988 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13990         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
13991         static case. Cache delegates in architecture specific code, 
13992         based on number of parameters.
13993         
13994         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
13995         in architecture specific code, based on number of parameters.
13996         
13997         * mini-trampolines.c (mono_delegate_trampoline): Architecture specific 
13998         caching happen in architecture specific code now.
13999         
14000         Code is contributed under MIT/X11 license.
14002 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14004         * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
14005         mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
14006         mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
14008         Code is contributed under MIT/X11 license.
14010 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14011         * mini.c: (mono_thread_abort) Fixed bug #82416.
14013 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14015         * mini.: hook the new managed GC allocation feature into the JIT.
14017 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14019         * mini.c: implementation for the new runtime tls opcode.
14021 2007-09-11  Martin Baulig  <martin@ximian.com>
14023         * debug-debugger.h
14024         (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
14025         `mono_method_inflated_offset'.
14027 2007-09-07  Zoltan Varga  <vargaz@gmail.com>
14029         * driver.c mini.h mini.c: Add a new devel command line option for injecting
14030         async exceptions into a method.
14032         * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
14033         purpose of testing whenever the unwinder works at every instruction.
14035 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14037         * mini.c: check accessibility of method used in ldftn (fixes
14038         bug #82635).
14040 2007-09-04  Zoltan Varga  <vargaz@gmail.com>
14042         * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
14044         * inssel.brg: Fix a warning.
14046 2007-09-03  Martin Baulig  <martin@ximian.com>
14048         * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
14049         now takes the `main_method' as argument.
14051 2007-09-02  Zoltan Varga  <vargaz@gmail.com>
14053         * cpu-sparc.md (endfilter): Add missing src1:i argument.
14055 2007-08-30  Jonathan Chambers <joncham@gmail.com>
14057         * driver.c: include the cil-coff.h header on Windows.
14058         
14059         Code is contributed under MIT/X11 license.
14061 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14063         * mini.c, driver.c: don't include the cil-coff.h header.
14065 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14067         * mini.c: flag places that needs fixes fo soft-float support.
14069 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
14071         * mini.h, inssel-float.brg: fix soft-float constant loads on big
14072         endian systems (partially from Dean Jenkins, bug #81924).
14074 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14076         * mini.c (check_linkdemand): Remove embedded reference object in
14077         call to LinkDemandSecurityException.
14078         (mono_jit_compile_method_inner): Call LinkDemandSecurityException
14079         with an IntPtr instead of a reference object.
14081 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14083         * mini.c (handle_initobj): Handle alignment properly.
14085         * inssel.brg (mini_emit_memset): Ditto. 
14087         * inssel.brg (mini_emit_memcpy): Ditto. 
14089         * inssel-sparc.brg: Ditto.              
14091         * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
14093 2007-08-26  Zoltan Varga  <vargaz@gmail.com>
14095         * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
14096         exceptions raised in unmanaged code. Fixes part of #82594.
14098 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14100         * mini.c (mono_method_to_ir), declsec.c
14101         (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
14103 2007-08-22  Martin Baulig  <martin@ximian.com>
14105         * debug-mini.h
14106         (MonoDebuggerThreadInfo): New typedef.
14107         (mono_debugger_thread_table): New global variable.
14108         (mono_debugger_thread_created): New public function.
14109         (mono_debugger_thread_cleanup): New public function.
14111         * debug-debugger.h
14112         (MonoDebuggerInfo):
14113         - removed `get_current_thread' and `lookup_assembly'.
14114         - removed `data_table'.
14115         - added `thread_table'.
14117         * mini.c
14118         (mono_thread_start_cb): Call mono_debugger_thread_created().
14119         (mono_thread_attach_cb): Likewise.
14120         (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
14121         (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
14122         initial domain.
14124         * driver.c (mono_main): Move mono_debug_init() up, before calling
14125         mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
14127 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14129         * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
14130         together when passing several arguments of type double (gives a small
14131         speedup and saves a few bytes of generated code).
14133 2007-08-20  Jb Evain  <jbevain@novell.com>
14135         * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
14137 2007-08-20  Jb Evain  <jbevain@novell.com>
14139         * mini.c (mono_method_to_ir): throw MethodAccessException
14140         and FieldAccessException instead of InvalidProgramException.
14142 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14144         * mini.c: CoreCLR security checks.
14146         * mini.h: Removed MonoSecurityMode (moved to
14147         metadata/security-manager.h) and mono_security_mode global var
14148         (replaced by set/get functions in security-manager.h).
14150         * driver.c: Added "core-clr-test" security mode for testing.  Used
14151         set-function for setting security mode.
14153 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14155         * mini.c: MonoJitInfo's are freed hazardously now.  Statistics for
14156         the new jit_info_table.
14158         * driver.c: Test code for the new jit_info_table (enabled by the
14159         define MONO_JIT_INFO_TABLE_TEST).
14161 2007-08-14  Zoltan Varga  <vargaz@gmail.com>
14163         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
14164         detection of call <REG> instruction sequence. Fixes build on freebsd.
14166 2007-08-13  Zoltan Varga  <vargaz@gmail.com>
14168         * mini-exceptions.c: Fix a warning.
14170 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14172         * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
14173         stack overflow handling code on amd64 too.
14175         * mini-exceptions.c (mono_setup_altstack): Make this use 
14176         mono_thread_get_stack_bounds ().
14178         * mini-x86.h: Disable sigaltstack on solaris x86.
14180 2007-08-10  Zoltan Varga  <vargaz@gmail.com>
14182         * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
14184 2007-08-10  Geoff Norton  <gnorton@customerdna.com>
14186         * tramp-x86.c: Remove some unneeded alignment changes on Apple.  Fixes #82387.
14188 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14190         * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
14192         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
14194 2007-08-03  Neale Ferguson <neale@sinenomine.net>
14196         * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
14197         due to alignment.
14199 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14201         * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
14202         to be emitted (bug #82281).
14204 2007-08-01  Martin Baulig  <martin@ximian.com>
14206         Merged the `debugger-dublin' branch.
14208         * debug-debugger.h (MonoDebuggerInfo):
14209         Removed the `old_*' compatibility entries.
14210         Added `debugger_version' and `data_table'.
14211         Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
14212         Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
14214         * debug-mini.c
14215         (MiniDebugMethodBreakpointInfo): Add `address_list'.
14216         (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
14217         instead of a `gconstpointer'.
14218         (mono_debugger_insert_method_breakpoint): Return a
14219         `MonoDebugMethodAddressList *'.
14221 2007-06-28  Martin Baulig  <martin@ximian.com>
14223         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
14225 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14227         * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using 
14228         __builtin_frame_address () since it is broken on older gcc versions.
14230 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14232         * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
14233         on the stack overflow handling and made the managed stack overflows
14234         catchable in most cases using soft guard pages.
14235         * exceptions-x86.c: added code to restore the protection in the soft
14236         guard pages at the end of exception handling.
14238 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
14240         * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
14242 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14244         * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
14245         exception handling.
14247 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
14249         * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
14250         signal handling support until it has been ported to the new mechanism.
14251         * mini.c: fixed stack overflow detection and use the new
14252         architecture code  to handle signals on the altstack.
14254 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14256         * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
14257         stack overflows on the alt stack.
14259 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14261         * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
14262         stack overflows on the alt stack.
14264 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
14266         * exceptions-ppc.c: cleanup preparing for altstack support.
14268 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
14270         * exceptions-arm.c: cleanup preparing for altstack support.
14272 2007-07-27  Mark Probst  <mark.probst@gmail.com>
14274         * mini.c (print_jit_stats): Output hazard pointer stats.
14276 2007-07-26  Mark Probst  <mark.probst@gmail.com>
14278         * driver.c, mini.c: Replaced security mode flags with a single
14279         enum variable.
14281 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14283         * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
14285 2007-07-25  Mark Probst  <mark.probst@gmail.com>
14287         * mini.c, mini.h, driver.c (mono_main): Added command-line flag
14288         (which doesn't do anything yet) for activating Core CLR
14289         (Silverlight) security.
14291 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14293         * mini-codegen.c: work around a possible gcc bug on arm.
14295 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14297         * driver.c, mini-x86.h, mini-amd64.h: print a nice error
14298         message for platforms that don't support AOT compilation.
14300 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
14302         * mini.h, mini.c, driver.c: temporary smcs hack.
14304 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
14306         * mini-arm.h, mini-arm.c: arm EABI fixes.
14308 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
14310         * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
14311         case.
14313         * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
14314         trampolines taking a method argument.
14316         * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
14318         * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
14319         * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
14321         * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
14322         JIT compilation throws an exception. Fixes #82050.
14324 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14326         * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
14327         with the MONO_EXCEPTION_ defines.
14329 2007-07-17  Zoltan Varga  <vargaz@gmail.com>
14331         * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
14332         #82117.
14333         
14334         * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
14335         the cause of an assertion.
14337 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
14339         * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
14340         removed.
14342 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14344         * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
14345         assert. Should fix #82103.
14347 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14349         * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
14350         here too. Fixes #82095.
14352         * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
14353         addresses.
14355         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
14357         * mini-amd64.h: Enable IMT for amd64.
14358         
14359         * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
14361 2007-07-12  Zoltan Varga  <vargaz@gmail.com>
14363         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
14365 2007-07-12  Mark Probst  <mark.probst@gmail.com>
14367         * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
14368         as soon as check_linkdemand sets an exception_type.
14370 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14372         * mini-x86.c: fixed offsets for IMT call sequence.
14373         * mini-x86.h: enable IMT again.
14375 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14377         * trace.c (mono_trace_enter_method): Decode MonoType too.
14379         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
14381         * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
14383         * mini-amd64.c: Add preliminary IMT implementation.
14384         
14385 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
14387         * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
14388         understand the new IMT-base interface invocation (thanks to
14389         Daniel Nauck for the report and the remote debugging session).
14391 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14393         * mini-x86.c: size and speed optimizations for the IMT bsearch.
14395 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14397         * Makefile.am (aotcheck): Make this actually use the AOTed code.
14399 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
14401         * mini-trampolines.c: implement AOT IMT support.
14402         * mini-x86.h: enable IMT support for wider testing.
14404 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14406         * inssel.brg (emit_imt_argument): Add aot support here.
14408         * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
14410 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14412         * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
14413         of the IMT implementation, partially from massi, with my
14414         implementation of the bsearch sequence. Disabled by default until
14415         the AOT code is implemented.
14417 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14419         * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
14421         * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
14423 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14425         * inssel.brg, mini.c, mini.h, mini-trampolines.c:
14426         arch-independent IMT JIT code from Massimiliano
14427         Mantione (massi@ximian.com) with small cleanups from me.
14429 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
14431         * Makefile.am: fix svn invocation to get the svn revision to be
14432         independent of the local language (build fix).
14434 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14436         * mini.c (inline_method): Reset cfg->exception_type if the
14437         inlining is aborted.  Fixes: 82049.
14439 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14441         * mini.c: remove assert from exception handling code when exception_ptr
14442         is not set.
14444 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14446         * mini.c (mono_codegen): Add an assert.
14448         * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method 
14449         enter and leave code.
14450         * mini-amd64.c (mono_arch_emit_prolog): Likewise.
14452 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14454         * mini-ppc.c: fixed memory corruption for localloc(0)
14455         (bug #81852).
14457 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14458         
14459         * mini.c: Fix warnings.
14461 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14463         * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
14464         to emit better double->int conversions.
14466 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14468         * mini.c: the provided Min/Max optimizations are valid for unisgned
14469         ints.
14471 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14473         * 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
14475 2007-06-28  Miguel de Icaza  <miguel@novell.com>
14477         * mini.c (mono_running_on_valgrind): Add support for reporting the
14478         method and  its boundaries to valgrind.
14480 2007-06-28  Martin Baulig  <martin@ximian.com>
14482         * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
14484 2007-06-25  Zoltan Varga  <vargaz@gmail.com>
14486         * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
14488         * generic.2.cs: Add new test case.
14490 2007-06-25  Martin Baulig  <martin@ximian.com>
14492         Merged the `debugger-dublin' branch.
14494         * debug-mini.c
14495         (mono_debugger_insert_method_breakpoint): New public method.
14496         (mono_debugger_remove_method_breakpoint): Likewise.
14497         (mono_debugger_check_breakpoints): New static method.
14498         (mono_debug_close_method): Call mono_debugger_check_breakpoints().
14500         * debug-debugger.h (MonoDebuggerInfo):
14501         Renamed (to keep backward compatibility in the vtable):
14502         `insert_breakpoint' -> `old_insert_breakpoint'.
14503         `remove_breakpoint' -> `old_remove_breakpoint'.
14504         `create_string' -> `old_create_string'.
14505         `lookup_class' -> `old_lookup_class'.
14506         `lookup_type' -> removed; changed into a dummy field.
14507         `lookup_assembly' -> `old_lookup_assembly'.
14508         Added (same functionality, but different signature):
14509         `create_string', `lookup_class', `lookup_assembly'
14510         Added new:
14511         `get_method_addr_or_bpt', `remove_method_breakpoint',
14512         `runtime_class_init'.
14514         * debug-debugger.c: Merged the `debugger-dublin' branch.
14516 2007-06-23  Zoltan Varga  <vargaz@gmail.com>
14518         * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
14519         well.
14520         (peephole_pass): Likewise.
14522 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14524         * driver.c: hopefully make setaffinity work also for ancient
14525         versions of linux.
14527 2007-06-22  Atsushi Enomoto  <atsushi@ximian.com>
14529         * driver.c : win32 build fix.
14531 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14533         * driver.c: check for the MONO_NO_SMP env var and bind to a single
14534         processor if it is set.
14536 2007-06-21  Martin Baulig  <martin@ximian.com>
14538         * debug-mini.h: New file.
14540         * debug-mini.c
14541         (mono_debugger_insert_breakpoint_full): Moved here from
14542         ../metadata/mono-debug-debugger.c.
14543         (mono_debugger_remove_breakpoint): Likewise.
14544         (mono_debugger_breakpoint_callback): Likewise.
14546 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14548         * jit-icalls.c (mono_helper_compile_generic_method): Update to
14549         changes in MonoGenericClass.
14551 2007-06-14  Zoltan Varga  <vargaz@gmail.com>
14553         * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
14555 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14557         * jit-icalls.c (mono_helper_compile_generic_method): Update to
14558         removal of MonoGenericMethod.
14560 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14562         * mini-exceptions.c: hooks for the exception events profiling API.
14564 2007-06-14  Randolph Chung  <tausq@debian.org>
14566         * Makefile.ma: Add hppa target.
14567         * mini-arch.h: Include mini-hppa.h
14568         * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
14569         mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
14570         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
14572 2007-06-14  Randolph Chung  <tausq@debian.org>
14574         * inssel.brg: Add rules for "chained" compare-branch operations so that
14575         a single compare op can affect multiple branches.  Adjust cost for
14576         OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
14577         * inssel-long32.brg: Update rules to use compare-branch macros.  Adjust
14578         cost for some rules so that they can more easily be overridden by
14579         per-arch rules (with fixes from lupus).
14580         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
14582 2007-06-13  Randolph Chung  <tausq@debian.org>
14584         * mini-ops.h: Reorder branch ops so that they match the order of the
14585         corresponding CEE_* ops.  The code expects them this way.
14586         Add new ops for HPPA target.
14587         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
14589 2007-06-13  Randolph Chung  <tausq@debian.org>
14591         * mini-exceptions.c: Handle cases where the stack grows towards
14592         larger addresses.
14593         Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
14595 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14597         * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
14598         counter.
14599         * driver.c: explain where a non-matching corlib is found.
14601 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14603         * mini.c (print_jit_stats): Output dynamic code allocation stats.
14605 2007-06-10  Sanghyeon Seo <sanxiyn@gmail.com>
14607         * mini-exceptions.c: Generate a method profile leave event during
14608         an exception to ensure that the profiler gets notified.
14610 2007-06-07  Zoltan Varga  <vargaz@gmail.com>
14612         * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir 
14613         branch.
14615         * cpu-amd64.md: Add long_and/or/xor opcodes.
14617 2007-06-06  Wade Berrier  <wberrier@novell.com>
14619         * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
14620         (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction 
14621         length of instruction shr_imm (expected 8, got 10)
14623 2007-06-06  Zoltan Varga  <vargaz@gmail.com>
14625         * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
14627 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14629         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
14630         MonoInternalHashTable again (fixed bug in the internal hash table
14631         code).
14633 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14635         * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
14636         Have to figure out what makes it crash the SWF regression.
14638 2007-06-05  Zoltan Varga  <vargaz@gmail.com>
14640         * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
14642 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14644         * mini.c: optimize out the type check when storing null in a
14645         reference array.
14647 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14649         * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
14650         MonoInternalHashTable.
14652 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14654         * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
14655         signed integer methods.
14657 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
14659         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case 
14660         permanently since the current approach doesn't work.
14662 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
14664         * inssel.brg (stmt): Only call delegate->invoke_impl if 
14665         MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
14667 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
14669         * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
14670         the sreg2==rdx case.
14671         
14672         * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
14673         account if it contains a rex prefix.
14674         (peephole_pass): Handle OP_FMOVE as well.
14676 2007-06-01  Zoltan Varga  <vargaz@gmail.com>
14678         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
14679         as it causes regressions.
14681 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14683         * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
14684         static case as well.
14686         * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
14688         * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
14689         (mono_arch_get_this_arg_from_call): Ditto.
14691         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
14693         * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
14694         invoke_impl field.
14696         * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
14697         (mono_arch_get_this_arg_from_call): Ditto.
14699         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
14700         
14701         * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
14702         try to create optimized invoke code and use that for further invocations. 
14703         Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
14705         * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
14707 2007-05-29  Rodrigo Kumpera  <kumpera@gmail.com>
14709         * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
14710         sealed classes or methods.
14711         *devirtualization.cs: tests for the new optimization
14713 2007-05-29  Zoltan Varga  <vargaz@gmail.com>
14715         * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
14716         by the update_volatile () function.
14718 2007-05-27  Zoltan Varga  <vargaz@gmail.com>
14720         * driver.c (mono_main): Call g_thread_init () early since newer glib versions
14721         require it.
14723         * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
14725 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14727         * mini.c: Add configure checks for header files.
14728         * mini-x86.c: Add configure checks for header files.
14729         * trace.c: Add configure checks for header files.
14730         * aot-runtime.c: Add configure checks for header files.
14731         * aot-compiler.c: Add configure checks for header files.
14732         * driver.c: Add configure checks for header files.
14733         * mini-codegen.c: Add configure checks for header files.
14734         
14735         Code is contributed under MIT/X11 license.
14737 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14739         * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
14740         icompare_imm -128 + op_iclt. Fixes #81703.
14742 2007-05-19  Zoltan Varga  <vargaz@gmail.com>
14744         * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
14746 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14748         * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
14749         inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
14750         so that all isinst checks now use "interface_bitmap".
14752 2007-05-15  Zoltan Varga  <vargaz@gmail.com>
14754         * cpu-amd64.md (jmp): Fix a warning.
14756         * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
14758         * basic.cs: Add new regression test.
14760         * basic.cs: Remove test which is now in basic-long.cs.
14762         * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
14764         * basic-long.cs: Add new test.
14765         
14766 2007-05-13  Zoltan Varga  <vargaz@gmail.com>
14768         * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
14770 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14772         * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
14774         * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
14775         places.
14776         
14777         * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception 
14778         throwing code a bit.
14780         * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of 
14781         the exception throwing code a bit.
14783         * mini-x86.c (get_call_info): Allocate result from a mempool.
14785 2007-05-11  Zoltan Varga  <vargaz@gmail.com>
14787         * aot-compiler.c (find_typespec_for_class): Fix the assert.
14789         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
14791         * mini.h (MonoCompile): Add 'token_info_hash' field.
14793         * mini.c: Save token->method associations during compilation so the AOT 
14794         compiler can use it.
14795         
14796         * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
14797         which reference generic classes and methods.
14799 2007-05-10  Zoltan Varga  <vargaz@gmail.com>
14801         * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
14803         * aot-compiler.c (compile_method): Fix a typo in a comment.
14805         * aot-runtime.c (decode_cached_class_info): Skip generic types.
14807         * aot-compiler.c: Add minimal support for AOTing generic code by skipping 
14808         everything generic.
14810         * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
14812 2007-05-09  Zoltan Varga  <vargaz@gmail.com>
14814         * mini.h (MonoCompile): Add 'args' field.
14816         * mini.c (mono_compile_create_vars): Store variables representing the arguments
14817         into cfg->args.
14819         * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
14821 2007-05-08  Zoltan Varga  <vargaz@gmail.com>
14823         * mini.c (mono_compile_get_interface_var): Remove this unused function.
14825         * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
14827         * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
14828         opcodes for some opcodes.
14830         * mini.h *.brg *.c: Use the new opcodes.
14832 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14834         * mini.h: Bumped aot revision.
14836         * inssel.brg: modified code generation of type checks for interfaces
14837         to use the new "MonoClass.interface_bitmap" instead of the old
14838         "MonoClass.interface_offsets".
14840 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14842         * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
14844 2007-04-29  Zoltan Varga  <vargaz@gmail.com>
14846         * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
14847         64 bit platforms.
14849 2007-04-27  Neale Ferguson <neale@sinenomine.net>
14851         * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
14853 2007-04-27  Wade Berrier  <wberrier@novell.com>
14855         * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in 
14856         mini.h) to fix build.
14858 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14860         * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
14861         
14862         * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
14863         causes the corlib unit tests to fail.
14865 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14867         * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
14869         * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
14871         * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional 
14872         opcodes to the comparison relations.
14874         * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional 
14875         opcodes to their types.
14876         
14877         * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
14879         * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache 
14880         it in cfg->arch.cinfo.
14882         * local-propagation.c (mono_local_cprop_bb): Fix a warning.
14884         * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in 
14885         cfg->cil_offset_to_bb.
14887 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14889         * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
14890         created becase of initlocals.
14892 2007-04-23  Zoltan Varga  <vargaz@gmail.com>
14894         * mini-alpha.c cpu-alpha.md: More alpha port work from 
14895         Sergey Tikhonov <tsv@solvo.ru>.
14897 2007-04-21  Andreas Faerber  <andreas.faerber@web.de>
14899         * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
14901 2007-04-19  Zoltan Varga  <vargaz@gmail.com>
14903         * cpu-s390.md (break): Correct the length of break instruction.
14905 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
14907         * mini.c: fix a couple of soft-float issues and comments.
14909 2007-04-15  Miguel de Icaza  <miguel@novell.com>
14911         * trace.c (is_filenamechar): - is also a filename char.
14913 2007-04-15  Neale Ferguson <neale@sinenomine.net>
14915         * mini-s390.c: Correct checking for enum type in return value processing.
14917 2007-04-14  Raja R Harinath  <rharinath@novell.com>
14919         * Makefile.am (BUILT_SOURCES): Add 'version.h'.
14920         (version.h): Makefile is in the build directory.
14922 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
14924         * mini-amd64.h: fix for assertion failure on Solaris/amd64
14926 2007-04-11  Martin Baulig  <martin@ximian.com>
14928         * mini.c (can_access_member): Fix handling of generic classes;
14929         fixes #81259.
14931 2007-04-10  Zoltan Varga  <vargaz@gmail.com>
14933         * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
14935 2007-04-05  Zoltan Varga  <vargaz@gmail.com>
14937         * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
14939 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14941         * mini-codegen.c: make sure the right spill amount is
14942         used for fp or integer registers (fixes the float_sub_spill() on ppc).
14944 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
14946         * mini-ppc.c: fixes for the fp_branch_nan test.
14948 2007-03-23  Zoltan Varga  <vargaz@gmail.com>
14950         * basic.cs: Comment out new test which still fails on ia64.
14952 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14954         * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
14956 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14958         * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
14960 2007-03-22  Zoltan Varga  <vargaz@gmail.com>
14962         * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
14963         on 64 bit machines. Fixes part of #80738.
14965         * basic.cs: Add regression test.
14967 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
14969         * inssel.brg basic.cs: Revert previous change to fix build.
14971         * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
14972         platforms.
14973         
14974         * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
14976         * basic.cs: Add new regression test.
14978 2007-03-17  Zoltan Varga  <vargaz@gmail.com>
14980         * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
14981         many arguments.
14983 2007-03-16  Neale Ferguson <neale@sinenomine.net>
14985         * cpu-s390x.md: Correct length of break instruction.
14987 2007-03-16  Neale Ferguson <neale@sinenomine.net>
14989         * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
14990         * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
14992 2007-03-15  Jonathan Chambers  <joncham@gmail.com>
14994         * *.c: Begin WIN64 port.
14995         * mini.c:  Use correct register in profiler.
14996         * mini-amd64.c: No inline assembly on Win64.
14997         * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
14998         Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
14999         * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
15000         is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
15001         mono_arch_ip_from_context for Win64.
15002         
15003         Contributed under MIT/X11 license.
15005 2007-03-15  Zoltan Varga  <vargaz@gmail.com>
15007         * exceptions-amd64.c (seh_handler): Ditto.
15009         * exceptions-x86.c (seh_handler): Fix a memory leak.
15011 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
15013         * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
15014         mini-s390x.c: fixed peephole optimizations to deal
15015         correctly with 1 and 2 byte reload avoidance.
15017 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15019         * cpu-s390.md, cpu-s390x.md: update localloc length.
15021 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15023         * cpu-g4.md: added missing descriptions.
15025 2007-03-14  Miguel de Icaza  <miguel@novell.com>
15027         *  Makefile.am: Add support so the tail tests are not executed on
15028         PowerPC as that is a known limitation of the PowerPC port.
15030 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15032         * runmdesc.bat:  Move to msvc directory.
15033         
15034 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15036         * runmdesc.bat:  Run executable that was produced by the current
15037         target and sent via an argument.
15038         
15039 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
15041         * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
15042         #81102.
15044         * generics.2.cs: Add regression test.
15046 2007-03-09  Wade berrier  <wberrier@novell.com>
15048         * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
15050 2007-03-09  Zoltan Varga  <vargaz@gmail.com>
15052         * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
15053         AOT code depends on this.
15055 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
15057         * mini.c: more precise tracking of types in the eval stack
15058         (part of fix for bug #81044).
15060 2007-03-07  Zoltan Varga  <vargaz@gmail.com>
15062         * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
15064         * aot-compiler.c (encode_patch): Remove an obsolete comment.
15066 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15068         * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
15070         * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
15072 2007-02-22  Zoltan Varga  <vargaz@gmail.com>
15074         * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
15075         a pointer on 64 bit systems. Fixes #80190.
15077         * iltests.il: Add new regression test.
15079 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15081         * mini.c: inline a constant for Environment.IsRunningOnWindows.
15083 2007-02-19  Geoff Norton  <gnorton@customerdna.com>
15085         * trace.c: Remove an erroneous alignemnt check when tracing.
15086           Fixes --trace on OSX86.
15088 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
15090         * mini-$(arch).h: initialize SP in context for all the archs.
15092 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
15094         * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
15095         regressions in the thread tests.
15097 2007-02-14  Zoltan Varga  <vargaz@gmail.com>
15099         * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
15100         - fixed implementation of LOCALLOC opcode
15101         - implemented non-un compare for floats
15102         - code cleanup
15103         - implementation of FDIV and CKFINITE opcodes
15104         - fixes for latest mono updates
15105         - additional arch opcodes
15107 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15109         * Makefile.am: simplify and merge rules for cross-compilation.
15111 2007-02-07  Massimiliano Mantione  <massi@ximian.com>
15113         * local-propagation.c: Actually *apply* the fix for bug 80591...
15115 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15117         * mini-exceptions.c: backuot part of the last change
15118         (fixes cas tests on amd64 related to GetExecutingAssembly ()).
15120 2007-02-06  Massimiliano Mantione  <massi@ximian.com>
15121         * inssel.brg: Fix bug 59286.
15124 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
15126         * mini-exceptions.c: patch from Zoltan to correctly check for
15127         stack boundaries (using the stack register, not the frame register),
15128         fixes bugs #80724, #79717.
15130 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
15132         * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
15133         OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
15135         * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
15136         presence of frame pointer elimination.
15138 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
15139         
15140         * mini-x86.h: NetBSD UCONTEX_REG defines.
15142 2007-02-01  Zoltan Varga  <vargaz@gmail.com>
15144         * inssel-amd64.brg: Fix amd64 build.
15146 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
15148         * mini.h: remove extern to workaround what looks likes gcc bug 26905
15149         on amd64.
15151 2007-01-31  Zoltan Varga  <vargaz@gmail.com>
15153         * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
15154         ends.
15156         * mini-<ARCH>.c: Use mono_is_regsize_var ().
15158 2007-01-30 Mark Mason <mason@broadcom.com>
15160            * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
15161            * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
15162            * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
15163            beginning support for CEE_JMP [not quite working yet]
15164            * tramp-mips.c: LMF handling now works
15165         
15166 2007-01-30  Zoltan Varga  <vargaz@gmail.com>
15168         * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
15170         * mini.h (NULLIFY_INS): New macro.
15172 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
15174         * mini.c: statistical profiler fix for windows, patch
15175         from Tor Lillqvist (tml@novell.com).
15177 2007-01-30  Massimiliano Mantione  <massi@ximian.com>
15178         * local-propagation.c: Fix bug 80591.
15180 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
15182         * Makefile.am: put back the --export-dynamic option as with
15183         the previous gmodule flags (thanks to Robert Jordan).
15185 2007-01-28  Zoltan Varga  <vargaz@gmail.com>
15187         * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
15189         mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
15190         simplify and speed up the local register allocator. Also rename some fields
15191         like iassign->vassign.
15192         
15193         * regalloc.c: Remove some functions which are no longer used since their
15194         inlined version is in mini-codegen.c.
15195         
15196         * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
15198         * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
15200 2007-01-27  Zoltan Varga  <vargaz@gmail.com>
15202         * mini-amd64.c (peephole_pass): Remove optimizations which omit a 
15203         narrowing. Fixes #80622.
15205         * iltests.il: Add new regresssion test. 
15207 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15209         * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
15210         debug-debugger.c, debug-debugger.h: warning fixes.
15211         * driver.c: updated copyright year and made it fit in one line.
15213 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
15215         * aot-runtime.c: updated to use mono-dl instead of gmodule.
15217 2007-01-25  Zoltan Varga  <vargaz@gmail.com>
15219         * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
15221         * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
15223         * iltests.il: Add new test for bug #80507.
15225 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15227         * mini-arm.h: use soft-float also on vfp for now.
15229 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15231         * mini.c: fix some more soft-float issues.
15233 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15235         * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
15237 2007-01-24  Massimiliano Mantione  <massi@ximian.com>
15238         * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
15239         mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
15240         MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
15242 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
15244         * mini-arm.c: typo fix.
15246 2007-01-23  Neale Ferguson <neale@sinenomine.net>
15248         * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
15250 2007-01-21  Zoltan Varga  <vargaz@gmail.com>
15252         * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
15253         Share stack slots for scalar types. Avoid expensive g_list_free () calls.
15255         * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
15257         * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto. 
15259         * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
15260         
15261         * inssel.brg: Fix a warning.
15263         * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
15265         * abcremoval.c ssa.c ssapre.c: Update after this change.
15266         
15267         * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
15269         * dominators.c (df_set): Use mono_bitset_union_fast.    
15271 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
15273         * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
15274         mini-codegen.c: reduce relocations and memory usage for the cpu
15275         description.
15277 2007-01-20  Zoltan Varga  <vargaz@gmail.com>
15279         * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
15281         * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
15282         to reduce their size.
15284 2007-01-19 Mark Mason <mason@broadcom.com>
15286         * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
15287         * mini-mips.c: more configuration macros, support long conditional branches, additional
15288         asserts, fix epilog instrumentation.
15289         * mini-mips.h: use standard stack walk
15290         * cpu-mips.md: increase size of div, rem and conditional branches
15291         
15292 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
15294         * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
15295         to cpu spec data.
15297 2007-01-19  Zoltan Varga  <vargaz@gmail.com>
15299         * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
15300         (compile_method): Ditto.
15302         * aot-runtime.c (decode_klass_info): Ditto.
15304         * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
15305         needed by the code generated by inssel.brg. Also fix a warning.
15307 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
15309         * mini.c: deal with enums that become genericinsts by
15310         being nested in a generic class (bug #79956).
15312 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
15314         * mini.c: match the generic definition to check for
15315         private access with generic types (bug #78431).
15317 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
15319         * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
15320         to make life easier for people cross-compiling that insist on not
15321         using scratchbox.
15323 2007-01-17 Mark Mason <mason@broadcom.com>
15325         * inssel-long.brg: patch to deal with mips missing flags
15326         * inssel-long32-mips.brg: implement overflow checks
15327         * insset-mips.brg: implement overflow checks
15328         * mini-mips.h: implement conditional exception handling
15329         * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
15330           Remove unused code, minor cleanups.
15331         * exceptions-mips.c: minor cleanups
15332         * mini-ops.h: add mips conditional exception ops
15333         * cpu-mips.md: add mips conditional exception ops
15335         
15336 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
15338         * inssel.brg: patch from Mark Mason <mason@broadcom.com>
15339         to deal with mips missing of flags.
15341 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
15343         * exceptions-ppc.c: execute fault handlers.
15345 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
15347         * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
15349 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15351         * mini.c: handle also floating point values in initialize_array.
15353 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15355         * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
15356         array initialization and make it conditional on the intrins option.
15358 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15360         * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
15361         relocations and put the patch info names close to the enum definition.
15363 2007-01-15 Mark Mason <mason@broadcom.com>
15365         * basic.cs, exceptions.cs: break up large tests to increase debugability.
15367 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
15369         * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
15371 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15373         * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
15375 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15377         * Makefile.am: distribute the mips sources.
15379 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
15381         * mini-codegen.h: handle bug #80489 here, by excluding ecx
15382         directly.
15384 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
15386         * cpu-x86.md: back out for now as this triggers other regressions.
15388 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15390         * cpu-x86.md: force src1 and dest regpair for long shift instructions
15391         to eax:edx, so ecx can't get allocated to them (bug #80489).
15393 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
15395         * mini.c, mini-exceptions.c: enabled running fault handlers
15396         (bug #80469).
15398 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15400         * driver.c: If nothing fail, do not use the string "failed",
15401         because it makes it very annoying to view test result logs on the
15402         web. 
15404 2006-12-30  Miguel de Icaza  <miguel@novell.com>
15406         * debug-debugger.c (mono_debugger_main): Rename "main" to
15407         "main_method" to prevent a warning.
15409         Remove a warning for unused field.
15411 2006-12-28  Martin Baulig  <martin@ximian.com>
15413         * debug-debugger.c
15414         (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
15416 2006-12-22  Martin Baulig  <martin@ximian.com>
15418         * mdb-debug-info32.s, mdb-debug-info64.s: New files.
15419         Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
15420         seperate `.mdb_debug_info' section, so we can access it from the
15421         debugger even if the binary is stripped.
15423         * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
15424         from the `.mdb_debug_info' here to prevent the linker from
15425         removing that section.
15427         * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
15428         mdb-debug-info64.s.
15430 2006-12-19  Robert Jordan  <robertj@gmx.net>
15432         * mini-x86: enable the code to return small structures in
15433         registers for FreeBSD as well. Fixes bug #80278.
15434         * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
15436 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
15438         * mini-x86.c: align the stack when calling the profiler
15439         function instrumenting the prolog (on OSX).
15441 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15443         * mini.c: emit a break opcode where Debugger.Break () is called.
15445 2006-12-13  Miguel de Icaza  <miguel@novell.com>
15447         * mini.c (mono_method_to_ir): Provide useful information on this
15448         assert, to prevent others from debugging like I did.
15450 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
15452         * mini.c: enable code which was incorrectly commented
15453         (bug #80235).
15455 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
15457         * mini-x86.c: enable on OSX, too, the code to return small
15458         structures in registers.
15460 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
15462         * mini-x86.c: remove the use of the dynamic code manager here, too.
15464 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15466         * mini.h, debug-debugger.c, tramp-*.c: fixed 
15467         mono_debugger_create_notification_function() to use
15468         mono_global_codeman_reserve () instead of a dynamic code manager.
15470 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15472         * mini.c, jit-icalls.h, jit-icalls.c: remove the 
15473         ves_array_element_address() jit icall and use a generated
15474         managed method instead (which is about 4 times faster for a rank 3
15475         array access).
15477 2006-11-29  Mark Mason  <mason@broadcom.com>
15479         * basic-calls.cs: additional tests for passing
15480         structures as function arguments.
15482 2006-11-29  Mark Mason  <mason@broadcom.com>
15484         * mini-mips.h: disable custom exception handling
15485         * mini-mips.c: throw/rethrow should use jalr to call
15486         exception stubs.  Fixed bug with passing structures
15487         by value. More support for tracing floating point
15488         functions.
15490 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
15492         * mini.c: fixed typo in the soft-float ldind.r4 handling
15493         (bug #80086).
15495 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15497         * mini.c, mini.h, driver.c: added --runtime command line
15498         option to select a different runtime than the autodetected one.
15499         * jit.h: added API for embedders to initialize with a specific
15500         runtime version.
15502 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
15504         * mini.c: handle also boxing of r4 values (bug #80024).
15506 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15508         * mini-ppc.c: force indirect calls until we reserve
15509         enough address space for all the generated code.
15511 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
15513         * exceptions-arm.c: workaround bugs in the libc definition
15514         of struct ucontext.
15516 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
15518         * inssel.brg: fixes from me and Mark Mason.
15520 2006-11-23  Dick Porter  <dick@ximian.com>
15522         * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
15523         semaphore display now we've fixed the initial value
15525 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15527         * inssel.brg: partially revert the last change to fix the build.
15529 2006-11-21  Mark Mason  <mason@broadcom.com>
15531         * inssel.brg: Add and use compare-and-branch macros to support
15532         architectures that do not have condition code registers (ie. MIPS).
15533         * *-mips.{c,brg,md}: Fix copyright statements
15535 2006-11-20  Mark Mason  <mason@broadcom.com>
15537         * Makefile.am: remove mini-codegen.c from list of MIPS sources
15538         * mini.c: Allow GET_CONTEXT to be specified by the arch port
15539         * mini.h: Added declaration for mono_print_ins()
15540         * mini-codegen.c: added ins_spec initializer for MIPS
15541         * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
15542         vreg to be virtual and hreg to be non-virtual.
15543         * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
15544         is not yet working/implemented correctly.
15545         * mini-codegen.c (print_ins): rename to mono_print_ins(), make
15546         non-static, fixup calls to print_ins() from other parts in the file.
15548 2006-11-20  Mark Mason  <mason@broadcom.com>
15550         * basic-calls.cs: added tests for passing structures as arguments
15551         to calls.
15553 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
15555         * inssel-long32.brg: optimize signed division by power of two.
15557 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15559         * mini-arm.c: added support for interworking with thumb code
15560         (mono must be still be built using the ARM instruction encoding).
15562 2006-11-19  Miguel de Icaza  <miguel@novell.com>
15564         * mini.c (type_from_op): Separate the conditions for OP_EQ as the
15565         verifier has different rules for it.   Fixes a few verifier issues
15566         in the test suite.
15568         * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
15569         at the end, so people know what happened.
15571 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
15573         * brach-opts.c: in optimize_exception_target() make sure we
15574         are in a catch clause (fixes bug #79871).
15576 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15578         * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
15579         more soft-float support fixes.
15581 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
15583         * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
15584         that are passed half on the stack and half in registers.
15586 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
15588         * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
15589         more mips integration work from Mark E Mason 
15590         <mark.e.mason@broadcom.com>.
15592 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15594         * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
15595         cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
15596         tramp-mips.c: added sources for the mips port, not
15597         integrated in the build yet. Contributed by
15598         Mark E Mason <mark.e.mason@broadcom.com>.
15600 2006-11-14  Neale Ferguson <neale@sinenomine.net>
15602         * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
15604 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15606         * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
15607         put the soft-float rules in its own file since it seems to
15608         break s390 compilation.
15610 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
15612         * mini-arm.c: fixed wrnings.
15614 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
15616         * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
15617         inssel-arm.brg: ARM support for soft-float.
15619 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
15621         * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
15622         loads and stores of 32 bit fp values.
15624 2006-11-10  Zoltan Varga  <vargaz@gmail.com>
15626         * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
15628         * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
15629         works. Fixes #79852 and #79463.
15631 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15633         * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
15634         more soft-float support WIP and fixes.
15636 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
15638         * mini-arm.c: some VFP updates.
15640 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15642         * mini-exceptions.c: 0 is a valid local var offset in some
15643         architectures, don't assert (bug #78508).
15645 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
15647         * exceptions-arm.c: fixed off by one error in stack walk code.
15649 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
15651         * mini.h, mini.c: more precise tracking of type load exceptions.
15653 2006-11-03  Robert Jordan  <robertj@gmx.net>
15655         * Makefile.am: [WIN32] Add monow.exe target.
15656         * driver.c: [WIN32] Don't detach the console when debugging.
15657         Fixes bug #79797.
15658         
15659 2006-10-30  Miguel de Icaza  <miguel@novell.com>
15661         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
15663 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15665         * aot-compiler.c (emit_method_info): Add a case missed earlier.
15667         * driver.c (mini_regression): Fix --regression with AOT.
15669         * aot-compiler.c (emit_method_info): Fix AOT on amd64.
15671 2006-10-17  Zoltan Varga  <vargaz@gmail.com>
15673         * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
15675         * mini-sparc.h: Don't use sigaction on sparc/linux.
15677         * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
15679         * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
15681         * mini-exceptions.c: Add proper include files for getpid ().
15683 2006-10-16  Zoltan Varga  <vargaz@gmail.com>
15685         * aot-runtime.c (mono_aot_get_method): Change this to return the native code
15686         address instead of a MonoJitInfo* to avoid decoding the exception info for the
15687         method.
15689         * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
15690         name cache to reduce its size.
15692         * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
15694 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15696         * mini-x86.c: Save/restore the current LMF structure more efficiently using
15697         the mono_lmf TLS variable.
15699         * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in 
15700         trampoline lmf frames.  
15702         * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
15704 2006-10-14  Zoltan Varga  <vargaz@gmail.com>
15706         * mini-amd64.c: Save/restore the current LMF structure more efficiently using
15707         the mono_lmf TLS variable.
15709         * mini-exceptions.c: Access the LMF structure through accessors.
15711         * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS 
15712         variable instead of in jit_tls->lmf.
15714         * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
15715         
15716         * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in 
15717         trampoline lmf frames.
15719         * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
15721 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15723        * mini.c trace.c mini-x86.c: Revert these too.
15724         
15725        * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
15726        signature change.
15728 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
15730         * genmdesc.c: removed now dead code.
15732 2006-10-09  Robert Jordan <robertj@gmx.net>
15734         * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
15736 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15738         * mini.h: do not leave gaps in the opcode values.
15740 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
15742         * jit-icalls.h: flag functions as internal here, too.
15744 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
15746         * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
15747         functions with the internal attribute.
15749 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
15751         * aot-compiler.c: fclose the file descriptor in the profile read loop.
15753 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15755         * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
15756         for soft-float.
15758 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15760         * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
15761         tail calls as on other platforms.
15763         * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
15765         * iltests.il: Add a few tailcall tests.
15767 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15769         * driver.c: fix loop for old compilers (bug #79521).
15771 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15773         * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
15775         * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
15777         * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
15778         metadata without any code.
15780         * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
15781         more precise debugging information using gdb.
15783 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15785         * inssel-ia64.brg: Make the helper methods static.
15787 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
15789         * inssel-x86.brg: make the helper methods static.
15791 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
15793         * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
15795 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
15797         * mini.c: updates for monoburg changes.
15798         * inssel.brg: make a few helper functions static as they should.
15800 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15802         * Makefile.am: Move mini-codegen.c to common_sources.
15804 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15806         * mini.h: instroduce inst_call in MonoInst for use in OUTARG
15807         instructions.
15808         * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
15809         mini-ppc.h: port to use the common local register allocator.
15811 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15813         * mini.h: Remove the comment too then.
15815 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
15817         * mini.h: put back backend.data which is to be used shortly and
15818         doesn't increase the size of MonoInst. If any 64 bit arch aligned
15819         pointers on 4 byte boundaries it'd have much bigger issues running
15820         and you can ifdef it out anyway.
15822 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15824         * mini.h (MonoInst): Remove backend.data field since it is unused and increases
15825         MonoInst size by 4 bytes on 64 bit machines.
15827 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15829         * *.{c,h,brg}: long due removal of the unused field in MonoInst and
15830         replacement with more meaningful field names. Arch maintainers, please
15831         check the assigned names are good enough for your arch.
15833 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15835         * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the 
15836         OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
15838 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
15840         * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
15841         relocations and memory requirements, put the optimization flags
15842         definitions in their own file.
15844 2006-09-24  Zoltan Varga  <vargaz@gmail.com>
15846         * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
15848         * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
15850 2006-09-22  Zoltan Varga  <vargaz@gmail.com>
15852         * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
15854 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
15856         * inssel.brg: use the correct function to get the size of an item
15857         in an array, given an element class.
15858         * aot-compiler.c: do not access class->class_size directly.
15860 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15862         * mini.h, debug-mini.c: added a debugging function to print
15863         info about local variables and arguments in a jitted method.
15865 2006-09-20  Zoltan Varga  <vargaz@gmail.com>
15867         * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
15869         * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
15871 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
15873         * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
15874         inner and outer loops when passing vtypes.
15876 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
15878         * mini-ppc.c: take into account the cpu errata for cache flushing
15879         which caused some random errors (bug #79381).
15881 2006-09-19  Zoltan Varga  <vargaz@gmail.com>
15883         * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to 
15884         mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
15886 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15888         * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
15889         loaded.
15891         * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
15892         freebsd ports tree.
15894         * mini-amd64.c (emit_call): Avoid near calls on freebsd.
15895         (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
15897         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
15898         displacement.
15900 2006-09-13  Zoltan Varga  <vargaz@gmail.com>
15902         * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
15904 2006-09-12  Zoltan Varga  <vargaz@gmail.com>
15906         * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this 
15907         macro does not have to be changed during debugging.
15909         * 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>.
15911         * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
15913         * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
15914         
15915         * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if 
15916         MONO_ARCH_NO_EMULATE_MUL is defined.
15918         * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
15920         * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
15922         * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
15924         * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
15925         
15926 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15928         * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
15929         stuff to mini-exceptions.c where it is used.
15931         * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
15932         setup code, the real one is in mini-exceptions.c.
15934         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
15935         layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
15936         some changes from the freebsd ports tree.
15938         * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
15939         constants.
15940         
15941         * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
15943 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
15945         * mini.c: on Linux, check for /proc to be mounted
15946         (bug# 79351, novell bug#201204).
15948 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15950         * mini.c: handle cases where pthread_attr_getstack() behaves
15951         incorrectly (bug #78096).
15953 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
15955         * mini-arm.c: support larger stack frames (bug #79272).
15957 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15959         * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
15961         * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef 
15962         tokens.
15964         * aot-runtime.c (mono_aot_get_class_from_name): New function used by 
15965         mono_class_from_name () to find a class from its name.
15967         * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
15969 2006-09-07  Zoltan Varga  <vargaz@gmail.com>
15971         * mini-amd64.c (emit_call): Avoid strstr () call if possible.
15973 2006-09-05  Kornel Pal  <kornelpal@gmail.com>
15975         * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
15977 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15979         * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
15980         callinfo->trampoline.
15982         * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
15983         fixes #79271.
15984         (mono_arch_patch_code): Add some debug code to help track down similar failures in the
15985         future.
15987 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15989         * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
15991 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
15993         * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
15994         stats.method_trampolines, it is already done by the generic trampoline code.
15996         * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
15997         
15998 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16000         * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
16002         * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
16004         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
16006         * mini.c (print_jit_stats): Print mscorlib mempool size too.
16007         
16008         * mini.c (print_jit_stats): Print new stats.
16010         * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
16012 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16014         * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
16015         Address on two dimensional arrays. Fixes #78729.
16017         * mini.h (MonoCompile): Add a 'skip_visibility' field.
16019         * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
16020         a method.
16022         * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
16024         * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
16025         #79130.
16026         
16027         * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
16028         a race condition.
16029         (mini_get_ldelema_ins): Ditto.
16031 2006-08-30  Zoltan Varga  <vargaz@gmail.com>
16033         * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
16034         (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation. 
16035         Fixes #79213.
16037 2006-08-29 Neale Ferguson <neale@sinenomine.net>
16039         * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
16040         mono_arch_get_patch_offset as a dummy entry point to allow successful link. 
16042         * exceptions-s390x.c: Cosmetic change.
16044         * tramp-s390.c: Fix warning.
16046         * cpu-s390.md: Correct length of mul_imm.
16048 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16050         * aot-compiler.c: added binary writer with ELF backend
16051         implementation (only on Linux/x86 for now).
16053 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
16055         * Makefile.am: Don't run net 2.0 AOT tests.
16057         * aot-compiler.c (compile_method): Skip methods with tail calls as well.
16058         (mono_compile_assembly): Skip net 2.0 assemblies as well.
16060         * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
16062 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16064         * aot-compiler.c: simplified and refactored the asm-writing code
16065         to allow different backends.
16067 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
16069         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
16071         * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a 
16072         little. Share patches of type TYPE_FROM_HANDLE as well.
16074         * mini.c (mono_patch_info_equal): New helper function.
16075         (mono_patch_info_hash): Ditto.
16077         * aot-compiler.c (emit_method_code): Fix s390 build.
16079         * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
16080         is not handled because it is stored as a flag and not as a type ctor. Fixes
16081         #79016.
16083 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16085         * aot-compiler.c: Fix computation of GOT slot statistics.
16086         
16087         * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
16088         Also remove support for not PIC AOT.
16090         * mini.h: Bump AOT file format version.
16092         * objects.cs: Add a test for #78990.
16094         * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
16095         (peter.dettman@iinet.net.au). Fixes #79087.
16097         * basic-long.cs: Add a test for the above.
16099 2006-08-16  Zoltan Varga  <vargaz@gmail.com>
16101         * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
16102         
16103         * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
16104         code somewhat.
16106 2006-08-15  Zoltan Varga  <vargaz@gmail.com>
16108         * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
16109         exceptions.
16111 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16113         * mini.c: Don't verify COM proxy invoke calls
16114         
16116 2006-08-10  Dick Porter  <dick@ximian.com>
16118         * wapihandles.c (mini_wapi_seminfo): More info, to help track down
16119         which process is holding semaphores locked.
16121 2006-08-08  Zoltan Varga  <vargaz@gmail.com>
16123         * mini-ia64.c mini-amd64.c: Fix #79027.
16125         * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
16127         * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
16129         * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
16130         implicit arguments in a vararg call. Fixes #79027.
16132 2006-08-07  Zoltan Varga  <vargaz@freemail.hu>
16134         * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
16135         (mono_get_array_new_va_signature): Ditto.
16137 2006-08-05  Zoltan Varga  <vargaz@gmail.com>
16139         * aot-runtime.c: Call init_plt lazily.
16141         * inssel-long.brg: Fix unsigned long->int conversion.
16143         * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
16145         * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
16146         that most data is now in the .rss/.data section.
16148 2006-08-04  Zoltan Varga  <vargaz@gmail.com>
16150         * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.      
16152         * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
16154         * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
16156         * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
16158         * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
16159         virtual call. Fixes #79010.
16161         * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method 
16162         and use the result as the this argument in the real call.
16164         * generics.2.cs: Add a new test for #79010.
16165         
16166 2006-08-03  Zoltan Varga  <vargaz@gmail.com>
16168         * mini-x86.c: Fix a warning.
16170         * aot-compiler.c: Add a bunch of statistics.
16172         * mini.c (inline_method): Disable inlining in out-of-line bblocks.
16174 2006-08-02  Zoltan Varga  <vargaz@gmail.com>
16176         * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
16178 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16180         * 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>.
16182 2006-07-13  Miguel de Icaza  <miguel@novell.com>
16184         * mini.c (mono_method_to_ir): Obtain the original method in the
16185         CIL stream and use this to perform validation.
16187         Fixed: #78816
16189 2006-07-19  Zoltan Varga  <vargaz@gmail.com>
16191         * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
16192         (mono_arch_call_opcode): Ditto.
16194         * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
16195         #78826.
16197         * mini.c (mono_patch_info_dup_mp): New helper function.
16198         
16199         * aot-compiler.c (compile_method): Fix some of the memory allocated during
16200         compilation. Fixes #78827.
16202 2006-07-18  Kornel Pal  <kornelpal@gmail.com>
16204         * declsec.c: Use original security informations for
16205           MONO_WRAPPER_MANAGED_TO_MANAGED.
16207 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16209         * mini.c: Allow Com Interop methods/classes and
16210         don't verify COM wrapper calls
16211         
16213 2006-07-13  Zoltan Varga  <vargaz@gmail.com>
16215         * inssel-long32.brg: Fix long->i4 checked conversion.
16217         * exceptions.cs: Add a test for the above.
16219 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16221         * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
16223         * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown 
16224         leaks.
16226         * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
16227         #78775.
16229 2006-07-03  Zoltan Varga  <vargaz@gmail.com>
16231         * mini.c: Fix solaris/x86 exception handling.
16233         * Makefile.am: Get rid of $(ICU_LIBS).
16235 2006-07-02  Zoltan Varga  <vargaz@gmail.com>
16237         * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
16238         (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
16239         (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
16241         * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
16243         * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
16244         this function causes a SIGSEGV.
16246 2006-06-22  Zoltan Varga  <vargaz@gmail.com>
16248         * mini.c: Remove unused solaris/x86 includes.
16250 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16252         * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
16254 2006-06-20  Jb Evain  <jbevain@gmail.com>
16256         * cpu-g4.md: fix max length of start_handler instruction.
16258 2006-06-20  Massimiliano Mantione  <massi@ximian.com>
16259         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
16261 2006-06-16  Massimiliano Mantione  <massi@ximian.com>
16262         * ssa.c: Fixed bug 78653 for SSA based deadce.
16263         * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
16264         MonoInst.flags, used in SSA based deadce.
16265         * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
16266         * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
16268 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16270         * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
16271         it can end up using non executable memory on ppc64 systems
16272         running ppc32 userspace (fix from Johannes Berg).
16274 2006-06-14  Dick Porter  <dick@ximian.com>
16276         * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
16277         4.1.1
16279 2006-06-13  Massimiliano Mantione  <massi@ximian.com>
16280         * mini.c: Made so that inline is locally disabled if it would
16281         trigger a .cctor, because too many apps depend on this behavior
16282         (which seems to be also the one of the MS CLR).
16284 2006-06-13  Zoltan Varga  <vargaz@gmail.com>
16286         * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
16287         No idea why this worked before.
16289         * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
16290         which branch to outer exception clauses since they could skip the
16291         inner finally clauses. Fixes #78633.
16293         * exceptions.cs: Add a test for the above.
16295         * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
16296         Fixes #78629.
16298         * iltests.il: Add a test for the above.
16300 2006-06-12  Zoltan Varga  <vargaz@gmail.com>
16302         * mini.c (remove_block_if_useless): Do not remove the bblock immediately
16303         after the end of a try bblock, to prevent asserts in mini_method_compile ().
16305         * iltests.il: Add a test for the above.
16307 2006-06-10  Zoltan Varga  <vargaz@gmail.com>
16309         * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
16310         
16311         * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
16312         methods as instrinsics.
16314 2006-06-09  Wade Berrier <wberrier@novell.com>
16316         * Makefile.am: Fix sources list for svn rename so that make dist succeeds
16317         (simple-cee-ops.h ssapre-mini-ops.h)
16319 2006-06-09  Neale Ferguson <neale@sinenomine.net>
16321         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
16322         * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
16323         instruction).
16324         * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
16325         * cpu-s390x.md: Fix max. length values for a couple of instructions.
16327 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16329         * mini-exceptions.c: Minor fix for building mono in Visual Studio.
16331 2006-06-08  Massimiliano Mantione  <massi@ximian.com>
16333         * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
16334         * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
16335         * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
16336         * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
16337         * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
16338         of opcodes, so that bug 78549 should not happen again.
16339         * ssapre.c: Updated to use the renamed files.
16341 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16343         * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move 
16344         in OP_ATOMIC_EXCHANGE_I4.
16346 2006-06-07  Wade Berrier <wberrier@novell.com>
16348         * tramp-s390.c: Fix s390 build (add missing pointer declarations 
16349         in mono_debugger_create_notification_function)
16351 2006-06-06  Zoltan Varga  <vargaz@gmail.com>
16353         * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
16354         
16355         * mini.c (type_from_stack_type): Disable some changes which do not
16356         seem to work.
16358         * driver.c: Reenable opts.
16360         * mini.h (MonoStackSlot): New structure to keep track of the verification state
16361         of the evaluation stack.
16362         
16363         * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
16364         evaluation stack trace at entry to the bblock.
16366         * mini.c (merge_stacks): New function to perform verification of stack merges.
16367         Turned off by default.
16369         * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
16370         STACK_MP.
16371         
16372 2006-06-06  Massimiliano Mantione  <massi@ximian.com>
16374         * local-propagation.c: Fixed bug 78549.
16376 2006-06-04  Zoltan Varga  <vargaz@gmail.com>
16378         * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
16380 2006-06-02  Miguel de Icaza  <miguel@novell.com>
16382         * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
16383         tramp-arm.c, tramp-ia64.c
16384         (mono_debugger_create_notification_function): Update signature to
16385         new signature and use new protocol for creating the notification
16386         function.  
16388         Should fix the build.
16390 2006-06-02  Geoff Norton  <gnorton@customerdna.com>
16392         * exceptions-ppc.c (mono_jit_walk_stack)
16393         (ves_icall_get_frame_info): Fix the build
16395 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16397         * mini.c (mono_set_defaults): Fix the handling of -O=-all.
16399 2006-05-31  Raja R Harinath  <rharinath@novell.com>
16401         * il2tests.2.il: New file for generics CIL tests.  Add test for
16402         #78019.
16403         * Makefile.am: Update.
16405         Fix #78019
16406         * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
16407         to nullable types.
16409 2006-05-30  Massimiliano Mantione  <massi@ximian.com>
16411         * aliasing.c: Fixed bug 78311.
16413 2006-05-29  Martin Baulig  <martin@ximian.com>
16415         * mini-exceptions.c (mono_find_jit_info): When computing the
16416         native offset, check whether we're actually inside the method's
16417         code; call mono_debug_print_stack_frame() to format the frame.
16418         (ves_icall_System_Exception_get_trace): Call
16419         mono_debug_print_stack_frame() to format the stack frame.
16420         (ves_icall_get_trace): Update to the new debugging API.
16421         (mono_jit_walk_stack_from_ctx): Likewise.
16422         (ves_icall_get_frame_info): Likewise.
16424         * mini.c (get_method_from_ip): Use the new debugging API.
16425         (mono_print_method_from_ip): Likewise.
16427         * exceptions-ppc.c
16428         (mono_jit_walk_stack): Use the new debugging API.
16429         (ves_icall_get_frame_info): Likewise.   
16431 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16433         * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
16435 2006-05-25  Massimiliano Mantione  <massi@ximian.com>
16437         * mini.c: Added "limitator" to inline for debugging.
16439 2006-05-24  Martin Baulig  <martin@ximian.com>
16441         * debug-debugger.c (mono_debugger_init): Create a private,
16442         malloc()-based code manager for the notification function and
16443         intentionally leak it on exit.  This fixes the crash-on-exit race
16444         condition.
16446         * tramp-amd64.c
16447         (mono_debugger_create_notification_function): Added
16448         `MonoCodeManager *' argument.
16450         * tramp-x86.c
16451         (mono_debugger_create_notification_function): Added
16452         `MonoCodeManager *' argument.
16454 2006-05-23  Massimiliano Mantione  <massi@ximian.com>
16456         * aliasing.c: Fixed 64 bit issue.
16457         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
16458         default since all known bugs are fixed (one more time!).
16460 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16462         * mini.c: write barrier support.
16464 2006-05-23  Martin Baulig  <martin@ximian.com>
16466         * debug-debugger.c: Revert Paolo's change.  Add comment and #error
16467         check at the top of the file.
16469 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16471         * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
16472         reverting changes without reason and without changelog entries.
16474 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16476         * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
16477         to a few opcodes. Fixes #78439.
16479         * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
16480         consistency with other archs.
16482         * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
16484 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16486         * debug-debugger.c: fix the build.
16488 2006-05-17  Martin Baulig  <martin@ximian.com>
16490         * debug-debugger.c
16491         (debugger_thread_vtable): Moved here from ../metadata/threads.c.
16492         (debugger_init_threads): Formerly known as mono_debugger_init_threads().
16493         (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
16494         (debugger_attach): Call GC_mono_debugger_add_all_threads().
16496 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16498         * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
16500 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16502         * mini-x86.c (mono_arch_instrument_epilog): Fix handling of 
16503         MONO_TYPE_GENERICINST.
16504         
16505         * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of 
16506         MONO_TYPE_GENERICINST.
16508 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16510         * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
16511         #78325.
16513 2006-05-08  Zoltan Varga  <vargaz@gmail.com>
16515         * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
16516         mempool.
16517         (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
16519 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16521         * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
16522         mono_trace_cleanup ().
16524         * iltests.il: Fix problem with the newly added test.
16526         * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
16527         due to register constraints, free up the previous hreg. Fixes #78314.
16529         * iltests.il: Add new test for #78314.  
16531         * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
16532         Interlocked.Add. Fixes #78312.
16534         * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
16535         
16536 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16538         * inssel.brg (mini_emit_virtual_call): Fix a warning.
16540 2006-05-05  Martin Baulig  <martin@ximian.com>
16542         * debug-mini.c (mono_debug_open_block): New method.
16544         * mini-amd64.c
16545         (mono_arch_output_basic_block): Call mono_debug_open_block() at
16546         the beginning of each basic block.
16548         * mini-x86.c
16549         (mono_arch_output_basic_block): Call mono_debug_open_block() at
16550         the beginning of each basic block.
16552 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
16554         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
16555         default until I understand why they break the build on amd64.
16557 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16559         * mini.c (mini_cleanup): Call mono_cleanup ().
16561         * mini.c (UNVERIFIED): New macro to make it easier to track down verification
16562         errors.
16564 2006-05-04  Massimiliano Mantione  <massi@ximian.com>
16566         * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
16567         * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
16568         default since all known bugs are fixed, and I cannot reproduce bug
16569         77944... I'm asking Matt Hargett to test again after this commit.
16571 2006-04-28  Massimiliano Mantione  <massi@ximian.com>
16573         * mini-codegen.c: Fixed typo that thrashed inline.
16575 2006-04-28  Zoltan Varga  <vargaz@gmail.com>
16577         * dominators.c (compute_dominators): Avoid using a worklist since
16578         it is not correct in some cases. Instead, iterate over all bblocks as
16579         in the original paper. Fixes --compile-all -O=all System.Xml.dll.
16581 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16583         * mini.c (mono_jit_compile_method_inner): Use
16584         mono_prepare_exception_from_error that resets the value
16585         internally.
16587 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16589         * mini.c: Move the mini_loader_error_to_exception to metadata. 
16590         
16591 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
16593         * aliasing.c: Fixed bug 78210.
16595 2006-04-27  Massimiliano Mantione  <massi@ximian.com>
16597         * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
16598         default until all their problems (or the ones they trigger) are fixed.
16600 2006-04-26  Zoltan Varga  <vargaz@gmail.com>
16602         * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
16603         
16604         * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
16605         as loaded only after resolving patches since that could invoke the same method.
16607         * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
16609         * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
16610         functions.
16612         * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
16613         AOT loader.
16615         * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
16616         stack.
16618         * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
16619         made from AOT code through the PLT table.
16621         * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
16622         holding the plt offset when a call is made to the aot plt trampoline.
16623         
16624 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
16626         * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the 
16627         amd64 AOT support.
16629         * Makefile.am (common_sources): Fix build breakage.
16631         * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
16632         calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
16633         intra-assembly calls if possible.
16634         
16635         * tramp-*.c: Add new functions for patching/nullifying PLT entries.
16637         * mini-trampolines.c: Handle PLT entries.
16639         * mini.c: Avoid creating a GOT var for calls.
16641         * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
16642         from mscorlib code.
16644         * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
16645         from mscorlib code.
16647         * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
16648         AOT code.       
16650         * mini.h: Bump AOT file format version.
16651         
16652         * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
16653         covers more cases.
16655 2006-04-25  Martin Baulig  <martin@ximian.com>
16657         * driver.c: Disable copyprop, consprop and inline when running
16658         inside the debugger.
16660 2006-04-25  Martin Baulig  <martin@ximian.com>
16662         * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
16663         with `get_current_thread' and added `detach'.
16664         (MonoDebuggerMetadataInfo): Added `thread_size',
16665         `thread_tid_offset', `thread_stack_ptr_offset' and
16666         `thread_end_stack_offset'.
16668 2006-04-25  Zoltan Varga  <vargaz@gmail.com>
16670         * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and 
16671         aot-runtime.c.
16673         * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
16674         ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
16676         * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
16678         * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
16680         * aot.c: Add support for ADJUSTED_IID.  
16682 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16684         * aot.c (emit_method_order): Don't align method_order_end.
16686         * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
16687         the interface ID changes.
16689 2006-04-21  Dick Porter  <dick@ximian.com>
16691         * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
16692         cleaning up a thread.  Fixes the new part of bug 77470.
16694 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
16696         * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
16697         to managed wrapper.
16698                      
16699 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16701         * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
16702         
16703         * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
16704         SIGSEGV. Fixes #78072.
16706         * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
16707         unregister our SIGABRT handler.
16709 2006-04-19  Massimiliano Mantione  <massi@ximian.com>
16711         * mini.c: Disabled inline where it can alter the call stack in a
16712         way visible from managed code.
16713         * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
16714         default.
16716 2006-04-16  Zoltan Varga  <vargaz@gmail.com>
16718         * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
16719         on other platforms. Fixes #78089.
16721 2006-04-13  Martin Baulig  <martin@ximian.com>
16723         * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
16724         determine whether we're inside the debugger.
16726         * debug-debugger.h
16727         (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
16729 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16731         * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
16732         handler clauses. Fixes #78024.
16734         * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
16735         in the CALL_MEMBASE opcodes. Fixes #78088.
16736         (mono_arch_get_vcall_slot_addr): Ditto.
16738 2006-04-10  Martin Baulig  <martin@ximian.com>
16740         * debug-debugger.c: The thread handling code has now been moved
16741         into ../metadata/threads.c.
16743 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16745         * driver.c (mono_main): Fix --with-gc=none build.
16747         * mini-codegen.c (mono_spillvar_offset): Improve alignment.
16748         (mono_spillvar_offset_float): Ditto.
16749         (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
16750         hreg, not when its !global, since on ia64, there is a third category: stacked
16751         registers.      
16753 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
16755         * mini.c: set MonoInst->klass for load field address and a few other
16756         places.
16758 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16760         * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
16762 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
16764         * dominators.c (compute_dominators): Fix yet another bug which surfaced after
16765         the branch opt changes.
16767 2006-04-06  Dick Porter  <dick@ximian.com>
16769         * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
16770         
16771         * wapihandles.c (mini_wapi_seminfo): 
16772         * driver.c (mono_main): Add semaphore info option
16774 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
16776         * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
16777         branch optimization changes. Fixes #78009.
16779 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16781         * mini.c: ignore accessibility of methods in managed->native wrappers.
16783 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
16785         * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
16786         
16787         * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
16789 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
16791         * mini.c: Modify the branch optimizations to preserve the invariant that
16792         the entries inside the in_bb and out_bb arrays are unique.
16793         (mono_unlink_bblock): Avoid creation of new arrays.
16795 2006-04-02  Zoltan Varga  <vargaz@gmail.com>
16797         * mini.c (mono_unlink_bblock): Fix regression caused by previous
16798         change (#77992).
16800 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
16802         * mini.c (optimize_branches): Remove the "optimizations" in
16803         the cbranch1/cbranch2 -> branch cases which were causing several
16804         problems in the past. Fixes #77986.
16806 2006-03-31  Chris Toshok  <toshok@ximian.com>
16808         * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
16809         default optimizations :(
16811 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
16813         * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
16814         branch.
16816 2006-03-31  Massimiliano Mantione  <massi@ximian.com>
16818         * local-propagation.c: Added comments to structs and removed
16819         "Mono" prefixes from local tree mover types.
16821 2006-03-30  Zoltan Varga  <vargaz@gmail.com>
16823         * Makefile.am (arch_sources): Define this for each architecture so 
16824         libmono_la_SOURCES is defined in one place.
16826 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16828         * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
16829         from handles/.
16831 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
16833         * driver.c: print the GC name supplied by configure.
16835 2006-03-29  Massimiliano Mantione  <massi@ximian.com>
16837         * local-propagation.c: Added tree mover, and moved here all the
16838         local propagation code from mini.c
16839         * mini.c: Added support for treeprop, and moved all the local
16840         propagation code to local-propagation.c
16841         * mini.h: Added support for treeprop
16842         * driver.c: Added support for treeprop, enabled consprop, copyprop,
16843         treeprop, inline and deadce by default
16844         * Makefile.am: Added local-propagation.c
16846 2006-03-25  Zoltan Varga  <vargaz@gmail.com>
16848         * exceptions-sparc.c: Applied patch from David S. Miller  <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
16850 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
16852         * debug-debugger.c: make it compile without the Boehm GC.
16854 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16856         * mini.c: fixed issue with mismatch when an icall is registered
16857         with multiple names but same address.
16859 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16861         * declsec.c, mini-exceptions.c: use write barrier to set reference
16862         fields of managed objects.
16864 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
16866         * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
16867         (can_access_internals): Fix a warning.
16869         * mini.c (print_method_from_ip): Rename this to 
16870         mono_print_method_from_ip so it gets exported.
16872         * trace.c: Deal with strings inside StringBuilder's containing garbage
16873         and fix memory leaks. Fixes #77848.
16875 2006-03-19  Zoltan Varga  <vargaz@gmail.com>
16877         * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
16878         fixes #77787.
16880 2006-03-16 Neale Ferguson <neale@sinenomine.net>
16881         
16882         * mini-s390.c: Remove OP_X86_TEST_NULL.
16884 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
16886         * mini.c: use the correct GetHashCode() for the moving collector.
16888 2006-03-16  Massimiliano Mantione  <massi@ximian.com>
16890         * liveness.c: Regalloc spill cost tuning.
16892 2006-03-15 Neale Ferguson <neale@sinenomine.net>
16893         
16894         * mini-s390x.h: Correct S390_LONG macro.
16896         * mini-s390x.c: Cleanup unused code.
16898 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
16900         * jit-icalls.h: New file.
16902         * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
16903         icalls and include that instead of including jit-icalls.c.
16905         * mini-ppc.c (mono_arch_output_basic_block): Remove references to
16906         OP_X86 opcodes.
16908 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
16910         * mini.c: when checking for member accessibility, also check for
16911         friend assemblies and for explicit interface implementations.
16913 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
16915         * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
16917         * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
16919         * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
16920         common cases are done first.    
16922         * mini-ops.h: Only define platform specific opcodes on the given platform.
16924         * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
16925         branch.
16926         
16927 2006-03-14  Martin Baulig  <martin@ximian.com>
16929         Revert Paolo's change from r57348:
16931         * mini.h: don't use gboolean for bitfields.
16932         * mini.c: verifier changes for fields and methods accessibility.
16934 2006-03-13  Neale Ferguson <neale@sinenomine.net>
16936         * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
16938         * mini-s390x.c: Fix conv_r_un.
16940         * cpu-s390, cpu-s390x.md: Fix lengths.
16942 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16944         * mini.c: nested types have access to all the nesting
16945         levels, not just the enclosing types.
16947 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16949         * mini.c: added a few more verification checks.
16951 2006-03-12  Zoltan Varga  <vargaz@gmail.com>
16953         * liveness.c: Merge optimizations from the linear-il branch.
16955 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
16957         * mini-ia64.c (emit_call): Add a comment.
16959         * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
16961         * tramp-ia64.c: Fix some warnings.
16963 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16965         * mini.h: don't use gboolean for bitfields.
16966         * mini.c: verifier changes for fields and methods accessibility.
16968 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
16970         * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
16971         lazy icall wrapper changes.
16973         * dominators.c: Replace all the dominator algorithms with faster
16974         ones from the linear-il branch.
16976         * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
16977         the mempool.
16979         * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
16980         common cases are done first.
16982         * mini-amd64.c: Fix some warnings.
16984         * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
16985         from the mempool.
16987         * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
16988         added code.
16990         * mini.h: Add a missing prototype.
16992 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
16994         * mini.c: Compile icall wrappers lazily.
16996         * mini-codegen.c: Use printf instead of g_print since its much faster.
16998         * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
16999         function.
17001         * mini.c (optimize_branches): Cache the negative result from 
17002         remove_block_if_useless ().
17004         * mini.c (optimize_branches): Avoid restarting the iteration after each change. 
17005         Also fix some bblock linking issues.
17007         * helpers.c (mono_disassemble_code): Reduce the size of the temporary
17008         assembly files.
17010         * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
17012         * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
17013         accessed fields first, for better cache behavior.
17014         
17015 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17017         * mini.c: speedup IList<T> array accesses.
17019 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17021         * mini.c (mono_method_to_ir): Handle large methods overflowing the 
17022         inline_costs counter. Fixes #77190.
17024 2006-03-06  Zoltan Varga  <vargaz@gmail.com>
17026         * mini-exceptions.c: Call mono_trace_is_enabled () before printing
17027         trace messages. Fixes #77706.
17029 2006-03-04  Martin Baulig  <martin@ximian.com>
17031         * tramp-amd64.c, tramp-x86.c
17032         (mono_debugger_create_notification_function): Use
17033         mono_global_codeman_reserve() to allocate a buffer at runtime and
17034         return it.
17036         * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
17038         * debug-debugger.c (mono_debugger_init): Dynamically allocate the
17039         notification function at runtime and then call `initialize' in the
17040         `MONO_DEBUGGER__debugger_info' vtable.
17042 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17044         * iltests.il: Fix a visibility problem.
17046 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17048         * driver.c, mini.c: add hooks for the counters API.
17050 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
17052         * driver.c: show disabled options.
17054 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17056         * linear-scan.c: always use cost-driven selection.
17058 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17060         * jit-icalls.c (helper_compile_generic_method): Revert change from
17061         2006-02-24.
17063 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
17065         * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
17067 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17069         * inssel.brg: style fixes, mostly to force the updated monoburg
17070         to run for people using svn.
17072 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17074         * mini.c: match monoburg changes.
17076 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17078         * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
17079         ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
17080         declaration in the header file.
17082 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17084         * helpers.c: reduce relocations and mem usage.
17086 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17088         * mini.h, mini-codegen.c: disable logging features if
17089         requested by configure.
17091 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
17093         * mini.c: tiny verifier changes.
17095 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17097         * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
17098         cpu-pentium.md: stack alignment changes for osx/x86,
17099         partially from Geoff Norton <gnorton@customerdna.com>.
17101 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17103         * jit-icalls.c (helper_compile_generic_method): Update to changes
17104         in metadata/class.c.
17106 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17107         
17108         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
17109         
17110         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
17111         interface calls with large offsets.
17113 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17115         * jit-icalls.c (helper_compile_generic_method): Document the
17116         special-case we depend on so that we can inflate the method twice
17117         with the same context with no bad side-effects.
17119 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17121         * mini-x86.c, mini-amd64.c: fix for case when xen support
17122         is disabled.
17124 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17126         * mini-x86.c, mini-amd64.c: generate code to access tls items
17127         in a faster way for Xen systems.
17129 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17131         * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
17132         updates and compilation fixes for the OSX/x86 port, mostly from
17133         Geoff Norton <gnorton@customerdna.com>.
17135 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
17137         * inssel.brg: faster interface call implementation
17138         to sync with the interface_offsets MonoVTable changes.
17140 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17142         * mini.c: more verification checks.
17144 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
17146         * mini.c: added a few more verification checks.
17148 2006-02-17      Neale Ferguson <neale@sinenomine.net>
17150         * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
17151         facility on the processor and use it if available.
17153 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17155         * driver.c, aot.c, mini.c: throw exception if the IL code is
17156         invalid or unverifiable.
17158 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17160         * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
17161         m.StructField.
17163 2006-02-16  Zoltan Varga  <vargaz@gmail.com>
17165         * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
17167 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17169         * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
17170         mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
17171         handling of instantiated generic valuetypes.
17173 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17175         * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of 
17176         MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
17177         instead.
17179         * generics.2.cs: Revert the nullable reftypes tests.
17181 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
17183         * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
17184         using __builtin_frame_address (1) as it doesn't work in the presence
17185         of optimizations. Hopefully fixes #77273.
17187         * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
17188         -> generics.cs change as it doesn't work with some automake versions.
17190 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17192         * mini.c: handle systems that sue a different way to
17193         retrieve the stack address of the current thread.
17195 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17197         * Makefile.am generics.2.cs: Rename this to generics.cs and handle
17198         it specially in the makefile.
17200         * generics.2.cs: Add tests for nullable reference types.
17202 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17204         * mini.c: always handle the case when mono_jit_init()
17205         is called in a thread different from the main thread,
17206         confusing libgc (bug #77309).
17208 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
17210         * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
17212 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17214         * mini.c: change optimize_branches () to use a single loop
17215         and introduce a new optimization to simplify some range checks.
17217 2006-02-03  Martin Baulig  <martin@ximian.com>
17219         * debug-debugger.c (debugger_thread_manager_thread_created): Removed
17220         and merged with debugger_thread_manager_add_thread().
17221         (mono_debugger_main): Call debugger_thread_manager_add_thread() to
17222         inform the debugger about the main thread.
17224 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
17226         * basic.cs: Add test for div.un/rem.un constant folding.
17228 2006-02-03  Neale Ferguson <neale@sinenomine.net>
17230         * cpu-s390x.md: correct int_xor_imm length
17232 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
17234         * generics.2.cs: New test for #77442.
17236         * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
17237         #77442.
17239 2006-02-02  Martin Baulig  <martin@ximian.com>
17241         * tramp-x86.c, tramp-amd64.c: It's now safe to #include
17242         <mono/metadata/mono-debug-debugger.h>   
17244         * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
17246 2006-02-02  Martin Baulig  <martin@ximian.com>
17248         * debug-debugger.h: New header file for debug-debugger.c.
17250         * debug-debugger.c: Big API cleanup; don't run the managed Main()
17251         function is a separate thread anymore; add support for attaching.
17253 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17255         * tramp-x86.c: Fix a warning.
17257 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17259         * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
17260         on very large methods.
17262         * aot.c (load_patch_info): Fix a warning.
17264 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17266         * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
17267         mini-ops.h: alu membase optimizations.
17269 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
17271         * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
17272         to speedup StringBuilder.
17274 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
17276         * dominators.c (mono_compute_natural_loops): Fix detection of
17277         loop body start blocks.
17279         * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
17281 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17283         * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
17284         #75145.
17286 2006-01-25  Massimiliano Mantione  <massi@ximian.com>
17288         * aliasing.c: Fixed aliasing issue on 64 bit archs.
17290 2006-01-25  Martin Baulig  <martin@ximian.com>
17292         * debug-debugger.c: Moved the `MonoDebuggerManager' and
17293         `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
17294         started to cleanup this file a little bit.
17296 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
17298         * mini.c: optimize a codepath frequently happening in generics code.
17300 2006-01-23  Martin Baulig  <martin@ximian.com>
17302         * Makefile.am: Only compile debug-debugger.c on supported platforms.
17304         * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
17305         functions directly.
17307         * driver.c: debug-debugger.c is only available if
17308         `MONO_DEBUGGER_SUPPORTED' is defined.   
17310 2006-01-23  Martin Baulig  <martin@ximian.com>
17312         * debug-debugger.c: Only enable this on platforms where the Mono
17313         Debugger is working (x86 and x86_64).
17315 2006-01-21  Martin Baulig  <martin@ximian.com>
17317         The Mono Debugger is now using the normal `mono' instead of the
17318         `mono-debugger-mini-wrapper' when executing managed code.
17320         * debug-debugger.c: New file; previously known as
17321         debugger/wrapper/wrapper.c.
17323         * debug-mini.c (mono_init_debugger): Removed.
17325         * driver.c (mono_main): Added new `--inside-mdb' command line
17326         argument which is used when running inside the debugger.
17328 2006-01-20  Zoltan Varga  <vargaz@gmail.com>
17330         * liveness.c (mono_analyze_liveness): Remove some unused data
17331         structures.
17333 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17335         * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
17337 2006-01-16  Zoltan Varga  <vargaz@gmail.com>
17339         * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
17340         depends on implementation details of monobitset.
17342         * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
17343         Fixes #77271.
17345 2006-01-15  Zoltan Varga  <vargaz@gmail.com>
17347         * liveness.c: Update after monobitset changes.
17349 2006-01-14  Zoltan Varga  <vargaz@gmail.com>
17351         * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
17353 2006-01-11 Neale Ferguson <neale@sinenomine.net>
17355         * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
17357         * mini-s390x.c: Remove warning messages.
17359 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17361         * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
17363 2006-01-10  Zoltan Varga  <vargaz@gmail.com>
17365         * generics.2.cs: Add ldelem/stelem_any test.
17367 2006-01-10 Neale Ferguson <neale@sinenomine.net>
17369         * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
17371 2006-01-07  Zoltan Varga  <vargaz@gmail.com>
17373         * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
17374         
17375 2006-01-06  Zoltan Varga  <vargaz@gmail.com>
17377         * generics.2.cs: Reenable vtype tests.
17379         * inssel-x86.brg: Remove an icorrect valuetype rule.
17381 2006-01-06 Neale Ferguson <neale@sinenomine.net>
17383         * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
17384         initial support for OP_ABS.
17386 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17388         * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
17390 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17392         * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int 
17393         conversion and implement LADD/LSUB.
17395         * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
17396         architectures.
17398 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17400         * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
17402         * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
17403         architectures.
17405 2006-01-05 Neale Ferguson <neale@sinenomine.net>
17407         * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when 
17408         localloc is encountered.  Fixes crash in test-183.cs when using gmcs 
17409         (stack walk problem).
17411 2006-01-04  Zoltan Varga  <vargaz@gmail.com>
17413         * aot.c (mono_aot_load_method): Fix a warning.
17415 2006-01-03  Neale Ferguson <neale@sinenomine.net>
17417         * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
17419 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17421         * iltests.il: Add test for #77148.
17423         * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
17424         #77148.
17426 2006-01-03  Neale Ferguson <neale@sinenomine.net>
17428         * mini-s390x.c, inssel-s390x.brg: Remove debug statements
17430 2006-01-03  Neale Ferguson <neale@sinenomine.net>
17432         * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
17433         cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
17435         * basic-long.cs: Add lconv-to-r4/r8 tests.
17437 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17439         * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
17441         * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
17442         here as on other archs.
17444 2005-12-29 Neale Ferguson <neale@sinenomine.net>
17446         * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
17448 2005-12-29 Neale Ferguson <neale@sinenomine.net>
17450         * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
17451         
17452         * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
17454         * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
17455         instrument_prolog; Add memory_barrier instruction.
17457 2005-12-26  Zoltan Varga  <vargaz@gmail.com>
17459         * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
17461 2005-12-23  Zoltan Varga  <vargaz@gmail.com>
17463         * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
17465         * aliasing.c inssel.brg: Fix warnings.
17467         * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
17468         could skip initialization of some parts of memory.
17470         * mini.c mini-ia64.c: Fix warnings.
17472         * inssel-sparc.brg: Add an implementation of lneg which actually works.
17474 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
17476         * aliasing.c (mono_build_aliasing_information): Add a workaround for
17477         a crash seen on sparc.
17479         * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
17480         
17481         * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
17483 2005-12-21 Neale Ferguson <neale@sinenomine.net>
17485         * mini-ops.h: Add s390_backchain instruction
17487         * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
17489         * cpu-s390.md: Add s390_backchain instruction
17491         * mini-s390.c: Significant ABI changes
17493         * mini-s390.h: Cater for zero length structures
17495 2005-12-20 Neale Ferguson <neale@sinenomine.net>
17497         * mini-s390.c: ABI fixes
17499         * inssel-s390.brg: Remove debug statements
17501         * cpu-s390.md: Fix length of ATOMIC_xx operations
17503 2005-12-19  Zoltan Varga  <vargaz@gmail.com>
17505         * basic-float.cs: Add float<->long conversion tests.
17507 2005-12-16 Neale Ferguson <neale@sinenomine.net>
17509         * mini-s390.c: Fix LOCALLOC processing.
17511         * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
17513 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
17515         * iltests.il: Add tests for some opcodes not covered by the other
17516         tests.
17518 2005-12-15 Neale Ferguson <neale@sinenomine.net>
17520         * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct 
17521         register loading for Tail processing; Correct trace output.
17523         * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
17525         * cpu-s390.md: Correct size of jmp instruction. 
17527 2005-12-13 Neale Ferguson <neale@sinenomine.net>
17529         * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
17531 2005-12-13 Neale Ferguson <neale@sinenomine.net>
17533         * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
17534           Bring s390 up to current level.
17536 2005-12-12  Zltan Varga  <vargaz@gmail.com>
17538         * generics.2.cs: Disable the newly added tests as they do not work yet.
17539         
17540         * generics.2.cs: Add valuetype tests.
17542 2005-12-09  Zoltan Varga  <vargaz@gmail.com>
17544         * basic-long.cs: Add i4->u8 test.
17546         * objects.cs: Add tests for JIT intrinsic.
17548         * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
17549         optimizations lost by a mistake.
17551 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
17553         * basic-long.cs: Remove a test moved to objects.cs.
17555         * arrays.cs: Add more array tests.
17557 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
17559         * arrays.cs: Add new tests for multi-dimensional arrays.
17561 2005-12-06  Raja R Harinath  <rharinath@novell.com>
17563         * Makefile.am (test_sources2): Add generics.2.cs.
17564         (EXTRA_DIST): Add test_sources2.
17566 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
17568         Support for boxing and unboxing nullable types as well as the
17569         isinst operation on nullables, per the CLI ammendment.
17571         * inssel.brg (CEE_ISINST): Special case for nullable
17573         * mini.c (handle_unbox_nullable): new method
17574         (handle_box): Special case for nullable types
17575         (mono_method_to_ir): Call handle_unbox_nullable in correct
17576         places.
17578         * generics.2.cs: New test suite
17580         * Makefile.am: Support for regression tests with generics.
17582 2005-12-03  Zoltan Varga  <vargaz@gmail.com>
17584         * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
17585         allocated to registers. Fixes #76800.
17587 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
17589         * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
17591 2005-11-30  Zoltan Varga  <vargaz@gmail.com>
17593         * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot 
17594         of platforms.
17596 2005-11-29  Zoltan Varga  <vargaz@gmail.com>
17598         * objects.cs basic-calls.cs: Move a test depending on valuetypes to
17599         objects.cs.
17601         * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
17602         
17603         * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
17604 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
17606         * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
17607         single precision before storing to a single precision location.
17609 2005-11-28  Raja R Harinath  <rharinath@novell.com>
17611         * Makefile.am (ILASM): Use profile-dependent location of ilasm.
17613 2005-11-27  Zoltan Varga  <vargaz@gmail.com>
17615         * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
17616         correct files.
17618         * basic.cs: Remove test_0_byte_compares test which was moved to
17619         objects.cs a long time ago.
17621 2005-11-22  Massimiliano Mantione  <massi@ximian.com>
17623         * aliasing.c: Fixed aliasing issue on 64 bit archs.
17625 2005-11-20  Zoltan Varga  <vargaz@gmail.com>
17627         * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
17628         handlers are called.
17630         * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
17631         throwing code.
17633          * mini-ia64.c: Add support for the throw->branch exception 
17634         optimization.   
17636         * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
17638 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
17640         * mini.c: Enabled "fastpath" deadce :-)
17641         
17642 2005-11-18  Massimiliano Mantione  <massi@ximian.com>
17644         * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
17645         alias analysis pass to support it.
17646         * mini.h: Likewise.
17647         * ssa.c: Likewise.
17648         * liveness.c: Likewise (liveness computation can use aliasing
17649         information to be more accurate).
17650         * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
17651         moreover made so that "--compile-all" uses the given optimization
17652         flags and not the default ones.
17653         * aliasing.c: Alias analysis (new file).
17654         * aliasing.h: Likewise.
17655         * Makefile.am: added "aliasing.c" and "aliasing.h".
17656         
17657 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
17659         * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
17660         OP_L opcodes.
17662 2005-11-13  Zoltan Varga  <vargaz@gmail.com>
17664         * mini-exceptions.c (mono_handle_exception_internal): Remove the 
17665         fp >= end_of_stack exit condition, as it is not needed, and it might
17666         become true for fp eliminated frames.
17668 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17670         * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
17671         coded offsets.
17673 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
17675         * mini-arm.c: fixed alignment of doubles/longs to match
17676         the C ABI (bug #76635).
17678 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
17680         * aot.c: fix compilation with --enable-minimal=aot.
17682 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
17684         * mini-arm.c: fixed compatibility with the new
17685         floating point emulator package for compares.
17687 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com?
17689         * mini.c : reverted sig->pinvoke changes (r51396-51397).
17691 2005-11-01  Zoltan Varga  <vargaz@freemail.hu>
17693         * mini-exceptions.c (print_stack_frame): Output to stderr.
17694         (mono_handle_native_sigsegv): Ditto.
17696 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
17698         * mini-amd64.c (mono_arch_output_basic_block): Remove unused
17699         OP_LCONV_TO_OVF_I implementation.
17701         * mini-amd64.c: Add support for the throw->branch exception 
17702         optimization.
17704         * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
17705         when the catch clause catches a more general exception, i.e. Object.
17707 2005-10-30  Zoltan Varga  <vargaz@gmail.com>
17709         * cpu-ia64.md: Remove unused opcodes.
17711         * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
17712         specific defines for architectures defining USE_SIGACTION.
17714         * mini-ia64.c: Fix some warnings.
17716         * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
17717         version seemed to skip a frame.
17719 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
17721         * mini.c: Clean up the usage of sig->pinvoke flag. Now
17722         only calls which are made to native code use this flag.
17724 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
17726         * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
17727         varargs methods as well.
17728         
17729         * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
17730         which have save_lmf set. Reorganize methods prologs a bit.
17732         * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
17733         debugger to the proper place.
17735 2005-10-29  Martin Baulig  <martin@ximian.com>
17737         * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
17738         when running inside the debugger until the debugger has support
17739         for it.
17741 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
17743         * mini.h: Fix a warning.
17745 2005-10-24  Miguel de Icaza  <miguel@novell.com>
17747         * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
17748         we expose publicly, this returns the string.
17750 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
17752         * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
17753         with fp elimination.
17755 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
17757         * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
17758         native stacktrace using the glibc 'backtrace' function if available.
17760 2005-10-20  Zoltan Varga  <vargaz@gmail.com>
17762         * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
17764         * mini-exceptions.c (mono_handle_native_sigsegv): New function to 
17765         handle SIGSEGVs received while in native code.
17767         * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
17768         code, call mono_handle_native_sigsegv which will abort the runtime
17769         after printing some diagnostics, instead of converting it into a
17770         confusing NullReferenceException.
17772 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
17774         * cpu-pentium.md: Remove unused opcodes.
17776 2005-10-18  Zoltan Varga  <vargaz@freemail.hu>
17778         * mini-amd64.h (MonoLMF): Add rsp field.
17780         * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
17781         the lmf too.
17783 2005-10-17  Zoltan Varga  <vargaz@gmail.com>
17785         * mini-codegen.c (get_register_spilling): Fix some warnings.
17787 2005-10-16  Zoltan Varga  <vargaz@freemail.hu>
17789         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
17790         elimination during exception handling. Enable fp elimination by
17791         default.
17793         * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
17794         elimination.
17796 2005-10-16  Martin Baulig  <martin@ximian.com>
17798         * mini-exceptions.c
17799         (mono_debugger_run_finally): New public method for the debugger.
17801 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
17803         * debug-mini.c (mono_debug_init_method): Fix warning.
17805         * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
17806         the 'exname' parameter const to fix some warnings.
17808 2005-10-09  Zoltan Varga  <vargaz@freemail.hu>
17810         * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
17811         introduced by the previous patch.
17813 2005-10-08  Zoltan Varga  <vargaz@gmail.com>
17815         * basic-float.cs: Add test for precision of float arithmetic.
17817         * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
17818         when loading/storing single values from/to memory.
17820         * mini.c (mono_jit_compile_method_with_opt): Create the function
17821         pointers in the correct domain.
17823 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17825         * mini-exceptions.c (mono_handle_exception_internal): Fix bug 
17826         introduced by previous patch.
17827         
17828         * mini-exceptions.c (mono_handle_exception_internal): Handle the case
17829         when out_filter_idx is NULL.
17831         * mini-exceptions.c: Don't run filter clauses twice during exception
17832         handling. Fixes #75755.
17834 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
17836         * aot.c: Add support for ldflda wrappers.
17838         * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
17839         #75902.
17841 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
17843         * mini.c, mini.h: do not consider exception handlers blocks when
17844         setting up interface variables.
17846 2005-10-04  Zoltan Varga  <vargaz@freemail.hu>
17848         * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
17850 2005-10-03  Zoltan Varga  <vargaz@gmail.com>
17852         * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
17853         causes a regression.
17855         * mini.c (mini_thread_cleanup): Fix reading of freed memory.
17857 2005-10-02  Zoltan Varga  <vargaz@freemail.hu>
17859         * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
17860         of the OP_P definitions.
17862         * TODO: Add a proposal for dealing with the CEE/OP mess.
17864         * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm 
17865         optimizations from the x86 port.
17867         * cpu-amd64.md: Ditto.
17869         * basic.cs basic-long.cs: Add tests.
17871 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
17873         * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
17874         Patrik Torstensson's implementation of my exception-handling
17875         optimization idea, when the exception object is not used
17876         (bug #62150).
17878 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
17880         * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
17881         of the mul_imm optimizations from the old jit.
17883 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
17885         * mini.c, liveness.c: patch by Patrik Torstensson and
17886         Zoltan Varga to improve performance in methods with
17887         exception clauses.
17889 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
17891         * driver.c: Remove 'Globalization' entry from --version.
17893 2005-09-28  Zoltan Varga  <vargaz@gmail.com>
17895         * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
17896         there is a profiler interested in JIT events.
17898         * aot.c: Load profile files produced by the AOT profiling module, and
17899         reorder methods based on the profiling info. Add a 'method_order' table
17900         to the AOT file to make mono_aot_find_jit_info work with the reordered
17901         methods.
17903         * mini.h: Bump AOT file version info.
17905 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
17907         * mini-arm.h: work around what looks like a gcc bug when optimizations
17908         are enabled.
17910 2005-09-28  Raja R Harinath  <rharinath@novell.com>
17912         * Makefile.am (AM_CFLAGS): Don't use += to append inside
17913         conditionals.  Use ...
17914         (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
17916 2005-09-27  Zoltan Varga  <vargaz@freemail.hu>
17918         * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
17919         to determine the amount of memory to copy when passing valuetypes.
17921         * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
17922         4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
17924 2005-09-27  Zoltan Varga  <vargaz@gmail.com>
17926         * mini.h mini.c aot.c: Add infrastructure to collect pagefault 
17927         information about aot.
17929 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
17931         * *.c: Replace the use of {Enter,Leave}CriticalSection with
17932         macros. This will allow a deadlock debugger to easily be plugged
17933         in.
17935 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
17937         * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
17939 2005-09-27  Raja R Harinath  <rharinath@novell.com>
17941         * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
17942         (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
17943         (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
17944         ($(arch_built)) [CROSS_COMPILING]: Error out.
17946 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
17948         * aot.c: Add support for the no_special_static flag for classes.
17950 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
17952         * Reapply reverted patches.
17954         * *: Revert r50174 as well.
17956         * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
17958 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
17960         * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
17962 2005-09-23  Miguel de Icaza  <miguel@novell.com>
17964         * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
17965         part of the SIG_HANDLER_SIGNATURE.  
17967 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
17969         * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
17970         statistics.
17972         * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention 
17973         introduced by previous patch.
17975 2005-09-21  Zoltan Varga  <vargaz@gmail.com>
17977         * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
17978         saved registers too.
17980         * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based 
17981         upon the information returned by get_call_info ().
17982         
17983         * mini-x86.c (add_float): Fix stack size calculation.
17984         (mono_arch_call_opcode): Rewrite this so it works based up the
17985         information returned by get_call_info ().
17986         (mono_arch_get_this_vret_args): Ditto.
17988 2005-09-21  Zoltan Varga  <vargaz@freemail.hu>
17990         * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
17991         in cinfo to determine the registers which need to be used.
17993 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17995         * driver.c (mono_main): Add --server and --desktop flags. 
17997 2005-09-16  Zoltan Varga  <vargaz@gmail.com>
17999         * mini-ia64.h: Make register masks 64 bit. Don't treat argument
18000         registers as global registers.
18002         * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no 
18003         longer needed with the new register allocator.
18005         * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
18007         * cpu-ia64.md: Remove unused opcodes.
18008         
18009         * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
18010         
18011 2005-09-16  Zoltan Varga  <vargaz@freemail.hu>
18013         * cpu-amd64.md: Remove unused opcodes.
18015         * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
18016         needed with the new register allocator.
18018         * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
18019         reg-reg moves.
18021 2005-09-16  Raja R Harinath  <rharinath@novell.com>
18023         * Makefile.am (check-local): Don't invoke semdel-wrapper.
18025 2005-09-16  Martin Baulig  <martin@ximian.com>
18027         * exceptions-amd64.c
18028         (throw_exception): Don't call mono_debugger_throw_exception() if
18029         we're a rethrow - see the FIXME in the code.
18031 2005-09-15  Geoff Norton  <gnorton@customerdna.com>
18033         * mini.c (mono_init_exceptions): This only works on some architectures.
18034         
18035 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
18037         * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
18038         on ia64.
18040         * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
18042         * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
18043         now in mini-exceptions.c.
18045 2005-09-15  Zoltan Varga  <vargaz@freemail.hu>
18047         * mini-amd64.h mini-am64.c: Remove the altstack support code which is
18048         now in mini-exceptions.c.
18050 2005-09-15  Zoltan Varga  <vargaz@gmail.com>
18052         * exceptions-x86.c: Applied patch from Patrik Torstensson 
18053         <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
18055         * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
18056         code into mini-exceptions.c. Add some assertions to it.
18058 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18060         * aot.c (emit_section_change): Applied patch from "The Software Team" 
18061         (<software@solmersa.com>). Fix as errors on windows.
18063 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
18065         * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
18066         method info into the LMF.
18068 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18069         
18070         * mini-ia64.c: Add proper unwind info for method epilogs.
18072         * exceptions-ia64.c: Add some code to help debugging.
18073         
18074         * mini-ia64.c mini-ia64.h: Add sigaltstack support.
18076         * mini-exceptions.c: Fix warning.
18078 2005-09-11  Zoltan Varga  <vargaz@freemail.hu>
18080         * mini.c: Really fix build.
18082         * mini-x86.c mini-amd64.c: Fix build.
18084 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18086         * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
18088         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
18089         some Interlocked methods as intrinsics.
18091         * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
18092         for Thread methods as well.
18094         * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
18096         * inssel.brg: Add rule for OP_MEMORY_BARRIER.
18098         * mini-ia64.c mini-x86.c mini-amd64.c 
18099         cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of 
18100         OP_MEMORY_BARRIER.
18101         
18102         * mini.c (mono_init_exceptions): Fix build breakage.
18104 2005-09-10  Zoltan Varga  <vargaz@gmail.com>
18106         * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
18107         of instructions. Use the new ia64_unw_op macros for emitting unwind
18108         info.
18110         * mini.c (mono_init_exceptions): Initialize exception handling
18111         related trampolines at startup.
18113 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
18115         * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
18117 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18119         * mini.c: Handle type loading errors gracefully during compilation and
18120         throw the appropriate exception.
18122 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
18124         * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
18125         for the mono binary.
18127 2005-09-09  Martin Baulig  <martin@ximian.com>
18129         * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
18130         the release.
18132 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
18134         * mini-arm.h: use emulation for conv.r.un for the release.
18136 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
18138         * mini-arm.c, objects.cs: more fixes and tests for them.
18140 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
18142         * mini-arm.c: align structures to at least 4 bytes to be able
18143         to keep our current optimized memcpy.
18145 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
18147         * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
18149 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18151         * mini.c: ignore SIGPIPE.
18153 2005-09-04  Zoltan Varga  <vargaz@gmail.com>
18155         * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
18157         * mini-ia64.h mini-ia64.c: Add some minor optimizations.
18159 2005-09-02  Zoltan Varga  <vargaz@gmail.com>
18161         * mini.h: Add prototype for mono_allocate_stack_slots_full.
18163 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
18165         * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
18166         exception handling support.
18167         * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
18168         patch by Brian Koropoff <briank@marakicorp.com>).
18170 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
18172         * mini.c: revert another 'optimization' which breaks when
18173         items on the eval stack need to be saved at a basic block end
18174         (bug #75940).
18176 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
18178         * jit-icalls.c: for arrays, ensure we always provide
18179         lower bounds.
18181 2005-08-30  Zoltan Varga  <vargaz@gmail.com>
18183         * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
18184         
18185         * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
18187 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
18189         * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
18190         arguments in their original register.
18192 2005-08-28  Zoltan Varga  <vargaz@gmail.com>
18194         * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
18195         memset/memcpy.
18197         * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
18198         when ssapre is enabled.
18200         * inssel-long.brg: Fix bug in previous patch.
18202         * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize 
18203         multiplication by a constant.
18205 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
18207         * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
18208         icc.
18210         * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
18211         saving registers.
18213 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
18215         * inssel-arm.brg: apply changes tested by Brian Koropoff
18216         <briank@marakicorp.com>.
18218 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
18220         * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
18221         
18222 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
18224         * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
18225         to the same register if dreg is just a base register.
18226         (print_ins): Improve printing of membase opcodes.
18228         * inssel-x86.brg: Add optimized ldind(reg) rules.
18230         * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
18232 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
18234         * mini.c: when running under valgrind, set the stack bottom for
18235         the GC at the actual approximate stack for the app (fixes running
18236         mono with valgrind).
18238 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
18240         * mini.c: do no break at the first valuetype to init found
18241         (fixes bug #75791).
18243 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
18245         * cpu-arm.md, mini-arm.c: more fixes and LMF support.
18247 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
18249         * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
18251 2005-08-23  Zoltan Varga  <vargaz@freemail.hu>
18253         * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
18255 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18257         * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
18259         * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
18260         code.
18262         * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
18263         code.
18265         * mini.c (optimize_branches): Don't quit after 1000 iterations on large
18266         methods.
18268 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
18270         * tramp-arm.c: allocate less memory for the trampoline and fix typo.
18272 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18274         * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
18275         in the tail recursion optimization.
18277         * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as 
18278         debug info into the assembly file.
18280         * iltests.il: Add test for filter regions.
18282         * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
18283         initial stack of filter regions. Fixes #75755.
18285 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
18287         * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
18288         stack requirements.
18290 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18292         * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
18293         the check for an already compiled method on non-ia64 platforms.
18294         (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
18295         proper domain.
18297         * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
18299         * inssel-x86.brg: Add some optimized call rules.
18301 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
18303         * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
18304         method here.
18306         * mini.h mini-trampolines.c: Pass the trampoline argument to 
18307         mono_arch_patch_delegate_trampoline.
18309         * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
18311         * mini-trampolines.c: Fix build.
18313         * mini-amd64.h: Add delegate trampolines.
18315         * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
18317         * inssel-amd64.brg: Add optimized call rules.
18318         
18319         * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
18321         * inssel-ia64.brg: Add optimized ldind(reg) rules.
18323 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
18325         * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
18326         change.
18328         * mini-ia64.c: Remove LMF fixmes.
18330         * mini-ia64.h: Remove most fields from LMF.
18332         * inssel-ia64.brg (stmt): Fix unaligned access errors.
18334         * mini-trampolines.c: Add support for IA64 function descriptors.
18336         * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
18337         for IA64 function descriptors.
18339 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
18341         * tramp-arm.c: patch the vtable for virtual calls. Added
18342         support code to register/unregister the LMF.
18343         * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
18344         more LMF work.
18346 2005-08-19  Dick Porter  <dick@ximian.com>
18348         * mini.c: Use a gsize to store the thread ID, so it can hold a 64
18349         bit value if needed.
18351 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
18353         * mini.c (mini_get_method): Move handling of wrapper data here.
18355         * mini.c (mono_method_to_ir): Add support for dynamic methods.
18357         * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
18358         virtual.
18360         * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so 
18361         bblock->code does not remain empty.
18363 2005-08-17  Zoltan Varga  <vargaz@freemail.hu>
18365         * arrays.cs: Add regression test for #75832.
18367         * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
18368         rules. Fixes #75832.
18370         * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
18371         instruction scheduling.
18373 2005-08-12  Zoltan Varga  <vargaz@freemail.hu>
18375         * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
18377 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
18379         * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
18381         * mini-codegen.c: Fix VC build.
18383         * cpu-pentium.md: Increase length of atomic_exhange_i4.
18385 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18387         * mini.h: fix signature for mono_register_opcode_emulation.
18389 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
18391         * mini.c: Get rid of most of the helper_sig_... constants using
18392         mono_create_icall_signature ().
18394 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
18396         * jit-icalls.c (helper_ldstr): New helper function.
18398         * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
18400         * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
18401         throw, load the string using a helper call instead of creating a string object.
18403         * aot.c: Update after LDSTR changes.
18405         * mini.h: Bump AOT file version.
18406         
18407         * aot.c: Save class size info into the AOT file. Print more statistics during
18408         compilation.
18410         * mini.h: Bump AOT file version.
18412         * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
18413         ordering of disasm cases. Fixes #74957.
18415 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
18417         * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
18418         jit-icalls.c, mini-codegen.c, Makefile.am: changes in
18419         the generic code needed for the ARM port.
18421 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
18423         * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
18424         inssel-arm.brg: more ARM features and fixes.
18426 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
18428         * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
18429         ARM port work in progress.
18431 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
18433         * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
18435         * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
18437         * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
18439         * inssel.brg (mini_emit_memset): Add support for unaligned access.
18441         * *-ia64.*: Ongoing IA64 work.
18442         
18443         * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
18445 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18447         * TODO: Remove out-of-data todo stuff.
18449         * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
18450         dead code.
18452         * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
18454         * mini.h: Bump corlib version.
18456 2005-07-27  Martin Baulig  <martin@ximian.com>
18458         * mini-codegen.c
18459         (create_copy_ins): Added `const unsigned char *ip' argument; set
18460         `copy->cil_code' from it.
18462 2005-07-27  Martin Baulig  <martin@ximian.com>
18464         * mini-exceptions.c (mono_handle_exception): Don't call
18465         mono_debugger_handle_exception() for filters.
18467 2005-07-27  Zoltan Varga  <vargaz@freemail.hu>
18469         * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
18470         as well.
18472 2005-07-26  Martin Baulig  <martin@ximian.com>
18474         Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
18476         * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
18477         helper_compile_generic_method() if the method is actually virtual
18478         and non-final.
18480 2005-07-26  Martin Baulig  <martin@ximian.com>
18482         * mini.c
18483         (trampoline_code): Renamed to `mono_trampoline_code' and made it
18484         public; this is now accessed directly by the debugger.
18485         (mono_generic_trampoline_code): Removed.
18487         * debug-mini.c
18488         (mono_debug_init_method): Also add interncalls and wrappers.
18490 2005-07-23  Zoltan Varga  <vargaz@freemail.hu>
18492         * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
18494 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
18496         * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
18498 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
18500         * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
18502 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
18504         * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
18505         getting TLS offsets on AMD64 too.
18507 2005-07-20  Kornel Pal <kornelpal@hotmail.com>
18509         * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
18511 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
18513         * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
18514         inssel-arm.brg, mini-arm.h: ARM port work in progress.
18516 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
18518         * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
18520         * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
18521         to mini.c.
18523         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call 
18524         mono_sparc_is_virtual_call ().
18525         
18526         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
18528         * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
18529         trampoline parameters.
18531         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
18532         
18533         * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
18534         to mono_arch_get_vcall_slot_addr.
18536         * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
18537         trampoline code.
18539         * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
18541 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
18543         * mini-ia64.h mini-ia64.c: Finish pinvoke support.
18545 2005-07-19  Martin Baulig  <martin@ximian.com>
18547         * exceptions-amd64.c (throw_exception): Call
18548         mono_debugger_throw_exception() here like we're doing it on i386.
18550 2005-07-19  Zoltan Varga  <vargaz@freemail.hu>
18552         * mini-ia64.c: Add optimized TLS access support.
18554 2005-07-18  Zoltan Varga  <vargaz@freemail.hu>
18556         * mini-exceptions.c: Ongoing IA64 work.
18558         * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
18560         * mini.c: Use the default optimization set when embedding. Fixes
18561         #75194.
18563 2005-07-11  Zoltan Varga  <vargaz@freemail.hu>
18565         * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts 
18566         of trampolines to a separate file.
18568         * mini-trampolines.c: New file.
18570         * mini.h tramp-x86.c: Move arch independent parts of trampolines to a 
18571         separate file.
18572         
18573         * tramp-x86.c: Reorganize the trampoline code to be similar to the 
18574         amd64/ia64 code.
18576         * mini-codegen.c: Fix cygwin build.
18578 2005-07-10  Zoltan Varga  <vargaz@freemail.hu>
18580         * mini.c: Add some minor changes needed by the IA64 port.
18582         * *-ia64.*: Ongoing IA64 work.
18584 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
18586         * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split 
18587         trampolines into arch-independent and arch-dependent parts.
18589         * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
18591 2005-07-08  Zoltan Varga  <vargaz@freemail.hu>
18593         * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
18595         * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
18596         the xp-regalloc-branch for amd64.
18598         * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
18599         xp-regalloc-branch for x86.
18601 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18603         * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
18605 2005-07-06  Martin Baulig  <martin@ximian.com>
18607         * mini.c
18608         (mono_jit_compile_method_inner): Call mono_get_inflated_method().
18609         (mono_jit_runtime_invoke): Likewise.
18611 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18613         * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
18614         on x86 too.
18615         
18616         * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
18617         without loading their metadata. Reorganize the file format so exception handling+
18618         debug info is kept separate from normal method info. Create MonoJitInfo 
18619         structures for methods lazily.
18621         * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
18622         loading metadata.
18623         (x86_class_init_trampoline): Patch AOT class init trampolines too.
18625         * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
18627         * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
18628         in AOT code.
18630         * mini.h: Bump AOT file version.
18632 2005-07-04  Zoltan Varga  <vargaz@freemail.hu>
18634         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
18636 2005-07-01  Raja R Harinath  <rharinath@novell.com>
18638         * Makefile.am (check-local): Call semdel-wrapper.
18640 2005-06-29  Zoltan Varga  <vargaz@freemail.hu>
18642         * mini-x86.c: Revert the last change as it seems to break the build..
18644 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
18646         * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
18647         
18648         * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
18650 2005-06-27  Ben Maurer  <bmaurer@ximian.com>
18652         * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
18653         outside of the macro, so strange stuff doesn't happen with gcc4
18654         (NEW_AOTCONST_TOKEN): Likewise.
18656 2005-06-28  Martin Baulig  <martin@ximian.com>
18658         * mini.c (mini_class_is_system_array): New static method; use this
18659         instead of `klass->parent == mono_defaults.array_class' everywhere
18660         since this also works for the new generic array class.
18662 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
18664         * inssel.brg: Remove warnings.
18666 2005-06-24  Zoltan Varga  <vargaz@freemail.hu>
18668         * mini-ia64.c: Ongoing IA64 work.
18670         * basic-float.cs: Add float->i1 conversion test.
18672         * iltests.il: Add conv.u4 test.
18674 2005-06-23  Zoltan Varga  <vargaz@freemail.hu>
18676         * inssel-long.brg: Fix bug caused by last change.
18678 2005-06-23  Geoff Norton  <gnorton@customerdna.com>
18680         * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other 
18681         BSDs.  Allows the x86 JIT to work on OSX86
18683 2005-06-22  Zoltan Varga  <vargaz@freemail.hu>
18685         * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
18686         u4->i8 conversion.
18688         * mini-ia64.c: Ongoing IA64 work.
18690 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
18692         * mini-ia64.c: Ongoing IA64 work.
18694         * driver.c: Clean up jit_code_hash as well when using --regression.
18696         * inssel-long.brg: Fix long->i4/u4 conversion rules.
18698         * basic-long.cs: Add tests for long->u4 conversion.
18700 2005-06-18  Ben Maurer  <bmaurer@ximian.com>
18702         * mini.c: Take mono_get_domainvar out of macros. This makes sure
18703         that we do not depend on undefined C behavior: the order stuff
18704         gets evaluated within an expression. Fixes mono when compiled on
18705         GCC 4.
18707 2005-06-18  Zoltan Varga  <vargaz@freemail.hu>
18709         * *-ia64.*: Ongoing IA64 work.
18711         * aot.c: Lower memory usage while loading AOT methods.
18713         * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
18715         * mini.h: Bump AOT file format version.
18717 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
18719         * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
18721 2005-06-16  Sebastien Pouliot  <sebastien@ximian.com>
18723         * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
18724         not on callee assembly). Fixed some comments.
18726 2005-06-16  Zoltan Varga  <vargaz@freemail.hu>
18728         * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
18729         it gets proper disassembly.
18730         (emit_method_info): Remove some dead code.
18732         * mini.c (mini_method_compile): Allways allocate the GOT var in
18733         mono_method_to_ir for emulating opcodes.
18735 2005-06-13  Zoltan Varga  <vargaz@freemail.hu>
18737         * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
18738         before freeing the code memory. Fixes #74990.
18740         * objects.cs: Add regression test for #74992.
18742         * liveness.c: Extend live ranges of arguments to the beginning of the
18743         method. Fixes #74992.
18745         * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
18746         so it points into the faulting instruction.
18748 2005-06-12  Zoltan Varga  <vargaz@freemail.hu>
18750         * jit-icalls.c (mono_imul_ovf): Add exception handling.
18752         * *-ia64.*: Ongoing IA64 work.
18754         * mini.c (mini_init): Fix signature of mono_delegate_ctor.
18756 2005-06-11  Zoltan Varga  <vargaz@freemail.hu>
18758         * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
18760         * *-ia64.*: Ongoing IA64 work.
18762 2005-06-10  Zoltan Varga  <vargaz@freemail.hu>
18764         * basic-long.cs: Add tests for add/sub.ovf.
18766         * basic.cs: Add tests for sub.ovf.
18768         * *-ia64.*: Ongoing IA64 work.
18770 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
18772         * *-ia64.*: Ongoing IA64 work.
18774         * basic.cs: Add conv.ovf.i4.un test.
18776 2005-06-09  Massimiliano Mantione  <massi@ximian.com>
18778         * mini.c: (remove_block_if_useless) Fixed bug 75061.
18779         
18780 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18782         * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
18784 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
18786         * *-ia64.*: Ongoing IA64 work.
18788 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18790         * trace.[ch]:
18791         * mini.c: added the ability to toggle trace on/off using SIGUSR2.
18793 2005-06-04  Zoltan Varga  <vargaz@freemail.hu>
18795         * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
18797 2005-06-03  Zoltan Varga  <vargaz@freemail.hu>
18799         * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
18801         * mini-amd64.c (amd64_patch): Add an assert to check that the destination
18802         of a call is callable by a near call.
18804 2005-05-31  Zoltan Varga  <vargaz@freemail.hu>
18806         * mini-ia64.c: Ongoing IA64 work.
18808 2005-05-29  Zoltan Varga  <vargaz@freemail.hu>
18810         * genmdesc.c: Make the generated array non-static.
18812         * inssel-long.brg: Fix LSHR_IMM rule.
18814         * *-ia64.*: Ongoing IA64 work.
18816         * *-ia64.*: Ongoing IA64 work.
18818 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
18820         * *-ia64.*: Ongoing IA64 work.
18822         * *-ia64.*: Ongoing IA64 work.
18823         
18824         * mini-ia64.c: Ongoing IA64 work.
18826         * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
18828 2005-05-28  Zoltan Varga  <vargaz@freemail.hu>
18830         * objects.cs basic-calls.cs: Move some tests to objects.cs.
18831         
18832         * objects.cs basic-long.cs: Move some tests to objects.cs.
18834 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
18836         * *-ia64.*: Ongoing IA64 work.
18838         * iltests.il: Add a new test.
18840         * mini.c (mono_method_to_ir): Initialize valuetypes when created using
18841         newobj. Fixes #75042.
18843 2005-05-22  Zoltan Varga  <vargaz@freemail.hu>
18845         * *-ia64.*: Ongoing IA64 work.
18846         
18847         * *-ia64.*: Ongoing IA64 work.
18848         
18849         * *-ia64.*: Ongoing IA64 work.
18851         * basic.cs objects.cs: Move tests accessing static variables as well.
18853         * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
18855 2005-05-21  Zoltan Varga  <vargaz@freemail.hu>
18857         * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
18859         * driver.c: Always print failed tests.
18861         * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
18862         frame pointer.
18864         * *ia64*: Ongoing IA64 work.
18866 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
18868         * basic.cs: Add tests for add.ovf. Fix warnings.
18870 2005-05-18  Miguel de Icaza  <miguel@novell.com>
18872         * driver.c (mono_main): Avoid crash if no argument is passed to
18873         --break;  Do not use g_error, but f_printf.   And fix all other
18874         ocurrences of the same crash.
18876 2005-05-17  Zoltan Varga  <vargaz@freemail.hu>
18878         * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
18879         and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
18880         Fixes #74742.
18882 2005-05-14  Zoltan Varga  <vargaz@freemail.hu>
18884         * *-ia64.*: Add beginnings of IA64 backend.
18886         * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.     
18888 2005-05-13  Zoltan Varga  <vargaz@freemail.hu>
18890         * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
18891         Fixes #74925.
18893         * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
18895         * mini-amd64.c: Fix a warning.
18897 2005-05-10  Zoltan Varga  <vargaz@freemail.hu>
18899         * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
18900         in float_neg. Fixes #74897.
18902         * mini-amd64.c (emit_call): Fix another near call bug.
18904 2005-05-06  Sebastien Pouliot  <sebastien@ximian.com>
18906         * declsec.c: Keep the appdomain information in the structure. Added a 
18907         missing "return FALSE" for Unmanaged if FullTrust is set (or else the
18908         value gets overwritten).
18909         * declsec.h: Set the default MonoArray for the the stack to 6. Added
18910         an MonoAppDomain member to MonoSecurityFrame.
18911         * mini-exceptions.c: Do not use a glist to keep GC allocated objects
18912         used in the stack walk. Now use a MonoArray which grow (double) when
18913         it gets full.
18915 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
18917         * mini.c: Re-enabled runtime cleanup, since running threads should
18918         now properly stop when exiting.
18920 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
18922         * mini-codegen.c: New file contaning the arch-independent local
18923         register allocator. Not used by any architectures yet.
18925         * mini.h linear-scan.c: Merge some changes from the 
18926         mini-xp-local-regalloc branch.
18928 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
18930         * mini-amd64.c (emit_call): Fix calls to native functions when the
18931         runtime is compiled as a shared library. Fixes #74756.
18933         * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
18934         on a literal field. Fixes #74751.
18936 2005-04-25  Raja R Harinath  <rharinath@novell.com>
18938         * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
18940 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
18942         * objects.cs: Add missing null casting test.
18944 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
18946         * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
18947         in wrapper methods. Also rename 'address' variable to 'offset'.
18949 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
18951         * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
18952         warnings.
18953         
18954         * Makefile.am (MCS): Use -unsafe instead of --unsafe.
18956         * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
18957         work on windows.
18959 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
18961         * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
18963 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
18965         * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
18966         just the last bytes.
18968 2005-04-17  Zoltan Varga  <vargaz@freemail.hu>
18970         * aot.c (mono_compile_assembly): Fix warning.
18972         * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
18973         by the _MSC_VER stuff.
18975 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
18977         * inssel-long.brg: Fix #74588.
18979         * cpu-amd64.md: Fix #74591.
18981         * iltests.il: Add new regression tests.
18983 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
18985         * trace.c (mono_trace_enter_method): Print enums as an int, not as a
18986         valuetype.
18988 2005-04-11  Zoltan Varga  <vargaz@freemail.hu>
18990         * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
18992         * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches 
18993         from Bill Middleton <flashdict@gmail.com>.
18995 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
18997         * arrays.cs: Add new regression test. Fix warnings.
18999 2005-04-09  Zoltan Varga  <vargaz@freemail.hu>
19001         * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
19002         and leakage in CKFINITE.
19004         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
19005         this to a null op since it is called on amd64 too.
19007         * exceptions-amd64.c (get_throw_trampoline): Align stack.
19009         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
19010         body since this is not used on amd64.
19011         
19012         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
19014         * mini-amd64.c: Remove obsolete fixmes.
19016         * mini.c (print_method_from_ip): Fix debugging support.
19018 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
19020         * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
19021         so that expressions that don't give much gain are not reduced.
19022         * ssapre.h: Likewise.
19024 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
19026         * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
19028         * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
19030         * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
19032 2005-04-01  Zoltan Varga  <vargaz@freemail.hu>
19034         * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
19036         * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
19038 2005-03-31  Zoltan Varga  <vargaz@freemail.hu>
19040         * mini-x86.c: If sigaltstack support is enabled, perform win32 style
19041         stack touching.
19043         * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
19045         * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
19047         * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
19049         * mini-x86.h mini-x86.c exceptions-x86.c: Add support for 
19050         MONO_ARCH_USE_SIGACTION. Fixes #74252.
19052         * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
19054         * mini-x86.c: Fix up stack overflow handling.   
19056         * exceptions.cs: Add new regression test.
19058 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
19060         * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
19061         mono_jit_thread_attach.
19063         * mini.c (mono_method_to_ir): Verify called method is not abstract.
19065 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19067         * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
19068         avoid calling constructors using callvirt.
19070         * inssel.brg: Fix #74073.
19072 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
19074         * aot.c, mini.h: Added mono-compiler.h header to allow/ease 
19075         compilation with non-GCC compilers.
19076         * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
19077         possible using VS.NET. Adapted from the work of J Lothian (for VC6).
19079 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19081         * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
19082         klass->interface_offsets (will likely fix bug#74073).
19084 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19086         * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
19088 2005-03-28  Zoltan Varga  <vargaz@freemail.hu>
19090         * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
19091         to amd64_div_reg_size ().
19092         
19093         * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
19095 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
19097         * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
19099 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19101         * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
19103 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19105         * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
19106         
19107         * mini.c (mono_precompile_assembly): Load and precompile referenced
19108         assemblies as well. Fixes #74015.
19110 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
19112         * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
19114 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
19116         * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
19117         a lot of checks and (anyway) permissions cannot work until corlib is 
19118         loaded.
19120 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
19122         * mini-ppc.c: fixed ABI issue on sysv/ppc.
19124 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
19126         * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
19127         calls (fixes bug#72824).
19129 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
19131         * mini.c: fix tail recursion elimination (see test in bug#73936).
19133 2005-03-21  Zoltan Varga  <vargaz@freemail.hu>
19135         * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
19136         some fp functions in sse2 mode.
19138 2005-03-20  Zoltan Varga  <vargaz@freemail.hu>
19140         * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
19142 2005-03-19  Zoltan Varga  <vargaz@freemail.hu>
19144         * mini.h mini.c: Add mono_get_jit_tls_key ().
19146         * mini-x86.c: Enable fast TLS support on windows.
19148 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
19150         * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
19151         * mini.c: Check for p/invoke method when generating code. If a
19152         p/invoke method, or it's class, isn't decorated with [Suppress
19153         UnmanagedCodeSecurity] then generate code to call System.Security.
19154         UnmanagedDemand (only if the security manager is active).
19156 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
19158         * tramp-amd64.c (create_specific_trampoline): Revert parts of the 
19159         last change as it seems to cause strange crashes.
19160         
19161 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
19163         * *.c: handle unsafe function pointers where needed.
19165 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
19167         * mini.c (mono_jit_free_method): Remove the fixme too.
19169 2005-03-15  Miguel de Icaza  <miguel@novell.com>
19171         * mini.c: As discussed, make the code actually free the delegate
19172         thunk now, to enable the debugging of delegate problems, use
19173         MONO_DEBUG=1 when running Mono. 
19175         This takes also care of parts of the leaks as seen by Joe.
19177 2005-03-15  Zoltan Varga  <vargaz@freemail.hu>
19179         * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable 
19180         thread_tls_offset calculation.
19182 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
19184         * declsec.c: Reworked linkdemand checks for icall. The previous code
19185         was using the declaration code (untrusted) and didn't work as expected
19186         with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
19187         specific case.
19189 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
19191         * iltests.il: Add new localloc test.
19193         * mini-amd64.c: Handle large stack allocations the same way as on
19194         windows if stack overflow handling is working.
19195         
19196         * mini-amd64.c: Allocate the signal stack using mmap.
19198         * mini.c (sigsegv_signal_handler): Fix reading of context.
19200         * mini-exceptions.c: Fix up stack overflow handling.
19202         * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
19204         * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
19206         * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
19208         * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
19210         * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
19211         tramp_init functions as they are no longer needed.
19213 2005-03-12  Zoltan Varga  <vargaz@freemail.hu>
19215         * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
19216         
19217         * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
19219         * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
19220         
19221         * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
19222         support that now.
19224         * mini-ops.h: Add OP_LMUL_IMM.
19226         * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
19227         long mul/div opcodes as intrinsic.
19229         * mini-amd64.c (emit_call): Handle the case when the callee might be
19230         an AOT method.
19232 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
19234         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
19235         extra safe.
19236         
19237         * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
19239         * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
19241 2005-03-09  Ben Maurer  <bmaurer@ximian.com>
19243         * mini.c (mono_codegen): Don't leak here, to help people running
19244         monogrind.
19246 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
19248         * mini-amd64.c (mono_arch_output_basic_block): Fix int->float 
19249         conversions in sse2 mode.
19251         * basic-float.cs: Add regression test.
19252         
19253         * mini-amd64.c: Reenable sse2.
19255 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
19257         * mini-amd64.c: Disable sse2 until some regressions are fixed.
19259 2005-03-07      Joerg Rosenkranz <joergr@voelcker.com>
19261         * driver.c: Copyright text should include 2005.
19262         
19263 2005-03-07  Zoltan Varga  <vargaz@freemail.hu>
19265         * cpu-amd64.md (load_membase): Fix more max lengths.
19267 2005-03-06  Zoltan Varga  <vargaz@freemail.hu>
19269         * cpu-amd64.md (load_membase): Fix max length.
19271         * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
19273         * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
19275         * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
19276         support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
19278         * basic-float.cs: Add rounding regression test.
19280         * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
19282 2005-03-04  Neale Ferguson <NealeFerguson@earthlink.net>
19284         * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
19285         structures in registers for pinvoke wrappers.
19287 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
19289         * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
19291 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
19293         * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
19294         wrapper to mono_jit_thread_attach.
19296         * mini.c (mini_jit_thread_attach): New jit icall.
19298         * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in 
19299         native->managed wrappers.
19301         * exceptions.cs: Add new regression test.
19303         * mini.c (optimize_branches): Check regions in the cbranch to throw
19304         block case as well. Fixes #73242.
19306 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
19308         * mini.c: thread safety fixes.
19310 2005-02-27  Zoltan Varga  <vargaz@freemail.hu>
19312         * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
19313         patching stuff, since delegates use jump trampolines so there is
19314         no caller.
19316         * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in 
19317         jump trampolines.
19318         
19319         * tramp-amd64.c: Fix build.
19321         * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
19322         it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
19324         * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
19325         Rename this to mono_arch....
19326         (mono_amd64_get_delegate_method_ptr_addr): Ditto.
19328         * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
19330         * mini-amd64.c (emit_call): If both the caller and the callee is
19331         guaranteed to have 32 bit addresses, emit a normal call.
19333         * tramp-amd64.c: Adapt to changes in mini-amd64.c.
19335         * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines. 
19336         * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
19337         method_ptr inside delegates.
19339 2005-02-26  Zoltan Varga  <vargaz@freemail.hu>
19341         * mini.c (mono_jit_free_method): Free the method info even if the native code is
19342         invalidated. Fixes #73001.
19344         * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
19346         * mini-x86.c: Only use stdcall for pinvokes on windows.
19348 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
19350         * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
19351         * mini-x86.c: remove unreliable __thread var offset detection,
19352         use the correct accessors and enable by default.
19354 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
19356         * mini.c (mono_jit_free_method): Fix memory leak.
19358 2005-02-22  Zoltan Varga  <vargaz@freemail.hu>
19360         * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW. 
19362 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
19364         * cpu-amd64.md: Fix lengths of atomic opcodes.
19366 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
19368         * driver.c: try to not imply using ICU is any good.
19370 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
19372         * mini-amd64.c (mono_arch_get_inst_for_method): Implement more 
19373         functions as inline ops.
19375         * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
19376         some Interlocked functions as inline ops.
19378         * mini.c (move_basic_block_to_end): Fix bug in last patch.
19380         * mini.h (MonoBasicBlock): Reorganize fields a bit.
19382         * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
19384         * mini.c: Add support for OP_NOT_TAKEN.
19386         * mini-amd64.h mini-amd64.c: Add support for passing/returning small 
19387         structures in registers for pinvoke wrappers.
19389         * mini-amd64.c: Fix warnings.
19391 2005-02-19  Zoltan Varga  <vargaz@freemail.hu>
19393         * mini.h (MonoCompile): Add 'ret_var_is_local' field.
19395         * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
19397         * mini.c (NEW_RETLOADA): If the ret variable is a local, use its 
19398         address instead of loading the address from it.
19400         * mini-x86.c: Add support for returning small structs in registers
19401         on Win32. Fixes part of #70864.
19402         
19403 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
19405         * trace.c (get_token): Improve error checking.
19407 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
19409         * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
19411 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com> 
19413         * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
19414         it can be reused for MonoClass.
19415         * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
19416         _LINKDEMAND.
19418 2005-02-15  Sebastien Pouliot  <sebastien@ximian.com>
19420         * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code 
19421         instead of a MonoReflectionMethod. The method information wasn't used
19422         when displaying SecurityException details (but will be now).
19424 2005-02-15  Atsushi Enomoto  <atsushi@ximian.com>
19426         * Makefile.am : windows build fix.
19428 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
19430         * iltests.il: Add new regression test.
19432         * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
19433         #72522.
19435 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com> 
19437         * mini.c: Moved linkdemand check into helper function check_linkdemand
19438         to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP, 
19439         LDFTN, LDVIRTFTN).
19441 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
19443         * declsec.c: Added statistics counter for different kinds of 
19444         LinkDemands.
19445         * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
19446         (and commented) declaration.
19447         * mini.c: Added statistics counter for security Demand code 
19448         generation. Added display of security statistics.
19450 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
19452         * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
19453         Fix compilation errors under gcc-2.95.
19455 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
19457         * mini.c, driver.c: Use the new jit trampoline hashtable
19459 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
19461         * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
19463 2005-02-11  Martin Baulig  <martin@ximian.com>
19465         * debug-mini.c (mono_debug_close_method): Free the line number array.
19467 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
19469         * aot.c: Break up large methods into smaller ones. Share GOT slots for
19470         icalls.
19472         * mini.h: Bump AOT file format version. 
19474 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
19476         * declsec.c: Added LinkDemand support and it's special cases for ECMA,
19477         APTC and P/Invoke.
19478         * declsec.h: Added macros to get/set lazyly initialized security 
19479         informations about assemblies. Added new enum for different type of
19480         possible LinkDemand violation. Added function to check LinkDemands.
19481         * mini.h: Added a field to MonoCompile to hold any security violation
19482         detected when JITting a method (so it can be thrown later).
19483         * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL 
19484         and CEE_CALLVIRT. Added code to throw exception at the end of
19485         mini_method_compile (note: the exception is unhandled right now).
19487 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
19489         * mini.c, jit-icalls.c: use the managed implementation of
19490         memset for initobj and memset, to avoid managed <-> unmanaged
19491         transitions.
19493 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
19495         * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
19496         optimization if it would need a GOT var.
19498         * basic.cs: Add tests for constant propagation and switch statements.
19500         * ssa.c: Fix out-of-range constant propagation and switch statements.
19502 2005-02-09    <vargaz@freemail.hu>
19504         * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
19506 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
19508         * cpu-amd64.md (load_membase): Fix max length of load_membase.
19510 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
19512         * mini.c: update to new signature of mono_class_get_allocation_ftn().
19514 2005-02-06  Neale Ferguson <NealeFerguson@earthlink.net>
19516         * cpu-s390.md,  mini-s390.c: Correct bug with register usage on certain 
19517         arithmetic operations.
19519 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
19521         * mini-ppc.c: add a workaround for broken user code that
19522         DllImports vararg functions with non-vararg signatures.
19524 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
19526         * mini.c (mono_jit_compile_method_inner): Add detection and a 
19527         meaningfull error message for assemblies written in Managed C++.
19529         * tramp-amd64.c mini-amd64.h: Add support for 
19530         create_trampoline_from_token ().
19532         * aot.c mini-x86.c abcremoval.c: Applied patch from
19533         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
19535 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
19537         * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline 
19538         which takes a MonoImage/token as parameter instead of a MonoMethod.
19540         * aot.c: Use the new trampoline for initializing vtables.
19542         * aot.c: Add support for ldfld/stfld_remote wrappers.
19544         * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
19545         rules for compare <MEM>, IMM.
19547         * mini.h (MONO_AOT_FILE_VERSION): Bump it.
19549         * aot.c: Handle inherited finalizers correctly.
19551 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
19553         * inssel.brg (stmt): Add a missing _setup_... ().
19555         * aot.c: Save some parts of the class state to the AOT file and use it
19556         to recompute that state when a class is initialized.
19558         * mini.c: Install AOT hooks into the runtime.
19560         * mini.h: Bump AOT file format version.
19561         
19562         * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
19563         Fixes #72148.
19565         * iltests.il: Add new test.
19567 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
19569         * mini.c: fix typo.
19571 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
19573         * mini.c: setup the statistical profiler in the thread attach
19574         callback to cope with the new single thread code.
19576 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
19578         * mini-ppc.c: ensure we have enough room for the profiler
19579         calls (fixed bug#72084).
19581 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
19583         * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding 
19584         it.
19586 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
19588         * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
19590 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
19592         * ssapre.c: Fixed an issue with down safety (this allows IronPython
19593         to succesfully execute parrotbench).
19594         * ssapre.h: Likewise.
19596 2005-2-1  Massimiliano Mantione  <massi@ximian.com>
19598         * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
19599         variable for stores to method arguments (fixes a SSAPRE issue).
19601 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
19603         * mini.c: handle value types in dup, fixes gen-112.cs.
19605 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
19607         * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
19608         sequence for calls in dynamic methods to avoid thunks.
19610 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
19612         * mini.c: correctly remove dynamic methods from the hashtable.
19614 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
19616         * driver.c: Disabled SSAPRE until fix the bug that appears
19617         in IronPython's parrotbench.
19619 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
19621         * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
19623         * mini.c (mono_method_to_ir): Revert the previous change.
19624         
19625         * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
19626         when AOT compiling.
19628         * tramp-x86.c (x86_magic_trampoline): Avoid calls to 
19629         mono_jit_info_table_find () etc. when running under valgrind.
19631         * inssel.brg: Fix warnings.
19633         * mini-exceptions.c: Fix warnings.
19635 2005-01-31  Martin Baulig  <martin@ximian.com>
19637         * driver.c (compile_all_methods_thread_main): Don't try to compile
19638         generic methods or anything which has type parameters.
19640 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
19642         * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
19644         * TestDriver.cs: Add --verbose flags.
19646         * graph.c ssa.c: Fix 64 bit warnings.
19647         
19648         * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c 
19649         trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
19650         Fix 64 bit warnings.
19652         * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
19653         variable not spotted by gcc.
19654         
19655         * mini-amd64.c inssel-amd64.brg: Applied patch from  
19656         Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of 
19657         X86_COMPARE_MEMBASE opcodes.
19659         * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
19661 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
19663         * *: MonoMethod->signature might be NULL now. You *MUST* use
19664         mono_method_signature.
19666 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
19668         * driver.c (compile_all_methods_thread_main): Compile the methods
19669         without invoking cctors.
19671 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
19673         * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
19674         * basic-calls.cs: test for the above.
19676 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
19678         * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after 
19679         MonoJitInfo changes.
19681 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
19683         * mini-exceptions.c (mono_handle_exception): Compute the stack trace
19684         eagerly if it contains dynamic methods.
19685         
19686         * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
19688         * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
19689         trace, it is now computed by an icall from trace_ips.
19690         
19691         * mini-exceptions.c: Fix a warning.
19693 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
19695         * mini-exceptions.c: don't bother getting stack trace info if
19696         it's not going to be used.
19698 2005-01-27  Raja R Harinath  <rharinath@novell.com>
19700         * Makefile.am (common_sources): Add ssapre-cee-ops.h and
19701         ssapre-mini-ops.h.
19703 2005-01-26  Zoltan Varga  <vargaz@freemail.hu>
19705         * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
19707         * aot.c: Avoid calling mono_method_get_header () if not needed.
19709         * mini.h: Bump AOT file format version.
19710         
19711         * mini.c (mono_emit_native_call): Allocate a GOT var here.
19713         * mini.c (mono_print_tree): Print more info for calls.
19715 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
19717         * declsec.h: Remove warning by adding missing include for marshal.h
19719 2005-01-26  Martin Baulig  <martin@ximian.com>
19721         * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
19722         `ip' twice.
19724 2005-01-25  Zoltan Varga  <vargaz@freemail.hu>
19726         * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
19727         flags.
19729         * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
19731         * aot.c (mono_compile_assembly): Fix a warning.
19733 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com>
19735         * declsec.c: Look for security attributes on the original MonoMethod 
19736         (and not the wrapped one). This fix permissions on icalls.
19738 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
19740         * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
19742         * mini.c (mono_allocate_stack_slots): Add a fixme.
19744         * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
19746 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
19748         * inssel.brg: optimize casts of sealed types (more
19749         optimizations waiting for fixes in remoting).
19751 2005-01-23  Zoltan Varga  <vargaz@freemail.hu>
19753         * inssel.brg (stmt): Add another dummy rule.
19755         * driver.c: Fix warnings.
19757         * driver.c (mono_main): If running under valgrind, instruct glib to use
19758         the system allocation functions so valgrind can track the memory
19759         allocated by the g_... functions.
19761         * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
19763         * mini-ops.h: Add OP_DUMMY_STORE opcode.
19765         * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
19767         * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
19768         variables in try regions.
19770         * mini.c (mini_method_compile): Don't disable optimizations on large
19771         methods when AOT compiling.
19773         * mini.c (mono_allocate_stack_slots): New arch independent method to 
19774         allocate stack slots. Not yet used.
19776 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
19778         * debug-mini.c (mono_debug_close_method): Plug some leaks.
19780 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
19782         * mini-ppc.c: make the branch info relative as the code
19783         buffer can be reallocated.
19785 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
19787         * aot.c: Allow decoding of the new  MONO_PATCH_INFO_DECLSEC.
19788         * driver.c: Removed the AOT/security restriction. Now initialize the
19789         security manager (in metadata) if --security is used.
19790         * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
19791         rather than the pointer to declarative security, when AOT is used.
19793 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
19795         * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
19796         basic blocks, reduced intrinsic exception throwing code size.
19798 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
19800         * driver.c (mini_usage): Reorder the usage screen.
19802 2005-01-21  Zoltan Varga  <vargaz@freemail.hu>
19804         * mini.c (mono_resolve_patch_target): Fix warning.
19806 2005-01-20  Zoltan Varga  <vargaz@freemail.hu>
19808         * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
19809         previous patch.
19811         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
19813         * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
19814         breaks the amd64 build.
19816         * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem 
19817         register allocation. Fixes #71454.
19819         * mini-amd64.c (mono_arch_local_regalloc): Ditto.       
19821         * arrays.cs: Add new regression test.   
19823 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
19825         * ssapre.c: Turned usage of snprintf to GString.
19826         * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
19827         (I left it on by mistake in my previous commit).
19829 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
19831         * mini.c, cfold.c, basic-calls.cs: preserve side effects
19832         on cond branch optimization (fixes bug# 71515).
19834 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
19836         * abcremoval.c: Fixed bug 71062.
19837         * abcremoval.h: Likewise.
19839 2005-1-20  Massimiliano Mantione  <massi@ximian.com>
19841         * mini.c: Added a new functionality to optimize_branches, the removal
19842         of useless basic blocks, and fixed some problem in the removal of
19843         critical edges; some utility functions added for both purposes.
19844         * ssapre.c: Added complex expression support, and fixed bug 70637.
19845         * ssapre.h: Likewise.
19846         * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
19847         enabled in SSAPRE.
19848         * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
19849         * driver.c: Re-enabled SSAPRE.
19851 2005-01-19  Martin Baulig  <martin@ximian.com>
19853         * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
19854         the result of mono_get_method_constrained().
19856 2005-01-18  Neale Ferguson <NealeFerguson@earthlink.net>
19858         * exceptions-s390.c tramp-s390.c: Allocate code using the global code
19859         manager.
19861 2005-01-18  Geoff Norton  <gnorton@customerdna.com>
19863         * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
19864         be detected.  Fixes #59296.
19866 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
19868         * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
19869         which can happen. Fixes #71361.
19871 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
19873         * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
19874         manager.
19876 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
19878         * mini.c (mono_create_jump_trampoline): Revert last change as it causes
19879         appdomain-unload.exe to fail.
19880         
19881         * mini.c: Fix some memory leaks.
19883 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
19885         * inssel.brg: handle the new size of rank, idepth, max_interface_id.
19886         Fixed bug and sped up some codepaths.
19888 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
19890         * mini.c: Fix some memory leaks.
19892         * exceptions.cs basic-long.cs: Add test for checked ulong->int 
19893         conversion.
19895         * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
19897         * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
19898         #71320.
19900         * iltests.il: Add regression test for #71320.
19902 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
19904         * mini.c (mono_codegen): Fix installation of profiler hooks.
19906         * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
19908 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
19910         * mini.h, mini.c, cfold.c: optimize access to enum
19911         readonly fields, too. Eval conditional branches if possible
19912         to perform unreachable code removal in more cases.
19914 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
19916         * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
19918         * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
19919         code manager.
19921         * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
19922         WinXP DEP. Fixes #71244.
19924 2005-01-14  Zoltan Varga  <vargaz@freemail.hu>
19926         * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
19928 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
19930         * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
19932 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
19934         * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo 
19935         changes.
19937         * mini.h: Bump AOT version.
19939         * mini.h (MonoCompile): Change exvar to a hash table.
19941         * mini.c: Allocate a separate exvar for each handler block.
19943         * mini.c: Get rid of the computation of filter_lengths, its not needed.
19945         * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
19946         ex var with the pending exception and only throw if the two are equal.
19947         Fixes #68552.
19948         
19949         * exceptions.cs: Add tests for rethrow and nested catch clauses.
19951         * mini-x86.c: Fix warnings.
19953         * Makefile.am (common_sources): Move mini-exceptions.c here as it is
19954         used by all the ports now.
19956         * aot.c: Add write-symbols and save-temps options.
19958 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
19960         * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
19962 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
19964         * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx 
19965         operations.
19967         * tramp-s390.c: Check vtable slot belongs to the domain.
19969         * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
19970         as per other platforms.
19972         * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
19974 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
19976         * driver.c: we don't run the Main() code in a subthread anymore.
19978 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
19980         * mini.c: added experimental rtc support in the statistical
19981         profiler: if the user has the permission, more accurate statistics
19982         are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
19983         The MONO_RTC value must be restricted to what the linux rtc allows:
19984         power of two from 64 to 8192 Hz.
19986 2005-01-10  Zoltan Varga  <vargaz@freemail.hu>
19988         * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
19990 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
19992         * mini-ppc.c: better icache flush for smp.
19994 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
19996         * mini-amd64.c (emit_move_return_value): Fix memory leak.
19998         * mini-x86.c (get_call_info): Add the get_call_info () code from the
19999         amd64 port, not yet used.
20001 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
20003         * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
20004         a struct type.
20006 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
20008         * driver.c: Added --security option to activate the security manager.
20009         Right now this will allow code generation for declarative demands and
20010         is disabled when AOT is specified.
20011         * mini.c: Add code generation for declarative security demands.
20012         * mini.h: Add mono_use_security_manager as an extern gboolean.
20014 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
20016         * aot.c (mono_compile_assembly): Speed up compilation a bit by
20017         emitting more dense assembly code.
20019         * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
20020         exception throwing stuff.
20022 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
20024         * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
20025         dead code.
20027         * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
20028         left in by mistake.
20030         * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is 
20031         fixed.
20033         * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
20035         * tramp-*.c: Only patch vtable slots if the object is in the current
20036         domain. Fixes appdomain-unload.exe.
20038         * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
20039         
20040         * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
20041         x86 branch.
20043 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
20045         * mini.c (reverse_branch_op): New helper function.
20047         * mini.c (optimize_branches): Run the new optimization only on 
20048         platforms which support it. Also reverse all kinds of branches.
20050         * mini.h (MonoBasicBlock): Add 'out_of_line' field.
20052         * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
20053         a throw statement.
20055         * mini.c (optimize_branches): Reverse not-equals branches if the false
20056         bblock is a throw. This happens a lot of time with argument checking in
20057         corlib.
20059         * mini.c (mono_codegen): Add support for placing basic blocks after
20060         the function epilogue.
20062         * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
20063         function epilogue.
20064         
20065 2005-01-05  Miguel de Icaza  <miguel@ximian.com>
20067         * mini.c (setup_stat_profiler): Only set this up if the platform
20068         supports ITIMER_PROF.
20070 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
20072         * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
20073         previous patch.
20075         * inssel.brg: Fix a warning.
20077 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
20079         * mini.c: added support for statistical profiler 
20080         (run with: --profile=default:stat).
20082 2005-01-04  Zoltan Varga  <vargaz@freemail.hu>
20084         * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
20086         * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
20088         * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes 
20089         related to global registers from the amd64 port.
20091 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
20093         * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
20095         * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
20096         with global registers.
20097         (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
20099         * aot.c (emit_method_code): Fix the 'method emitted as' messages.
20101 2004-12-31  Zoltan Varga  <vargaz@freemail.hu>
20103         * debug-mini.c (encode_value): Fix off-by-one.
20105         * aot.c (encode_value): Likewise.
20107         * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
20109 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
20111         * mini.c linear-scan.c: Add a workaround for the mcs crash when using 
20112         AOT.
20114         * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
20115         
20116         * aot.c (emit_method_info): Increase size of temp buffer.
20118         * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in 
20119         the AOT case.
20121 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
20123         * aot.c (emit_method_info): Fix build.
20124         
20125         * aot.c: Further rework of the AOT file format to reduce the size of
20126         the method info data.
20128         * mini.h: Bump AOT file format version.
20130 2004-12-27  Martin Baulig  <martin@ximian.com>
20132         * mini.c (mini_get_method): New static method; call
20133         mono_get_method_full() and mono_get_inflated_method().
20134         (mono_method_to_ir): Use mini_get_method() instead of
20135         mono_get_method_full(). 
20137 2004-12-26  Patrik Torstensson  <patrik.torstensson@gmail.com>
20139         * mini-x86.c (atomic ops): fixed bug interlocked bug #70784. 
20141 2004-12-25  Zoltan Varga  <vargaz@freemail.hu>
20143         * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
20145         * inssel-amd64.brg: Add some optimization rules.
20147 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
20149         * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
20150         standard not GC'd stuff is fine.
20152 2004-12-24  Zoltan Varga  <vargaz@freemail.hu>
20154         * aot.c: Rework the AOT file format to get rid of most of the global
20155         symbols. This reduces the size of the mscorlib.dll.so by 1MB.
20157         * mini.h: Bump AOT file format version.
20158         
20159 2004-12-23  Zoltan Varga  <vargaz@freemail.hu>
20161         * mini.h: Bump AOT file format version.
20163         * aot.c (mono_aot_is_got_entry): New function to determine if an 
20164         address is inside a GOT.
20166         * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
20168         * cpu-pentium.md: Increase the maximum size of some instructions which
20169         might involve a got access.
20170         
20171         * mini.c (get_method_from_ip): Another debug helper function.
20173         * mini.c: Call mono_get_got_var () in a couple places. Handle the case
20174         when got var accesses are created during the decompose phase.
20176         * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
20178         * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
20179         argument mini_compile_method and to MonoCompile, and use this to
20180         determine whenever a given method is compiled for AOT. This allows the
20181         other methods compiled during AOT compilation to be free of AOT stuff,
20182         so the backends does not need to add special support for them by
20183         creating a fake GOT etc.
20185         * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
20186         longer needed.
20188 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
20190         * mini.c (mono_method_to_ir): It turns out that some of the
20191         x-appdomain wrappers are lax with types, so just ignore this for
20192         all wrappers.
20194         * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
20195         at the vtable->klass. If it is non-shared code we can just use the
20196         vtable.
20198 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
20200         * mini-ppc.c: access MonoDomain from tls, too.
20202 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com>
20204         * declsec.c: Removed unused variable (and related warning ;-)
20206 2004-12-21  Ben Maurer  <bmaurer@ximian.com>
20208         * iltests.il: New test for LDELEMA on an array of ref types.
20210         * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
20211         all ldelema's on reftypes.
20212         (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
20213         it was the wrong place to put it.
20215         * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
20216         register to pop to make this cleaner, at the request of Paolo.
20218 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
20220         * mini-ops.h (OP_GETHASHCODE): New op.
20222         * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
20224         * mini.c (mini_get_inst_for_method): Create the intrinsic hash
20225         operation.
20227         For a microbenchmark, this reduces the cost of Hashtable.get_Item
20228         by 25%.
20229         
20230         * mini-x86.c (mono_arch_output_basic_block): Rather than
20232         add ebp, 4
20234         Emit
20236         pop edx
20238         The first is 3 bytes while the second is 1. This saves 36 kb on
20239         mscorlib, quite a big saving. When bootstraping mcs, I was able to
20240         see a small boost because of icache locality.
20242         * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
20244 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
20246         * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
20247         started code sharing with the generic code.
20249 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
20251         * mini-ppc.c, cpu-g4.md: added code for direct access to
20252         tls data slots.
20254 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
20256         * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
20257          mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
20258         to OP_TLS_GET.
20260 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
20262         * declsec.c|h: Added functions to cache the declarative stack modifiers
20263         in MonoJitInfo and to create a security frame from a MonoJitInfo 
20264         structure.
20265         * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
20266         created. Register internal calls for System.Security.SecurityFrame::
20267         _GetSecurityFrame and _GetSecurityStack.
20268         * mini.h: Added definition for new icalls (in mini-exceptions.c) and
20269         the definitions for the new stack walk/callback mechanism.
20270         * mini-exceptions.c: Added internal call GetSecurityFrame (to get the 
20271         first security frame for LinkDemands and InheritanceDemands) and
20272         GetSecurityStack for Demands. Both use the new mono_walk_stack code
20273         from lupus.
20274         * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
20275         walk initialization (lupus).
20277 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
20279         * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
20280         idiom.
20281         (handle_loaded_temps): Do not create a temporary variable for
20282         things that we know are temps. They will never be modified.
20283         (mono_spill_call): Set MONO_INST_IS_TEMP
20284         (mono_emulate_opcode): ditto
20285         (emit_tree): ditto
20286         (mono_method_to_ir.CEE_DUP): ditto
20288 2004-12-19  Ben Maurer  <bmaurer@ximian.com>
20290         * mini.c (type_to_eval_stack_type): Make this handle the void type
20291         (mono_emit_call_args): set the call->type with type_to_eval_stack_type
20292         (emit_tree): use ip_in_bb to special case some common idioms
20293         Update all callers to pass in the IP.
20294         (mono_method_to_ir): Make CEE_CALL* do the above as well.
20296         This gives us a nice 2% speedup in mcs bootstrap.
20298         * mini-x86.c (peephole_pass): Peephole pass to make
20299         mov  [foo], eax
20300         push [foo]
20302         into
20304         mov [foo], eax
20305         push eax
20307         * mini.c (ip_in_bb): new method.
20308         (mono_method_to_ir): use this method rather than doing the hash
20309         lookup ourselves.
20311         * linear-scan.c (mono_linear_scan): When expiring actives, you
20312         don't need to keep around variables that expire on this
20313         instruction. This makes it so that:
20314              a = b + 1
20315         will turn into:
20316              store (ebx add (ebx, 1))
20317         which will become
20318              add ebx, 1
20320 2004-12-19  Zoltan Varga  <vargaz@freemail.hu>
20322         * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc 
20323         combination to avoid doing two copies. Fix up problems with previous
20324         patch.
20326         * mini.c: Fix 64 bit warnings.
20328         * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
20330 2004-12-17  Zoltan Varga  <vargaz@freemail.hu>
20332         * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
20333         changes from the x86 code.
20335         * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
20337 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
20339         * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
20340         throwing code to reduce its size, unify the AOT and non-aot code and 
20341         get rid of relocations in the AOT case.
20343         * mini-x86.h mini.c exceptions-x86.c 
20344         (mono_arch_get_throw_corlib_exception): New arch specific function to 
20345         raise corlib exceptions which doesn't require relocations in the 
20346         caller.
20348         * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
20350 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
20352         * mini.c (mono_emit_method_call): Only allocate the got var when it is
20353         needed.
20355         * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
20356         in the AOT case.
20358 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
20360         * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
20361         with add function when used from Inc/dec atomic 
20362         functions. Re-enabled optimization on x86.
20363         * mini-ops.h: renamed atomic_add functions to
20364         allow _add to match the Interlocked::Add and
20365         _add_next to match Interlocked::Inc/Dec.
20367 2004-12-15  Massimiliano Mantione  <massi@ximian.com>
20369         * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
20370         linking of BBs to the end BB, and enabled SSAPRE also with
20371         consprop and copyprop (which was prevented by that bug).
20373 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
20375         * mini-x86.c: disabling the Interlocked optimizing code. 
20377 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
20379         * aot.c (load_aot_module): Move reading of got_addr after the AOT
20380         file version check.
20381         
20382 2004-12-14  Patrik Torstensson  <patrik.torstensson@gmail.com>
20384         * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm 
20385         interlocked optimization due lack of support on x86, rewrote 
20386         exchange to take into account that base may be in eax.
20387         
20388         xsp works again; activated Interlocked optimizing code.
20389         
20390 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
20392         * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
20394 2004-12-13  Zoltan Varga  <vargaz@freemail.hu>
20396         * mini-ops.h: Add new opcodes.
20398         * mini.h: Add new patch types. Add got_var to MonoCompile.
20400         * mini.h mini-x86.c mini-amd64.c aot.c: Rename 
20401         mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
20402         make it work with all kinds of patchable code.
20404         * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
20405         address of the GOT, and referencing entries in the GOT.
20407         * mini.c: Add code to load the GOT address if needed by an opcode.
20409         * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position 
20410         independent AOT code on the x86 using an elf-style Global Offset Table.
20412 2004-12-14  Raja R Harinath  <rharinath@novell.com>
20414         * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
20416 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20418         * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
20419         when running xsp.
20421 2004-12-13  Patrik Torstensson  <patrik.torstensson@gmail.com>
20423         * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
20424         of Interlocked:Increment/Decrement/Add as inline ops.
20425         (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
20427 2004-12-12  Geoff Norton  <gnorton@customerdna.com>
20429         * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
20430         * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
20432 2004-12-12  Duncan Mak  <duncan@ximian.com>
20434         * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
20435         again. `patch_info->table_size' is no longer valid after Zoltan's
20436         commit #37636.
20438 2004-12-12  Martin Baulig  <martin@ximian.com>
20440         * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
20441         if we are the "real" method, ie. not an inlined method inside it.
20443 2004-12-11  Ben Maurer  <bmaurer@ximian.com>
20445         * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
20446         before we look in the special fields table. This fixes
20447         ../tests/thread-static-init.cs.
20449 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20451         * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
20452         for Array get_Rank and get_Length. Fixes bug #70465.
20454 2004-12-11  Zoltan Varga  <vargaz@freemail.hu>
20456         * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
20457         separate structure to reduce the size of MonoJumpInfo.
20459 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
20461         * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
20463 2004-12-10  Patrik Torstensson  <patrik.torstensson@gmail.com>
20465         * mini.c (mini_get_inst_for_method): Changed to allow ports
20466         to return a MonoInst instead of opcode 
20467         (renamed mini_get_opcode_for_method to better reflect the new functionality)
20468         
20469         * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method): 
20470         Allow ports to return a created MonoInst instead of op-code, will enable
20471         new optimizations.
20472         (renamed mini_get_opcode_for_method to better reflected the functionality)
20474 2004-12-09  Zoltan Varga  <vargaz@freemail.hu>
20476         * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
20478 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
20480         * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
20481         Fixes #69985.
20483 2004-12-08  Martin Baulig  <martin@ximian.com>
20485         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
20486         if we're a CEE_CONSTRAINED call.  Fixes gen-118.cs.
20488 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
20490         * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
20491         correctly.
20493         * exceptions.cs: Disable some tests which depend on properties of x86 fp
20494         arithmetic.
20496 2004-12-08  Raja R Harinath  <rharinath@novell.com>
20498         * Makefile.am (CLEANFILES): Add *.exe, *.dll.
20500 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
20502         * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
20503         bug introduced by the previous patch.
20505 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
20507         * mini-ppc.c, objectc.cs: handle large structs passed by value
20508         (fixes bug #69972).
20510 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
20512         * mini-ppc.c: OP_ARGLIST implementation from
20513         Geoff Norton  <gnorton@customerdna.com>.
20515 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
20517         * inssel-x86.brg, inssel-ppc.brg: fix reference to register
20518         in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
20520 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
20522         * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
20524 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20526         * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
20527         support.
20529 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
20531         * mini-sparc.c: Zero out localled-ed memory.
20533         * iltests.il: Add tests for zeroing out localloc-ed memory.
20535 2004-12-04  Martin Baulig  <martin@ximian.com>
20537         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
20538         mono_method_get_signature_full().       
20540 2004-12-03  Massimiliano Mantione  <massi@ximian.com>
20542         * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
20543         and some utility functions (always for SSAPRE), integrated SSAPRE.
20544         * mini.h: Likewise.
20545         * driver.c: Added ssapre option.
20546         * ssa.c: Small fix on OP_ARG handling.
20547         * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
20548         * Makefile.am: Likewise.
20550 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
20552         * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
20553         now in the xp code.
20555         * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
20556         icall.
20558 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20560         * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
20561         
20562         * cpu-s390.md : Increase instruction length of oparglist.
20564         * mini-s390.c : Implement vararg and TYPEDEBYREF support.
20566 2004-11-30  Martin Baulig  <martin@ximian.com>
20568         * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
20569         virtual generic methods.  We call a special helper_compile_generic_method()
20570         icall to retrieve the method from the vtable, inflate and compile
20571         it and then do a CEE_CALLI.  Thanks a lot to Paolo for this idea.
20573         * jit-icalls.c (helper_compile_generic_method): New JIT icall.
20575 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
20577         * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
20579 2004-11-29  Zoltan Varga  <vargaz@freemail.hu>
20581         * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
20582         Fixes #69929.
20584 2004-11-27  Ben Maurer  <bmaurer@ximian.com>
20586         * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
20587         platforms with PIC aot.
20589 2004-11-28  Martin Baulig  <martin@ximian.com>
20591         * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
20592         Fixes gen-112.cs.
20594 2004-11-28  Martin Baulig  <martin@ximian.com>
20596         * mini-x86.c (mono_arch_call_opcode): Use the original type, not
20597         the result of mono_type_get_underlying_type() to check whether
20598         we're byref.
20600 2004-11-26  Martin Baulig  <martin@ximian.com>
20602         * mini.c
20603         (mono_method_to_ir): Use `!method->signature->has_type_parameters'
20604         in the g_assert().
20606 2004-11-26  Zoltan Varga  <vargaz@freemail.hu>
20608         * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
20609         the same way as the other arguments so they won't get clobbered.
20611         * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual 
20612         calls through R11 since it is clobbered by the trampoline code.
20614 2004-11-26  Raja R Harinath  <rharinath@novell.com>
20616         * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
20617         pick up in-tree mscorlib.dll.
20619 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
20621         * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
20623         * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to 
20624         runtime data/code are now stored in a table similar to the GOT in ELF. 
20625         This allows the code itself to be position independent.
20627         * aot.c: Fix loading of referenced assemblies after the lazy assembly
20628         loading changes.
20630         * aot.c: Attach ELF type (object/function) directives to all global
20631         symbols.
20633         * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
20635         * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
20637         * mini-amd64.h: Turn on PIC AOT code.
20639         * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
20640         returning the offset within an OP_AOTCONST instruction where the GOT
20641         offset needs to be added.
20643         * mini.h: Bump AOT file format version.
20645 2004-11-25  Martin Baulig  <martin@ximian.com>
20647         * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
20648         uninflated generic methods.
20650 2004-11-25  Martin Baulig  <martin@ximian.com>
20652         * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
20654 2004-11-24  Martin Baulig  <martin@ximian.com>
20656         * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
20657         original klass (this only applies for generic instances).
20659 2004-11-24  Martin Baulig  <martin@ximian.com>
20661         * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
20662         `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
20663         that array).
20665 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
20667         * mini.c (mono_method_to_ir): Disable inlining for methods containing
20668         localloc. Fixes #69678.
20670         * iltests.il (test_0_localloc_inline): Add regression test for #69678.
20671         
20672 2004-11-23  Zoltan Varga  <vargaz@freemail.hu>
20674         * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
20675         used SSE registers on pinvoke calls. Fixes #69774.
20677 2004-11-23  Geoff Norton  <gnorton@customerdna.com>
20679         * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
20680         vt->inst_vtype->data.klass.  This fixes generic structs and bug #69766
20682 2004-11-23  Raja R Harinath  <rharinath@novell.com>
20684         * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
20685         Refer directly to the mcs/ tree.
20687 2004-11-19  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20689         * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
20690         Check if a trampoline for a synchronized method is required. 
20692 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
20694         * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
20695         with localloc if needed. Throe arithmetric exception in
20696         div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
20697         Adapted from a patch by Geoff Norton  <gnorton@customerdna.com>.
20699 2004-11-19  Geoff Norton  <gnorton@customerdna.com>
20701         * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
20702         types before switching on type.  Fixes #69622.
20704 2004-11-19  Raja R Harinath  <rharinath@novell.com>
20706         * Makefile.am (check-local): New.  Integrate into 'make check'.
20707         (MCS,RUNTIME): Define using in-tree mono and mcs.
20708         (ILASM): New.
20709         (%.exe): Use $(ILASM).
20711 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
20713         * mini-ppc.c: adjust initial prolog size (bug #69691).
20715 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
20717         * cpu-pentium.md (localloc): Increase max instruction len. Fixes
20718         #69664.
20720 2004-11-17  Raja R Harinath  <rharinath@novell.com>
20722         * Makefile.am (clean-local): Rename from 'clean'.
20724 2004-11-15  Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20726         * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
20727         to mono_arch_is_int_overflow. 
20728         * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
20729         SIGFPE events.
20731 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
20733         * declsec.c|h: New files to support declarative security attributes.
20734         Added function to check if a method has (applicable) security.
20735         * mini.c|h: Add check for declarative security attributes in
20736         mono_method_check_inlining.
20737         * Makefile.am: Added declsec.c and declsec.h to the build.
20739 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
20741         * mini.c, mini.h: update to keep dynamic code info per-domain.
20743 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
20745         * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
20746         (mini_init): Get rid of it from here too.
20748 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
20750         * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
20751         implemented OP_RETHROW (patch by Geoff Norton
20752         <gnorton@customerdna.com>).
20754 2004-11-10  Geoff Norton  <gnorton@customerdna.com>
20756         * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
20757         between appdomains.  Fixes appdomain-unload on PPC.
20759 2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>
20761         * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
20762         mini-exceptions.c: handle the new wrapper types.
20763         * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
20764         token value as a MonoClass* when compiling a wrapper.
20765         mono_jit_create_remoting_trampoline now takes an additional
20766         MonoRemotingTarget parameter.
20767         
20768 2004-11-10  Martin Baulig  <martin@localhost>
20770         * mini.c (mono_method_to_ir): Use `generic_container->context'
20771         rather than creating a new one.
20773 2004-11-09  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20775         * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
20777         * inssel-390.md, mini-s390.c: Correct register allocation for globals.
20779 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
20781         * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
20782         the experimental aot cache stuff.
20784 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
20786         * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
20787         mini-exceptions.c: update to exception clause structure changes.
20789 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
20791         * exceptions-x86.c (throw_exception): Fix warnings.
20793         * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support 
20794         for OP_RETHROW.
20796 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
20798         * exceptions-sparc.c (get_throw_exception): Really fix this.
20800 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
20802         * tramp-*.c: we no longer support icalls without wrappers, so
20803         a bit of code can be removed here
20805 2004-11-07  Zoltan Varga  <vargaz@freemail.hu>
20807         * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
20808         patch.
20810         * cpu-sparc.md: Add op_rethrow.
20812         * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
20814         * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
20816         * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
20817         * mini-ops.h: Add OP_RETHROW.
20819         * mini.c inssel.brg: Distinguish between THROW and RETHROW.
20821         * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
20823 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
20824         
20825         * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
20826         Makes the output much easier to read
20828 2004-11-05  Ben Maurer  <bmaurer@ximian.com>
20830         * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
20831         prevents another huge leak when compiling with ssa. Secondly, the
20832         performance of doing this rather than freeing the lists is much
20833         better. GList does a lock every time you allocate a list link,
20834         so that it can use a memory pool. So, it is better to just use
20835         a memory pool of our own.
20836         
20837         * ssa.c, linear-scan.c: replace g_list_remove_link with
20838         g_list_delete.  The remove one does not free the GList, so we were
20839         leaking memory. On -O=all --compile-all with corlib, this cut down
20840         3 MB of allocations.
20842 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
20844         * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
20846         * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
20848         * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
20849         into a new function mono_create_jit_trampoline ().
20851 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
20853         * trace.c (get_spec): Allow tracing of classes without a namespace.
20855 2004-11-02  Sebastien Pouliot  <sebastien@ximian.com>
20857         * mini.c: Fix pointer overwrite in mini_method_compile.
20859 2004-11-2  Geoff Norton  <gnorton@customerdna.com>
20861         * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
20862         The darwin ABI needs some special handling for 1 and 2 byte structs
20863         Lets use lbz/lhz instead of lwz everywhere.
20864         * mini-ppc.c (calculate_sizes):  The Darwin ABI needs from special handling
20865         for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
20866         Use stb/sth for the former, and put the latter always on stack instead of in
20867         argument registers.
20869 2004-10-30  Zoltan Varga  <vargaz@freemail.hu>
20871         * trace.c (is_filenamechar): Add '_'.
20873 2004-10-29  Neale Ferguson  <Neale.Ferguson@SoftwareAG-usa.com>
20875         * mini-s390.c: Fix prolog length to allow for large trace requirements.
20877         * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
20879 2004-10-29  Zoltan Varga  <vargaz@freemail.hu>
20881         * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
20882         depends on libmonogc. Fixes #68805.
20884 2004-10-26  Miguel de Icaza  <miguel@ximian.com>
20886         * mini.c (mono_jit_free_method): Provide extra information for
20887         this error.  Currently this leaks, but will be turned into a
20888         developer option in the future.
20890 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
20892         * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
20894 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
20896         * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte 
20897         boundary. Fixes reading of PATCH_INFO_R4 and R8.
20898         (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
20900 2004-10-24  Zoltan Varga  <vargaz@freemail.hu>
20902         * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
20903         trampolines for AOT code.
20905 2004-10-22    <vargaz@freemail.hu>
20907         * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
20908         constructed types. Fixes #68136.
20910 2004-10-21  Martin Baulig  <martin@ximian.com>
20912         * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
20913         if it returns true, unwind the stack to the call instruction.
20915 2004-10-21    <vargaz@freemail.hu>
20917         * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
20919         * mini.h: Bump AOT version number.
20921         * objects.cs: Add another test for unbox trampolines.
20923         * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for 
20924         valuetype methods.
20926 2004-10-20    <vargaz@freemail.hu>
20928         * driver.c: Add SHARED to the set of optimizations tested.
20930         * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
20932         * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
20933         used by CEE_NEWARR.
20935         * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
20937 2004-10-20  Martin Baulig  <martin@ximian.com>
20939         * mini-exceptions.c (mono_handle_exception): Call
20940         mono_debugger_handle_exception() to tell the debugger about
20941         catch/finally clauses.
20943 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
20945         * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
20947         * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
20948         #68447.
20950 2004-10-15  Geoff Norton  <gnorton@customerdna.com>
20952         * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
20953         methods as their native size, fixed bug #57543, #57545.
20954         * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
20955         This saves a temporary register and mullw call down into 1 (minor perf
20956         increase for cases like sum = sum * 5;  This use to translate into:
20957             li r11,5
20958             mullw r28,r28,r11
20959         It now translates to
20960             mulli r28,r28,5
20962 2004-10-15  Zoltan Varga  <vargaz@freemail.hu>
20964         * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
20965         #68388.
20967 2004-10-11  Martin Baulig  <martin@ximian.com>
20969         * mini.c (mono_method_to_ir): If we're a generic method, get the
20970         MonoGenericContainer from our MonoMethodNormal and create a
20971         MonoGenericContext from it.
20973 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
20975         * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
20977         * basic-long.cs: Add test for checked i8->i2 cast.
20979 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
20981         * inssel-ppc.brg: added a couple of speedup rules.
20983 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
20985         * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
20986         to speed up rebuilds.
20988 2004-10-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
20990         * mini-s390.c: Minor fix to OP_OR_IMM.
20992 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
20994         * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
20995         better. Fixes appdomain-unload.exe on sparc.
20997 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
20999         * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
21000         simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
21001         see bug 67324.
21003 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
21005         * jit-icalls.c: Handle a nonexisting trunc function more correctly.
21007 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
21009         * mini.c: Always generate a field read/write wrapper for members
21010         of the class MarshalByRefObject since the actual instance could
21011         be a CBO.
21013 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
21015         * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
21017 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
21019         * driver.c mini.h trace.c: Move the setting of the main assembly into
21020         a separate function called mono_trace_set_assembly () and call it after
21021         actually loading the main assembly. Fixes #66872.
21023 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
21025         * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
21026         using the code manager.
21028 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
21030         * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
21032 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
21034         * cpu-amd64.md: Fix bug in previous patch.
21035         
21036         * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
21037         #66650.
21039 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
21041         * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21042         mini-exceptions.c: updates for changed stack walk interface.
21044 2004-09-21  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21046         * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
21048 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
21050         * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
21052 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
21054         * driver.c (mini_regression_list): Do not call mono_assembly_close 
21055         since assemblies can't be unloaded.
21056         
21057 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
21059         * cpu-amd64.md: Fix more instruction lengths.
21061         * cpu-amd64.md: Fix lengths of some instructions.
21063 2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>
21065         * inssel.brg: Make the array ldelema check aot friendly.
21067 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
21069         * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
21071         * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
21073 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
21075         * mini-x86.c: Fix build.
21077         * mini-sparc.c mini-x86.c mini-amd64.c: Use the new 
21078         mono_type_get_underlying_type () helper function to simplify code.
21079         
21080 2004-09-09  Martin Baulig  <martin@ximian.com>
21082         * mini-amd64.c: Don't access `type->data.klass' directly, call
21083         mono_class_from_mono_type() instead since the type may be a
21084         generic instance.
21086 2004-09-09  Martin Baulig  <martin@ximian.com>
21088         * mini-amd64.c (get_call_info): Fix support for generic instances.
21089         (add_valuetype): Use mono_class_from_mono_type() to get the class
21090         since we can be a generic instance.
21092 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
21094         * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
21096 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
21098         * liveness.c: reset spill costs on each scan: bug 62107
21100 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
21102         * exceptions-sparc.c (mono_arch_find_jit_info): remove
21103         unnecessary line that doesn't compile
21105 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
21107         * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
21108         trampolines, make them call an error function so people can fix their
21109         code.
21111 2004-09-06  Martin Baulig  <martin@ximian.com>
21113         * mini.c (mono_method_to_ir): When initializing locals, handle a
21114         generic instances like a valuetype if it's a valuetype and like a
21115         class if it's a class.
21117 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
21119         * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
21120         stack. Fixes #64674.
21122         * exceptions.cs: Add test for unwinding of call arguments.
21124 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
21126         * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
21127         OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
21128         set the carry/borrow flag). The sparc and s390 implementations
21129         can now use optimized versions (and simplify the code). ppc bugfixes.
21131 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
21133         * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
21135 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
21137         * inssel-amd64.brg: Remove leftover 32 bit rule.
21139         * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
21141 2004-09-04  Zoltan Varga  <vargaz@freemail.hu>
21143         * mini-exceptions.c (mono_find_jit_info): Refactor common code from
21144         mono_arch_find_jit_info functions into a new function. Fix a memory
21145         leak.
21147         * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
21148         refactored code.
21149         
21150 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
21152         * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
21153         as well.
21154         
21155         * exceptions.cs: Add array size tests.
21157         * mini.c: Allocate a separate icall wrapper for each arity of 
21158         mono_array_new_va. Fixes #59509.
21160         * exceptions.cs: Add testcase for 64578.
21162         * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
21164         * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
21165         
21166 2004-09-02  Martin Baulig  <martin@ximian.com>
21168         * mini.c (mono_method_to_ir): When initializing the locals, call
21169         handle_initobj() on the generic instance itself, not its
21170         underlying type.
21172 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
21174         * mini.h (MonoJitDynamicMethodInfo): New structure, extension of 
21175         MonoJitInfo for dynamic methods.
21177         * mini.c: Rename trampoline_hash_mutex to jit_mutex.
21179         * mini.c: Add support for freeing JIT data for dynamic methods.
21180         
21181 2004-09-01  Martin Baulig  <martin@ximian.com>
21183         * mini-x86.c (is_regsize_var): Added support for generic
21184         instances.
21185         (mono_arch_emit_prolog): Make this compile again, use
21186         `x86_push_imm_template (code)'.
21188 2004-08-30 Ben Maurer  <bmaurer@users.sourceforge.net>
21190         * mini-x86.c: make all push_imm instructions that get
21191         patched always emit the long form
21193 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
21195         * mini.c (mono_create_jump_trampoline): Store the jump trampolines 
21196         in a per-domain hash.
21198         * mini-amd64.c (merge_argument_class_from_type): Handle generic
21199         types.
21201 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
21203         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
21204         work.
21205         
21206         * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
21207         work.
21209         * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
21210         Beginnings of SSE2 support.
21212         * exceptions.cs: Add more tests for checked int<->uint casts.
21214 2004-08-28  Martin Baulig  <martin@ximian.com>
21216         * mini-x86.c (mono_arch_instrument_epilog): Added support for
21217         generic instances.
21219         * mini.c
21220         (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
21221         Handle generic instances recursively.
21223 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
21225         * iltests.il: test for conv.u8 on a constant
21227 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
21229         * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
21230         LCONV_x4 (shrun_32 (membase)).
21232 2004-08-27 Ben Maurer  <bmaurer@users.sourceforge.net>
21234         * inssel-x86.brg: c&p rules for push/setret of long
21236 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
21238         * inssel-x86.brg: c&p rules for compare (base, regvar) and
21239         compare (regvar, base)
21241         * inssel-x86.brg: more burg love
21243         * inssel.brg: more cleanup
21245         * inssel-x86.brg, inssel-long32.brg: burg cleanup.
21247 2004-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
21249         * basic-long.cs, basic-calls.cs: new tests for optimization.
21251 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
21253         * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
21254         patch.
21256 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
21258         * mini-amd64.c (read_tls_offset_from_method): Add another case.
21259         
21260 2004-08-25  Bernie Solomon  <bernard@ugsolutions.com>
21262         * inssel.brg (mini_emit_memcpy): use 
21263         NO_UNALIGNED_ACCESS to disable memcpy optimization
21265 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
21267         * mini-amd64.c: Handle generic types in various places.
21269         * mini.c (mono_method_to_ir): Handle generic types in init locals.
21271 2004-08-24  Zoltan Varga  <vargaz@freemail.hu>
21273         * mini.c (handle_box): Fix warning.
21275         * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
21277         * mini-amd64.h: Enable the emit_state optimization.
21279         * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
21281         * mini-amd64.c: Add some new 64 bit peephole opts.
21283         * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
21285         * cpu-amd64.md: sreg1 of div instructions must be %rax.
21287         * mini-amd64.c: Register allocator fixes.
21289         * mini.c: Add an optimization to emit_state to avoid allocation of new
21290         registers on some platforms.
21292 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
21294         * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
21296         * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
21297         allocation. Fixes #63085.
21299         * basic-long.cs: Add new regression test.
21301         * mini-amd64.c: Register allocator improvements.
21303 2004-08-21  Zoltan Varga  <vargaz@freemail.hu>
21305         * mini-amd64.c (read_tls_offset_from_method): Add another code
21306         sequence.
21308         * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
21309         instruction sequence for nullifying class init trampolines.
21311         * objects.cs: Add new regalloc test.
21313         * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
21315 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
21317         * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
21318         
21319         * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
21320         arguments.
21322         * driver.c: Fix profiling after TLS changes.
21323         
21324         * driver.c (mono_main): Set mono_stats.enabled if needed.
21326         * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
21327         CEE_BOX.
21329 2004-08-20 Ben Maurer  <bmaurer@users.sourceforge.net>
21331         * mini-x86.c: use a 1 op rather than a 2 op tls access
21332         instruction -> faster.
21334 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
21336         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
21337         x86 backend.
21339 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
21341         * exceptions-sparc.c (throw_exception): fix typo
21343 2004-08-19 Ben Maurer  <bmaurer@users.sourceforge.net>
21345         * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
21346         set tree->dreg correctly with tls. Allow any
21347         register to be used.
21349         * mini-x86.c (read_tls_offset_from_method): add new code
21350         generation pattern seen with GCC.
21353 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
21355         * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
21356         exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
21357         exceptions-sparc.c: fix some performance issues in exception
21358         handling and setting of the stack trace for exceptions that were
21359         already thrown.
21361 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
21363         * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from 
21364         x86 backend.
21365         
21366         * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible 
21367         registers.
21369 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
21371         This patch inlines tls access, when possible.
21372         
21373         * mini.h: new arch functions for TLS intrinsics.
21374         All platforms updated with a stub.
21376         * mini.c: use the new intrinsics
21378         * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
21379         arch specific intrinsic for tls variables
21381 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
21383         * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
21384         under windows.
21386 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
21388         * mini.c: thread local allocation
21390 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
21392         * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
21394         * Makefile.am: Link against the static version of libmonogc.
21395         
21396         * Makefile.am: Link the static versions of the convenience libraries
21397         into the mono executable.
21399         * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
21401 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
21403         * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
21404         on integer overflow.
21406         * mini-amd64.c: Reorganize function call code.
21408         * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
21410 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
21412         * inssel-x86.brg: use xor eax,eax.
21413         
21414         * basic.cs: new tests
21416 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
21418         * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
21419         in exception throwing code.
21420         
21421 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
21423         * inssel-x86.brg: use xor esi,esi.
21425 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
21427         * driver.c (mono_main): Call mono_trace_parse_options earlier so it
21428         can trace methods compiled during mini_init () too.
21430         * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle 
21431         CEE_CONV_U4.
21433 2004-08-14 Ben Maurer  <bmaurer@ximian.com>
21435         * Makefile.am: static link on x86 (r=zoltan)
21437 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
21439         * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
21440         code since it causes some programs to fail.
21442 2004-08-12  Zoltan Varga  <vargaz@freemail.hu>
21444         * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
21446 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
21448         * mini.c: ovfops_op_map - add STACK_OBJ case for
21449         CONV_I 
21450         * basic.cs: add test_0_pin_string as test
21451         case for above.
21453 2004-08-11  Bernie Solomon <bernard@ugsolutions.com>
21455         * Makefile.am: build C# if srcdir != builddir
21457 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
21459         * dominators.c, mini.h, mini-x86.c: fix loop alignment with
21460         fall-through blocks.
21462 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21464         * driver.c: enable loop by default again and include abcrem in -O=all.
21466 2004-08-08  Zoltan Varga  <vargaz@freemail.hu>
21468         * iltests.il: Add some localloc tests.
21470         * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
21472         * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly. 
21473         Fixes #62574.
21475         * inssel-amd64.brg: Add some optimizations.
21477         * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
21478         for gcc-3.4.
21480         * Makefile.am: Statically link mono against libmono on AMD64.
21481         
21482         * mini-amd64.c inssel-amd64.brg: Optimizations.
21484 2004-08-07  Zoltan Varga  <vargaz@freemail.hu>
21486         * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
21488         * tramp-amd64.c: Patch calling code in trampolines.
21490 2004-08-06  Zoltan Varga  <vargaz@freemail.hu>
21492         * mini-amd64.c: pinvoke struct passing fixes.
21494 2004-08-05  Bernie Solomon  <bernard@ugsolutions.com>
21496         * mini-sparc.c: redo change, make mono_arch_cpu_init call
21497         mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
21499 2004-08-05  Duncan Mak  <duncan@ximian.com>
21501         * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
21502         CEE_LDELEM_ANY.
21504 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
21506         * mini-amd64.c (emit_move_return_value): Move return value for normal
21507         calls too.
21509 2004-08-05  Martin Baulig  <martin@ximian.com>
21511         * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
21512         `type->type'; just modify `type' itself when dealing with enums
21513         and generic instances.
21514         (check_call_signature): Make `simple_type' a `MonoType *'.
21516 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
21518         * mini.c: Use OP_PADD to add offsets to addresses.
21520         * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
21522 2004-08-04  Bernie Solomon  <bernard@ugsolutions.com>
21524         * mini-sparc.c (mono_arch_emit_epilog): fix check
21525         for folding last op into restore instruction
21527 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
21529         * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
21530         helper methods using the code manager.
21531         
21532         * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
21534         * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
21536 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21537         
21538         * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
21539           cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
21541         * mini-s390.c: fix tail processing
21543 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
21545         * mini-ppc.c: mul.ovf.un exception name fix.
21547 2004-08-03  Martin Baulig  <martin@ximian.com>
21549         * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
21550         instances; before jumping to `handle_enum', also modify `ptype'.
21552 2004-08-02  Bernie Solomon  <bernard@ugsolutions.com>
21554         * cpu-sparc.md: fcall maximal length too small.
21556 2004-08-02  Zoltan Varga  <vargaz@freemail.hu>
21558         * mini-amd64.c mini.h: Add initial support for passing/returning 
21559         structures to/from pinvoked methods.
21561 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
21563         * mini-ppc.c: reg allocator fix.
21565 2004-07-31  Zoltan Varga  <vargaz@freemail.hu>
21567         * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
21569         * inssel.brg: Optimize memset on 64 bit machines.
21571         * mini-amd64.c: Fix some vararg cases.
21573 2004-07-30  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21575         * mini-s390.c: Corrected macro in emit_float_to_int
21577         * s390-abi.cs: Tests to exercise the s390 ABI
21579 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
21581         * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
21582         caller saved regs.
21584         * basic.cs: Add a test for add.ovf.un.
21586 2004-07-30  Bernie Solomon  <bernard@ugsolutions.com>
21588         * mini-sparc.c: add case for OP_IDIV_UN
21590 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
21592         * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
21593         
21594         * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
21596 2004-07-30  Ben Maurer  <bmaurer@ximian.com>
21598         * basic.cs: regression tests.
21600         * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
21601         regressions.
21603 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
21605         * basic.cs: Add a new test.
21607         * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling 
21608         and AOT. Various fixes and optimizations.
21610         * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
21612 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
21614         * mini-ppc.c: make sure temp regs are not used for global reg
21615         allocation.
21617 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
21619         * cpu-sparc.md: conv_i8 fix for 64bits
21621         * mini-sparc.c: add cases for OP_IXXX codes for 64bits
21623 2004-07-29  Ben Maurer  <bmaurer@ximian.com>
21624         
21625         * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
21626         add opcode for cmp BYTE PTR [eax], imm.
21628         * inssel.brg: Make memcpy and memset takes bases.
21630 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
21632         * *-amd64.*: More AMD64 work.
21633         
21634 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
21636         * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
21637         add a compare-not-equal opcode.
21638         
21639 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
21641         * mini.c: Use mono_init_from_assembly instead of mono_init.
21642         
21643 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
21645         * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
21647         * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
21649         * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
21651         * inssel.brg: 64 bit fixes.
21653         * mini.h (MonoCallInst): Add some AMD64 specific data.
21655         * mini.h: Add some OP_P opcodes.
21657 2004-07-28  Ben Maurer  <bmaurer@ximian.com>
21659         * basic.cs: tests for 61797 and 61740
21661 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
21663         * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
21664         numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
21666 2004-07-24  Zoltan Varga  <vargaz@freemail.hu>
21668         * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
21670         * *-amd64*.*: Ongoing AMD64 work.
21672 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
21674         * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
21676         * *-amd64*: Ongoing AMD64 work.
21678         * mini-arch.h: Add AMD64 support.
21680         * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
21682         * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
21684         * mini-ops.h: Add new opcodes.
21686         * Makefile.am: Add AMD64 support.
21688         * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
21689         rules into the inssel-long*.brg files.
21691         * *-amd64.*: Add beginnings of AMD64 backend.
21693 2004-07-22  Ben Maurer  <bmaurer@ximian.com>
21695         * mini.c (print_dfn): commenting out the code that prints
21696         the cil. With -O=deadce, this makes -v -v crash.
21697         
21698         * cpu-pentium.md: make checkthis have a length of 2
21700 2004-04-21  Bernie Solomon  <bernard@ugsolutions.com>
21702         * mini-sparc.h: fix implementations of __builtin
21703         functions for Sun compiler for V9.
21705 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
21707         * mini.c: use the new stelem.ref wrapper
21708         * exceptions.cs, arrays.cs: new stelem.ref tests
21710 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
21712         * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
21713         new XSP should work with these changes).
21715 2004-07-14  Ben Maurer  <bmaurer@ximain.com>
21716         
21717         * inssel-{long32,x86,}.brg: trivial optimizations.
21718         
21719 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
21721         * mini.c: load value when emitting box operation in
21722         constrained calls.
21724 2004-07-12  Ben Maurer  <bmaurer@ximian.com>
21726         * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
21727         is one byte shorter than cmp DWORD PTR [eax], 0.
21729 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
21731         * inssel-ppc.brg: arguments on the stack are always
21732         relative to the stack pointer (spotted by Neale Ferguson).
21734 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21736         * exceptions-x86.c: delay appending the method name to the trace until
21737         after mono_jit_info_table_find is called, as this gets the real
21738         MonoMethod.
21740 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
21742         * aot.c: register roots
21744 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
21746         * aot.c : I could just use PLATFORM_WIN32 flag.
21748 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
21750         * aot.c : Reverting the previous fix. This time it broke linux build.
21752 2004-07-09  Atsushi Enomoto  <atsushi@ximian.com>
21754         * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
21756 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
21758         * mini.c (handle_stack_args): Remove some more debugging code.
21759         
21760         * mini.c (handle_stack_args): Remove debug output left in by mistake.
21762         * driver.c mini.h aot.c: Allow additional options to be specified with
21763         --aot and pass them to mono_compile_assembly.
21765         * aot.c: Add experimental code to AOT compile all loaded assemblies
21766         on demand and save the code into a cache in the filesystem.
21768         * aot.c: Add support for more wrapper methods.
21769         
21770         * mini.c (handle_stack_args): Handle some corner cases. Fixes 
21771         58863.
21773         * cpu-*.md: Remove removed opcodes.
21775         * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
21776         CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
21777         related icalls to marshal.c.
21779 2004-07-06  Zoltan Varga  <vargaz@freemail.hu>
21781         * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
21783         * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
21785         * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
21787 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
21788         * liveness.c: If liveness is recomputated we need to reset the information
21789         for each variable. This way, if the liveness range has been narrowed
21790         by optimizations that happened after the last computation, we can return
21791         a smaller range.
21792         
21793         For example, if you have
21794         
21795         {
21796                 int i = 0;
21797                 
21798                 // Tons of code that does not affect i
21799                 
21800                 i = foo ();
21801                 ...
21802         }
21803         
21804         i = 0 is dead code and will be removed by SSA. However, when
21805         linear scan gets to the code, i will still appear to be live
21806         throughout the entire block. This prevents good register allocation.
21808 2004-07-06  Martin Baulig  <martin@ximian.com>
21810         * debug-mini.c (mono_debug_init_method): Allow
21811         MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
21812         (mono_debug_add_icall_wrapper): New method.
21814         * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
21816 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
21818         * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
21819         optimization.
21821 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
21823         * aot.c (mono_aot_load_method): Fix loading of debug info.
21825 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
21827         * aot.c: Add logging support.
21829 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
21831         * mini.h: Add prototype for mono_print_method_from_ip.
21833         * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
21835         * inssel.brg: 64 bit fixes.
21837         * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to 
21838         inssel-long32.brg.
21840         * Makefile.am: Add SPARC64 support.
21842 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
21844         * aot.c: Fix alignment problems on 32 bit platforms.
21846 2004-07-01  Zoltan Varga  <vargaz@freemail.hu>
21848         * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
21849         SPARC64.
21851         * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
21852         problems.
21854         * mini.h: Bump AOT file version. Some 64 bit fixes.
21856 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
21858         * inssel-sparc.brg: Add new rule to avoid register moves.
21860         * inssel.brg: Add ldind_to_load_membase helper function.
21862 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
21864         * mini.c: OffsetToStringData intrinsic.
21865         
21866 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
21868         * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
21870         * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
21871         regression tests.
21873         * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
21874 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
21876         * mini.c: reinstated mono_compile_get_interface_var()
21877         on x86, too, since the change breaks the Gtk# build there as well.
21879 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21881         * driver.c: remove loop from the default optimizations: it seems to
21882         interact badly with some of the other options (see bug #60613).
21884 2004-06-25  Zoltan Varga  <vargaz@freemail.hu>
21886         * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann 
21887         (fld@informatik.uni-bremen.de): Add Solaris x86 support.
21889 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
21891         * mini-ppc.c, cpu-g4.md: small updates to be able to compile
21892         vararg-using methods.
21894 2004-06-21  Martin Baulig  <martin@ximian.com>
21896         * mini/mini-exceptions.c
21897         (mono_handle_exception): Added `gpointer original_ip' argument.
21898         After calling mono_unhandled_exception(), call
21899         mono_debugger_unhandled_exception() and if that returns true,
21900         restore the context and return.
21902 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
21904         * mini-ppc.c: prefer the use of relative branches so
21905         they won't need to be patched in aot code (patch from Patrick Beard).
21907 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
21909         * aot.c: patch from Patrick Beard to make the output assembly
21910         more correct for the MacOSX assembler. Small tweak to
21911         generate sane images on Linux/PPC, too.
21913 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21915         * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
21916         case until bug #59509 is fixed (shows up in #60332).
21918 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
21920         * mini.c: make sure the needed wrappers are compiled, too, with
21921         precomp.
21923 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
21925         * driver.c: remove NPTL reference in --version output.
21927 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
21929         * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
21930         generate valid assembly for the Mach-O assembler.
21932 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
21934         * driver.c: don't include abcrem in the all optimization specifier
21935         since it slows down jit compilation too much for now.
21937 2004-06-12 Ben Maurer  <bmaurer@users.sourceforge.net>
21939         * mini.c: use BIGMUL only if both operands have the same signage.
21940         * iltests.il: Test for bug 60056. (errors related to signage in
21941         BIGMUL).
21943         r=lupus.
21945 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
21947         * mini.c, aot.c: memory leak fixes.
21949 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
21951         * inssel-long32.brg: implemented a few missing ulong cast opcodes.
21953 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
21955         * Makefile.am: remove the -static hack completely, it links in
21956         statically glib as well.
21958 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
21960         * iltests.il, mini.c: fixed bug#59580 in branch optimization.
21961         * exceptions.cs: make it compile with new mcs/csc.
21963 2004-06-03 Massimiliano Mantione <massi@ximian.com>
21964         * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
21965         and added relevant test case.
21967 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
21969         * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
21970         regressions in gtk-sharp.
21972 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
21974         * exceptions.cs: New regression tests.
21976         * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
21978 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
21980         * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
21982 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
21984         * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
21986         * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
21988 2004-05-28      Patrik Torstensson <totte@hiddenpeaks.com>
21990         * mini.c (mono_jit_runtime_invoke): Init class in this
21991         method instead of trusting mono_jit_compile_method to
21992         do the work (because wrappers can be in object class)
21994 2004-05-27  Zoltan Varga  <vargaz@freemail.hu>
21996         * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
21998         * basic-long.cs: New regression test.
22000 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
22002         * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
22003         and div/rem checks.
22005 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
22007         * Makefile.am: fix miguel's change to build mono statically against
22008         libmono (track build dependencies).
22010 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
22012         * cfold.c: Some glib versions do not have G_MININT32.
22014 2004-05-26  Massimiliano Mantione  <massi@ximian.com>
22016         * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
22017         with precision of tan, atan, sin and cos, and implemented related
22018         regressions tests (fixes bug 54467, but one new problem appeared and
22019         is not fixed yet).
22021 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
22023         * cfold.c (FOLD_BINOPZ): Avoid division by zero.
22025         * exceptions.cs: Add test for constant folding && division by zero.
22027         * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
22028         since driver.c is in libmono too, so the optimization was useless.
22030         * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS 
22031         variable to driver.c so the compiler can emit more efficient code to
22032         access them.
22034 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22036         * Makefile.am: don't distribute generated inssel.[ch] files.
22038 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
22040         * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
22041         into the default appdomain. Fixes #58707.
22043         * jit-icalls.c: Remove the broken approximation for truncl, doing
22044         no conversion is better.
22046         * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
22047         Fixes #58863.
22049 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
22051         * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
22052         of the mcrxr instruction which is not available on some processors
22053         even if it's documented to be. Implement add and sub overflow correctly
22054         (still not complete for long unsigned). Speed up icalls a bit.
22056 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
22058         * mini.c (mono_jit_compile_method_with_opt): Make sure that
22059         we run .cctor in the current domain instead of target_domain.
22060         
22061         Fixes bug #58558, .cctor not being called in -O=shared.
22063 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
22065         * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
22067 2004-05-24 Ben Maurer  <bmaurer@users.sourceforge.net>
22069         * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
22070         which can be done with an imm8, do it that way.
22071         (mono_arch_output_basic_block): ditto for a jmp
22072         (mono_arch_emit_prolog): Computate maximum offset of a label.
22074 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
22076         * mini-x86.c (mono_arch_local_regalloc): the reg allocator
22077         now tries to allocate prefered physical reg's for virtual
22078         regs. This reduces the number of emited spills/loads with
22079         20-30% on our core assemblies.
22081 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22083         * jit-icalls.c: truncl() is not needed and trunc() is
22084         the correct thing to do anyway (bug #58287).
22086 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
22088         * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
22089         if available.
22091 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
22093         * driver.c: enable loop optimizations by default.
22095 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
22097         * mini-x86.c: fix calc of max loop size when aligning loops start.
22099 2004-05-23  Zoltan Varga  <vargaz@freemail.hu>
22101         * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
22102         the stack.
22104 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
22106         * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
22107         should set carry.
22109         * basic-long.cs: Add tests for add/subtract of immediates with carry.
22111         * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
22112         
22113         * mini.c (inline_method): Allways inline some wrappers even if the cost
22114         is too large. Fixes #58785.
22116         * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
22117         
22118 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
22120         * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
22121         (crichton@gimp.org). Beginning of support for sparc/linux.
22123         * mini-sparc.c: Optimize retrieval of LMF address.
22125 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
22127         * exceptions-ppc.c:  handle alloca in methods with clauses.
22129 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
22131         * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
22133 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
22135         * mini.c: Delegate most of the abort signal work to 
22136           mono_thread_request_interruption, which also handles Stop and Suspend
22137           states.
22139 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
22141         * mini.c mini.h: Allow inlining of icall wrappers if the backend 
22142         supports the save/restore lmf opcodes.
22144 2004-05-19  Zoltan Varga  <vargaz@freemail.hu>
22146         * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
22147         by gcc-3.4 as well.
22149         * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
22151 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
22153         * mini.h mini.c (mini_method_compile): Only run abc removal pass on 
22154         methods which contain array accesses.
22156         * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
22157         boundaries. Fixes #58537.
22159         * iltests.il: Add regression test for #58537.
22161 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
22163         * mini-x86.c (mono_arch_local_regalloc): Last part of
22164         fix for bug #58633 (releasing register to early).
22166 2004-05-18  Miguel de Icaza  <miguel@ximian.com>
22168         * basic-long.cs: Add new regression test.
22170 2004-05-18  Patrik Torstensson <totte@hiddenpeaks.com>
22172         * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
22173         register too early on the chain.
22175 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
22177         * mini.c (create_helper_signature): Use a helper function to reduce
22178         the code which needs to be written. Also set the calling convention of
22179         icalls on windows. Fixes #57840.
22181 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
22183         * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
22184         exceptions-ppc.c: added helper function to get the instruction address
22185         from a signal handler context.
22187 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22189         * helpers.c: use g_get_tmp_dir. Invokes happyness 
22190         from gonzalo.
22192 2004-05-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22194         * helpers.c: Add new env variable to pass args to objdump.
22195         Specifically for those of us who love -Mintel. r=miguel, gonzalo.
22197 2004-05-17  Radek Doulik  <rodo@ximian.com>
22199         * Makefile.am (common_sources): added abcremoval.h so it get
22200         disted and daily mono packages on go-mono.com will build again
22202 2004-05-17  Massimiliano Mantione  <massi@ximian.com>
22204         * abcremoval.c: Fixed coding style, added copyright header.
22206         * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
22208         * mini.h: Added prototype for abc removal main function.
22210         * build_relations_propagation_table.pl: Added copyright header.
22212 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
22214         * basic-long.cs: reg test for complex ceq_long bug.
22216 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
22218         * mini-x86.c (mono_arch_local_regalloc): Correctly free 
22219         reg in long and clob case (bug #58343). Fixed/added comments.
22221 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
22223         * mini.c (mono_jit_runtime_invoke): Follow new convention
22224         of calling the invoke method with an function pointer.
22226 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
22228         * ChangeLog: Fix author of memory leak patch.
22230 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
22232         * Makefile.am: fix make dist as well...
22235 2004-05-14  Massimiliano Mantione  <massi@ximian.com>
22237         * cfold.c: Made so that conversions from pointer to int4 are no-ops
22238         on archs where pointers are 4 bytes long.
22240         * Makefile.am: Added abcremoval.c source file.
22242         * abcremoval.c: Added abcremoval.c.
22244         * abcremoval.h: Added abcremoval.h.
22246         * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
22248         * inssel.brg: Enabled bounds check removal.
22250         * mini.c: Added support for abcrem optimization.
22252         * mini.h: Added abcrem optimization label.
22254         * driver.c: Added support for abcrem optimization.
22256         * propagated_relations_table.def: Added propagated_relations_table.def.
22258 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
22260         * mini.c, cfold.c: fix style.
22262 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22264         * mini.c: handle issue with the low-level implementation of
22265         some long opcodes (bug #54209).
22267 2004-05-13 Ben Maurer  <bmaurer@users.sourceforge.net>
22269         * basic.cs: test for my new cmov stuff.
22271 2004-05-13      Patrik Torstensson
22273         * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
22274         opt and added peephole documentation.
22276 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
22278         * tramp-ppc.c: rewrote the generic trampoline code.
22280 2004-05-11      Patrik Torstensson
22282         * mini-x86.c: optimize long shl/shr asm code (one less branch)
22284 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
22286         * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
22288         * mini.h mini.c dominators.c: Applied patch from Derek Woo
22289         (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
22291         * mini.c: Add new icalls for AsAny marshalling.
22293 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
22295         * tramp-ppc.c, mini-ppc.c: more cleanups.
22297 2004-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22299         * mini.c: no warnings.
22301 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22303         * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
22305 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
22307         * mini.c: In the thread abort signal handler, if the thread is in the
22308         process of being stoped, don't throw the Abort exception, just stop the
22309         thread.
22311 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
22313         * tramp-ppc.c: removed old code.
22315 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22317         * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
22318         do some simple speed optimizations on ppc.
22320 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
22322         * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
22323         and large offsets in load/store.
22325 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
22327         * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
22328         it causes regressions.
22330 2004-05-07  Zoltan Varga  <vargaz@freemail.hu>
22332         * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
22333         support.
22335 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
22337         * jit-icalls.c: remove warnings.
22338         * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
22339         speedups for unsafe code.
22341 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
22343         * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
22345 2004-05-06  Zoltan Varga  <vargaz@freemail.hu>
22347         * basic-calls.cs: Add new regression test.
22349         * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
22350         more portable.
22352         * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
22354         * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
22355         is no longer used.
22357 2004-05-06      Patrik Torstensson
22359         * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
22360         long reg allocation in any reg (not only eax:edx) and implemented 
22361         long shl/shr ops in asm instead of helpers.
22363 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
22365         * mini-sparc.h: Fix warnings.
22367         * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
22368         stack.
22370         * mini-exceptions.c (mono_handle_exception): Call the filter in a
22371         separate statement for clarity.
22373         * mini-sparc.c: Update status.
22375 2004-05-04  Zoltan Varga  <vargaz@freemail.hu>
22377         * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
22378         here.
22380 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22382         * inssel-ppc.brg: another small pre-release workaround:
22383         we don't do overflow detection for long_sub_un.
22385 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22387         * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
22388         (also works around a weird ppc bug: 57957).
22390 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
22392         * tramp-ppc.c: trampoline fixes.
22394 Fri Apr 30 15:54:26 EDT 2004    Paolo Molaro <lupus@ximian.com>
22396         * mini-ppc.c: fixed typos.
22398 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
22400         * mini-ppc.c, exceptions-ppc.c: more code saves registers
22401         at the top of the stack. Fixed typos. Use a frame registers
22402         for all the methods with exception clauses.
22404 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
22406         * exceptions-ppc.c: restore fp registers.
22408 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
22410         * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
22411         order from the stack top (moved the stack room to save the
22412         return value for trace after the param area). Fixed corruption
22413         in restoring registers on unwind.
22415 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
22417         * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
22419 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22421         * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
22422         and prolog/epilog for methods that use it. Allow
22423         enough param area room for varargs methods. Fix miguel's
22424         breakage in exception handling.
22426 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
22428         * Makefile.am: run genmdesc only on current arch.
22430 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22432         * exceptions-x86.c:
22433         * mini-x86.h: fix the build on windows.
22435 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
22437         * 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.
22439         * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
22441         * mini-exceptions.c: New file.
22442         
22443         * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
22444         Move some parts of the x86 exception handling code to an 
22445         arch-independent file so it can be shared with other ports.
22447 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
22449         * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
22451 2004-04-26  David Waite  <mass@akuma.org>
22453         * driver.c: remove comma from end of enumeration declaration
22455 2004-04-26  Jackson Harper  <jackson@ximian.com>
22457         * driver.c: parse config file before loading first assembly. This
22458         allows the user gac to be enabled/disabled. 
22459         
22460 2004-04-23  Miguel de Icaza  <miguel@ximian.com>
22462         * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
22463         simpler mechanism: we do not care what is encoded initially
22464         (branch absolute or relative), we care about the code and its
22465         target.  I kept the old code for reference for now.
22467         The new code tries first to determine if the jump is anywhere in
22468         the -/+32 absolute meg range, if it succeeds, it encodes using the
22469         absolute branch;  If not, it tried to find something in the
22470         relative range, if not, it uses the handle_thunk code. 
22472 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
22474         * exceptions-ppc.c: use the correct ip register on macosx.
22476 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
22478         * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
22480 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
22482         * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
22483         Raise exception on integer divide by zero by hand since the hw
22484         doesn't support it. Handle NaNs in FP compares.
22486 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
22488         * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
22489         code reducing duplication between the platforms and enabled
22490         signal exception handling (on linux for now).
22492 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
22494         * exceptions-ppc.c: more macosx support.
22496 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
22498         * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
22500 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
22502         * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
22504 2004-04-19 Ben Maurer  <bmaurer@users.sourceforge.net>
22506         * iltests.il: more tests.
22508 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
22510         * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
22511         vars as well.
22513 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
22515         * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
22517 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
22519         * liveness.c: Mark variables as volatile in all basic blocks reachable
22520         from exception clauses.
22522 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
22524         * exceptions.cs (test_0_rethow_stacktrace): Make this work with
22525         inlining.
22527 2004-04-18 Ben Maurer  <bmaurer@users.sourceforge.net>
22529         * iltests.il, basic.cs: more tests for regalloc.
22531 2004-04-17 Ben Maurer  <bmaurer@users.sourceforge.net>
22533         * iltests.il: Some tests for register allocation modifications
22534         I have locally.
22536 2004-04-16  Zoltan Varga  <vargaz@freemail.hu>
22538         * exceptions.cs: Add regression test for bug #56782.
22540         * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
22541         original stack trace if an exception is rethrown. Fixes #56782. Oh,
22542         the beauty of fixing the same thing in 5 different files...
22544 2004-04-15  Zoltan Varga  <vargaz@freemail.hu>
22546         * mini.c (mono_method_to_ir): Do not compute coverage for inlined
22547         methods.
22549 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
22551         * mini.c: Add support for STRWLPARRAY marshalling convention.
22553 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
22555         * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
22556         to init the context to setup the regs pointer).
22558 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
22560         * exceptions-ppc.c: more exceptions work.
22562 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
22564         * mini.c: avoid reusing the same MonoInst on multiple trees: this is
22565         not allowed.
22567 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
22569         * inssel-x86.brg (reg): Add new rules for add, sub and mul that
22570         can use the memory directly.
22572         * cpu-pentium.md: Update documentation from a post from Zoltan. 
22574         add x86_add_membase, x86_sub_membase, x86_mul_membase
22576 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
22578         * mini-ppc.c: Remove unused definitions FLOAT_REGS and
22579         GENERAL_REGS they were also hardcoded for all PPC ports.
22581         (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
22583         Remove hard-coded limit for floating point registers, use
22584         PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
22586         Notice that in MacOS X calling conventions you can fit a lot more
22587         floating point values in registers, so I should update the PInvoke
22588         test to excercise the passing of floating point values on the
22589         stack (currently broken).
22590         
22591 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
22593         * tramp-ppc.c (create_trampoline_code): Added
22594         JUMP_TRAMPOLINE_SIZE. 
22595         (ppc_magic_trampoline): Follow the pattern from
22596         x86_magic_trampoline: if code is set to zero, return. 
22597         (create_trampoline_code): Always pass MonoMethod to the jump
22598         trampoline, before it was passing a null.
22599         (mono_arch_create_jump_trampoline): Implement the jump stub, could
22600         share the code with mono_arch_create_jit_trampoline. 
22602         * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
22603         implemented.
22604         (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
22605         implemented.  
22607         * cpu-g4.md: Added length for jmp instruction, the worst case
22608         scenario is 92 bytes (4 mandatory bytes, potential 19 registers
22609         for save_lmf).
22611 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
22613         * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
22615 2004-04-07  Zoltan Varga  <vargaz@freemail.hu>
22617         * mini.c: Only set bblock->real_offset when adding a new bblock, and
22618         before each IL instruction.
22620         * mini.c (CEE_BOX): Fix warnings.
22622 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22624         * mini.c: removed a few unused vars and extra whitespace.
22626 2004-04-05 Ben Maurer  <bmaurer@users.sourceforge.net>
22628         * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
22629         checks.
22630         (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
22631         index.
22632         (OP_GETCHR): use the above
22633         (CEE_LDELEMA): use the above.
22635         * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
22636         version of the generic impl.
22637         (MONO_EMIT_BOUNDS_CHECK_IMM): the same
22638         (CEE_LDELEMA): use the above.
22640 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
22642         * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
22643         Fixes #56317.
22645         * iltests.il: Added new regression test for #56317.
22647 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
22649         * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
22650         under NetBSD. Fixes #56450.
22652         * liveness.c (update_gen_kill_set): Fix previous patch.
22654 2004-04-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22656         * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
22658 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
22660         * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
22661         ldsfld and ldsflda.
22663         * inssel-sparc.brg: Add more optimizations.
22665         * mini-sparc.c: Replace multiply/divide with shifts if possible.
22667 2004-04-01  Martin Baulig  <martin@ximian.com>
22669         * mini.c (handle_box): New static function; moved the
22670         implementation of CEE_BOX here.
22671         (mono_method_to_ir): Added `constrained_call' variable.
22672         (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
22673         (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
22674         mono_method_get_constrained() to get the method.
22676 2004-04-01  Martin Baulig  <martin@ximian.com>
22678         * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
22679         (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
22680         (mono_method_to_ir): We don't need these macros anymore since
22681         mono_class_get_full() already takes care of it. 
22683 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22685         * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
22686         use @function (as doesn't accept #function here) and check the return
22687         value of system and stop if fails.
22689 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22691         * mini.c: set the timeout to 2s when calling mono_domain_finalize.
22693 2004-03-31  Zoltan Varga  <vargaz@freemail.hu>
22695         * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
22697         * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
22699         * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
22700         #56223.
22702         * basic-long.cs: Add test for negation of Int64.MinValue.
22704 2004-03-30  Zoltan Varga  <vargaz@freemail.hu>
22706         * mini-sparc.c: Update status.
22708         * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
22710         * exceptions-sparc.c: Fix return value in filters.
22712         * inssel-sparc.brg: Fix register allocation in some rules.
22714 2004-03-28  Martin Baulig  <martin@ximian.com>
22716         * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
22717         if neccessary.  
22719 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
22721         * mini-x86.c (mono_arch_patch_code): Fix warnings.
22722         
22723         * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if 
22724         dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
22725         remove unused conv_u4 opcode.
22727         * mini-x86.c: Remove valgrind workaround since it slows down things
22728         even when mono is not run under valgrind.
22730 2004-03-26  Zoltan Varga  <vargaz@freemail.hu>
22732         * mini-sparc.c: Update status.
22734         * inssel-sparc.brg: Add some optimizations.
22736         * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
22737         future delay slot filling. Add support for varargs, tail calls and JMP.
22739         * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of 
22740         CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
22742         * inssel.brg: Fix register allocation in OP_ARGLIST.
22744         * inssel.brg: Fix warnings.
22746 2004-03-25  Martin Baulig  <martin@ximian.com>
22748         * mini.c (inflate_generic_field): Removed.
22749         (mini_get_method): Removed, use mono_get_method_full(),
22750         (mini_get_class): Removed, use mono_class_get_full().
22751         (mono_method_to_ir): Pass our generic context to
22752         mono_field_from_token().        
22754 2004-03-25  Martin Baulig  <martin@ximian.com>
22756         * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
22757         of a `MonoMethod *'.
22758         (mini_get_method): Take a `MonoGenericContext *' instead
22759         of a `MonoMethod *'.
22760         (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
22761         a new local variable called `generic_context' which holds the
22762         current `MonoGenericContext *'; use it to lookup things.
22764 2004-03-24  Martin Baulig  <martin@ximian.com>
22766         * mini.c (mini_get_class): New static method; if we're inside a
22767         generic instance, inflate the class if neccessary.
22768         (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
22770 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
22772         * iltests.il: New regression test for #55976.
22774         * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
22775         #55976.
22777 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
22779         * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
22780         output.
22782 2004-03-23  Zoltan Varga  <vargaz@freemail.hu>
22784         * liveness.c: Consider SSA stores as well as loads when making vars
22785         volatile.
22787         * exceptions.cs: New regression tests for register allocation.
22788         
22789 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
22791         * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
22792         * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
22793           domain lock only to protect puntual access to data structures.
22794           Added access lock for sighash, jit_icall_hash_name, 
22795           jit_icall_hash_addr and domain->code_mp.
22797 2004-03-20  Zoltan Varga  <vargaz@freemail.hu>
22799         * driver.c: Print SIGSEGV handling method.
22801         * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
22803         * mini.c (setup_jit_tls_data): Handle case when this is called
22804         multiple times for a thread.
22806         * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx 
22807         is different from fbxx_un. Fixes #54303. Also use constants instead of
22808         magic numbers in a lot of places.
22810 2004-03-19  Zoltan Varga  <vargaz@freemail.hu>
22812         * exceptions.cs: Fix cctor test when --regression is used.
22814 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
22816         * mini-ppc.c, exceptions-ppc.c: basic exceptions support 
22817         for Linux/ppc.
22819 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
22821         * inssel-ppc.brg: fixed register assignments for some rules.
22823 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22825         * exceptions.cs: Add test for exceptions in static constructors.
22827         * mini.c (mono_jit_compile_method_with_out): Move the calling of
22828         static constructors outside the domain lock. Fixes #55720.
22830 2004-03-17  Martin Baulig  <martin@ximian.com>
22832         * mini.c (get_generic_field_inst): Removed, this'll never happen.
22833         (inflate_generic_field): Take the `MonoMethod *' instead of the
22834         `MonoClass *' and added support for generic method.
22835         (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
22836         have a `field->parent->gen_params', only inflate the field if it's
22837         an open constructed type.
22839 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22841         * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
22842         exception object instead of the preconstructed ones.
22844 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22846         * mini.c: reverted changed to sigsegv_signal_handler commited
22847         accidentally in the previous patch.
22849 2004-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22851         * mini.c:
22852         (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
22853         running --aot with an old assembly.
22855 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
22857         * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
22858         point values.
22860         * mini-sparc.c: Add support for v9 branches with prediction.
22862 2004-03-15  Bernie Solomon  <bernard@ugsolutions.com>
22864         * mini.c (mini_init): #warning is GNUC only
22866         * mini-sparc.h: implement __builtin_frame_address
22867         and __builtin_return_address for Sun C compiler
22869 2004-03-15  Zoltan Varga  <vargaz@freemail.hu>
22871         * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
22873 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
22875         * basic-calls.cs: Add test for unaligned byref long argument passing.
22877         * mini-ops.h: Add sparcv9 compare and branch instructions.
22879         * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
22880         v9 instructions if we have a v9 cpu.
22882         * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
22883         registers for global allocation.
22885         * exceptions-sparc.c: Fixes.
22886         
22887 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
22889         * liveness.c (mono_analyze_liveness): Optimized version.
22891         * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
22893         * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
22894         sparc work.
22896         * basic-float.cs basic-calls.cs: New regression tests.
22898 2004-03-10  Zoltan Varga  <vargaz@freemail.hu>
22900         * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
22901         sigaltstack implementation.
22903         * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
22904         
22905         * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
22906         stuff if SIGSEGV_ON_ALTSTACK is not defined.
22908 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
22910         * mini.c: Fix warnings.
22911         
22912         * mini.c (mono_resolve_patch_target): New function which contains the
22913         arch independent part of the patching process.
22915         * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
22916         patching code to a separate function.
22918 2004-03-09  Bernie Solomon  <bernard@ugsolutions.com>
22920         * mini.c (add_signal_handler): ifdef out on Windows
22922 2004-03-08  Zoltan Varga  <vargaz@freemail.hu>
22924         * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c 
22925         cpu-sparc.md: Add exception handling support + other fixes.
22927         * driver.c: Print --help output to stdout. Fixes #55261. Also fix
22928         typed GC detection in --version.
22930         * basic.cs exceptions.cs: New regression tests.
22932         * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
22933         the arch specific code can store data during a compilation.
22935         * mini-ops.h: Add OP_SETFRET.
22937         * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
22938         function, register a separate icall for each arity, so the icalls can
22939         get a wrapper.
22940         
22941         * mini.c (mono_print_tree): Print negative offsets in a more readable
22942         form.
22943         
22944         * mini.c: Make signal handling work on sparc.
22945         
22946         * mini.c (mini_init): Add emulation for lconv_to_r8_un.
22948         * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
22950         * jit-icalls.c: Emulate truncl by aintl on solaris.
22952         * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
22954 2004-03-05  Zoltan Varga  <vargaz@freemail.hu>
22956         * mini.c (mini_init): fconv_to_ovf can raise exceptions.
22958 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
22960         * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
22961         a MarshalByRef type, inline a method that performs the check, taking into
22962         account that the object can be a proxy. Also implemented tow new opcodes:
22963         CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
22964         * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and 
22965         OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
22967 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
22969         * mini-ppc.c: if a relative branch displacement is too big
22970         but it points to and area reachable with an absolute branch, 
22971         avoid the thunks.
22973 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
22975         * mini.c: optimize small copies in cpblk.
22977 2004-03-01  Zoltan Varga  <vargaz@freemail.hu>
22979         * basic-calls.cs basic-float.cs: New regression tests.
22981         * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at 
22982         negative offsets from %fp. Implement localloc. Fix local register 
22983         allocation. Fix the case when the this argument needs to be saved to
22984         the stack. Implement some missing opcodes.
22986 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
22988         * mini.c (mini_method_compile): Reenable global regalloc in methods
22989         with exception handlers.
22991         * linear-scan.c (mono_varlist_sort): Fix warning.
22993         * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
22995         * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
22996         regalloc costs.
22998         * liveness.c: Make all variables uses in exception clauses volatile, to
22999         prevent them from being allocated to registers. Fixes #42136.
23001 2004-02-25  Zoltan Varga  <vargaz@freemail.hu>
23003         * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
23004         causes regressions.
23006         * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
23007         argument to mono_arch_regalloc_cost.
23009         * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs 
23010         precisely.
23012 2004-02-24  Zoltan Varga  <vargaz@freemail.hu>
23014         * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c: 
23015         Make the cost of allocating a variable to a register arch dependent.
23017         * basic-calls.cs: Fix compilation of tests.
23018         
23019         * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
23020         helper function to cut back on the number of #ifdefs needed.
23022         * mini-ppc.c: Fix compilation.
23024         * basic-calls.cs: New regression tests.
23026         * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
23028         * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
23029         of l0 since that is callee saved.
23031         * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
23032         to virtual calls.
23034         * mini-sparc.c: Ongoing work + flag virtual calls with a special kind 
23035         of delay instruction.
23037         * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
23039         * mini.h (MonoCallInst): Add 'virtual' flag.
23041         * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
23043 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
23045         * *.cs: New regression tests.
23047         * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc 
23048         work.
23050         * mini.c (mono_runtime_install_handlers): Fix build.
23052         * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
23053         'signal_stack_size' members.
23055         * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an 
23056         alternate signal stack.
23058         * exceptions-x86.c: Add stack overflow handling.
23060         * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing 
23061         functions to arch independent code.
23063         * mini.c (mono_print_tree): Print more detailed info for load_membase
23064         opcodes.
23065         
23066 2004-02-23  Martin Baulig  <martin@ximian.com>
23068         * mini.c (mini_get_method): Set `gmethod->generic_inst'.
23070 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
23072         * mini-x86.c: fixed reg allocation for div/rem.
23074 2004-02-22  Miguel de Icaza  <miguel@ximian.com>
23076         * driver.c (mono_main): Report some configuratio options on --version.
23078 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
23080         * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
23081         low in the address space. Correctly flush memory in thunks where we
23082         output native code.
23084 2004-02-20  Martin Baulig  <martin@ximian.com>
23086         * mini.c (mini_get_method): New static method; inflate all generic
23087         methods and methods in open generic instances.
23088         (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
23089         (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
23091 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
23093         * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
23095         * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
23097 2004-02-19  Bernie Solomon  <bernard@ugsolutions.com>
23099         * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
23101         * mini-sparc.c (flushi mono_arch_output_basic_block): make
23102         it compile using Sun's compiler.
23104 2004-02-19  Zoltan Varga  <vargaz@freemail.hu>
23106         * 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.
23108         * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
23110 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
23112         * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
23113         code.
23114         * mini-ppc.c: handle calls outside of the allowed range with thunks
23115         allocated using the code manager.
23116         * tramp-ppc.c: use the code manager to hold generated native code.
23117         Fixed the magic trampoline to just patch vtable entries.
23119 2004-02-17  Zoltan Varga  <vargaz@freemail.hu>
23121         * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
23122         independent file.
23124 2004-02-16  Zoltan Varga  <vargaz@freemail.hu>
23126         * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
23127         PPC.
23129         * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
23130         if we have a working __thread implementation.
23132         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove 
23133         OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
23135 2004-02-15  Zoltan Varga  <vargaz@freemail.hu>
23137         * mini-x86.c: Fix compilation under gcc 2.
23138         
23139 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
23141         * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
23142         contains a call to the wrapped function.
23144         * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add 
23145         OP_<CALL>_IMM opcodes, and use them under X86.
23146         
23147         * mini.c (mono_jit_find_compiled_method): Fix warning.
23149         * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
23151         * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
23153         * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
23154         functionality to mini.c.
23156         * mini.c (mono_create_jump_trampoline): New function to create a jump
23157         trampoline. Return a compiled method instead of a trampoline if it
23158         exists. Add a cache for jump trampolines.
23160         * mini.c (mono_jit_find_compiled_method): New function to return a
23161         compiled method if it exists.
23163         * mini-x86.c: Call mono_create_jump_trampoline instead of 
23164         mono_arch_create_jit_trampoline.
23166         * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
23167         a jump trampoline. Fixes #52092.
23168         
23169 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
23171         * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
23172         which is not up-to-date. Add check_corlib_version () instead.
23174         * mini.c (mini_init): Call mono_thread_attach () so embedders do not 
23175         have to call it.
23176         
23177         * mini.c (mono_runtime_install_handlers): Remove check for valgrind
23178         since newer valgrind versions do not need it.
23180         * mini.c (mono_jit_compile_method_with_opt): New helper function to
23181         compile a method with a given set of optimizations.
23183         * mini.c: Compile icall wrappers on-demand instead of at startup.
23185         * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
23186         wrapper for an icall.
23188 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
23190         * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
23191         #54063.
23193         * iltests.il: Add test for non-empty stack before switch instruction.
23195 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
23197         * mini.c: Add support for new stringbuilder marshalling conventions.
23199         * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
23201 2004-02-01  Martin Baulig  <martin@ximian.com>
23203         * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
23204         in `ginst->mtype_argv'.
23206 2004-01-31  Miguel de Icaza  <miguel@ximian.com>
23208         * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
23209         facilitate grepping.
23211 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
23213         * mini.c: fixed buglet in initobj generic implementation for references.
23215 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
23217         * Makefile.am: make the version script conditional.
23218         * jit-icalls.c: handle missing truncl().
23220 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
23222         * exceptions.cs: Add more tests for double->int conversion.
23224         * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
23225         we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
23227 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
23229         * driver.c: make --verbose --version emit an error
23230         if the loaded corlib doesn't match the runtime version.
23232 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23234         * mini-ppc.h: export ppc_patch().
23235         * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
23236         * tramp-ppc.c: call convention fixes: Linux/PPC support should be
23237         on par or better than on MacOSX.
23239 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
23241         * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
23242         mono_lookup_pinvoke_call.
23244         * mini-x86.c: Under windows, the default pinvoke calling convention is
23245         stdcall. Fixes #52834.
23247         * mini.c (optimize_branches): Add an upper bound to the number of
23248         iterations to prevent infinite loops on strange loops. Fixes #53003.
23250 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23252         * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
23253         and ISINST. Fixes #52093.
23255         * objects.cs (test_0_vector_array_cast): New tests.
23256         
23257 2004-01-15  Zoltan Varga  <vargaz@freemail.hu>
23259         * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
23260         checking in Array.Set ().
23262         * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
23263         #52590.
23265         * object.cs (test_0_multi_array_cast): New regression test.
23267 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
23269         * exceptions-ppc.c: fix build on Linux/PPC.
23271 2004-01-14  Zoltan Varga  <vargaz@freemail.hu>
23273         * tramp-x86.c (x86_magic_trampoline): Disable code patching when
23274         running under valgrind.
23275         (x86_magic_trampoline): Fix build bustage.
23277         * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
23278         negative values as well. This is needed for the encoding of the line number
23279         info, since sometimes the line numbers are not in increasing order.
23281 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
23283         * cpu-pentium.md (localloc): Increase the size of the localloc 
23284         instruction since it is a loop under Win32.
23286         * debug-mini.c (record_line_number): Get rid of unneccesary memory
23287         allocation.
23289 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
23291         * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c 
23292         tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from 
23293         Max Horn (max@quendi.de). Fix file names in comments.
23295 2004-01-03  Zoltan Varga  <vargaz@freemail.hu>
23297         * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
23298         avoid stack overflow.
23299         (replace_usage): Avoid uninitialized variable warnings.
23301         * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
23302         and taking the address of valuetype variables.
23304 2004-01-03  Patrik Torstensson
23306         * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
23307         for other purposes than FP later on.
23309 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
23311         * mini.c (mono_method_to_ir): Prevent register allocation for arguments
23312         of tail calls.
23314 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
23316         * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
23318 2003-12-30  Patrik Torstensson <p@rxc.se>
23320         * mini-x86.h: Decreased number of availiable fp regs.
23321         Solves corner cases with FP spilling.
23323 2003-12-23  Patrik Torstensson <p@rxc.se>
23325         * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
23326         for floating point stack tracking / spilling on x86. 
23327         Fixes bug #49012.
23328         
23329         * basic-float.cs: added float mul overflow test.
23331 2003-12-23  Zoltan Varga  <vargaz@freemail.hu>
23333         * mini.c (mono_method_to_ir): Add workaround for bug #51126.
23335 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23337         * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
23338         supports for cond branches that overflow the immediate
23339         overflow offset. mcs can compile simple programs.
23341 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
23343         * exceptions-ppc.c: exception handling support wip:
23344         finally handlers get run on exception.
23346 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
23348         * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while 
23349         profiling.
23351 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
23353         * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
23354         initial support for stack walking and unwinding.
23356 2003-12-18  Zoltan Varga  <vargaz@freemail.hu>
23358         * driver.c (mono_main): Make corlib-out-of-sync message more 
23359         descriptive. Also remove verify_corlib call.
23361 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
23363         * mini.c: make CEE_NEWARR calls and other emulated opcodes 
23364         not overlap with other call's arguments, too.
23366 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
23368         * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c: 
23369         move to arch-specific code the choice of arch-specific
23370         intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
23371         * mini.c: ensure emulation calls will not interleave
23372         with other calls.
23374 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
23376         * tramp-ppc.c, basic-calls.cs: rework trampolines so that
23377         the magic trampoline stack frame is dropped before executing
23378         the new method.
23380 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
23382         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
23383         and integer to fp conversions. Added support for overflowing
23384         arguments on the stack. Reserve a couple more registers as temps.
23385         Added support for aot compilation (as output still needs to be
23386         tweaked, though).
23388 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
23390         * mini-ppc.c, basic-long.cs: fix jumps to known labels.
23391         Don't overwrite return register in some corner cases.
23393 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
23395         * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
23396         static constructors when AOT compiling.
23398         * driver.c (mono_main): Call mono_check_corlib_version.
23400 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
23402         * cpu-g4.md, basic.cs: fixed div target register.
23404 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
23406         * mini-ppc.c, basic.cs: shl_imm fix with test.
23408 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
23410         * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing 
23411         structures by value. Misc fixes.
23412         * objects.cs: more tests.
23414 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
23416         * mini-ppc.c: lconv.ovf.i implemented.
23418 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23420         * mini.c:
23421         (mini_init): don't error out if someone already called g_thread_init.
23423 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
23425         * exceptions-x86.c, exceptions-ppc.c: allow the exception object
23426         to be any type per the spec. Fix abnormal memory usage when
23427         the same object is repeatedly thrown.
23429 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
23431         * mini.c: check for overruns in IL code.
23433 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
23435         * TODO: Add/remove some todo entries.
23437 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
23439         * driver.c (mono_main): Call mono_verify_corlib.
23441 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
23443         * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy. 
23444         This has been moved to mini.c
23445         * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
23446         type being casted is marshalbyref it could be a proxy, so instead of
23447         emitting the type check code, emit a call to a runtime method that will
23448         perform the check by calling CanCastTo if needed.
23450 2003-12-06  Zoltan Varga  <vargaz@freemail.hu>
23452         * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
23453         methods with large stack frames under Win32.
23455 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
23457         * Makefile.am: Distribute regression tests.
23459         * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
23460         at the end instead of inserting each variable into the sorted list.
23462         * linear-scan.c (mono_varlist_sort): New helper function.
23463         
23464 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
23466         * mini.c: ensure arguments and locals are within bounds.
23468 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
23470         * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and 
23471         related fixes.
23473 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
23475         * mini.c (mono_cprop_copy_values): Fix crash.
23477         * aot.c: Set verbosity back to 0.
23478         
23479 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23481         * regalloc.c: complete memory leak fix by Laurent Morichetti
23482         (l_m@pacbell.net).
23484 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
23486         * driver.c (main_thread_handler): Revert the previous patch.
23488         * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
23489         under valgrind.
23491         * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
23492         memory from the memory pool.
23494         * driver.c (main_thread_handler): Turn on all optimizations when
23495         --aot is used.
23497         * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
23498         an array for better performance.
23500         * regalloc.c (mono_regstate_assign): Fix memory leak.
23502         * debug-mini.c (mono_debug_serialize_debug_info): New function to
23503         serialize the debug info.
23505         * debug-mini.c (mono_debug_add_aot_method): New function to load the
23506         debug info from the serialized representation.
23508         * aot.c: Save debug info into the generated file and load it when 
23509         loading a method.
23511         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
23513 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
23515         * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
23516         More FP-related fixes.
23518 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
23520         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
23521         and register allocation buglet. Hello world now runs.
23523 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
23525         * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
23526         * tramp-ppc.c: fixed class init trampoline.
23527         * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
23529 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
23531         * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
23532         mini.c: more ppc changes/fixes.
23534 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
23536         * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
23537         Also optimize the case when the arguments are the same in the caller 
23538         and in the callee.
23540         * iltests.il: Add tests for tail calls with valuetype arguments.
23542 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
23544         * mini-ppc.c: fixes for struct return type.
23546 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
23548         * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move 
23549         mono_spillvar_offset() to arch-specific code.
23551 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
23553         * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
23555 2003-11-27  Zoltan Varga  <vargaz@freemail.hu>
23557         * exceptions-x86.c: Fix stack space leaks.
23558         
23559         * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
23560         registers from the lmf if the method has save_lmf set.
23562 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
23564         * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
23565         of icall wrappers into InvokeInDomain, since these are now per-domain.
23567 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
23569         * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
23570         make some opcode emulation and intrinsic ops enabled/disabled 
23571         according to the architecture. More fixes.
23573 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
23575         * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
23577 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
23579         * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
23580         arch-specific handling for 'this' and struct return type to
23581         arch-specific code.
23583 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23585         * aot.c: prevent divide by zero error when reporting (it happened with
23586         Accessibility.dll).
23588 2003-11-25  Zoltan Varga  <vargaz@freemail.hu>
23590         * mini.h (inst_switch): Remove unused macro.
23592 2003-11-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23594         * aot.c:
23595         (load_aot_module): free 'info->methods' and 'info' properly. No more
23596         "free(): invalid pointer blah" messages when you have an old aot
23597         compiled assembly.
23599 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
23601         * jit-icalls.c, mini.c: Added support for context static fields.
23603 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
23605         * mini.c (mono_method_blittable): Methods which set LastError are not 
23606         blittable either. Fixes #51108.
23607         
23608 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
23610         * mini.c: flush icache.
23611         * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
23613 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
23615         * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
23617 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
23619         * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
23620         safe on IA32.
23622         * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with 
23623         vararg calls.
23625         * inssel.brg (CEE_MKREFANY): Fix AOT case.
23627 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
23629         * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div 
23630         instruction when the result is discarded.
23632         * iltests.il (test_0_div_regalloc): New regression test.
23634         * arrays.cs: Fix compilation error.
23636 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
23638         * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
23639         float rules to inssel-x86.brg: sane architectures with FP registers
23640         don't need to implement these rules.
23642 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
23644         * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
23646 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
23648         * mini.h, inssel-long32.brg: fixed endianess issues in int64
23649         implementation of 32 bit systems.
23651 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
23653         * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
23654         (Jeroen Zwartepoorte).
23656 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
23658         * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
23659         the caller and the callee matches.
23660         
23661         * mini.c (mono_method_to_ir): Add comment.
23663         * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
23664         signbit is missing on some platforms.
23666 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
23668         * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
23670         * mini.c (setup_jit_tls_data): Call the new function.
23671         
23672         * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
23674         * mini-x86.c: Add experimental support for fast access to the lmf
23675         structure under NPTL/Linux 2.6.x.
23677 2003-11-06  Martin Baulig  <martin@ximian.com>
23679         * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
23680         `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
23681         the debugger.
23683 2003-11-02  Martin Baulig  <martin@ximian.com>
23685         * mini.c (inflate_generic_field): New static method.
23686         (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
23687         generic instance and the field is declared in a generic type, call
23688         inflate_generic_field() to inflate it.  Fixes gen-28.cs.
23690 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
23692         * mini.h mini.c (mono_method_same_domain): New function to return
23693         whenever the caller and the callee are in the same domain.
23695         * tramp-x86.c (x86_magic_trampoline): Use the new function.     
23697 2003-10-30  Martin Baulig  <martin@ximian.com>
23699         * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
23700         similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
23701         method parameters.
23702         (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
23703         MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS(). 
23705 2003-10-29  Zoltan Varga  <vargaz@freemail.hu>
23707         * mini.c mini-ops.h inssel.brg: Implement undeniable exception 
23708         propagation.
23710         * mini.c (sigusr1_signal_handler): Move creation of the thread abort
23711         object here, so it is in the correct appdomain etc.
23713 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
23715         * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
23716         already done.
23717         (mono_method_to_ir): Avoid freeing the type created returned from
23718         mono_type_create_from_typespec, since it is put into an internal cache
23719         by the function. Fixes pointer.exe.
23721         * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal 
23722         trampolines for icalls and pinvokes as well. Fixes #33569.
23724 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
23726         * mini.c: Update after appdomain changes.
23728         * mini.c (mono_jit_compile_method_inner): Allways compile native
23729         method wrappers in the root domain, since there can only be one
23730         instance of them, whose address is stored in method->info.
23732 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
23734         * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
23735         environment variable. Instead detect automatically whenever running
23736         under valgrind using the magic macro RUNNING_ON_VALGRIND from
23737         valgrind.h.
23739 2003-10-16  Miguel de Icaza  <miguel@ximian.com>
23741         * trace.c, trace.h: New files that implement the new trace option
23742         parsing. 
23744         * driver.c: Document new --trace options.
23746         * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
23747         mini-x86.c: Apply:
23749         -       if (mono_jit_trace_calls)
23750         +       if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
23752         * mini.h: prototypes.
23753         
23754 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
23756         * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
23758         * mini.c inssel.brg: Implement typedefbyref opcodes.
23760         * mini.c (mono_jit_compile_method): Remove unused local variable.
23762         * mini.c (mono_jit_compile_method_inner): Ditto.
23763         
23764 2003-10-12  Zoltan Varga  <vargaz@freemail.hu>
23766         * tramp-x86.c (x86_class_init_trampoline): Fix build.
23767         
23768         * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
23770 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
23772         * mini.c (mono_no_aot): Remove unused global variable.
23774         * mini.c: Thread safety fixes.
23776 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
23778         * mini.c (mono_create_class_init_trampoline): Add a lock around
23779         class_init_hash_addr.
23781         * arrays.cs (test_0_newarr_emulation): Add new regression test for
23782         #30073.
23784         * mini.c: Decompose the NEWARR instruction before decomposing its
23785         arguments. Fixes #30073.
23787 2003-10-08  Zoltan Varga  <vargaz@freemail.hu>
23789         * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
23790         convention.
23792 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
23794         * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
23796         * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
23798         * driver.c: Add support for compiling icall wrappers to --compile.
23800 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
23802         * inssel.brg: The empty value in class->interface_offsets is -1, not
23803         0. Fixes #49287.
23805 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
23807         * objects.cs: New test for 'is' operator on an array of interfaces.
23809 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
23811         * tramp-ppc.c: update trampoline code to support jumps
23812         and class initialization.
23814 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
23816         * mini.c (mono_jit_compile_method): Fix reading of freed memory.
23818         * inssel.brg (OP_UNBOXCAST): Fix #46027.
23820         * inssel.brg (OP_UNBOX): Remove unused rule.
23822         * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
23823         region instead of one for each method. Fixes #47813.
23825 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
23827         * exceptions.cs (test_0_nested_finally): New regression test for
23828         nested exception handlers.
23830         * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
23832         * mini.c (mono_method_to_ir): Avoid inlining tail calls.
23834         * mini.c (mono_method_to_ir): Fix tail recursion in the presence of 
23835         inlining.
23837         * mini.c (mono_method_check_inlining): Make the inlining limit 
23838         configurable by an environment variable.
23839         
23840         * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
23842         * mini.h: Bump AOT file version.
23844         * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a 
23845         token, store the image along with the token, since the token might not 
23846         refer to the same image as the method containing the relocation, 
23847         because of inlining.
23849 2003-09-27  Zoltan Varga  <vargaz@freemail.hu>
23851         * mini.c (mono_precompile_assemblies): New function to compile
23852         all methods in all loaded assemblies.
23854         * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
23856         * regalloc.h regalloc.c (MonoRegState): Change the type of 
23857         iassign and fassign to int*, since they can contain large negative
23858         values if the register is spilled. Also added some comments. Fixes
23859         #45817.
23861         * exceptions-x86.c (seh_handler): Fix handling of system exceptions
23862         under Win32. Fixes #42964.
23864 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
23866         * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
23868         * aot.c: Added support for AOT compiling methods which contain calls
23869         to wrappers. Currently, only remoting-invoke-with-check wrappers are
23870         handled.
23871         
23872         * driver.c (compile_all_methods): Run the compilation in a thread
23873         managed by mono. Fixes #44023.
23875         * mini.c (mono_codegen): Print full method name in verbose output.
23877         * mini-x86.c (mono_arch_patch_code): Fix warning.
23878         
23879         * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
23880         jumps, since the method we are jumping to might be domain-specific.
23882         * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
23884 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
23886         * inssel.brg: string chars are unsigned.
23888 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
23890         * TODO: New todo item.
23892         * tramp-x86.c (x86_class_init_trampoline): New trampoline function
23893         which calls mono_runtime_class_init and patches the call site to
23894         avoid further calls.
23895         (mono_arch_create_class_init_trampoline): New arch specific function 
23896         to create a class init trampoline.
23897         (create_trampoline_code): Generalized so it can create
23898         class init trampolines as well.
23900         * mini.c (helper_sig_class_init_trampoline): New helper variable.
23901         (mono_create_class_init_trampoline): New function to create and cache
23902         class init trampolines.
23903         (mono_find_class_init_trampoline_by_addr): New function to lookup the
23904         vtable given the address of a class init trampoline. Used by the
23905         patching process.
23906         (mono_codegen): Generate a call to a trampoline instead of
23907         mono_runtime_class_init in LDSFLD[A].
23908         (mono_codegen): Add relocations for the new trampoline.
23909         
23910         * mini.h mini-x86.c aot.c: Added a new relocation type: 
23911         MONO_PATCH_INFO_CLASS_INIT.
23913         * mini.h: Bump AOT version number.
23915         * aot.c: Create a copy of the loaded code instead of using the original
23916         so methods which call each other will be close in memory, improving
23917         cache behaviour.
23918         
23919         * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
23920         patch since it breaks the regression tests.
23921         
23922         * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
23923         for the register saving instruction sequence since the 
23924         frame_state_for function in glibc 2.3.2 don't seem to detect it.
23926 2003-09-14  Zoltan Varga  <vargaz@freemail.hu>
23928         * TODO: Fix todo item && remove another.
23930 2003-09-12  Zoltan Varga  <vargaz@freemail.hu>
23932         * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
23933         previous checkin.
23935         * aot.c: Moved the check for MONO_LASTAOT into the initialization
23936         function of the module.
23938         * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
23939         turning on/off the usage of AOT code. Got rid of mono_no_aot and the
23940         --no-aot command line option.
23942 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
23944         * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
23945         by Bernie Solomon (bernard@ugsolutions.com).
23947         * inssel.brg: Refactor the interface offset table related code into
23948         its separate functions and add support for the AOT case.
23950 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
23952         * aot.c (mono_aot_get_method_inner): Fix memory leak.
23953         
23954         * aot.c: Added mono_aot_verbose variable and made all debugging
23955         output depend on the value of this variable.
23957         * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
23958         method_label and info_label.
23960         * mini.h mini-x86.c aot.c: Added a new relocation type 
23961         MONO_PATCH_INFO_IID for klass->interface_id.
23963         * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
23964         the MonoJitInfo structure.
23966         * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
23967         a non-root appdomain in shared mode.
23969 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
23971         * aot.c: make aot loader less verbose. Remove free of unused variable.
23973 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
23975         * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
23977         * .cvsignore: Added *.dll.
23979         * mini.c (mono_print_tree_nl): New function callable while debugging.
23981         * mini.c (mono_print_code): Export this.
23983         * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
23984         patched code.
23986 2003-09-05  Zoltan Varga  <vargaz@freemail.hu>
23988         * mini.h (MonoCompile): Added 'jit_info' field.
23990         * mini.c (mini_method_compile): Save the generated MonoJitInfo into
23991         the cfg structure, since it is needed by the AOT compiler.
23993         * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
23995         * aot.c: A major rewrite. Changes include:
23996         - save exception tables for methods which have them.
23997         - cache failed lookups in aot_get_method () to avoid the (slow) calls 
23998         to g_module_symbol.
23999         - reworked the file format so it is now much smaller and needs
24000         fewer relocation entries.
24001         
24002 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
24004         * aot.c (load_aot_module): Fix build bustage on platforms without
24005         Boehm GC.
24007 2003-09-04  Martin Baulig  <martin@ximian.com>
24009         * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
24011 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
24013         * TODO: Some new optimization ideas.
24015         * aot.c: Move AOT module loading logic here from mono_assembly_open.
24017         * aot.c: Save the optimization flags used to compile the code into
24018         the AOT module.
24020         * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
24021         support emitting domain specific code.
24022         
24023         * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is 
24024         no longer domain neutral. It can be made domain neutral by compiling 
24025         with --optimize=shared.
24027         * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
24028         between appdomains.
24030         * driver.c mini.h mini.c: New --no-aot debugging option which disables
24031         loading of AOT code.
24033         * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
24034         
24035         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
24036         if there is no domain neutrality information.
24038 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
24040         * aot.c (mono_compile_assembly): Emit a symbol containing the file 
24041         format version into the generated library.
24043         * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
24044         callee method into the caller since one of them could be shared.
24046         * mini.h mini-x86.c aot.c: Added two new relocations so throwing
24047         system exceptions from AOT code now works.
24049         * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling 
24050         method if it is domain neutral and the callee is not.
24052         * graph.c (cfg_emit_one_loop_level): Fix warning.
24054 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
24056         * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
24057         last checkin.
24059 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
24061         * mini.c (mini_init): Call mono_marshal_init () explicitly since it
24062         is needed  by code which is executed before mono_runtime_init ().
24063         Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
24064         
24065         * mini.c (mono_thread_abort): Fix warning.
24066         (mono_jit_compile_method): Call static constructor in the AOT case too.
24068         * aot.c (mono_compile_assembly): Fix warning.
24070 2003-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24072         * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
24074 2003-08-28  Zoltan Varga  <vargaz@freemail.hu>
24076         * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
24078         * cpu-pentium.md: Fix the length of call opcodes so they include the
24079         ESP restoring instruction. Fixes #47968.
24081 2003-08-28  Martin Baulig  <martin@ximian.com>
24083         * mini-x86.c (mono_arch_call_opcode): Added support for
24084         MONO_TYPE_GENERICINST.
24086         * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.       
24088 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
24090         * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
24091         a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
24093         * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
24094         metadata_section.
24096 2003-08-26  Martin Baulig  <martin@ximian.com>
24098         * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
24099         when reporting an error, set this to the actual error location.
24100         (mono_method_to_ir): Report the correct error location if
24101         get_basic_blocks() returned an error.
24103 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
24105         * mini.c (mono_type_blittable): OBJECT is not blittable.
24106         (mono_method_blittable): Methods which have marshalling descriptors
24107         are not blittable either. Fixes #47842.
24109 2003-08-22  Zoltan Varga  <vargaz@freemail.hu>
24111         * driver.c mini.c: Use an environment variable instead of a global 
24112         variable. Also fix the build.
24114         * mini.c (mini_init): Call g_thread_init () to make glib thread-safe. 
24115         Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for 
24116         reporting this. 
24118         * driver.c mini.c: Added --with-valgrind option to turn off some
24119         code which prevents mono from running under valgrind.
24121         * mini.c (mono_emit_call_args): Fixed warning.
24123         * mini.c (mono_emulate_opcode): Fixed warning.
24125 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24127         * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
24128         * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
24129         regalloc.c, regalloc.h: specify available registers in arch-specific
24130         code and support floats in the regallocator (patch by Laurent Morichetti 
24131         <l_m@pacbell.net>)
24133 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
24135         * mini.c: mono_thread_current() can be called only after
24136         mono_runtime_init(): rearrange code to not call it early on.
24138 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24140         * mini.c: allocate jump tables in the code mempools.
24142 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24144         * mini.c, mini.h: make sure per-thread data allocated by the jit is
24145         freed.
24147 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
24149         * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
24150         12 to 16.  This fixes bug #47453.
24153 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24155         * mini-ppc.c: fixed indexed load and unsigned compares.
24157 2003-08-06  Lluis Sanchez Gual  <lluis@ximian.com>
24159         * mini.c: reenabled installation of handler for
24160           thread abort signal.
24162 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24164         * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
24165         by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
24166         until it's fixed and actually useful.
24168 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
24170         * inssel-long32.brg: couple more opcodes implemented.
24172 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
24173         
24174         * mini-sparc.c: Even more opcodes implemeted.
24176 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
24178         * mini-sparc.c: More opcodes implemented.
24180 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
24182         * mini-sparc.c: More opcodes implemented.
24184 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
24186         * inssel-sparc.brg: Add some needed rules.  Direct
24187         copy from PPC.
24188         * Makefile.am: Use inssel-sparc.brg
24189         * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
24190         an assert happy for now.
24192 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
24194         * mini-sparc.c: Fixed compile errors.
24195         * exceptions-sparc.c: Same.  We now produce a mono binary 
24196         on sparc-linux.  Yea.
24198 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
24200         * mini-sparc.c: Renamed registers.  Also some macro cleanups.
24201         * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
24202         They compile, but do not work.
24204 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24206         * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
24207         mini-sparc.h, tramp-sparc.c: Beginning of sparc support
24208         from Mark Crichton <crichton@gimp.org> and Christopher Taylor
24209         (ct@gentoo.org).
24211 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24213         * mini.c: more opcodes implemented and better support for generics.
24215 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
24217         * cpu-g4.md, cpu-pentium.md: updates for new instructions.
24218         * mini.c, mini.h: first cut at generics support: some new instructions 
24219         added and changed the behaviour of some of the existing ones.
24221 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
24223         * mini.c: Removed definition of metadata_shared mutex here.
24225 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
24227         * mini-x86.c: make vararg calls work for instance methods.
24229 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
24231         * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
24232         returns the arguments in a separte list, now.
24234 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24236         * aot.c, mini.c: updates for array type representation changes.
24238 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
24240         * mini.c: register function to perform jit shutdown.
24242 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24244         * mini.c: use a faster allocator if possible.
24246 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
24248         * aot.c: some cleanups and portability changes.
24250 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24252         * mini.c: use faster allocation for CEE_BOX if possible.
24254 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
24256         * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
24257         Moved inlined mempcy code to its own function so that is can be
24258         reused. Added an inline memset function as well (optimized initobj).
24259         * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
24261 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24263         * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
24265 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24267         * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
24268         arch code can setup the cpu for CLR execution, if needed.
24269         We use it on x86 to set the precision of FP operations.
24271 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24273         * mini.c: disable some optimizations if we can guess they'll cost too
24274         much for a given method.
24276 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
24278         * mini.h mini.c: Rework last patch based on suggestions by Paolo.
24279         
24280 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
24281         * mini.h mini.c mini-x86.c: Added instruction level coverage 
24282         info collection support.
24284 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24286         * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
24287         is now implemented in the profiling API. Get rid of a couple of
24288         unnecessary global variables.
24290 2003-06-15  Nick Drochak <ndrochak@gol.com>
24292         * basic-long.cs: tests for negative values for bigmul, and unsigned.
24293         * cpu-g4.md: add op_bigmul and op_bigmul_un
24294         * cpu_pentium.md: add op_bigmul_un
24295         * inssel-long32.brg: add rule for unsigned bigmul
24296         * mini-ops.h: define OP_BIGMUL_UN
24297         * mini-x86.c: THE BUG: handle (un)signed properly
24298         * mini.c: choose unsigned opcode if needed.
24299         This set of patches fixes bug #44291
24301 2003-06-13  Dietmar Maurer  <dietmar@ximian.com>
24303         * mini.c (optimize_branches): improved to handle all kinds of
24304         conditional branches.
24306 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
24308         * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
24309         don't raise exceptions.
24311 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24313         * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
24314         to arch-specific files.
24316 2003-06-09  Martin Baulig  <martin@ximian.com>
24318         * Makefile.am (libs): Added $(LIBGC_LIBS).
24320 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
24322         * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
24323         and OP_ATAN (fixes bug#44293).
24325 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
24327         * Makefile.am, mini-x86.c: rename cpu description array to
24328         pentium_desc, since some compilers define the 'pentium' preprocessor
24329         symbol.
24331 2003-05-28  Dietmar Maurer  <dietmar@ximian.com>
24333         * mini.c (mini_select_instructions): add explicit branch if the
24334         following block is not the false target of a conditional branch -
24335         we need this with any optimization that reorder or remove bblocks
24337         * mini.c (optimize_branches): bug fixes
24339 2003-06-06  Dietmar Maurer  <dietmar@ximian.com>
24341         * mini.c (mono_method_to_ir): inline static readonly fields
24343         * ssa.c (fold_tree): start cfold support for long (very simple
24344         cases only)
24346         * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
24348 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24350         * inssel.brg: fixed memcpy (bug #44219).
24352 2003-06-05  Dick Porter  <dick@ximian.com>
24354         * driver.c: Set the glib log levels to not abort if g_message
24355         recurses.
24357         g_set_prgname() has to happen before mini_init() so that the
24358         process handle gets the info.
24359         
24360 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24362         * driver.c: add intrins to the default optimizations to get wider
24363         exposure.
24365 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
24367         * mini.h: some large basic blocks will overflow a 16-bit
24368         integers for symbolic registers.
24370 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
24372         * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
24373         (mono_arch_output_basic_block): fix bug 43499 
24375 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
24377         * mini.c: kill duplicated definition of mono_debug_format.
24379 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
24381         * mini-x86.c, arrays.cs: fixed register allocation bug.
24383 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
24385         * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
24387         * mini.c (mini_get_opcode_for_method): inline IEEERemainder
24389 2003-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24391         * mini.c:
24392         (print_method_from_ip): also print source location information if
24393         available.
24395 2003-06-02  Dietmar Maurer  <dietmar@ximian.com>
24397         * mini.c (mono_find_block_region): bug fix in region code
24398         (mini_method_compile): enable removing unreachable code again, but
24399         only in methods without exception clauses.
24401 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
24403         * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
24404         Implemented arglist opcode and handling of TypedReference type.
24405         Fixed x86 call convention when a structure is returned.
24406         Minimal support for calling static vararg methods.
24408 2003-05-30  Dietmar Maurer  <dietmar@ximian.com>
24410         * mini.c (mini_method_compile):  always remove unreachable code,
24411         because the code in them may be inconsistent  (access to dead
24412         variables for example).
24414 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
24416         * driver.c, debug-mini.c: warning fixes.
24418 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
24420         * Makefile.am, jit.h, mini.h: install header for embedding mono.
24422 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
24424         * mini.c: thread-static fields are registered in mono_class_vtable(),
24425         so ensure the function is called before checking for them.
24427 2003-05-27  Dietmar Maurer  <dietmar@ximian.com>
24429         * mini.c (optimize_branches): fix for bug 43586
24431         * jit-icalls.c (mono_llmult_ovf): added an additional check for
24432         overflow (fixes Bug #43639)
24434 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24436         * mini.c, objects.cs: allow the use of stobj for primitive types.
24438 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24440         * mini.c: be less strict about argument checking until we support
24441         running the verifier.
24443 2003-05-27  Nick Drochak <ndrochak@gol.com>
24445         * basic-long.cs: tests for (ulong)int * (ulong)int also
24446         * mini.c: use the same trick for (ulong)int * (ulong)int
24448 2003-05-27  Nick Drochak <ndrochak@gol.com>
24450         * basic-long.cs: add regression test for (long)int * (long)int
24451         * cpu-pentium.md: add op_bigmul specification
24452         * inssel-long32.brg: add OP_BIGMUL rule
24453         * mini-ops.h: add OP_BIGMUL
24454         * mini-x86.c: register allocator: handle case where src1 needs to be
24455         in EAX.
24456         * mini.c: substitute special BIGMUL opcode in the tree for 
24457         (long)int * (long)int
24459 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
24461         * jit-icalls.c: call the type ctor on field access if needed.
24463 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
24465         * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
24466         to a method (including results of ldelema, bug#43207).
24468 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
24470         * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
24471         colors to show exception handler blocks.
24473         * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
24474         (fix for pinvoke7.cs).
24476 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24478         * mini.h, mini.c: ensure correct initialization order for types that
24479         require it. Prepare for lazy compilation of jit icall wrappers.
24480         Provide a name for opcode emulation to reduce unneeded mallocing.
24482 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
24484         * mini-x86.c: better register restoring code and profiling
24485         support for tail calls.
24487 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
24489         * mini.h, driver.c: prepare for leaf methods optimization.
24491 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
24493         * mini.c: get targets of branches before converting a method.
24495 2003-05-23  Dietmar Maurer  <dietmar@ximian.com>
24497         * mini.c (optimize_branches): added some experimental code (disbaled) 
24499 2003-05-22  Dietmar Maurer  <dietmar@ximian.com>
24501         * mini.c (optimize_branches): fix branch to branch optimization 
24503         * exceptions-x86.c (mono_arch_handle_exception): bug fix.
24505         * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
24507         * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
24509         * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
24510         if needed.
24512 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
24514         * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
24515         enable use of interface variables again.
24517         * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
24518         I1 to registers because there is no simply way to sign extend 8bit
24519         quantities in caller saved registers on x86.
24521         * inssel-float.brg: set costs of some rules to 2 so
24522         that monobure always select the arch. specific ones if supplied,
24523         regardless of the order we pass the files to monoburg.
24525 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
24527         * mini.c, mini-x86.c: since the magic trampoline for jumps
24528         can't patch the code directly, we do it as soon as the
24529         method gets compiled.
24531 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
24533         * mini-x86.c, mini.h: introduce a new patching method
24534         to support CEE_JMP and tail calls.
24535         * mini.c: obey tail.call. Don't precompile methods target
24536         of CEE_JMP.
24537         * tramp-x86.c: new trampoline code to handle methods
24538         reached through a jump.
24540 2003-05-20  Dietmar Maurer  <dietmar@ximian.com>
24542         * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
24543         bit values to registers
24545 2003-05-19  Dietmar Maurer  <dietmar@ximian.com>
24547         * mini.c (mono_compile_get_interface_var): share interface
24548         variables if possible.
24550 2003-05-16  Martin Baulig  <martin@ximian.com>
24552         * debug-mini.c (mono_init_debugger): New function to initialize
24553         the debugger.  This is not in the debugger since it needs to
24554         access some of mini's internals.
24556 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
24558         * mini.c (mono_method_to_ir): inlining fixes/cleanups
24560 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
24562         * mini.c, mini-opts.h, inssel.brg: inline small memcpy
24563         for value type handling.
24565 2003-05-16  Dietmar Maurer  <dietmar@ximian.com>
24567         * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
24568         (mono_method_check_inlining): enable inlining of all kinds of wrappers
24570 2003-05-15  Lluis Sanchez Gual  <lluis@ideary.com>
24572         * mini.c: fixed little bug in CEE_NEWOBJ case when calling
24573           the constructor through a proxy.
24575 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
24577         * jit-icalls.c, inssel.brg: fixes to array element address
24578         calculations.
24580 2003-05-15  Dietmar Maurer  <dietmar@ximian.com>
24582         * mini-x86.c (is_regsize_var): allocate pointer to registers
24584 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
24586         * driver.c: fixed typo, added intrins to the set of optimizations
24587         tested with regressions.
24589 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
24591         * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
24592         * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
24593         test case.
24595 2003-05-14  Dietmar Maurer  <dietmar@ximian.com>
24597         * inssel.brg: remove some common pop instructions without side effects
24599 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
24601         * inssel-x86.brg: fixed thinko in int to double conversions.
24603 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
24605         * mini.c, jit-icalls.c: added runtime thread-static variable support.
24607 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
24609         * inssel-long32.brg: two more missing instructions.
24611 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
24613         * mini.c (mono_emit_call_args): set the cil_code for all arguments
24614         if not already set.
24616 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
24618         * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
24619         correctly.
24621         * basic-float.cs: Added tests for negative zero.
24623 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
24625         * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
24626         a couple of missing operations for long casts, with test cases.
24628 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24630         * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
24632 2003-05-09  Dietmar Maurer  <dietmar@ximian.com>
24634         * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
24635         code size estimation.
24637 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
24639         * mini.c (mono_jit_create_remoting_trampoline): make it work with
24640         abstract methods (fix bug 42542)
24642         * aot.c: add ability to handle array types
24643         
24644 2003-05-08  Zoltan Varga  <vargaz@freemail.hu>
24646         * mini.c: Call the _specific versions of the object allocation
24647         functions if possible.
24649 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
24651         * driver.c: call setlocale ().
24653 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
24655         * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
24656         windows build.
24658 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
24660         * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
24662         * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
24663         wrappers (fix bug 42122)
24665 2003-05-04  Martin Baulig  <martin@ximian.com>
24667         * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
24669         * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
24670         s/mini_set_defaults/mono_set_defaults/g.
24672 2003-05-04  Martin Baulig  <martin@ximian.com>
24674         * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
24676 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24678         * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
24679         (reported by Don Roberts).
24681 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
24683         * mini.c: temporarily work around two bugs for this release.
24685 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24687         * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
24688         that contains -export-dynamic and it makes using the ld script
24689         useless.
24690         * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
24692 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
24694         * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
24695         specific cpu.
24697 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
24699         * mini.c: make sure leave calls all the needed finally blocks,
24700         even when the target jumps out of multiple exception clauses.
24702 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
24704         * ldscript, Makefile.am: add linker script to reduce the number of
24705         exported symbols (should also fix the issues with libwine defining
24706         some of the same symbols in io-layer).
24708 2003-05-01  Zoltan Varga  <vargaz@freemail.hu>
24710         * driver.c (mini_main): Avoid assertion when no file name is given on 
24711         the command line.
24713 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
24715         * driver.c: added --version/-V command line option.
24716         Added the inline optimization in the regression tests.
24718 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
24720         * mini.c, basic-calls.cs: when inlining, save arguments to locals according 
24721         to the type in the method signature (fixes bug#42134).
24723 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
24725         * mini.c: when inlining, check this is not null only when needed (bug #42135).
24727 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
24729         * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
24731 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24733         * driver.c: fixed bug #42100.
24735 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
24737         * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
24739 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
24741         * mini.c: moved most of the code required to do inlining to its own
24742         function so it can be reused. Inline also ctors if appropriate.
24744 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
24746         * Makefile.am: Link with -export-dynamic so shared libs loaded by
24747         the runtime can call mono API functions.
24749 2003-04-27  Martin Baulig  <martin@ximian.com>
24751         * debug-mini.c (mono_debug_init_method): Added
24752         `guint32 breakpoint_id' argument; if the method has a breakpoint,
24753         send a notification to the debugger.
24755         * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
24756         running in the Mono Debugger, just pass the breakpoint number to
24757         mono_debug_init_method().
24759         * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
24761 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
24763         * mini.c: allow some more unsafe compares.
24765 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24767         * mini-x86.c, Makefile.am: make distcheck works (partially from
24768         a patch by Richard Lee <r.h.lee@attbi.com>).
24769         * regset.c, regset.h: removed, they are unused.
24771 2003-04-25  Dick Porter  <dick@ximian.com>
24773         * driver.c: Usage reports the name as 'mono' not 'mini'
24774         * exceptions-x86.c: Build and run on freebsd
24776 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
24778         * Makefile.am: install the program with the 'mono' name and
24779         the library as libmono instead of mini and libmini.
24781 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
24783         * driver.c: provide the APIs for the embedding interface of the old jit.
24785 2003-04-23  Dietmar Maurer  <dietmar@ximian.com>
24787         * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
24789 2003-04-23  Martin Baulig  <martin@ximian.com>
24791         * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
24793         * driver.c: Added `--debug' command line argument to enable
24794         debugging support.
24796 2003-04-23  Martin Baulig  <martin@ximian.com>
24798         * debug.[ch]: Removed.  The code is now in
24799         ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
24801         * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
24802         last six months.
24804 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
24806         * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
24808 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24810         * mini.c:
24811         (mini_cleanup): moved mono_runtime_cleanup call after the call to
24812         mono_domain_finalize.
24813         (mini_method_compile): use mono_method_profile* if the the option is
24814         enabled.
24816 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
24818         * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
24819         methods with their wrapper.
24821         * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
24822         methods with their wrapper.
24824         * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
24825         their wrapper.
24827         * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
24828         wrapper.
24830         * mini.c (mono_method_check_inlining): Avoid inlining synchronized
24831         methods.
24833 2003-04-17  Dietmar Maurer  <dietmar@ximian.com>
24835         * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
24837 2003-04-16  Dietmar Maurer  <dietmar@ximian.com>
24839         * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
24840         of the mempool. This is slightly faster and uses less memory
24842 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
24844         * mini.c: avoid O(n) allocation for variables.
24846 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24848         * mini.c: handle items on the stack after inlining methods.
24850 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
24852         * mini.c: make the method->opcode optimization dependent
24853         on MONO_OPT_INSTRINS and do it lazily.
24855 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
24857         * driver.c: print overall results at the end of regression run.
24859 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
24861         * inssel.brg: don't overwrite symbolic registers.
24863 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
24865         * inssel-x86.brg: fix conversion from long to float.
24867 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
24869         * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
24871 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
24873         * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
24875         * driver.c: Added --print-vtable option as in the old JIT.
24877 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
24879         * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
24881 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
24883         * inssel.brg, basic.cs: fixed checked conversions to byte and short.
24885 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
24887         * mini.c regalloc.c regalloc.h: Fix memory leak.
24889 2003-04-09  Dietmar Maurer  <dietmar@ximian.com>
24891         * aot.c (mono_aot_get_method): register all used strings
24893 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
24895         * mini.c: always intern strings references with ldstr at compile time.
24897 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
24899         * Makefile.am: add BUILT_SOURCES.
24901 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
24903         * driver.c: give a better error message when the assembly to execute
24904         doesn't have an entry point.
24906 2003-04-07  Dietmar Maurer  <dietmar@ximian.com>
24908         * Makefile.am: added hack for automake
24910         * mono/mini/mini.c (mono_save_args): always copy arguments to keep
24911         correct sematics.
24913         * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
24915 22003-04-07  Martin Baulig  <martin@ximian.com>
24917         * Makefile.am: Added Makefile.am.
24919         * debugger-main.c: Removed, this is now in the debugger where it
24920         belongs.
24922         * mini.pc.in: Call this package `mini' for the moment.